/* Teleplan CSS 1.0 */


* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/
body {
 text-align: left;
 font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
 font-size: 75.01%;
 line-height: 1.8em;
 background: url('background.png') center -230px no-repeat;
}

div#wrapper {
	/*background: url('background.png') no-repeat;*/
	/*background: url('background-horizontal.png') repeat-x;*/
	margin:0 auto;
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
 font-size: 1em;
}

body {
	background-color: #6d818f;
}

div#content {
	position: abosulte;
	margin:0 auto;
	padding-top: 150px;
	max-width:650px;
	min-width:650px;
}

div#header {
	background: url('logo2.png') no-repeat;
	height:60px;
}

div#subheader,
div#textcontent,
div#linkheader,
div#linkholder {
	padding-left: 55px;
}

div#subheader,
div#textcontent {
	color: #FFffFF;
	font-size: 1.6em;
	line-height:
	width: 600px;
}

div#linkheader {
	padding-top: 40px;
	padding-bottom:10px;
	color: #FFffFF;
	font-size: 1.2em;
	width: 600px;
}

div#link1,
div#link2 {
	float:left;
	width: 260px;
	padding:8px;
	margin-right:10px;
	color:#ffffff;
	font-weight:bold;
}

div#link1 {
	background:#74889a url('arrow.png') no-repeat 250px center;
}
div#link2 {
	background:#f27124 url('arrow.png') no-repeat 250px center;
}
/*
if img is inside "a" it would have
borders, we don't want that
*/
img {
 border: 0;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link
a:active {
 text-decoration: none;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
 /*background-color: inherit; */
 color: #fff;
} 