@charset "utf-8";
/* CSS Document */

* {margin: 0; padding: 0;} 

body {
	background: #E2FBFE url(../graphics/bg.png) repeat-x;
	font-size: 80%;
	font-family: Arial, Helvetica, sans-serif;
	color: #000;
}

h1, h2, h3, h4, h5, h6, p {padding: 0 0 20px 0;}

a {color: #CC2725;}
a:hover {text-decoration: none;}

.clear {clear:both;}
.small {font-size: 85%;}

/* ----------------------------------------
		Headings
---------------------------------------- */
h1 {
	font-size: 300%;
	color: #0DB5E6;
	margin-bottom: 60px;
}
h1 strong {font-size: 250%;}
h2 {
	font-size: 150%;
	color: #000;
}

/* ----------------------------------------
		Wrapper
---------------------------------------- */
#Wrapper {
	margin: 0 auto;
	width: 900px;
}

/* ----------------------------------------
		Header
---------------------------------------- */
#Header {
	color: #000;
}
	#Header img {margin-top: 38px;}
	
	#Header .Navigation{
		margin: 80px 0 0 0;
	}

/* ----------------------------------------
		Content
---------------------------------------- */

#Content {
	margin: 70px 0 0 0;
	min-height: 400px;
	padding: 30px 400px 0 0;
}

#Content ul {margin: 0 0 20px 30px;}
#Content ul li {
	padding: 5px 0;
	list-style-type: disc;
}


/* ----------------------------------------
		Navigation
---------------------------------------- */
.Navigation {
	float: right;
	margin: -60px 0 0 0;
	list-style: none;
	font-size: 120%;
}
	.Navigation li {
		float: left;
		padding: 0 0 0 20px;
	}
		.Navigation li a {
			float: left;
			color: #EFEFEF;
			text-decoration: none;
			font-weight: bold;
			display: block;
			border: 1px solid #000;
			border-radius: 20px;
			-moz-border-radius: 20px;
			-webkit-border-radius: 20px;
			background: #000;
			padding: 2px 12px;
			background: #000;
			background: -webkit-gradient(linear, left top, left bottom, from(#666), to(#000));
			background: -moz-linear-gradient(top,  #666,  #000);
			filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#666666', endColorstr='#000000');
}

		.Navigation li a:hover {
			color: #FFF;
			background: #000;
			background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#666));
			background: -moz-linear-gradient(top,  #000,  #666);
			filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#666666');
		}
		.Navigation li a:active {
			color: #CCC;
			background: #000;
			filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000');
		}


/* ----------------------------------------
		Button
---------------------------------------- */

.Button {
	display: block;
	float: left;
	width: auto;
	height: 30px;
	line-height: 30px;
	font-weight: bold;
	padding: 0 10px;
	text-decoration: none;
	color: #E3F8FD;
	border: 1px solid #0DB5E6;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	background: #0DB5E6;
	background: -webkit-gradient(linear, left top, left bottom, from(#0DB5E6), to(#0B97BF));
	background: -moz-linear-gradient(top,  #0DB5E6,  #0B97BF);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#0DB5E6', endColorstr='#0B97BF');
}
.Button:hover {
	color: #FFF;
	background: #0B97BF;
	background: -webkit-gradient(linear, left top, left bottom, from(#0B97BF), to(#0DB5E6));
	background: -moz-linear-gradient(top,  #0B97BF,  #0DB5E6);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#0B97BF', endColorstr='#0DB5E6');
}
.Button:active {
	padding-top: 2px;
	height: 28px;
	line-height: 28px;
}