/* 
YUI CSS Notes:
- YUI CSS nuetralizes the browser CSS for html elements in attempt to create a normailzed platform
across browsers.  It then rebuilds a consistent style foundation from which to build your template from.
- This custom CSS file builds on top of the YUI foundation.
- Font sizes should be defined using percentages.  This perserves ability for users to zoom in/out.  See 
cheatsheet here (http://developer.yahoo.com/yui/docs/assets/cheatsheets.zip) for more 
information and percent to pixel conversion chart.
*/ /* YUI CSS overrides */
body.index_page { /* YUI CSS sets a default font-family of Arial and provides a degradation path from there
	so only set one here if you wish to override that. YUI also sets a default font-size of 100% (13px) so
	the same goes for that setting. */
    padding: 15px;
    background: #CCC;
    color: #000;
    text-align: center;
}
p {}
td {}


a:link,a:visited {
    color: #490b40;
    text-decoration: none;
}

a:hover {
    color: #000;
    font-weight: bolder;
}

a:active {
    color: #6c0b40;
    font-weight: bolder;
}
	
div.container {
	margin:0px auto 0px auto;
	width:600px;
	height: 450px;
	border:1px solid #000000;
	background-color:#FFF;
}

div.right_side {
	margin:20px 100px 10px 280px;
	width: 260px;
	border:1px solid #000000;
	font-family: Arial;
	font-size: 18px;
	color:#000000;
	background-color: #C66
}

div.data {
	margin:140px 100px 10px 150px;
	width: 420px;
	border:1px solid #000000;
	font-family: Arial;
	font-size: 14px;
	text-align: left;
	padding: 8px;
	color:#000000;
	background-color: #CC6;
}

div.contact {
	margin:60px 390px 10px 0px;
	font-family: Arial;
	font-size: 15px;
	color:#000000;
}

div.ft {
	margin:37px 10px 10px 110px;
	font-family: Arial;
	font-size: 15px;
	color:#000000;
}

img.logo {
	margin: 6px 25px 12px 5px;
	float:left;
	border: 0pt
	}
	
img.hiddenPic {display:none;}

