/* Start of CMSMS style sheet 'Layout: Top menu + 2 columns' */
/* browsers interpret margin and padding a little differently, we'll remove all default padding and margins and set them later on */
* {
	margin: 0;
	padding: 0;
}
/*Set initial font styles*/
body {
	text-align: left;
	font-family: Helvetica, Arial, Verdana, Geneva, sans-serif;
	font-size: 75.01%;
	line-height: 1em;
}
/*set font size for all divs, this overrides some body rules*/
div {
	font-size: 1em;
}
/*if img is inside "a" it would have borders, we don't want that*/
img {
	border: 0;
}
/*default link styles*/
/* set all links to have underline and bluish color */
a, a:link a:active {
	text-decoration: none;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
	background-color: inherit;
	color: #26a3ea;
}
a:visited {
	text-decoration: none;
	background-color: inherit;
	color: #26a3ea;
/* a different color can be used for visited links */
}
/* remove underline on hover and change color */
a:hover {
	text-decoration: underline;
	background-color: inherit;
	color: #000620;
}
/*****************basic layout *****************/
body {
	margin: 0;
	padding: 0;
/* default text color for entire site*/
	color: #5c5c5c;
/* you can set your own image and background color here */
	background: #f7f7f7 url(../images/backgrad.gif) repeat-x left top;
}
div#pagewrapper {
	width: 955px;
	margin: 0 auto;
	color: #5c5c5c;
	padding-bottom:20px;
}
/* header, we will hide h1 a text and replace it with an image, we assign a height for it so the image wont cut off */
div#header {
/* adjust according your image size */
	height: 70px;
	margin: 0;
	padding: 0;
	padding-top: 30px;
	/* you can set your own image here, will go behind h1 a image */
	
}
div#header h1 a {
/* you can set your own image here */
	background: url(../images/logo.gif) no-repeat left top;
/* this will make the "a" link a solid shape */
	display: block;
/* adjust according your image size */
	height: 70px;
/* this hides the text */
	text-indent: -999em;
/* old firefox would have shown underline for the link, this explicitly hides it */
	text-decoration: none;
}
div#header h1 {
	margin: 0;
	padding: 0;
/*these keep IE6 from pushing the header to more than the set size*/
	line-height: 0;
	font-size: 0;
/* this will keep IE6 from flickering on hover */
	background: url(../images/logo.gif) no-repeat left top;
}
div#header h2 {
/* this is where the site name is */
	float: right;
	line-height: 1.2em;
/* this keeps IE6 from not showing the whole text */
	font-size: 1.5em;
/* keeps the size uniform */
	margin: 35px 65px 0px 0px;
/* adjust according your text size */
	color: #f4f4f4;
}
div.crbk {
/* sets all to 0 */
	margin: 0;
	padding: 0;
/* you can set your own image here */
	background: url(uploads/ngrey/mainrtup.gif) no-repeat right bottom;
}


#content {
	/* some air above and under menu and content */	
	padding-top: 30px;
	padding-bottom: 20px;
	padding-left:30px;
	padding-right:30px;
	background-color: #FFFFFF;
}
#content2 {
	padding: 20px;
}

div#main {
width:630px;	
}
#main2 {
width:630px;	
}

div#sidebar {
/* set sidebar left. Change to right, float: right; instead, but you will need to change the margins. */
	float: right;
	width: 250px;
/* FIX IE double margin bug */
	display: inline;
}
#sidebar2 {
/* set sidebar left. Change to right, float: right; instead, but you will need to change the margins. */
	float: right;
	width: 250px;
/* FIX IE double margin bug */
	display: inline;
}


div#footer {
	color: #595959;
/* you can set your own image here */
	background: #000620;
}


div#footer p {
/* sets different font size from default */
	font-size: 1.0em;
/* some air for footer */
	padding: 5px 0px;
/* centered text */
	margin: 0;
	color:#FFFFFF;
}


/* as we hid all hr for accessibility we create new hr with div class="hr" element */
hr {
	height:1px;
	clear:left;
	padding:5px;
	margin: 0 0 10px 0;
	border-top-width: 0;
	border-right-width: 0;
	border-bottom-width: 1;
	border-left-width: 0;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-bottom-color: #e7e7e7;
}


#pagewrapper2 {
	width: 955px;
	margin: 0 auto;
	}


/********************CONTENT STYLING*********************/
/* HEADINGS */
h1 {
	font-size: 26px;
font-weight:normal;
line-height:normal;
color: #26a3ea;
letter-spacing:-1px;
padding-bottom:10px;
}
h2 {
	font-size: 22px;
font-weight:normal;
line-height:normal;
color: #26a3ea;
letter-spacing:-1px;
padding-bottom:10px;
}
h3 {
	font-size: 20px;
font-weight:normal;
line-height:normal;
color: #26a3ea;
letter-spacing:-1px;
padding-bottom:10px;
}

h4 {
	color: #5c5c5c;;
	font-size: 1.1em;
	line-height: normal;
	padding-bottom:5px;
}
div#content h5 {
	color: #294B5F;
	font-size: 1.1em;
	line-height: 1.3em;
	margin: 0 0 0.25em 0;
}
h6 {
	color: #294B5F;
	font-size: 1em;
	line-height: 1.3em;
	margin: 0 0 0.25em 0;
}
/* END HEADINGS */
/* TEXT */
p {
	font-size: 1.1em;
	padding-bottom:10px;
	line-height: 1.4em;
}
blockquote {
	border-left: 10px solid #ddd;
	margin-left: 10px;
}
strong, b {
/* explicit setting for these */
	font-weight: bold;
}
em, i {
/* explicit setting for these */
	font-style: italic;
}
/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
/* css-3 */
	white-space: pre-wrap;
