.clear
{
	clear: both;
	padding-bottom: 1px;	/* for Gecko-based browsers */
	margin-bottom: -1px;	/* for Gecko-based browsers */
}
.hide
{
	display: none !important;
}
.inside
{
	/* glitch in IE caused by vertical padding in this class, so 0 padding is
	 * set here and those blocks that need the vertical padding must be 
	 * applied to the parent element. the purpose of this class is to provide
	 * horizontal padding without using hacks to get around IE's broken box 
	 * model. so it's okay to apply vertical padding to the parent element, 
	 * just not horizontal padding.
	 */
	/*padding: 0 1em; */
	padding: 0 10px 0 10px;
}

ul, ol, dl, p, h1, h2, h3, h4, h5, h6
{
	/*margin-top: 14px;
	margin-bottom: 14px;*/
	padding-top: 0;
	padding-bottom: 0;
	font-size: 13px;
}

em
{
    font-size: 11px;   
}
/*h1
{
	font-size: 18px;
	height: 30px;
}*/
/*h2
{
	font-size: 16px;
	color: #4a4774;
    font-weight:bold;
	margin-bottom:-14px;
	    
}
h3
{
	font-size: 14%;
	font-weight:bold;
	margin-bottom:-14px;
}
h4
{
	font-size: 14px;
}
h5
{
	font-size: 14px;
}
h6
{
	font-size: 14px;
}*/

/* alter some HTML elements' default style
 */
a, a:link, a:visited, a:active
{
	text-decoration: underline;
}
a:hover
{
	text-decoration: none;
}
code
{
	font-family: "Courier New", Courier, monospace;
}
label
{
	cursor: pointer;
}
/*table
{
	font-size: 100%;
}
td, th
{
	vertical-align: top;
} */

/* now we craft the core layout of the page. this includes positioning and
 * gutter space. colors and fonts should not come into play at this point.
 * when defining a border, default its color to white which is probably
 * the safest thing to do.
 */
body
{
	margin: 5px 0px 5px 0px; /*margin instead of padding for the gutterspace around 
	 			   the layout because IE breaks the layout when 
	 			   horizontal padding is applied to the body element.
	 			   % over pixels for that horizontal gutterspace so that
	 			   it automatically goes below 20px on low-res browsers
	 			   to create more space for the content. */
	font-size: 100.1%;	/* resolve some font size issues in some layouts for
				   some browsers. (in other words, i got no clue.) */
	background-color: #000;
}
#pageWrapper
{
	width: 646px;
	margin: 0 auto;
	border: solid 1px #fff;
	border-width: 0 1px;
	min-width: 40em;	/* IE doesn't understand this property. EMs are used
				   so that as the font size increases, the proportional
				   limitations (min-width) increase with it, rather
				   than creating a middle column that can only fit
				   3 or 4 characters in it. */

}
* html #pageWrapper
{
	/* \*/
		word-wrap: break-word;
	/* invalid CSS but keeps IE from breaking horribly under narrow viewports */
}

#masthead
{
	border: solid 1px #fff;
	border-width: 1px 0;
	padding: 0.5em;
	height: 125px;
}
#masthead h1
{
	padding: 0;
	margin: 0;
}





#outerColumnContainer
{
	/* reserves space for the left and right columns. you can use either
	 * padding, margins, or borders, depending on your needs. however you
	 * can use the border method to create a background color for both left
	 * and right columns
	 */
	border-left: solid 14em #fff;
	/*
	border-right: solid 14em #fff; */
}
#innerColumnContainer
{
	border: solid 1px #fff;
	border-width: 0 1px;
	margin: 0 -1px;		/* compensate for the borders because of
				   100% width declaration */
	width: 100%;
	z-index: 1;
}
#leftColumn, #middleColumn, * html #SOWrap
{
	overflow: visible;	/* fix for IE italics bug */
	position: relative;	/* fix some rendering issues */
}

#SOWrap
{
	float: left;
	margin: 0 -1px 0 0;
	width: 100%;
	z-index: 3;
}

#middleColumn
{
	float: right;
	margin: 0 0 0 -1px;
	width: 100%;
	z-index: 5;
}

#middleColumn h1
{
	margin-top: 0px;
	/*border-bottom-width: thin;
	border-bottom-color: #999999;
	border-bottom-style:solid;*/
	font-size: 18px;
	height: 30px;
	padding-top: 5px;
}

#middleColumn h2
{
padding-top:10px;
     	font-size: 16px;
	color: #4a4774;
    font-weight:bold;
    margin-bottom: -14px;
     
}

#middleColumn h3
{
	font-size: 14px;
	font-style: italic;
	/*font-weight:bold; */
	padding-top: 10px;
	margin-bottom:-14px;
	border-bottom: solid 1px #4a4774;
}

#middleColumn p
{
    text-align:justify;   
}

#leftColumn
{
	float: left;
	margin: 0 1px 0 -14em;
	width: 14em;
	z-index: 4;
	top: 0px;
}

#footer
{
	border: solid 1px #fff;
	border-width: 1px 0;
	padding: 0.5em;
}

p.fontsize-set
{
	text-align: center;
}
p.fontsize-set img
{
	border-width: 0;
}


/* everything below this point is related to the page's "theme" and could be
 * placed in a separate stylesheet to allow for multiple color/font scemes on
 * the layout. you should probably leave a default theme within this stylesheet
 * just to be on the safe side.	
 */
#pageWrapper, #masthead, #innerColumnContainer, #footer
{
	border-color: #565;
}
html, body
{
	/* note that both html and body elements are in the selector.
	 * this is because we have margins applied to the body element
	 * and the HTML's background property will show through if
	 * it is ever set. _DO_NOT_ apply a font-size value to the
	 * html or body elements, set it in #pageWrapper.
	 */
	background-color: #eee;
	color: #000;
	font-family: arial, helvetica, sans-serif;
}

#pageWrapper
{
	font-size: 13px;	/* set your default font size here. */
}
#masthead
{
	background-color: #fff;
	color: #fff;
}

#outerColumnContainer
{
	border-left-color: #e0e0e0;	/* left column background color */
	border-right-color: #60A1E6;	/* right column background color */
	background-color: #fff;		/* set the background color for the
					   middle column here */
}

#footer
{
	background-color: #4a4774;    /*#4993E3;*/
	color: #fff;
	text-align: center;
}


