/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  background-color:#CCCCCC;
  color: #2d2e2e;
  font:0.50em Verdana, Arial, Helvetica, sans-serif;
  font-size: 10px;
  line-height: 14px;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
  color: #6d9863;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
  color: #6d9863;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for unvisited links. */
a, a:link {
  color:#0033FF;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #0033FF;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #0033FF;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #0033FF;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #0033FF;
}

/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	background-color: #fff;
	border:1px solid #000000;
	margin: 15px auto 15px auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 1000px;
}
#outerWrapper #header {
 padding: 0px 0px 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
 margin:10px auto 30px auto;
 width:960px;
 height:120px;
}
.rbroundbox { background: url('../images/nt.jpg') repeat; }
.rbtop div { background: url('../images/tl.gif') no-repeat top left; }
.rbtop { background: url('../images/tr.gif') no-repeat top right; }
.rbbot div { background: url('../images/bl.gif') no-repeat bottom left; }
.rbbot { background: url('../images/br.gif') no-repeat bottom right; }

/* height and width stuff, width not really nessisary. */
.rbtop div, .rbtop,.rbbot div, .rbbot {
width: 100%;
height:7px;
font-size: 1px;
}
/*.rbcontent { width:100%; height:89%; padding-left:20px;}*/
/*.rbroundbox { width:100%; height:0%;}*/

.frbroundbox { background: url('../images/nt.gif') repeat; }
.frbtop div { background: url('../images/tl.gif') no-repeat top left; }
.frbtop { background: url('../images/tr.gif') no-repeat top right; }
.frbbot div { background: url('../images/bl.gif') no-repeat bottom left; }
.frbbot { background: url('../images/br.gif') no-repeat bottom right; }

/* height and width stuff, width not really nessisary. */
.frbtop div, .frbtop, .frbbot div, .frbbot {
width: 100%;
height: 7px;
font-size: 1px;
}
.frbcontent { width:90%; height:89%; padding-left:10px;}
.frbroundbox { width:100%; height:100%;}
.rbfooter{ width:980px; padding:2px 10px; }

#navigation {
 float: left;
 padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
 width: 190px;
 margin:0px 8px;
}

.navtop div { background: url('../images/tl.gif') no-repeat top left; }
.navtop { background: url('../images/tr.gif') no-repeat top right; }
.navbot div { background: url('../images/bl.gif') no-repeat bottom left; }
.navbot { background: url('../images/br.gif') no-repeat bottom right; }

.navtop div, .navtop, .navbot div, .navbot {
width: 100%;
height:11px;
font-size: 1px;
}

#navigation .homebox{
background-color:#E6E8FA;
padding:0px 0px 0px 0px;
margin:0px 0px;
}

html>body #navigation .homebox{
background-color:#E6E8FA;
padding:0px 0px 0px 0px;
margin:0px 0px;
}

#navigation .box{
background-color:#E6E8FA;
vertical-align:middle;
padding:0px 0px 0px 0px;
margin:6px 0px;
}

#navigation .adminbox{
background-color:#E6E8FA;
vertical-align:middle;
padding:0px 0px 0px 0px;
margin:6px 0px;
}

#navigation .navcontent{
	padding: 0px 0px 0px 0px;
	line-height:22px;
}

#navigation .homenavcontent h2{
color:#090165;
font-size:13px;
font-weight:bold;
margin:0px 0px 0px 0px;
}


#navigation .navcontent h2 a{
display:block;
color:#090165;
padding:0px 14px;
font-size:13px;
font-weight:bold;
text-decoration:none;
}

#navigation .navcontent h2 a:hover{
display:block;
background-color:#0033FF;
padding:0px 14px;
color:#FFFFFF;
font-size:13px;
font-weight:bold;
text-decoration:none;
}

html>body #navigation .navcontent h2{
color:#090165;
font-size:13px;
font-weight:bold;
padding:0px 0px 0px 8px;
margin:2px 0px 4px 0px;
}



