body  { margin: auto; padding: 0px; background: #ffffff; color: #232323; font-size: small; line-height: 1.5em; font-family: Arial, sans-serif;text-align: center; width: 950px;}

	
/* CONTENT ELEMENTS ======================= */
img         { border: 0; }
p           { color: #232323; font-size: 100%; font-weight: normal; }
h1          { line-height: 102%; margin: 0; padding: 0px; color: #000000; font-size: 150%; font-weight: 600; }
h2          { line-height: 102%; margin: 10px 0 0 0; padding: 0px; color: #ad3526; font-size: 130%; font-weight: 600; }
h3          { line-height: 102%; margin: 10px 0 0 0; padding: 0px; color: #000000; font-size: 123%; font-weight: 600; }
h4          { line-height: 102%; margin: 10px 0 0 0; padding: 0px; color: #ad3526; font-size: 115%; font-weight: 600; }


/* NAV ELEMENTS ======================= */
a                   { color: #0033CC; text-decoration: none;}
a:visited           { color: #0033CC; text-decoration: none;}
a:hover             { color: #0033CC; text-decoration: underline;}


/* WRAPPER ======================= */
#wrapper
{
	margin-left:5%;
	margin-right:5%;
	text-align: left;	
}

/* IMAGE ALIGNMENT ======================= */
.leftimg {
float: left;
background: #ffffff;
}

.rightimg {
float: right;
background: #ffffff;
}

	
/* MASTHEAD LEFT ======================= */
#masthead { 
    padding: 0px; 
    }


/* BEGIN TOP NAV NEW ----------------------------------*/

#navigation {
        margin-top: 165px;
        background: #b2dcda;
        padding: 0;
        font-weight: bold;
        font-size: 110%;
}
#navigation ul, #navigation ul li {
        list-style: none;
        margin-top: 0px;
        padding: 3px 0px 3px 3px;

}
#navigation ul {
         margin-top: 0px;
        text-align: center;
       padding: 3px 0px 3px 3px;
}

#navigation ul li {
        display: inline;
        padding: 3px 0px 3px 3px;
}

#navigation ul li a {
        background: #da5140;
        color: #FFF;
        text-decoration: none;
        padding: 4px 4px 4px 4px;
        border: 1px solid #da5140;
}


#navigation ul li a:hover {
        background: #ad3526; 
        border-bottom: 1px solid #FE9336;
        border: 1px solid #da5140;
}

#navigation #current a {
        background: #FFFFFF;
        color: #000;
        border: 1px solid #da5140;
}



/*- Internet Explorer...It's Hacktastic!--------------------------- */

/*\*//*/
#navigation ul li a {
        display: inline-block;
        white-space: nowrap;
        padding: 4px 4px 4px 4px;
        width: 1px;
}

#navigation ul {
        padding-bottom: 0;
        margin-bottom: -1px;
}

/**/

/*\*/
* html #navigation ul li a {
        padding: 4px 4px 4px 4px;
}

/* End TOPNAV ELEMENTS ======================= */

/* BEGIN YELLOW EXPANDABLE BOX WITH GREEN ROUNDED BORDER================================ */

.tyellow {background: url(../images/orangetop.gif) 0 0 repeat-x; width: 100%}
.byellow {background: url(../images/orangebottom.gif) 0 100% repeat-x}
.lyellow {background: url(../images/orangeleft.gif) 0 0 repeat-y}
.ryellow {background: url(../images/orangeright.gif) 100% 0 repeat-y}
.blyellow {background: url(../images/orangebl.gif) 0 100% no-repeat}
.bryellow {background: url(../images/orangebr.gif) 100% 100% no-repeat}
.tlyellow {background: url(../images/orangetl.gif) 0 0 no-repeat}
.tryellow {background: url(../images/orangetr.gif) 100% 0 no-repeat; padding:8px} 
.middleyellow {background: url(../images/orangemiddle.gif) repeat-x; width: 100%; padding: 0;
margin: 0;}
/* END YELLOW EXPANDABLE BOX WITH GREEN ROUNDED BORDER ================================ */

