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

/* 
  min width = 1000px 
  left col = 240px 
  right col = 215px + 20px border
  center col min = 535px
 */
 
* { 
	/* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */	
	padding:0; margin:0;
}

/* div { border:1px solid #ff0000; } */

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	background:url(../images/gy_lines_bac.gif);

/* it's good practice to zero the margin and padding of the body element to account for differing browser defaults 	*/
    margin: 0; 
	padding: 0;
	
/* Centers the container for IE 5* browsers. The text is then set to the left aligned default in the #container selector */	
	text-align: center; 
	color: #000000;
}

/* Tips for this Hybrid layout
1. Since the side columns em-based sizing is based on the user's default font size, you will want to be sure that background graphics in the columns take that into account. Built correctly, this is more accessible for those that need larger font sizes, since the width of the columns remains proportionate. If this is undesirable with your design, simply change the width to a pixel size and be sure to change the margins on the #mainContent div accordingly.

2. Since the sizing of side columns in this layout are based on the 100% font size in the body element, if you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the column widths will downsize proportionately. You may want to increase their widths, and the size of the #mainContent div's side margins, to compensate for this.

3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.

4. The #container div is not necessary for this layout at the 100% width. You may want to use it to create faux columns or limit the width of the layout.

5. It is not neccessary to have the 100% width on the #container div since, by nature, a div takes up 100% of the available space. It is here so that if you want to decrease the size of the overall container - perhaps leaving a bit of margin on each side - this will already be available for adjustment.
*/
.thrColHybHdr #container {
	width: 100%; /* Controls overall width */
	min-width: 1000px; /* Controls overall minimum width */
	margin:auto; /* centers the container in the screen */
	background: #cbc0a2;
	position:relative;
	/*margin: 0 auto;  the auto margins (in conjunction with a width) center the page if needed */
	text-align: left; /* this overrides the text-align: center on the body element. */
}  

.thrColHybHdr #innercontainer {
	/* border-left-width: 20px;
	border-left-style: solid;
	border-left-color: #cbc0a2;
	*/
	border-right-width: 20px;
	border-right-style: solid;
	border-right-color: #cbc0a2;
	padding:0; margin:0;
	  background: #FFFFFF; 
	  	background-image:url(../images/edgeborder.jpg);
	background-repeat: repeat-y;
	background-position: left;
	
	color:#444444;
	font-family:verdana;
	font-size:11px;
	line-height:15px;
}

.thrColHybHdr #header { 
    display:none; /* Hiding for Now */
	background: #DDDDDD; 
	padding: 0 10px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 

.thrColHybHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	/*padding: 10px 0;  using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".thrColHybHdr #sidebar1 p".
*/
.thrColHybHdr #sidebar1 {
	
	float: left; /* left Column */
	width: 11em; /* since this element is floated, a width must be given */
	width: 230px; /* since this element is floated, a width must be given */
	/*background: #EBEBEB;  the background color will be displayed for the length of the content in the column, but no further */
	/*padding: 15px 0;  top and bottom padding create visual space within this div */

	border-right-width: 1px;
	border-right-style: solid;
 	border-right-color: #990000;
}
.thrColHybHdr #sidebar2 {
   
	float: right; /* Right Column */
	width: 11em; /* since this element is floated, a width must be given */
	width: 205px; /* since this element is floated, a width must be given */
	/*background: #EBEBEB;  the background color will be displayed for the length of the content in the column, but no further */
	padding: 14px 0; /* top and bottom padding create visual space within this div */
 	background-color: #f1f2f2;
 	
	
}
 /* Set left column margins */
.thrColHybHdr #sidebar1 h3, .thrColHybHdr #sidebar1 p {
	margin-left: 30px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 30px;
	margin-bottom: .5em;
}

/* Set right column margins */
.thrColHybHdr #sidebar2 p, .thrColHybHdr #sidebar2 h3, .thrColHybHdr hr{
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
	margin-bottom: .5em;
}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.

2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.thrColHybHdr #mainContent {
 	margin: 0 12em 0 12em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */ 
	padding: 0 2em 0 2em; /* padding here creates white space "inside the box." */
	margin-left: 230px;
	padding-right: 0px;
	padding-top: 20px;
	padding-left: 20px;
	margin-right: 215px;
	border-top-width: 1px;
	border-top-style: solid;
 	border-top-color: #990000;
	 
} 

/* Set main column margins */
.thrColHybHdr #mainContent h1, .thrColHybHdr #mainContent h2, .thrColHybHdr #mainContent h3 {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
	/* margin-bottom: .2em; */
	z-index:1;
}

.thrColHybHdr #mainContent p, .thrColHybHdr #mainContent form { 
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
 	margin-bottom: 1em; 
	position:relative;
	z-index:100;

	
}

 
 
