/* Start of CMSMS style sheet 'main stylesheet' */
/*****************
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: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size:12px;
    margin:0;
padding:0;
}

/*
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: underline;
/* 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: #18507C; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #18507C;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   background-color: #C3D4DF;
   color: #385C72;
}

/*****************
basic layout 
*****************/
body {
   background-color: white;
     margin:0 auto; /* gives some air for the pagewrapper */
padding:0;
}

/* center wrapper, min max width */
div#pagewrapper {
   margin: 0 auto;     /* this centers wrapper */
 min-height:800px;
width: 920px;
   background-color: white;
   color: black;
}


/*****************
Soong additions
*****************/
.blue_box {
	border: 1px solid #e6e6e6;
	border-top: 5px solid #0066ff;
	float: left;
	display: block;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

div#blue_box_h2 {
	text-transform: uppercase;
	line-height: 200%;
	color: #0066ff;
	font-family: arial, "lucida console", sans-serif;
	font-size: 140%;
	font-weight: 140%;
	display: block;
	padding-top: 12px;
	padding-bottom: 12px;
	padding-right: 2px;
	padding-left: 2px;
	margin-top: 18px;
	margin-bottom: 14px;
	display: inline;
}

div#blue_box_p {
  font-family: arial, "lucida console", sans-serif;
	display: inline;
}

.orange_box {
	border: 1px solid #e6e6e6;
	border-top: 5px solid #ff6600;
	float: left;
	display: block;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

div#orange_box_h2 {
	text-transform: uppercase;
	line-height: 200%;
	color: #ff6600;
	font-family: arial, "lucida console", sans-serif;
	font-size: 140%;
	font-weight: 140%;
	display: block;
	padding-top: 12px;
	padding-bottom: 12px;
	padding-right: 2px;
	padding-left: 2px;
	margin-top: 18px;
	margin-bottom: 14px;
	display: inline;
}

div#orange_box_p {
  font-family: arial, "lucida console", sans-serif;
	display: inline;
}

.green_box {
	border: 1px solid #e6e6e6;
	border-top: 5px solid #006600;
	float: left;
	display: block;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

div#green_box_h2 {
	text-transform: uppercase;
	line-height: 200%;
	color: #006600;
	font-family: arial, "lucida console", sans-serif;
	font-size: 140%;
	font-weight: 140%;
	display: block;
	padding-top: 12px;
	padding-bottom: 12px;
	padding-right: 2px;
	padding-left: 2px;
	margin-top: 18px;
	margin-bottom: 14px;
	display: inline;
}

div#green_box_p {
  font-family: arial, "lucida console", sans-serif;
	display: inline;
}


 /* set background images for corners */
.rbroundbox { background: url(/AA/images/simple_backgroundv2.gif) repeat; }
.rbtop div  { background: url(/AA/images/simple_top_leftv2.gif) no-repeat top left; }
.rbtop      { background: url(/AA/images/simple_top_rightv2.gif) no-repeat top right; }
.rbbot div  { background: url(/AA/images/simple_bottom_leftv2.gif) no-repeat bottom left; }
.rbbot      { background: url(/AA/images/simple_bottom_rightv2.gif) no-repeat bottom right; }

 /* height and width details */
.rbtop div, .rbtop, .rbbot div, .rbbot {
	width: 100%;
	height: 10px;
	font-size: 1px;
}
.rbcontent  { margin: 0 5px; }
.rbroundbox { width: 120px; margin: auto; }

.rbtext {color : white;}
.rbtextHdg {color : white; font-size: 120%; }

div#googleadsmiddle {
   margin: 0 auto;     /* this centers wrapper */
width: 920px;
   padding:0;
}


div#googleads {
    position: absolute;
    right: 0px;
}

div#googleadsleft {
    position: absolute;
    left: 0px;
}

div#RHSJobDescLinks{
width:150px;
min-height:550px;
float:left;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/

.top_header
{
	width: 100%;
	background-color: #006699;
	height:127px;
	float:left;
margin:0;
padding:0;
}

div#header {
   height: 127px; /* adjust according your image size */
   width:920px;
margin:0 auto;

background: white url(AA/images/GISbanner.jpg) no-repeat;           
}

div#header h1 a {
/* you can set your own image here */
   background: #385C72 url(AA/images/GISbanner.jpg) no-repeat; 
   display: block; 
   height: 127px;             /* adjust according your image size */
   width:920px;
text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

div#search {
   float: right;
   width: 23em;     /* enough width for the search input box */
   text-align: right;
   padding: 0.6em 0 0.2em 0;
   margin: 0 1em;
}

div.breadcrumbs {
   padding: 1em 0 1.2em 0; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 90%;             /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
   margin: 0 1em;              /* css shorthand rule will be opened to be "0 1em 0 1em" */
   border-bottom: 1px dotted #000;
}

 div.breadcrumbs span.lastitem { 
   font-weight:bold; 
 } 

 div#content {
   /* margin: 1.5em auto 2em 0; some air above and under menu and content */
width:920px;
}

div#main {
width:464px;
min-height:550px;
float:left;
}


div#sidebar {
   float: left;  /* set sidebar on the left side. Change to right to float it right instead. */
   width: 456px;    /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX ie doublemargin bug */
   margin-left: 0;
   


}

/* if sidebar doesnt include menu but content add class="hascontent" */
div#sidebar.hascontent {
    width: 10px;  /* make width smaller if there's padding, or it will get too wide for the floated divs in IE 
background-color:blue;
*/
}

