@charset "UTF-8";

/*  File: intidyn_styles.css

    Author: Kevin Rice  

    Revised: February 6, 2010  */



body {
	font: 100% Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#000;
	background: #FFF;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	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 */
}


h1 {

	font-size:12px;

	color:#000;

}



h2 {

	font-size:11px;

	color:#666;

}

a:link {
COLOR: #D8531e;
}
a:visited {
COLOR: #D8531e;
}
a:hover {
COLOR: #D8531e;
}
a:active {
COLOR: #D8531e;
}



.news_post_datestamp {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #666;
}


#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #ddd;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header_right {
	padding: 10px 0px 0px 0px;
	float: right;
	width: 200px;
}

#header {
	padding: 0 0px 0 0px;  /* 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. */
}

#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 */
}

#header_left {
	float: left;
	padding-left: 10px;
}



#header_bottom {
	clear: both;
	height: 25px;
	background:#fff url(./images/itd_background_nav.gif) repeat-x top left;
	border-top: 1px solid #ddd;
}


#mainContent {
	clear: both;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
}
#footer {
	background:#DDDDDD;
	clear: both;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
}
#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 10px 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 10px;
}

/* Specific to Home Page */

#home_banner {
	
	border:1px solid #ccc;

	border-top:0;

	padding:4px;

} 

/* 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" rule.
*/
#home_sidebar1 {
	float: left;
	width: 19em; /* 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: 10px 0; /* top and bottom padding create visual space within this div */
}
#home_sidebar2 {
	float: right;
	width: 19em; /* 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: 10px 0; /* top and bottom padding create visual space within this div */
}
/*.thrColHybHdr #sidebar1 h3, .thrColHybHdr #sidebar1 p, .thrColHybHdr #sidebar2 p, .thrColHybHdr #sidebar2 h3 {  */

#home_sidebar1 h3, #home_sidebar1 p, #home_sidebar2 p, #home_sidebar2 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;
}



/*#home_sidebar1 {
	top: 60px;
	left: 0;
	width: 150px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
/*	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
/*	padding: 10px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
/*	float: left;
}
*/
/*#home_sidebar2 {
	top: 60px;
	right: 0px;
	width: 160px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
/*	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
/*	padding: 10px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
/*	float: right;
}
*/
/* 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.
*/
#home_middlebar {
	margin: 0 20em 0 20em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	padding: 0 1em 0 1em; /* padding here creates white space "inside the box." */
} 

/*
#home_middlebar {
	width: inherit;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}*/

/* Standard two column content webpage.  Fixed std_sidebar_left, liquid std_content */
/* Tips for sidebar1:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
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 ".twoColHybLt #sidebar1 p" rule.
*/
#std_sidebar_left {
	float: left;
	width: 12em;
	background:#fff url(./images/itd_background_page.gif) repeat-y top left;
	/*background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0;
	border: 1px solid #ddd;
	height: 600px;
}
#std_sidebar_left h3, #std_sidebar_left p {
	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;
}

/* Tips for mainContent:
1. 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.
2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/
#std_content {
	margin: 0 10px 0 13em;
	background-color: #FFF;
	zoom: 1;
} 

#content_banner {
	background-color: #d8531e;
	margin: 0px;
	padding: 10px;
}
#content_banner 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;
	color: #FFF;
	width: 100%;
	font-size: 16px;
}

#content_banner_NSP {
	background-color: #546292;
	margin: 0px;
	padding: 10px;
}
#content_banner_NSP 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;
	color: #FFF;
	width: 100%;
	font-size: 16px;
}

#content_banner_services {
	background-color: #FAA634;
	margin: 0px;
	padding: 10px;
}
#content_banner_services 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;
	color: #000;
	width: 100%;
	font-size: 16px;
}

#content_banner_research {
	background-color: #898D36;
	margin: 0px;
	padding: 10px;
}
#content_banner_research 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;
	color: #FFF;
	width: 100%;
	font-size: 16px;
}

#content_banner_customers {
	background-color: #c2dbe7;
	margin: 0px;
	padding: 10px;
}
#content_banner_customers 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;
	color: #000;
	width: 100%;
	font-size: 16px;
}
#content_banner_newsroom {
	background-color: #d8531e;
	margin: 0px;
	padding: 10px;
}
#content_banner_newsroom 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;
	color: #fff;
	width: 100%;
	font-size: 16px;
}

