/* Armadillo CSS - Author: Paul Arnold

Tips on making the Stylesheet as compliant as possible 

- Use relative (scalable) units (em, %, keyword) rather than fixed units (px, in, cm)
	This helps browsers to resize text. If possible use em

- Use fallback fonts in case the browser does not support your chosen font
	eg: "font-family: Verdana, Arial, Helvetica, sans-serif"

- For proper screen-reader compliance keep background and text colours as contrasting as possible

- Use CSS to layout pages as much as possible as using HTML based laout (tables etc) can confuse screen readers

To validate your CSS go to http://jigsaw.w3.org/css-validator/

*/

/* 
Global Properties - this will set the margins and padding of everything on the page to 0. Not essential but gives you more control over your layout.
The Font-Size Property here fixes an IE bug regarding relative font-sizes. In the same way, Line-Height keeps the gap between lines consistent.
*/

* { 
margin: 0; 
padding: 0;
font-size: 100%;
line-height:1.125em;
}

body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	background: url(../images/bg.jpg) repeat-x #87978B;
}

#main {
	width: 1000px;
	height: 590px;
	margin: 0 auto;
}
/* Fonts */

a:link {
	color: #000000;
	text-decoration: none;
}
a:visited {
	color: #000000;
	text-decoration: none;
}
a:hover {
	color: #999999;
	text-decoration: none;
}
a:active {
	color: #666666;
	text-decoration: none;
}

a.armadillo:link {
	color: #666666;
}
a.armadillo:visited {
	color: #666666;
}
a.armadillo:hover {
	color: #009900
}
a.armadillo:active {
	color: #666666;
}

#kavli {
	
	float: left;
	width: 400px;
	margin-top: 10px;
	text-align: right;
}

#armadillo_sig {
	
	float: right;
	width: 500px;
	margin-top: 10px;
	text-align: left;
}

#footer {
	margin: 0, auto;
	width: 1000px;
}


.MyFormBox {
   background-color : transparent;
   font-size: 100%;
   font-weight: normal;
   color : #333333;
   border-width : 0px 0px 0px 0px;
   border-color : transparent;
}


.formtext {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #999999;
}