div#footer {
   height:40px;
  clear:both;       /* keep footer below content and menu */
   color: #fff;
   background-color: #006699 /* same bg color as in header */
}

div#footer p {
   font-size: 0.8em;
   /* padding: 1.5em;       some air for footer */
   text-align: center; /* centered text */
   margin:0;
padding-top:15px;
}

div#footer p a {
   color: #fff; /* needed becouse footer link would be same color as background otherwise */
}

/* as we hid all hr for accessibility we create new hr with extra div element */
//div.hr {
//   height: 1px;
//   margin: 1em;
//   border-bottom: 1px dotted black;
//}

/* relational links under content */
div.left49 {
  float: left;
  width: 49%;  /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {
  float: right;
  width: 49%;
  text-align: right;
}




/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
div#content h1 {
   font-size: 20px;  /* font size for h1 */
   margin: 0;
color:#006699;
 font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
}
div#content h2 {
   color: #294B5F; 
   font-size: 1.5em; 
   text-align: left; 
/* some air around the text */
   padding-left: 0.5em;
   padding-bottom: 1px;
/* set borders around header */
   border-bottom: 1px solid #e7ab0b; 
   border-left: 1.1em solid #e7ab0b; 
   line-height: 1.5em;
/* and some air under the border */
   margin: 0 0 0.5em 0;
}
div#content h3 {
   color: #006699;
   font-size: 20px;
   margin-top:10px;
   margin-bottom:10px;
}
div#content h4 {
   color: #006699;
   font-size: 20px;
   margin-top:20px;
   margin-bottom:10px;
}
div#content h5 {
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p
{
padding:0;
marging:0;
}
blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
pre {
   font-family: monospace;
   font-size: 1.0em;
}
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 {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 1em;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%;   /* smaller font size, as these are usually not so important data */
}

/* END TEXT */

/* LISTS */
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;
}

div#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}
div#dl dd {
   margin: 0 0 0 3em;
}
/* END LISTS */

/*EBR PROPERTIES*/

.job_search_box
{
margin-top:20px;
width:377px;
height:150px;
background-color:white;
background-image: url(AA/images/new_bg_form2.jpg);
background-repeat: no-repeat;
line-height: 25px;
}

.job_search_box tr
{
border-bottom:0px;
}
.job_search_box td
{
border-bottom:0px;
}

.form_search tr td
{
border-bottom:0px;
}



.job_search_box_heading
{
color:white;
font-size: 20px;
padding-left: 20px;
padding-top:5px;
margin:0;
}

.job_search_box input
{
margin-left:5px;
width:193px;
}

.job_search_box select
{
margin-left:5px;
width:197px;
}

.inside_search_box
{
color:white;
font-weight:bold;
}

.search_box_form
{
margin-top:10px;
}

.button0 input
{
margin-top:5px;
width:60px;
color:black;
font-size:12px;
font-weight:bold;
}

.button1 input
{
padding:0;
margin-top:5px;
width:135px;
color:black;
font-size:12px;
font-weight:bold;
}



.latest_job_box table { border-collapse:collapse; }

.publication_box
{
width:456px;
height:208px;
background-color:white;
}





.small_text_under_publications
{
font-size:10px;
}
.about_this_site
{
width:369px;
height:170px; 
margin-left:60px;
margin-top:20px;
line-height:16px;
}



.rss_feed_box
{
width:369px;
height:60px; 
margin-left:60px;
margin-top:15px;
font-size:12px;
}

.daily_tip_box
{
border-top:1px solid grey;
width:369px;
height:100px; 
margin-left:60px;
font-size:12px;
}

div #two_images_box
{
width:369px;
height:100px; 
margin-left:60px;
}

div #two_images_box tr td
{
border-bottom:0px;
}

div #two_images_box a
{
font-size:20px;
text-decoration:none;
margin-top:20px;
}

.two_images_box_left
{
float:left;
}
.two_images_box_right
{
float:left;
}

.book
{
height: 250px;
background-color:blue;
}

.row:hover{ background-color: #ccc; }

.contact_us_box_whole
{
margin-top:0;
width:170px;
margin-bottom:20px;
float:left;

}

.contact_us_box
{
border:solid 1px blue;
width:162px;
margin-top:20px;
float:left;

}
.contact_us_box p
{
padding-left:5px;
padding-right:5px;
padding-top:15px;
color:black;
}

.contact_us_box img
{
padding-right:10px;
padding-bottom:15px;
}

.contact_us_box_heading
{
background-color: #006699;
width:158px;
height:30px;
color:white;

padding-left:5px;
float:left;
margin-bottom:10px;
font-size:20px;
}
/*hover*/

.latest_job_box
{
padding-top:10px;
width:456px;
height:320px;
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size:12px;
}

.latest_job_box tr{
        background-color: white;
border-bottom:1px solid grey;
      }

.highlight{ 
        background-color: #B8CDDC;
        cursor: pointer;
border-bottom:1px solid grey;
      }

.latest_job_box tr.highlight{ 
        background-color: #B8CDDC;
        cursor: pointer;
border-bottom:1px solid grey;
      }

.latest_job_box a
{
color:black;
text-decoration: none;
}

.latest_job_box a:hover
{
background-color:#B8CDDC;
}

.no_underline a
{
texxt-decoration:none;
color:black;
}


#table { border-collapse:collapse; }
#td { border-bottom:1px solid #111; }





.margin_top_job_search
{
margin-top:20px;
}


/* End of 'main stylesheet' */

