/* universal settings - set all margins and padding to 0, set default font for page */

* {
 margin:0;
 padding:0;
}

html, body {
	font-family: "Lucida Sans Unicode", Verdana, Arial;
	font-size:1em;
	color: #00325b;
	background: #ffffff;
 }
 
/* divs */
 
#wrap {
 width:600px;
 height: 500px;
 margin: 60px auto;
 background-image:url(images/bg.jpg);
 background-repeat:no-repeat;
 }

#content {
	width: 417px;
	height: 500px;
	float:left;
	text-align: justify;
}

#content p {
 padding: 10px 40px 10px 10px;
 font-size: 0.80em;
 }

#contact {
 width: 183px;
 height: 500px;
 float:left;
 margin: 150px 0 0 0;
 }

#contact p {
 padding: 5px 10px 10px 0;
 font-size: 0.75em;
 }

/* tags */

p {
 padding: 5px 10px 10px 10px;
 }
 
a {
	color: #0000FF}
a:link {
	color: #0000FF;
	}
a:visited {
	color: #0000FF;
	}
a:hover {
	color: #0000FF;
	text-decoration: underline;
}
a:active {
	color: #0000FF;
	text-decoration: underline;
}
