@import '/css/webmaster_form.css';
@import '/css/boxy.css';

body {
	background-image: url('../images/webmaster/bg.png');
	background-repeat: repeat-x;
	background-color: #34040b;
	margin: 0px;
	font-family: "Arial", sans-serif;
}

a.cta {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #ffffff;
	padding: 10px 20px;
	border-radius: 12px;
	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	-moz-box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px 0px 2px rgba(255,255,255,1);
	-webkit-box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px 0px 2px rgba(255,255,255,1);
	text-shadow:
		0px -1px 0px rgba(000,000,000,1),
		0px 1px 6px rgba(255,255,255,0.8);
	text-decoration: none;
}
a.cta.green {
	border: 1px solid #015c05;
	background: -moz-linear-gradient(
		top,
		#1cd52e 0%,
		#107d1a 54%,
		#015c05 55%,
		#1c881e);
	background: -webkit-gradient(
		linear, left top, left bottom,
		from(#1cd52e),
		color-stop(0.54, #107d1a),
		color-stop(0.55, #015c05),
		to(#1c881e));
}
a.cta.red {
	border: 1px solid #8d0303;
	background: -moz-linear-gradient(
		top,
		#cb1414 0%,
		#a00707 54%,
		#8d0303 55%,
		#bc0e0e);
	background: -webkit-gradient(
		linear, left top, left bottom, 
		from(#cb1414),
		color-stop(0.54, #a00707),
		color-stop(0.55, #8d0303),
		to(#bc0e0e));
}
a.cta.blue {
	border: 1px solid #12428A;
	background: -moz-linear-gradient(
		top,
		#5D93E3  0%,
		#325CB8  54%,
		#12428A  55%,
		#406FC7 );
	background: -webkit-gradient(
		linear, left top, left bottom, 
		from(#5D93E3 ),
		color-stop(0.54, #325CB8 ),
		color-stop(0.55, #12428A ),
		to(#406FC7 ));
}


h1 {
	background: -moz-linear-gradient(center top , #efefef 0%, #bbbbbb 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #efefef), color-stop(1, #bbbbbb));
	border: solid 1px #cfcfcf;

	border-radius: 2px 2px 2px 2px;
	-moz-border-radius: 2px 2px 2px 2px;
	-webkit-border-radius: 2px 2px 2px 2px;
	color: #444;
	display: block;
	font-size: 16pt;
	font-weight: normal;
	
	margin-top: 0;
	margin-bottom: 0;
	padding: 10px;
	text-decoration: none;
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
}

h2 {
	padding: 5px 10px 5px 7px;
	font-size: 11pt;
	font-weight: bold;
	color: #444;
	border-bottom: solid 1px #bbb;
	background-color: #e5e5e5;
	margin-top: 0;
	margin-bottom: 10px;
}

h3 {
	background: -moz-linear-gradient(center top , #efefef 0%, #bbbbbb 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #efefef), color-stop(1, #bbbbbb));
	border: solid 1px #bbb;

	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	color: #444;
	display: block;
	font-size: 10pt;
	font-weight: bold;
	
	margin-top: 0;
	margin-bottom: 0;
	padding: 5px 10px 5px 10px;
	text-decoration: none;
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
}
h3 + * {
	margin-top: 5px;
}
h1 + * {
	margin-top: 10px;
}
h3.link {
	cursor: pointer;
	color: #820000;
	text-decoration: underline;
}
h3.link:hover {
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
h3 + div.box, h1 + div.box {
	margin: 0;
}
#content div.box + h3 {
	margin-top: 10px;
}
#content div.box {
	border: solid 1px #ddd;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	background-color: white;
}
#content div.box.err {
	border-color: red;;
}
h3 span.date {
	float: right;
	font-weight: normal;
	font-style: italic;
	color: #444444;
}

dl.table {
	font-size: 9pt;
	margin: 5px 10px;
}
dl.table dt {
	width: 55px;
	float: left;
}
dl.table dd {
	margin-left: 55px;
	margin-bottom: 5px;
}

p {
	font-size: 9pt;
	color: #444;
	margin: 5px 10px;
	line-height: 14pt;
}
p.indent {
	margin-left: 30px;
	text-indent: -20px;
}
#content div.box.err p {
	color: red;
	font-size: 10pt;
}

div.news p {
	padding: 0px 10px 0px 10px;
}

ul {
	font-size: 9pt;
	color: #444;
	padding-left: 20px;
	margin: 5px 10px;
}
ul li {
	margin: 5px 0 5px 0;
}
ul.check-16 {
	list-style-type: none;
	padding: 1px 0 0 0;
}
ul.check-16 li {
	background-image: url('../icons/16/checkok.png');
	background-repeat: no-repeat;
	padding: 1px 0 0 20px;
}
ul.check-16 li.empty {
	background-image: none;
}

a {
	color: #820000;
	font-size: 9pt;
}
a.more {
	margin-top: 5px;
	display: block;
}
a.r {
	float: right;
}
a img {
	border: none;
	text-decoration: none;
}

#wrapper {
	width: 986px;
	background-image: url('../images/webmaster/wbg.png');
	margin: 0 auto;
	padding: 0 8px 0 8px;
}
#header {
	height: 101px;
}
#header-logo {
	float: left;
	width: 242px;
	height: 101px;
}
#htop {
	float: left;
	background-color: #858585;
	width: 744px;
	height: 70px;
	background-image: url('../images/webmaster/topbg.png');
}

#htop .box {
	margin-top: 21px;
	margin-left: 25px;
	float: left;
}
#htop .box div:first-child {
	font-size: 7pt;
	color: #cfcfcf;
}
#htop .box div:last-child {
	color: white;
	font-size: 10pt;
}

#hnavi {
	float: left;
	background-color: #830c0c;
	padding-left: 10px;
	padding-right: 10px;
	width: 724px;
	height: 31px;
	background-image: url('../images/webmaster/navibg.png');
}

#hnavi a {
	font-size: 10pt;
	padding: 7px 7px 0 7px;
	height: 24px;
	display: block;
	color: white;
	text-decoration: none;
}
#hnavi a.left {
	float: left;
}
#hnavi a.right {
	float: right;
}
#hnavi a:hover {
	background-image: url('../images/webmaster/navibg.png');
	background-position: 0 -32px;
}

#content {
	min-height: 614px;
	background-color: #f5f5f5;
	background-image: url('../images/webmaster/cbg.jpg');
	background-repeat: repeat-x;
}
#content.default {
	padding: 12px 6px 10px 10px;
}
#content.zeropad {
	padding: 0;
}






/* lnavi */
#lnavi {
	float: left;
	margin-right: 10px;
	font-size: 10pt;
}
#lnavi a.top {
	display: block;
	background-image: url('../images/webmaster/lnavi.png');
	background-repeat: repeat-x;
	height: 21px;
	padding-top: 4px;
	padding-left: 5px;
	color: white;
}
#lnavi a:hover {
	text-decoration: none;
}
#lnavi div {
	background-image: url('../images/webmaster/lnavi.png');
	background-repeat: repeat-x;
	background-position: 0 -25px;
	padding: 5px;
	background-color: #858585;
}
#lnavi div p {
	color: white;
	margin: 0 0 5px 0;
}
#lnavi div a {
	display: block;
	color: white;
	
}
#lnavi div a:hover {
	color: #555;
	background-color: #f5f5f5;
}
#lnavi div:last-child {
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	-moz-border-radius-bottomleft: 3px;
	-moz-border-radius-bottomright: 3px;
	-webkit-border-bottom-left-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;
}