.thrColHybHdr #mainContent ul { 
	margin-left: 40px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 20px;
 	margin-bottom: 1em; 
z-index:100;
position:relative;
}
.thrColHybHdr #footer { 
	padding: 0 30px; /* this padding matches the left alignment of the elements in the divs that appear above it.
	background:#DDDDDD; */
} 
.thrColHybHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/* Miscellaneous classes for reuse */
.float-element-right { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.float-element-left { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

/* Non Column Layout Styles */
.redbar {
	background:url(../images/rd_rule.gif);
	background-color: #660000; /* LEAVE FOR NOW */
	height: 14px;
	
	overflow:hidden;
}
#subfooter {
	height:80px;
		width: 90%; /* Controls overall width */

 	margin:0 auto;	
	color:#CCCCCC;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:8pt;
	font-style:normal;
	line-height:normal;
	background:none;
	text-align:center;
	font-weight:normal;
	margin-top: 20px; 
	margin-bottom: 20px;
}

.rule {
	position:relative;
	top: -15px;
	background-color:#dbdddd;
	height:7px;
	margin-left:0px;
 
	margin-right:0px; /*  */
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
	overflow:hidden;
}

.adspam {
	width:10em;
	border:1px solid #000;
	margin:0 auto 20px auto;
	background-color:#D0C9FC
	color:#000000;
	font-family:verdana;
	font-size:16px;
	line-height:16px;
}

#banner {
	background: url(../images/diag_bac.gif) 0 0 repeat-x;
	background-color: #CBC0A3;  /* LEAVE FOR NOW */
	height: 100px;
	position:relative;
	top:34px;
}

#banner_text {
	/* padding-left: 295px;*/
	/* Viusally center in bar over content area */
	 padding-left: 31%;
}

#banner_text a {
	text-decoration:none;
}

#banner_logo {
	position: absolute;
	top: -18px;
	left: 20px; 
}
#banner_logo a{
  background:none; /* removes white background beneath image on hover */
}

#printBanner {
	background: url(../images/diag_bac.gif) 0 0 repeat-x;
	background-color: #FF0000;  /* LEAVE FOR NOW */
	height: 73px;
	display:none;
}

#iconBar {
	position: absolute;
	right: 0px;
    background-color: #CBC0A3;
	height: 30px;
	vertical-align: middle;
	padding-right: 30px;
	padding-top: 4px; 
} 
#iconBar  a{
  background:none; /* removes white background beneath image on hover */
}

#fadeBar {
	text-align: left;
	background:url(../images/fadesm.gif) 0 0 repeat-x;
	padding-right: 0px;
	margin-left:20px;  
	margin-top: 40px; 
 	height: 30px;
  
	/*
	border-right: 20px solid #CBC0A3;
	border-left: 20px solid #CBC0A3;
	background-color: #FFFFFF;
	padding: 0;
	margin: 0;
    width: 100%;*/
}

#pageHeaderGraphic {
	width:500px;
	height:48px;
	/*background-image: url(../images/PA_text.jpg);*/
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 10px;
	font-variant: small-caps;
	color: #990000;
	position:relative;
	left: 230px;
	top: 0px;
	
}
#pageHeader h1 {
	position:relative;
 	left: 230px;
	top: 180px;
	font-family: "trajan Pro", "trajan", "Goudy Modern MT Std", georgia, "times New Roman";
	font-size: 20pt;
	font-variant: small-caps;
	font-weight:normal;
	color: #990000;
	display:none;
	}
#pageHeader span {
	display: none;
}



a:link, a:visited { color: #990000; z-index:100;}
a:hover, a:active { color: #990000; text-decoration:underline; } 
a:hover { background-color: #fff; }
p a:link, p a:visited { color: #990000; z-index:100;}
ol { margin-left: 20px;}

h1{
	/*font-family: "trajan Pro", "trajan", "Goudy Modern MT Std", georgia, "times New , Roman";
	font-size: 20pt;	font-variant: small-caps;*/
	font-family:Verdana,Arial,Helvetica,sans-serif;
 	font-size: 11pt;
	font-weight: bold;
	color: #990000;
	/* line-height:22pt; */
	text-align:left;
	line-height:16pt;
}
h2, h3 { 
color:#000000;
font-family:Verdana,Arial,Helvetica,sans-serif;
font-size:10pt;
font-variant:normal;
font-weight: bold;
line-height:16pt;
text-align:left;
	padding-top:.7em;

}
h3 { color:#333333; font-size:10pt; font-weight:bold; }

.thrColHybHdr #mainContent h1.topHeader, .mod_newslist h1, .mod_newsreader h1{
	position:absolute;
	top: 200px;
	left: 220px;
	 
	text-align:left;
	vertical-align: bottom;

	font-family: TrajanPro-Regular, Georgia, Times, serif;
	color:#990000;
	font-size:18px;
	font-variant:small-caps;
	font-weight:normal;
	line-height:14px;
	text-align:left;
  	text-decoration: none;	
	width: 580px;
	/*height: 200px;*/
	z-index:1;
 
 }
#form1 { z-index: 200; position:relative; }

 .thrColHybHdr  #mainContent  h1.twolineheader  { 
   /* adjust headline for 2 lines */
   top: 170px;
   }
 /* Special case headline Image replacements */
.thrColHybHdr  #mainContent  h1.image-replacement { 
    width:500px; height:48px;
	background-repeat:no-repeat;
	position:absolute;
	top: 182px;
	left: 210px;
	
}

.thrColHybHdr  #mainContent   h1.cfpr-img img{  display:none; }
.thrColHybHdr  #mainContent   h1.cfpr-img{ 
	background-image:url(../images/headers/corpPR.jpg);
}

.thrColHybHdr  #mainContent   h1.amo-img img{  display:none; }
.thrColHybHdr  #mainContent   h1.amo-img{ 
	background-image:url(../images/headers/AMO2.jpg);
}