#navigation .menu{
padding-top:3px;
}

#navigation .homebox link{
display:block;
}

#navigation .box link{
display:block;
}

#navigation .adminbox link{
display:block;
}

#navigation .homebox a{
display:block;
color:#090165;
padding:0px 16px;
font-size:13px;
font-weight:bold;
text-decoration:none;
}

#navigation .homebox a:hover{
display:block;
background-color:#0033FF;
padding:0px 16px;
color:#FFFFFF;
font-size:13px;
font-weight:bold;
text-decoration:none;
}

#navigation .adminbox a{
color: #0033FF;
padding:0px 0px 0px 20px;
font-size:10px;
font-weight:bold;
text-decoration:none;
}

#navigation .adminbox a:hover{
display:block;
background-color:#0033FF;
color:#FFFFFF;
font-size:10px;
font-weight:bold;
text-decoration:none;
}


#navigation .box a{
display:block;
color: #0033FF;
padding:0px 0px 0px 20px;
font-size:11px;
font-weight:bold;
text-decoration:none;
}

#navigation .box a:hover{
display:block;
background-color:#0033FF;
color:#FFFFFF;
font-size:11px;
font-weight:bold;
text-decoration:none;
}


#outerWrapper #contentWrapper #rightColumn1 {
  float: right;
  padding: 0px 10px 0px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 200px;
  margin:0px 0px;
}

#rightColumn1 .box{
border:1px solid #090165;
margin:0px 0px;
}

#rightColumn1 .otherbox{
border:1px solid #090165;
margin:10px 0px;
}

#rightColumn1 .columncontent{
padding:2px;
}

#rightColumn1 .title{
border:1px solid #090165 ;
background-color:#E6E8FA;
color:#090165;
text-align:center;
font-size:11px;
padding:1px;
font-weight:bold;
}

#rightColumn1 .columnmessage{
padding:3px 10px;
text-align:left;
font-size:11px;
line-height:20px;
}

#rightColumn1 .columncontent table{
text-align:left;
}
#rightColumn1 .columncontent ul{
padding-left:22px;
list-style-image: url('../images/bullet.gif');
}

.submitbutton{
width:60px;
font-size:12px;
}

/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #logincontent {
  margin: 25px 230px 25px 220px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 15px 0px 15px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  font-size:13px;
  border:1px solid #090165;
}

#outerWrapper #contentWrapper #content {
  margin: 40px 230px 40px 220px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 15px 0px 15px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  font-size:12px;
  border:1px solid #090165;
}

#outerWrapper #contentWrapper #contentpage {
  margin: 0px 25px 0px 220px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  /*padding: 10px 15px 300px 15px; /*Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  font-size:12px;
  /*border:1px solid #f56700;*/
}

#outerWrapper #contentWrapper #contentpage ul{
list-style-image: url('../images/bullet.gif');
}

#outerWrapper #contentWrapper #contentpage li{
line-height:17px;
padding:3px 0px;
}

.subtitle{
color:#090165;
font-size:16px;
}

/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: both;
  display: block;
}

#outerWrapper #footer {
  margin:20px auto 10px auto;
  width:980px;
}

.ubercolortabs{
padding:5px 0px 0px 10px;
width:100%;
overflow: hidden;
background: transparent;
}

.ubercolortabs ul{
font: bold 11px Arial, Verdana, sans-serif;
margin: 0;
padding: 0;
list-style: none;
}

.ubercolortabs li{
display: inline;
margin: 0 3px 0 0;
padding: 0;
text-transform: uppercase;
}


.ubercolortabs a{
float: left;
color:#0033FF;
background: #E4E4E4 url('../images/roundleft.gif') no-repeat left top; /*default background color of tabs, left corner image*/
margin: 0 8px 0 0;
padding: 0 0px 1px 3px;
text-decoration: none;
letter-spacing: 1px;
}

.ubercolortabs a span{
float: left;
display: block;
background: transparent url('../images/roundright.gif') no-repeat right top; /*right corner image*/
padding: 7px 9px 3px 6px;
cursor: pointer;
}