/* CENTER COLUMN ======================= */

	#content {
		background:#FFFFFF;
		padding: 5px 10px 50px 10px;
   		border-bottom: 5px solid #00a0b4;
   		margin-top: 0px;
		/*
		IE5x PC mis-implements the box model. Because of that we sometimes have
		to perform a little CSS trickery to get pixel-perfect display across browsers.
		The following bit of code was proposed by Tantek Celik, and it preys upon a CSS
		parsing bug in IE5x PC that will prematurly close a style rule when it runs
		into the string "\"}\"". After that string appears in a rule, then, we can override
		previously set attribute values and only browsers without the parse bug will
		recognize the new values. So any of the name-value pairs above this comment
		that we need to override for browsers with correct box-model implementations
		will be listed below.
		
		We use the voice-family property because it is likely to be used very infrequently,
		and where it is used it will be set on the body tag. So the second voice-family value 
		of "inherit" will override our bogus "\"}\"" value and allow the proper value to
		cascade down from the body tag.

		The style rule immediately following this rule offers another chance for CSS2
		aware browsers to pick up the values meant for correct box-model implementations.
		It uses a CSS2 selector that will be ignored by IE5x PC.
		
		Read more at http://www.glish.com/css/hacks.asp
		*/
		
		voice-family: "\"}\"";
		voice-family: inherit;
		background:#FFFFFF;
		padding: 5px 10px 50px 10px;
   		border-bottom: 5px solid #00a0b4;
   		margin-top: 0px;
		}
	html>body #content {
		background:#FFFFFF;
		padding: 5px 10px 50px 10px;
   		border-bottom: 5px solid #00a0b4;
   		margin-top: 0px;
		}



/* FOOTER ======================= */

	#footer {
	        margin-left:5%;
	        margin-right:5%;
	        padding: 5px 5px 5px 5px;
   		font-size: 95%;
		/*
		IE5x PC mis-implements the box model. Because of that we sometimes have
		to perform a little CSS trickery to get pixel-perfect display across browsers.
		The following bit of code was proposed by Tantek Celik, and it preys upon a CSS
		parsing bug in IE5x PC that will prematurly close a style rule when it runs
		into the string "\"}\"". After that string appears in a rule, then, we can override
		previously set attribute values and only browsers without the parse bug will
		recognize the new values. So any of the name-value pairs above this comment
		that we need to override for browsers with correct box-model implementations
		will be listed below.
		
		We use the voice-family property because it is likely to be used very infrequently,
		and where it is used it will be set on the body tag. So the second voice-family value 
		of "inherit" will override our bogus "\"}\"" value and allow the proper value to
		cascade down from the body tag.

		The style rule immediately following this rule offers another chance for CSS2
		aware browsers to pick up the values meant for correct box-model implementations.
		It uses a CSS2 selector that will be ignored by IE5x PC.
		
		Read more at http://www.glish.com/css/hacks.asp
		*/
		
		voice-family: "\"}\"";
		voice-family: inherit;
   		padding: 5px 5px 5px 5px;
   		margin-left:5%;
	        margin-right:5%;
   		font-size: 95%;
		}
	html>body #footer {
   		padding: 5px 5px 5px 5px;
   		margin-left:5%;
	        margin-right:5%;
   		font-size: 95%;
		}




/* FLOAT CONTENT ======================= */

	#floatcontent {
		width:275px;
		margin: 15px 15px 0px 0px;
	        float: left;
	        top: 10px;
		font-size: 120%;
		line-height: 1.3em;
		background:#FFFEE2;
		padding: 10px 10px 10px 10px;
		}
		
/* FLOAT QUOTE ======================= */

	#quote {
		margin: 5px 15px 45px 0px;
		border: 1px dotted #00a0b4;
	        float: left;
		font-size:100%;
		line-height: 1.3em;
		background:#ffffff;
		color: #ad3526;
		padding: 10px 10px 10px 10px;
		}
		
	#quote2 {
		margin: 5px 5px 10px 15px;
		width: 250px;
		border: 1px dotted #00a0b4;
	        float: right;
		font-size:100%;
		line-height: 1.3em;
		background:#ffffff;
		color: #ad3526;
		padding: 10px 10px 10px 10px;
		}

	#quote3 {
		margin: 5px 5px 10px 15px;
		width: 300px;
		border: 1px dotted #00a0b4;
	        float: right;
		font-size:100%;
		line-height: 1.3em;
		background:#ffffff;
		color: #ad3526;
		padding: 10px 10px 10px 10px;
		}

	#quote4 {
		margin: 5px 5px 10px 15px;
		width: 240px;
		border: 1px dotted #00a0b4;
	        float: right;
		font-size:100%;
		line-height: 1.3em;
		background:#ffffff;
		color: #ad3526;
		padding: 10px 10px 10px 10px;
		}		

.small {  font-size: 90%; color: #333333; font-weight: normal; }
.button { background: #D68037; font-size:100%; font-weight: bold; color: #ffffff; margin-top: 5px;}
.form { margin-bottom: 5px;}

pre {
	FONT-SIZE: 100%;
	color: #000000;
	display: none
}


