@charset "utf-8";


/****************************************************/
/* INNER LAYOUT                                     */
/****************************************************/

#headerInner {
	padding: 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. */
	margin: 0 0 28px 0px;
} 
#headerInner h1 {
	margin: 0px; /* 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: 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#headerInner div.ET_outerBorder iframe{
	width: 575px;
}

#sidebar1Inner {
	float: left; /* since this element is floated, a width must be given */
	width: 189px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px; /* padding keeps the content of the div away from the edges */
	margin: 0px;
}
#sidebar1Inner div.ET_outerBorder iframe{
	width: 185px;
}
#sidebar2Inner {
	float: right; /* since this element is floated, a width must be given */
	width: 189px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px; /* padding keeps the content of the div away from the edges */
	margin: 0px;
}
#sidebar2Inner div.ET_outerBorder iframe{
	width: 185px;
}
* html #mainContentInner {
	margin: 0 0 0 192px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width: 189px;
} 
#mainContentInner {
	margin: 0 0 0 195px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width: 189px;
} 
#mainContentInner div.ET_outerBorder iframe{
	width: 185px;
}


#mainContentInner .longModuleContent {min-height:300px;}
* html div#mainContentInner .longModuleContent {height:300px;}