#main {
	float: left;
}




#footer {
	border-top: dotted 1px #ccc;
	background-color: #f5f5f5;
	height: 35px;
	padding-top: 5px;
	color: #555;
}
#footer-copyright {
	font-size: 9pt;
	margin: 8px 0 0 8px;;
	float: left;
}
#footer a {
	color: #555;
	padding-left: 34px;
	padding-right: 10px;
	padding-top: 8px;
	height: 21px;
	font-size: 8pt;
	text-decoration: underline;
	float: right;
	display: block;
}
#footer a:hover {
	text-decoration: none;
	background-color: #ddd;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	color: black;
}
.ficon, .ficon-skype, .ficon-icq, .ficon-msn, .ficon-yahoo, .ficon-email {
	background-image: url('../images/webmaster/ficons.png');
	background-repeat: no-repeat;
	background-width: 24px;
}
.ficon-skype {
	background-position: 7px 0;
}
.ficon-icq {
	background-position: 7px -31px;
}
.ficon-msn {
	background-position: 7px -62px;
}
.ficon-yahoo {
	background-position: 7px -93px;
}
.ficon-email {
	background-position: 7px -124px;
}
#footer .divider {
	float: right;
	width: 0px;
	height: 29px;
	border-right: dotted 1px #ccc;
	margin: 0 5px 0 5px;
}


#tooltip {
	position: absolute;
	z-index: 3000;
	border: 1px solid #000;
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.75);
	padding: 5px;
	color: white;
	max-width: 200px;
	font-size: 10pt;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}

.help {
	cursor: help;
}

.clear {
	clear: both;
}





.box-wrap1 {
	border: solid 1px #dddddd;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	padding: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
}
.box-wrap2 {
	background-color: white;
	/*opacity: 0.92;*/
}

