/**
 * One True Layout
 */

a, a:visited {
	color: #FFF;
}

#block_1
	{
	float: left;
    background: #1CD400;
	width: 450px;
	}
#block_2
	{
	float: left;
	width: 290px;
    margin-left:10px;
    background: #7366FF;
	}
/* Start Mac IE5 filter \*/
#block_1, #block_2
	{
	padding-bottom: 32767px !important;
	margin-bottom: -32767px !important; 
	}
/* End Mac IE5 filter */
#wrapper
	{
	overflow: hidden; /* This hides the excess padding in non-IE browsers */
	}
/* we need this for IE 5.01 - otherwise the wrapper does not expand to the
necessary height (unless fixed, this problem becomes even more acute 
weirdness as the method is enhanced */
#wrapper
	{
/* Normally a Holly-style hack height: 1% would suffice but that causes 
IE 5.01 to completely collapse the wrapper - instead we float it */
	float: left;
/* NB. possibly only IE 5.01 needs to get this float value - otherwise 5.5 sometimes 
(I saw it happen many moons ago) makes the width of wrapper too small 
the float: none with the comment is ignored by 5.01,
5.5 and above see it and carry on about their business
It's probably fine to just remove it, but it's left here 
just in case that many moons ago problem rears its head again */
	float/**/: none;
	}
/* easy clearing */
#wrapper:after
	{
	content: '[DO NOT LEAVE IT IS NOT REAL]'; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
	}
#wrapper
	{
	display: inline-block;
	}
/*\*/
#wrapper
	{
	display: block;
	}
/* end easy clearing */
#footer
	{
	clear: both;
	}
/* Safari needs this - otherwise the ghost overflow, though painted 
correctly obscures links and form elements that by rights should be above it.
An unintended side-effect is that it cause such elements to vanish in IE 5.01
and 5.5, hence the child selector hack */
* > #footer, * > form, * > #notes, * > .output
	{
	position: relative;
	z-index: 1000;
	}
/**
 * End One True Layout
 */

body {
    font-family:verdana, georgia, sans-serif;
}

#hd {
    height:5em;
    border-bottom:10px solid #D9D6B8;
    margin-bottom:10px;
}

#hd h1 {
    font-size:250%;
    color:#1CD400;
    font-weight:bold;
    text-decoration:underline;
}

#hd h2 {
    color: #7366FF;
}

#main {
    padding:10px;
    color:#FFF;
    font-weight:bold;
}

#main #contactNow {
    clear:both;
    font-size:150%;
    margin:20px 0px;
}

#main img {
    float:right;
    margin:-10px -10px 10px 10px;
    border-left:10px solid #FFF;
    border-bottom:10px solid #FFF;

}

#side {
    padding:10px;
    color:#FFF;
}

#side ul {
    margin:10px;
}

#side ul li {
    font-size:77%; 
}

#side p#contact {
    border-top:10px solid #FFF;
    margin:0px -10px;
    padding:10px;
}

#ft {
    border-top:10px solid #D9D6B8;
    margin-top:10px;
    padding-top:10px;
    color: #7366FF;
}