.thrColHybHdr  #mainContent  h1.crb-img img{  display:none; }
.thrColHybHdr  #mainContent  h1.crb-img  { 
	background-image:url(../images/headers/CRB.jpg);
}

/* RIGHT COLUMN ARTICLE BLOCK */
#sidebar2 div.articleList, 
#sidebar2 div.articleListMore,
#sidebar2 div.mod_newslist   {
 	position:relative;
	top: -16px;
	
	margin-left: 10px;
	margin-bottom:4px;
	}
	
	#sidebar2 div.articleListMore { top: -6px; }

#sidebar2 div.articleList h2, #sidebar2 div.mod_newslist h2 {
	color:#666666;
	color:#888888;
	color:#990000;
	font-size:11px;
	font-family: Tahoma, Arial;
	font-weight: bold;
	margin-bottom:6px;
	}

#sidebar2 div.articleList ul,  
#sidebar2 div.articleListMore ul{
	padding-top:0px;
	margin-top:0px;
	padding-bottom:0px;
	margin-bottom:0px;
	padding-right:15px;
	padding-left:0px;
	margin-left:0px;
	/*border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ccc; 
	*/
	text-align:left;
	background-color: #f1f2f2; 
	/*background-image:url(../images/fadeline.jpg);
	background-position: right bottom;
	background-repeat:no-repeat; */
}
#sidebar2  div.articleList ul li,
#sidebar2  div.articleListMore ul li,
#sidebar2 .layout_simple
 {
	list-style-type:none;
	FONT-SIZE: 11px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-family: Tahoma, Arial;

	font-weight:normal;
	margin-bottom:6px;
	/* position:relative; top: 10px; */
	}
#sidebar2 .layout_simple
 {		padding-right: 10px; }

#sidebar2  div.articleListMore ul li { padding-bottom:0px;  }
#sidebar2  div.articleList ul li a,
#sidebar2 div.articleListMore ul li a,
#sidebar2 div.mod_newslist a {
 
	padding-left: 10px;

	display: block;
	text-decoration: none;
 	font-weight:normal;
	COLOR: #990000; COLOR: #444; 
	font-weight:normal;
	background-image:url(../images/arr-gy.jpg);
	background-image:url(../images/arr.jpg);
	background-repeat: no-repeat;
	background-position: left 5px;
 
 }
#sidebar2  div.articleList ul li a:hover,
#sidebar2  div.articleListMore ul li a:hover,
#sidebar2 div.mod_newslist a:hover {
 	text-decoration:underline;
	COLOR: #444; COLOR: #990000; 	
	background-color: #f1f2f2;
	background-image: url(../images/doc_sm.gif);
	background-image:url(../images/arr.jpg);
	background-repeat: no-repeat;
	background-position: left 5px;
	 
	 }
#sidebar2   div.articleList ul li.last,  
#sidebar2   div.articleListMore ul li.more{ background-image:none; COLOR: #990000; text-align:right; }
#sidebar2  div.articleList ul li.last a,  
#sidebar2  div.articleListMore ul li.more a{ COLOR: #990000;  padding-right: 15px; background-image:url(../images/arr3.jpg); background-repeat:no-repeat; background-position:right;  
 
	}
#brochure {
  margin-left:25px;
  font-weight:bold;
   }
#brochure a{
 	text-decoration: none;
		FONT-SIZE: 11px;
 	font-family: Georgia, "Times New Roman", Times, serif;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	  color:#333333;


  }
