/* General styles */
html { 
  font-size: 62.5%; /* magic number so that 10px = 1em */ 
}

body {
  font-family: "Verdana", sans-serif; 
  font-size: 1.2em;
  color: #000000;
  background-color: #ffffff; 
}

a {
	color:#009; 
	text-decoration:underline;
	font-weight:400;
}

a:hover {
	color: #000;
	text-decoration:underline;
}

p,ul {
	margin:0 0 15px 0;
	line-height:1.6em;
}

h1 {
	font-size:4.6em;
}

h2 {
	font-size:2.8em; 
	margin:0 0 10px;
}

h3 {
	font-size:1.8em; 
	margin:0 0 10px 0;
}

h1,h2,h3,a {
	color:#000; font-weight:400;
	line-height:1.4em;
}

/* Layout */
#layout {
	margin:40px auto 0; 
	width:960px;
}

.row {
	width:960px; 
	margin:20px auto 0; 
	overflow:hidden;
}

div.contact{
	color: white;
	background: #666;
	padding:20px 20px 20px 20px; 
}

div.contact a{
	color: white;
	text-decoration:underline;
}

div.fleft {
	float: left;
}

div.fright {
	float: right;
}

/* Images */
img.fright {
	float:right; 
	margin:0 0 1em 1em
}

img.fleft {
	float:left;
	margin:0 1em 1em 0
}

/*small screen style*/
@media only screen and (max-width : 960px){
#layout{
	width:auto; 
	margin:0; 
	padding:20px;
}

.row {
	width:100%;
}

h1 {
	margin:-15px auto 5px;
	line-height:1.4em;
}

}

