@charset "utf-8";

body  {
  font-size: 14px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  margin: 3px 0 0 0; /* it's good practice to zero the margin and padding of the 
			body element to account for differing browser defaults */
  padding: 1px;
  text-align: center; /* this centers the container in IE 5* browsers. The text is then 
			 set to the left aligned default in the 	#container selector */
  line-height: 125%;
}

/* These are some of the standard styles defined here. */
img {
	border: 0;
}

a {
	color: #0033FF;
	text-decoration:none;
	padding: 0;
	margin: 0;
}

a:hover {
	color: #0000FF;
	text-decoration:none;
}

h1 {
  font-size: 18px;
  color:#002596;
  /*margin-bottom: 4px;*/
}

h2 {
  font-size: 16px;
  color:#1c29a7;
  /*margin-bottom: 4px;*/
}

h3 {
  font-size: 14px;
  color:#485dc5;
  /*margin-bottom: 3px;*/
}

h4 {
  font-size: 12px;
  color:#9daae2;
  /*margin-bottom: 2px;*/
}

ul {
	list-style: none;
}

input
{
	color: #000099;
	/*color: #4f6b72;padding: 2px;*/
	background-color: #EFF3F9;
	border: 1px solid #539dbc;
}

input.formInputButton { 
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  /*padding: 1px;*/
  float: right;
 }

textarea
{
	color: #000;
	background-color: #EFF3F9;
	border: 1px solid #539dbc;
}

fieldset
{
  border: 1px solid #539dbc;
  /*padding: 2px;*/
}

legend
{
	font: bold 12px Verdana, Arial, Helvetica, sans-serif;
	color: #fff;
	border: 1px solid #C1DAD7;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-align: center;
	padding: 6px 6px 6px 12px;
	background: #CAE8EA url(/icons-local/bg_header.gif) repeat-x;
}
.label
{
	color: #000099;
}


.twoColLd #container { 
	width: 90%;  /* this width will create a container that will fit in an 800px browser 
                        window if text is left at browser default font sizes changed 
                        from 46em to 800px for a fixed size*/
	min-width: 940px;
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
  	                /*border: 1px solid #000000; To put a border all the way around the page*/
	text-align: left; /* this overrides the text-align: center on the body element. */
}

/* CSS Document */
.twoColLd #header {
	width: 100%;
	min-width: 940px;
	margin-left: auto;
	margin-right: auto;
}

.twoColLd #header a {
	text-decoration: none;
	color: #0099FF;
	font-size:14px;
	margin: 0;
	padding: 0;
}

.twoColLd #header .logo {
	float: left;
	width: 22%;
	/*min-width: 230px;*/
	height: 57px;
}

.twoColLd #header .headercontent {
	width: 78%;
	/*min-width:710px;*/
	height: 57px;
	float: right;
	text-align: right;
	/*clear: right;*/
}

.twoColLd #header .headercontent h1, h2 {
	padding-top: 10px;
	padding-right: 20px; /* using padding instead of margin will allow you 
				   to keep the element away from the edges of the div */
	/*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 */
}

.twoColLd #header .logolinks {
  width: 22%;
  /*min-width: 230px;*/
  height: 33px;
  background: url(/icons-local/slice3.gif) repeat-x bottom left;
  float: left;
  font-size: 14px;
  margin: 3px 0 0 0;
  padding: 0;
}

.twoColLd #header .logolinks a:hover {
  color: #FF0000;
}
.twoColLd #header .mainlinks {
  height: 33px;
  bottom:0;
  background: url(/icons-local/linksbg1.gif) repeat;
  color: #FFFFFF;
  width: 78%;
  /*min-width:710px;*/
  float: right;
  margin: 3px 0 0 0;
  padding: 0;
}

.twoColLd #header .mainlinks img {
  vertical-align: middle;
  margin: 0;
  padding: 0;
}

.twoColLd #header .mainlinks a {
  padding: 3px 10px 3px 10px;
  margin: 0;
  color: #FFFFFF;
}

.twoColLd #header .mainlinks a:hover {
	/*color: #000;*/
	color: #4891dc;
	background: #fff url(/icons-local/tl1.gif) left bottom no-repeat;
}

.twoColLd #header .mainlinks a:hover span {
	background: url(/icons-local/tr1.gif) right bottom no-repeat;
}

/* 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 ".twoColLd #sidebar1 p" rule.
*/