#brochure a:hover{
 	text-decoration: underline; color:#990000;
  }
  
  div#contact-us label { display:block; font-weight:bold; color:#666666; }  
  div#contact-us  label.mandatory {    }
  div#contact-us  .error {
	color:#990000;
}  
div#contact-us .ce_form{ margin-left: 30px; }
div#contact-us label.error, div#contact-us span.captcha_text .error {
	color:#990000;
	background-image:url(../images/arr3.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 15px;
}

  div#contact-us input, div#contact-us textarea { margin-bottom: 10px; }
  
  
  .mod_randomImage { margin-left: 30px; margin-top: 20px;}
  
  #mainContent .mod_newsreader h2 { color: #000000; font-size:14px;  margin-top:0; padding-top: 0; }
  #mainContent .mod_newsreader h3 { color: #990000; font-size:12px; font-weight:normal;
     margin-top:0; padding-top: 0; }
  #mainContent .mod_newsreader .ce_text {
	/*border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #888888; */
}  
#mainContent .mod_newsreader .enclosure p { margin-left:10px; }
#mainContent .mod_newsreader .enclosure img {
 	vertical-align:bottom;
}

#mainContent .mod_newsreader .enclosure{
	width:99%;
	padding-top: 10px;
	padding-bottom: 2px;
	margin-top: 20px;
	margin-bottom: 10px;
	margin-left:10px;
	border-top-width: 1px;
	border-top-style: dashed;
	border-top-color: #888888;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #888888;
	 	
}
#mainContent .mod_newsreader .enclosure a{
	text-decoration:none;
 }
#mainContent .mod_newsreader .enclosure a:hover{ text-decoration:underline; }

#mainContent .mod_newslist  div.layout_short h2  {  padding-top:0; }  
#mainContent .mod_newslist  div.layout_short h2 a{ color:#000000;  text-decoration:none; padding-top:0; }  
#mainContent .mod_newslist  div.layout_short h2 a:hover{ color:#990000; text-decoration:underline; }
#mainContent .mod_newslist  div.layout_short p.info {
	color:#888888;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	margin-bottom:0; padding-bottom:0; line-height:12px; padding-top:4px;  
}
#mainContent .mod_newslist  div.layout_short p.more a{
	color:#990000; text-decoration:none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	margin-top:0; padding-top:0;   line-height:13px;
	
}
#mainContent .mod_newslist  div.layout_short p.more a:hover{
	color:#990000;
	text-decoration:underline;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	margin-top:0;
	padding-top:0;
	line-height:12px;

}
#mainContent .mod_newslist  p {
	 
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	margin-top:0; padding-top:0; margin-bottom:2px; padding-bottom:2px;line-height:13px;
}
#mainContent .mod_newslist div.layout_short{	
    border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #888888;
	margin-bottom: 10px;padding-bottom: 10px;
	margin-left:10px;
	}
#mainContent .mod_newslist  div.layout_short p, #mainContent .mod_newslist  div.layout_short h2{	margin-left:0; padding-left:0; }

#mainContent .pagination p  {   float:left; margin-right: 20px; }
 
#mainContent .pagination ul li {display:inline;  }
#mainContent .pagination ul li span.current { background-color:#CCCCCC; padding: 1px; padding-left: 3px; padding-right:3px; }
#mainContent .pagination ul li a {  padding: 1px; padding-left: 3px; padding-right:3px; }
#mainContent .pagination ul li a:hover { background-color:#990000;  color:#FFFFFF;}
#mainContent .pagination ul li a.previous {
	padding-left:11px;
	background-image: url(../images/arr-left.jpg);
	background-repeat: no-repeat;
	background-position: left center;
}
#mainContent .pagination ul li a:hover.previous { background-image: url(../images/arr-left-hov.jpg); }
#mainContent .pagination ul li a.next {
	padding-right:11px;
	background-image: url(../images/arr-right.jpg);
	background-repeat: no-repeat;
	background-position: right center;
}
#mainContent .pagination ul li a:hover.next { background-image: url(../images/arr-right-hov.jpg); }

/* Search Page */
#query_type { margin-top: 20px;  }

div.mod_newsreader blockquote {
	line-height:1.5em;
	letter-spacing: .01em;
	color:#000000;
	margin:20px;
	padding:20px;
	margin-left: 8%;
	margin-right: 8%;
	background-color:#eee;
	border-left:solid thick #990000;
	font-size:11px;
}

  p.drop { 
  /* related CSS is stored in Modules/image_headline headings and STR css */
  line-height:1.6em;
  /* letter-spacing: .01em; */
  color:#333;  
  font-size:13px;
  padding-right: 5%;
  font-weight: normal;
	}

.text_list { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 8pt; font-style: normal; margin-top: 2px; margin-right: 2px; margin-bottom: 2px; margin-left: 2px; line-height: 16pt;  }
/* div.mod_newsreader div.enclosure { float:right; }  */