.ubercolortabs a span{
float: none;
}


.ubercolortabs a:hover, .ubercolortabs li.selected a{
background-color:#0033FF; /*background color of tabs onMouseover*/
color:white;
}

.ubercolortabs a:hover span{
background-color: transparent;
}


.ubercolordivider{ /*CSS for horizontal line.*/
clear: both;
padding: 0;
width:100%;
height:1px;
line-height: 0px;
background: #000000; /*background color of horizontal line*/
border-top: 1px solid #fff; /*Remove this to remove border between bar and tabs*/
}

.label{
width: 30%;
}

.field{
width: 70%;
}

.labeleven{
width: 30%;
background-color:#e6e8fa;
}

.fieldeven{
width: 70%;
background-color:#e6e8fa;
}

.rform sup{
color:#FF0000;
font-size:16px;
text-align:center;
vertical-align:top;
padding:0px 4px;
}

#consortium .title{
color:#090165;
font-size:16px;
}

.url{
color:#090165;
font-size:18px;
font-weight:bold;
}

.contact{
background-color:#E6E8FA;
padding:8px 0px 8px 12px;
line-height:20px;
}

.services{
background-color:#E6E8FA;
padding:8px 0px 8px 12px;
color:#090165;
}

.announcements{
background-color:#EFEFEF;
padding:8px 0px 8px 12px;
color:#090165;
}

.documents{
background-color:#F3F3F3;
padding:8px 0px 8px 12px;
color:#090165;
}

.steps td{
padding:6px;
line-height:20px;
}

.inborder{
background-color:#E6E8FA;
padding:8px 12px 8px 12px;
color:#090165;
}
a.boldbuttons{
background: transparent url('../images/roundedge-blue-left.gif') no-repeat top left;
display: block;
float: right;
font: bold 11px Arial; /* Change 13px as desired */
line-height: 22px; /* This value + 4px + 4px (top and bottom padding of SPAN) must equal height of button background (default is 30px) */
height: 30px; /* Height of button background height */
padding-left: 8px; /* Width of left menu image */
text-decoration: none;

}

a:link.boldbuttons, a:visited.boldbuttons, a:hover.boldbuttons, a:active.boldbuttons{
color: white; /*button text color*/
}

a.boldbuttons span{
background: transparent url('../images/roundedge-blue-right.gif') no-repeat top right;
display: block;
padding: 4px 10px 4px 2px; /*Set 10px to be equal or greater than'padding-left' value above*/
}

a:hover.boldbuttons{ /* Hover state CSS */
text-decoration: underline;
}


.buttonwrapper{ /* Container you can use to surround a CSS button to clear float */
overflow: hidden; /*See: http://www.quirksmode.org/css/clearing.html */
width: 100%;
}

.roundedcornr_box_650912 {
	background: url('../images/roundedcornr_650912_tl.png') no-repeat top left;
}
.roundedcornr_top_650912 {
	background: url('../images/roundedcornr_650912_tr.png') no-repeat top right;
}
.roundedcornr_bottom_650912 {
	background: url('../images/roundedcornr_650912_bl.png') no-repeat bottom left;
}
.roundedcornr_bottom_650912 div {
	background: url('../images/roundedcornr_650912_br.png') no-repeat bottom right;
}
.roundedcornr_content_650912 {
	background: url('../images/roundedcornr_650912_r.png') top right repeat-y;
}

.roundedcornr_top_650912 div,.roundedcornr_top_650912,
.roundedcornr_bottom_650912 div, .roundedcornr_bottom_650912 {
	width: 100%;
	height: 15px;
	font-size: 1px;
}
.roundedcornr_content_650912, .roundedcornr_bottom_650912 {
	margin-top: -19px;
}
.roundedcornr_content_650912 { padding: 0 10px; }

.toolbox{
	background: url('../images/toolbox.gif') no-repeat;
	margin-top:15px;
}

/* CSS Document */