/* Mozilla, since 1999 */
	white-space: -moz-pre-wrap;
/* Opera 4-6 */
	white-space: -pre-wrap;
/* Opera 7 */
	white-space: -o-pre-wrap;
/* Internet Explorer 5.5+ */
	word-wrap: break-word;
	font-family: "Courier New", Courier, monospace;
	font-size: 1em;
}
pre {
/* black border for pre blocks */
	border: 1px solid #000;
/* set different from surroundings to stand out */
	background-color: #ddd;
	margin: 0 1em 1em 1em;
	padding: 0.5em;
	line-height: 1.5em;
	font-size: 90%;
}
/* Separating the divs on the template explanation page */
div.templatecode {
	margin: 0 0 2.5em;
}
/* END TEXT */
/* LISTS */
/* lists in content need some margins to look nice */
div#main ul,
div#main ol,
div#main dl {
	font-size: 1.0em;
	line-height: 1.4em;
	margin: 0 0 1.5em 0;
}
div#main ul li,
div#main ol li {
	margin: 0 0 0.25em 3em;
}
/* definition lists topics on bold */
div#main dl {
	margin-bottom: 2em;
	padding-bottom: 1em;
	border-bottom: 1px solid #c0c0c0;
}
div#main dl dt {
	font-weight: bold;
	margin: 0 0 0 1em;
}
div#main dl dd {
	margin: 0 0 1em 1em;
}
/* END LISTS */

#content {
-webkit-border-top-left-radius:10px;
-webkit-border-top-right-radius:10px;
-webkit-border-bottom-right-radius:10px;
-webkit-border-bottom-left-radius:10px;
border-top-left-radius:10px;
border-top-right-radius:10px;
border-bottom-right-radius:10px;
border-bottom-left-radius:10px;
-moz-border-radius-topleft:10px;
-moz-border-radius-topright:10px;
-moz-border-radius-bottomright:10px;
-moz-border-radius-bottomleft:10px;  
} 
/* End of 'Layout: Top menu + 2 columns' */

/* rotator in-page placement */
    div#rotator {
	position:relative;
	width:955px;
	height:320px;
	padding:0;
	margin-bottom:20px;
	border:0;
	-webkit-border-top-left-radius:10px;
-webkit-border-top-right-radius:10px;
-webkit-border-bottom-right-radius:10px;
-webkit-border-bottom-left-radius:10px;
border-top-left-radius:10px;
border-top-right-radius:10px;
border-bottom-right-radius:10px;
border-bottom-left-radius:10px;
-moz-border-radius-topleft:10px;
-moz-border-radius-topright:10px;
-moz-border-radius-bottomright:10px;
-moz-border-radius-bottomleft:10px;
background-color:#000000;
}
/* rotator css */
	div#rotator ul li {
	float:left;
	position:absolute;
	list-style: none;
	left: 0px;
	top: 0px;
	border:0;
}
/* rotator image style */	
	div#rotator ul li img {
		-webkit-border-top-left-radius:10px;
-webkit-border-top-right-radius:10px;
-webkit-border-bottom-right-radius:10px;
-webkit-border-bottom-left-radius:10px;
border-top-left-radius:10px;
border-top-right-radius:10px;
border-bottom-right-radius:10px;
border-bottom-left-radius:10px;
-moz-border-radius-topleft:10px;
-moz-border-radius-topright:10px;
-moz-border-radius-bottomright:10px;
-moz-border-radius-bottomleft:10px;
border:0;
}
    div#rotator ul li.show {
	z-index:500
}

.infobox {
-webkit-border-top-left-radius:8px;
-webkit-border-top-right-radius:8px;
-webkit-border-bottom-right-radius:8px;
-webkit-border-bottom-left-radius:8px;
border-top-left-radius:8px;
border-top-right-radius:8px;
border-bottom-right-radius:8px;
border-bottom-left-radius:8px;
-moz-border-radius-topleft:8px;
-moz-border-radius-topright:8px;
-moz-border-radius-bottomright:8px;
-moz-border-radius-bottomleft:8px;
padding:10px;
margin-bottom:10px;
border:solid 2px #e7e7e7;
} 
.infobox p{
	font-size: 0.9em;
	padding-bottom:5px;
	line-height: normal;
}
.clear{
clear:both;
}
.image_right{
float:right;
padding-left:10px;
padding-bottom:10px;
}
.image_left{
padding:5px 0 0 2px;
}
#main2 input, #main2 textarea{
-webkit-border-radius:6px;
border-radius:6px;
-moz-border-radius-:6px;
border:0;
padding:8px;
width:250px;
background-color:#1b2243;
color:#FFFFFF;
}
#main input, #main textarea{
border:solid 1px #e7e7e7;
background-color:#FFFFFF;
outline:none;
padding:5px;
}
#main input.blue{
background: #000620;
color:#FFFFFF;
cursor:pointer;
padding:5px;
font-weight:bold;
}
.imgleft{
float:left;
padding-right:10px;
padding-bottom:5px;
}
.icons{
display:inline;
padding-right:3px;
}
