@charset "utf-8";
/* CSS Document */

body {
	background-color: #232323;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	margin: 0px;
	padding: 0px;
}

/* ============================================= corners ============================================= */
.corners { -moz-border-radius:8px; -webkit-border-radius:8px; border-radius: 8px; }
.corners_bottom { -moz-border-radius-bottomleft:6px; -moz-border-radius-bottomright:6px; -webkit-border-bottom-left-radius:6px; -webkit-border-bottom-right-radius:6px;border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; }
.corners_top { -moz-border-radius-topleft:6px; -moz-border-radius-topright:6px; -webkit-border-top-left-radius:6px; -webkit-border-top-right-radius:6px; border-top-right-radius: 6px; border-top-left-radius: 6px; }
.corners_left { -moz-border-radius-bottomleft:6px; -moz-border-radius-topleft:6px; -webkit-border-bottom-left-radius:6px; -webkit-border-top-left-radius:6px; border-top-left-radius: 6px; border-bottom-left-radius: 6px; }
.corners_right { -moz-border-radius-bottomright:6px; -moz-border-radius-topright:6px; -webkit-border-bottom-right-radius:6px; -webkit-border-top-right-radius:6px; border-top-right-radius: 6px; border-bottom-right-radius: 6px; }

a {
	color:#666;
	font-weight: bold;
	text-decoration:none;
}

input, textarea, select {
	border: 1px solid #565757;
	padding: 3px;
	margin: 3px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
}

#main {
	margin: auto;
	width: 80%;
}
/* ============================================= top navigation ============================================= */

#topnav {
	padding: 10px; 
	text-align:center;
	margin-bottom: 10px;
	background: #565757;
}

#topnav a {
	color: #E7E2E2;
	text-decoration: none;
	padding: 5px;
}
#topnav a:hover {
	color: #232323;
	text-decoration: underline;
}

.header, h1 {
	padding: 4px;
	font-weight: bold;
	color: #666;
	font-size: 14px;
	border-bottom: 1px solid #666;
}
a.sidelink {
	color: #232323;
	display: block;
	padding: 5px;
}
a.sidelink:hover {
	color: #666;
	background: #232323;
}

ul.dropdown_1 {
	padding: 0;
	margin: 0px;
	list-style: none;
}
li.dropdown_main {
	position: relative;
}
li.dropdown_main:hover ul {
	display: block;
}
.dropdown_main ul {
	display: none;
	position: absolute;
	top: 1em;
	left: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	background: #CCC;
}
ul.dropdown_2 li {
	padding: 3px;
	border: 1px solid #000;
	width: 150px;
	
}
ul.dropdown_2 li:hover {
	background-color:#999;
}


/* ============================================= content boxes ============================================= */
.box_wide {
	width: 90%;
	margin: 25px auto;
	background: #565757;
	border-radius: 8px;
	padding: 10px;
}
.box_thin {
	margin: 25px 5px;
	background: #565757;
	border-radius: 8px;
	padding: 10px;
}

.box_inside {
	background-color: #E7E2E2;
	padding: 15px;
	border-radius: 8px;
}

/* ============================================= notifications ============================================= */
.notification {
	border: 1px solid #666666;
	border-radius: 3px;
	display: block; 
	margin: 10px;
	overflow: hidden;
	padding: 0px;
	position: relative; 
	/*width: 100%;*/  
	z-index: 1;
	zoom: 1;
	-moz-border-radius: 3px; 
	-webkit-border-radius: 3px; 
}
.notification .icon		{ display: block; width: 16px; height: 16px; float: left; margin-top: 7px; }
.notification p			{ color: #333333; line-height: 16px; margin-left: 35px; margin-right: 25px; margin-top: 8px; margin-bottom: 7px; padding: 0px !important;}

.note-error				{ background: #f5dcdd url('/images/bck_error.png'); border-color: #EC9B9B; }
.note-error .icon		{ background: url('/images/ico_error_16.png') top left no-repeat; margin-left: 10px; }
.note-success			{ background: #ddf4ce url('/images/bck_success.png'); border-color: #72CB67; }
.note-success .icon		{ background: url('/images/ico_success_16.png') top left no-repeat; margin-left: 10px; }
.note-info				{ background: #dce6f3 url('/images/bck_info.png'); border-color: #50B0EC; }
.note-info .icon		{ background: url('/images/ico_info_16.png') top left no-repeat; margin-left: 10px; }
.note-attention			{ background: #f1eebf url('/images/bck_attention.png'); border-color: #D3C200; }
.note-attention .icon	{ background: url('/images/ico_attention_16.png') top left no-repeat; margin-left: 10px; }