.twoColLd #sidebar1 {
	float: left;
	width: 15em; /* 210px since this element is floated, a width must be given and to make it flexible we can make it 12em to match 46em*/
	/* background: #EFF3F9; the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 5px 0 5px; /* top and bottom padding create visual space within this div */
	margin: 0;
}

/*  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.
*/

.twoColLd #mainContent {
	float:   left;
	margin:  0 1.5em 0 0; /* the right margin can be given in ems or pixels. 
				 It creates the space down the right side of the page. */
	padding: 15px 0 0 0;
	width:   97%;
	min-width: 640px;
}

.twoColLd #mainContent p {
  /*margin: 0;*/
  padding-right: 10px;
} 

.twoColLd #mainContent .meta {
  height: 16px;
  margin: 0;
  padding: 10px;
  background: url(/icons-local/img07.jpg) repeat-x left bottom;
}

.twoColLd #mainContent .meta .permalink {
  padding-left: 17px;
  background: url(/icons-local/img09.gif) no-repeat left center;
}

.twoColLd #mainContent .meta .comments {
  padding: 0 30px 0 19px;
  background: url(/icons-local/img08.gif) no-repeat left center;
}

dl.list1 {
  margin: 0;
  padding: 0;
  list-style: none;
}

dl.list1 dt {
  float: left;
  width: 70px;
}

dl.list1 dd {
  margin-bottom: 10px;
}

dl.list1 a {
  padding-left: 5px;
  color: #666666;
}

.twoColLd #mainContent .widebar {
  margin: 10px 0 10px 0;
  padding: 0;
  background: #F2F2F2 url(/icons-local/img11.gif) repeat-x;
  width: 99%;
}

.twoColLd #mainContent .widebar #colA {
  float: left;
  width: 33%;
  padding: 0;
  margin: 0;
}

.twoColLd #mainContent .widebar #colB {
  float: left;
  width: 33%;
  padding: 0;
  margin: 0;
}

.twoColLd #mainContent .widebar #colC {
  float: left;
  width: 33%;
  padding: 0;
  margin: 0;
}

.twoColLd #mainContent .fixeddiv {
  margin: 0;
  padding: 0;
  width:80%;
  height:300px;
  overflow: auto;
}

.twoColLd #ajaxdivcontainer {
  border:1px solid gray;
  width:100%;
  margin: 0 0 1em 0;
  padding: 10px 10px 10px 10px;
}

.twoColLd #mainContent .auto_complete {
  position:absolute;
  width:200px;
  background-color:white;
  border:1px solid #888;
  margin:0 0 0 110px;
  padding:0;
}

.twoColLd #mainContent .auto_complete ul {
  border:1px solid #888;
  margin:0;
  padding:0;
  width:100%;
  list-style-type:none;
}

.twoColLd #mainContent .auto_complete ul li {
  margin:0;
  padding:3px;
}
.twoColLd #mainContent .auto_complete ul li.selected {
  background-color: #ffb;
}
.twoColLd #mainContent .auto_complete ul strong.highlight {
  color: #800; 
  margin:0;
  padding:0;
}

.twoColLd #mainContent .contacts  {
  list-style-type: none;
  margin:0px;
  padding:0px;
}

.twoColLd #mainContent .contacts li.selected { 
  background-color: #ffb; 
}

.twoColLd #mainContent .contact {
  list-style-type: none;
  display:block;
  margin:0;
  padding:2px;
  height:32px;
}

.twoColLd #mainContent .contact div.image {
  float:left;
  width:32px;
  height:32px;
  margin-right:8px;
}

.twoColLd #mainContent .contact div.name {
  font-weight:bold;
  font-size:12px;
  line-height:1.2em;
}

.twoColLd #mainContent .contact div.email {
  font-size:10px;
  color:#888;
}

.twoColLd #list {
  margin:0;
  margin-top:10px;
  padding:0;
  list-style-type: none;
  width:250px;
}

.twoColLd #list li {
  margin:0;
  margin-bottom:4px;
  padding:5px;
  border:1px solid #888;
  cursor:move;
}


.twoColLd #mainContent .nolist {
	list-style: none;
}

.twoColLd #mytable {
	/*width: 100%;*/
  border-collapse: collapse;
  padding: 0;
  margin: 0;
}

.twoColLd #mytable caption {
  padding: 0 0 5px 0;
  font: italic 11px Verdana, Arial, Helvetica, sans-serif;
  text-align: right;
}

.twoColLd #mytable tfoot {
  background-color: #DDD;
}

