@charset "UTF-8";
label     {
	display: block;
	width: 300px;
	text-align: right;
	float: left;
	margin: 6px 8px 4px 0px;
	font-size: 20px;
	color: #666;
	font-family: Tahoma, Geneva, sans-serif;
	font-weight: bold;
}
input[type=text] , form input[type=password]{
	margin: 7px 8px 4px 0px;
	font-size: 18px;
	width: 400px;
	color: #666;
}
input[type=submit] {
	font-size: 18px;
	width: 400px;
	color: #06C !important;
	background-color: #FFF;
	border-radius: 5px;
	border: 2px solid #06C;
}
input[type=submit]:hover {
	font-size: 18px;
	background-color: #06C;
	color: #FFF !important;
}
select  {
	font-size: 18px;
	width: 400px;
	color: #06C !important;
	background-color: #FFF;
	border-radius: 5px;
	border: 2px solid #06C;
}

div.itemRow   {
	margin-left: 100px;
	clear: both;
}
div.itemRow label   {
	display: block;
	text-align: right;
	float: left;
	margin: 6px 8px 4px 0px;
	font-size: 18px;
	width: 200px;
	color: #666;
	font-weight: bold;
}
div.itemRow span {
	display: block;
	text-align: left;
	float: left;
	margin: 6px 8px 4px 8px;
	font-size: 18px;
	width: 600px;
}
body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background: #42413C;
	margin: 0;
	padding: 0;
	color: #000;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
h1 {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 32px;
	color: #06C;
}
h2 {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 20px;
	color: #06C;
	margin-left: 20px;
	margin-top: 20px;
}
h3 {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #06C;
	margin-left: 200px;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #06C; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
	text-decoration: none;
}
a:visited {
	color: #06C;
	text-decoration: none;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: underline;
}
.floatClear { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
/* ~~ this fixed width container surrounds the other divs ~~ */
#primaryFrame {
	width: 98%;
	background: #FFF;
	margin: 0 auto;
	min-width: 900px;
}

#header {
	background-color: #FFF;
	text-align: center;
	margin: auto;
}
#header img   {
	background-color: #FFF;
	text-align: center;
	margin: auto;
}
#navigation {
	display: block;
	list-style-type: none;
	background-color: #06C;
	height: 42px;
	margin: 0;
	padding: 0;
}
#navigation li {
	float: left;
	margin: 0px;
	width: 14%;
	display: inline;
}
#navigation li a {
	background-color: #06C;
	color: #FFF;
	width: 100%;
	display: block;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	padding: 10px 0px;
	margin: 0px;
}

#navigation li a:hover, #navigation li a:active {
	background-color: #FFF;
	color: #06C;
}
#navigation .active {
	background-color: #FFF;
	color: #06C;
}

#navigationSecondary {
	display: block;
	list-style-type: none;
	height: 42px;
	margin: 0;
	padding: 0;
}
#navigationSecondary li {
	float: right;
	margin: 0px 3px 0px 0px;
	;
	width: 20%;
	display: inline;
}
#navigationSecondary li a {
	width: 100%;
	display: block;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	padding: 10px 0px;
	margin: 0px;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #06C;
	color: #06C;
	border-left-width: 3px;
	border-left-style: solid;
	border-left-color: #06C;
	border-top-width: 3px;
	border-top-style: solid;
	border-top-color: #06C;
}
#navigationSecondary li a:hover, #navigationSecondary li a:active {
	background-color: #06C;
	color: #FFF;
}



/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/

#primaryContent {
	padding: 0px 0px 10px 0px;
	clear: both;
}
/* ~~ The footer ~~ */
#footer {
	background-color: #06C;
	color: #FFF;
}
#footer p {
	margin: 0px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	text-align: right;
	font-weight: bold;
}
div.submitError {
	padding-left: 40px;
	color: #06C;
}
html {
	font-family: Verdana, Geneva, sans-serif;
}
td.actionRow {
	text-align: center;
}
td.actionRow a {
	margin-right: 8px;
}
.spec_fail {
	color: #F00;
}
.spec_pass {
	color: #39F;
}
.syslogNotice {
	color: #06F;
}
.syslogWarn {
	color: #900;
}