.loader1 {
	background-image: url('../images/ajax-loader1.gif');
	background-position: 50% 50%;
	background-repeat: no-repeat;	
}

.floatright {
	float: right;
}



.dotbox {
	border: dotted 1px #ddd;
	padding: 2px;
}

.dotbox:hover {
	border: solid 1px #ddd;
}

.dotbox h1, .dotbox span.title {
	font-size: 12pt;
	font-weight: bold;
	font-color: #333;
	margin: 0 0 5px 0;
}
.dotbox h1 {
	border-bottom: solid 1px #ddd;
}

.dotbox .delete {
	width: 17px;
	height: 17px;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border: solid 1px white;
	cursor: pointer;
	font-size: 11pt;
	color: #aaa;
}

.dotbox .delete:hover {
	color: #555;
	border: solid 1px #555;
	background-color: #ddd;
}

.dotbox quote, .dotbox div.quote {
	color: #555;
	font-style: italic;
}










table.table {
	width: 100%;
	border-collapse: collapse;
}
table.table tr th, table.table tr td {
	font-size: 9pt;
	padding: 5px 10px 5px 10px;
	border-bottom: solid 1px #bbb;
}

table.table tbody tr td {
	border-left: solid 1px #bbb;
}
table.table tbody tr td:first-child {
	border-left: 0;
}

table.table thead tr th {
	background-color: #e5e5e5;
	color: #444;
	font-size: 9pt;
	border-bottom: solid 1px #bbb;
}
table.table tfoot tr th, table.table tfoot tr td {
	background-color: #e5e5e5;
	color: #444;
	font-size: 9pt;
	border-top: solid 1px #bbb;
	border-bottom: double 3px #bbb;
}

table.table tfoot tr td {
	border-left: solid 1px #bbb;
}
table.table tfoot tr td:first-child {
	border-left: 0;
}

table.table .r {
	text-align: right;
}

table.table .l {
	text-align: left;
}

table.table tr:last-child td {
	border-bottom: none;
}
table.table tbody tr:hover {
	background-color: #eee;
}

table.table td.neg {
	color: #820000;
}

table.table td.pos {
	color: #008200;
}

table.table tr.click {
	cursor: pointer;
}

.bar-neg {
	float: left;
	height: 25px;
	background-image: url('../images/bars.png');
	background-position: 0 0;
}
.bar-pos {
	float: left;
	height: 25px;
	background-image: url('../images/bars.png');
	background-position: 0 -25px;
}










.tabs {
	border-bottom: solid 1px #666;
	height: 26px;
}
.tabs a {
	display: block;
	float: left;
	height: 19px;
	padding-top: 6px;
	padding-left: 6px;
	padding-right: 6px;
	font-size: 11pt;
	font-weight: bold;
/*	background-image: url('../images/tabs.gif');*/
	text-decoration: none;
	
	border-radius: 8px 8px 0px 0px;
	-moz-border-radius: 8px 8px 0px 0px;
	-webkit-border-radius: 8px 8px 0px 0px;
	border-left: solid 1px #d4d4d4;
}

.tabs a.on {
}

.tabs a.on, .tabs a.off:hover {
	position: relative;
	bottom: -3px;
/*	background-position: 0 28px;*/
	color: #820101;
	background-color: white;
	opacity: 1;
}
.tabs a.off {
	position: relative;
/*	background-position: 0 0;*/
	bottom: -1px;
	color: #252525;
	background-color: #fff;
	opacity: 0.5;
}

#campaign-selector label {
	font-weight: bold;
	font-size: 10pt;
	margin-left: 7px;
	margin-right: 5px;
}


a.button {
	text-decoration: none;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5), inset 1px 1px 1px rgba(255, 255, 255, 0.4), inset -1px -1px 1px rgba(0, 0, 0, 0.4);
	cursor: default;
	color: white;
}
a.button.big {
	font-size: 9pt;
	padding: 4px 10px 5px 8px;
}
a.button.small {
	font-size: 7pt;
	padding: 4px 5px 5px 5px;
}

a.button:hover {
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7), inset 1px 1px 2px rgba(255, 255, 255, 0.6), inset -1px -1px 2px rgba(0, 0, 0, 0.6);
}
a.button:active {
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5), inset 1px 1px 1px rgba(0, 0, 0, 0.4), inset -1px -1px 1px rgba(255, 255, 255, 0.4);
}

a.button.big img {
	vertical-align: -4px;
	margin-right: 3px;
}
a.button.small img {
	vertical-align: -5px;
	margin-right: 2px;
}

a.button.blue {
	background-color: #0f53c2;
	border: solid 1px #1a4c9d;
}
a.button.red {
	background-color: #820000;
	border: solid 1px #620202;
}
a.button.green {
	background-color: #1f814b;
	border: solid 1px #0d582e;
}