.twoColLd #mytable th {
  font: bold 11px Verdana, Arial, Helvetica, sans-serif;
  color: #ffffff;/*#4f6b72;*/
  border-right: 1px solid #C1DAD7;
  border-bottom: 1px solid #C1DAD7;
  border-top: 1px solid #C1DAD7;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  padding: 6px 3px 6px 3px;
  background: url(/icons-local/bg_header.gif) repeat;
  /*#CAE8EA */
}

.twoColLd #mytable th.nobg {
  border-top: 0;
  border-left: 0;
  border-right: 1px solid #C1DAD7;
  background: none;
  color: #4f6b72;
}

.twoColLd #mytable td {
  border-right: 1px solid #C1DAD7;
  border-bottom: 1px solid #C1DAD7;
  background: #fff;
  padding: 6px 6px 6px 12px;
  color: #4f6b72;
}


.twoColLd #mytable td.alt {
  background: #F5FAFA;
  color: #797268;
}

.twoColLd #mytable th.spec {
  border-left: 1px solid #C1DAD7;
  border-top: 0;
  background: #fff url(/icons-local/bullet1.gif) no-repeat;
  font: bold 10px Verdana, Arial, Helvetica, sans-serif;
  color: #797268;
}

.twoColLd #mytable th.specalt {
  border-left: 1px solid #C1DAD7;
  border-top: 0;
  background: #f5fafa url(/icons-local/bullet2.gif) no-repeat;
  font: bold 10px Verdana, Arial, Helvetica, sans-serif;
  color: #797268;
}

.twoColLd #footer { 
  padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
  margin: 0;
} 

.twoColLd #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: 0;       /* padding on this element will create space, just as the the 
		      margin would have, without the margin collapse issue */
  text-align:center; /* Standard of the footer text is always center */
  background-color:#CCCCCC;
}

/* Miscellaneous classes for reuse */

.fltrt { 
  /* 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;
}

.fltlft {                  /* 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;
}

/* Ajax tabs section */
.shadetabs{
  padding: 3px 0;
  margin-left: 0;
  margin-top: 1px;
  margin-bottom: 0;
  font: bold 12px Verdana;
  list-style-type: none;
  text-align: left; /*set to left, center, or right to align the menu as desired*/
}

.shadetabs li{
  display: inline;
  margin: 0;
}

.shadetabs li a{
  text-decoration: none;
  position: relative;
  z-index: 1;
  padding: 3px 7px;
  margin-right: 3px;
  border: 1px solid #778;
  color: #2d2b2b;
  background: white url(/icons-local/shade.gif) top left repeat-x;
}

.shadetabs li a:visited{
  color: #2d2b2b;
}

.shadetabs li a:hover{
  text-decoration: underline;
  color: #2d2b2b;
}

.shadetabs li a.selected{ /*selected main tab style */
  position: relative;
  top: 1px;
}

.shadetabs li a.selected{ /*selected main tab style */
  background-image: url(/icons-local/shadeactive.gif);
  border-bottom-color: white;
}

.shadetabs li a.selected:hover{ /*selected main tab style */
  text-decoration: none;
}


/* table definitions */
table.rs1 { 
  border-collapse: collapse; 
  border:  2px solid #ffffff; 
  padding: 4px;
  width: 920px;
}

/*  alternating table style  */
tr.rs1-even { background-color: #FFFFFF;} /* gray       */
tr.rs1-odd  { background-color: #DDDDDD;} /* light gray */

td.rs1  {    
  vertical-align: top; 
  border: 2px solid #ffffff;
  border-spacing: 2px;
  text-decoration: none;
  text-align: left;
}

td.rs1-c  {    
  vertical-align: top; 
  border: 2px solid #ffffff;
  border-spacing: 2px;
  text-decoration: none;
  text-align: center;
}

td.rs1-r  {    
  vertical-align: top; 
  border: 2px solid #ffffff;
  border-spacing: 2px;
  text-decoration: none;
  text-align: right;
}

td.rs1-r-fixed  {    
  vertical-align: top; 
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;	
  font-style: normal; 
  line-height: normal;	
  font-weight: normal;	
  border: 2px solid #ffffff;
  border-spacing: 2px;
  text-decoration: none;
  text-align: right;
}


th.rs1 { 
  border: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
/*  padding: 1em 1.5em 0.1em 0.5em; */
  padding: 4px;
  font-size: 15px;
  font-weight: bold;
  font-variant: normal;
  color: #3333FF;
  background-color: #AAAAAA;
  text-decoration: none;
  text-align: left;
}
