/**
 * ServeBlast
 * (c) 2008 Squish Software
 */

/* Layout
--------------------------------------------------*/
body {
	background: #EBF4F6 url(img/background.png) repeat-x;
	font-family: Verdana, "Lucida Grande", serif;
	color: #728a92;
	font-size: 12px;
}

#wrapper {
	width: 815px;
	margin: 60px auto;
}

#header {
	margin-bottom: 30px;
}

/* Logo
--------------------------------------------------*/
#logo {
	background: url(img/logo.png) no-repeat;
	width: 312px;
	height: 84px;
	display: block;
	border: 0;
}

#logo h1 {
	display: none;
}

/* Navigation
--------------------------------------------------*/
#navigation {
	float: right;
	margin: 30px 0 0 0;
	padding: 0;
	list-style: none;
	font-size: 14px;
}

#navigation li {
	float: left;
	margin-left: 20px;
}

#navigation a {
	color: #7d9ba6;
	text-decoration: none;
	border: 0;
}

#navigation a:hover {
	color: #4a565a;
	text-decoration: none;
	border: 0;
}

/* Login Form
--------------------------------------------------*/
#loginForm {
	display: none;
	width: 791px;
	background: #405158;
	padding: 13px 12px 13px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}

#loginForm input {
	margin: 0 5px 0 0;
}

#loginForm input[type="text"], #loginForm input[type="password"] {
	background: #6E7D82;
	border: 0;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	color: #FFF;
	padding: 5px 6px;
	outline: none;
}

#loginForm a {
	color: #cdd9dd;
	text-decoration: none;
	border-bottom: 1px dotted #6E7D82;
	float: right;
	margin-top: 4px;
}

#loginForm a:hover {
	color: #6E7D82;
}

/* Footer
--------------------------------------------------*/
#footer {
	text-align: center;
	margin-top: 20px;
	font-size: 11px;
	clear: both;
}

/* Content
--------------------------------------------------*/
#white {
	width: 769px;
	background: #FFF;
	margin: 0;
	padding: 5px 23px 20px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, .1);
}

/**
 * Columns (on front page):
 *  - .column2: Two columns in a row
 *  - .column3: Three columns in a row
 */

.column, .column2 {
	width: 370px;
	margin: 20px 0 0 25px;
	padding: 0;
	float: left;
	line-height: 18px;
}

.column3 {
	width: 240px;
	margin: 20px 0 0 25px;
	padding: 0;
	float: left;
	line-height: 18px;
}

/* Plan List
--------------------------------------------------*/
#planlist {
	width: 100%;
	background: #FFF;
	border-top: 1px solid #b3bec1;
	margin: 0;
	padding: 0;
}

.plan {
	margin: 25px 0 0 28px;
	padding: 0 0 25px 0;
	width: 170px;
	float: left;
}

.plan .h2 {
	font-weight: normal;
	color: #4a565a;
	margin: 0 0 5px 0;
	font-size: 17px;
}

.plan p {
	color: #76898f;
	margin: 0 0 5px 0;
	line-height: 20px;
}

/* Asterisks + Prices */
.price {
	font-size: 16px;
	padding: 0 0 0 20px;
	min-height: 16px;
	min-width: 15px;
	float: right;
}

.name {
	font-size: 16px;
	padding: 3px 0 0 20px;
	min-height: 16px;
	min-width: 15px;
	float: right;
}

.asterisk_yellow {
	background: url(img/asterisk_yellow.png) no-repeat;
	background-position: 0 5px;
	color: #d0bc35;
}

.asterisk_orange {
	background: url(img/asterisk_orange.png) no-repeat;
	background-position: 0 5px;
	color: #c58439;
}

.asterisk_red {
	background: url(img/asterisk_red.png) no-repeat;
	background-position: 0 5px;
	color: #9e4040;
}

.asterisk_blue {
	background: url(img/asterisk_blue.png) no-repeat;
	background-position: 0 5px;
	color: #577395;
}

.signup {
	position: relative;
	top: 6px;
}

/* Links
--------------------------------------------------*/
a {
	color: #7d9ba6;
	text-decoration: none;
	border-bottom: 1px dotted #CCC;
}

a:hover {
	color: #4a565a;
	text-decoration: none;
	border-bottom: 1px dotted #BBB;
}

/* Headers
--------------------------------------------------*/
h1, h2, h3, h4 {
	font-weight: normal;
	color: #4a565a;
	margin-bottom: 0;
}

/* Forms
--------------------------------------------------*/
form div {
	clear: both;
	padding: 20px 0;
}

form div label {
	float: left;
	width: 120px;
	margin: 9px 5px 0 0;
}

form div span {
	float: left;
	width: 500px;
}

form div code {
	float: right;
}

form h3 {
	margin-top: 40px;
}

form div input[type="text"], form div input[type="password"], form div textarea {
	background: #FFF;
	border: 2px solid #d6dfe3;
	color: #708790;
	padding: 5px 6px;
	width: 200px;
	outline: none;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
}

form div input[type="text"]:focus, form div input[type="password"]:focus, form div textarea:focus {
	background: #FFF;
	border: 2px solid #708790;
	color: #405158;
}

form div textarea {
	width: 100%;
	height: 150px;
}

form div select {
	margin-top: 7px;
}

form div.submit {
	border-top: 1px solid #cdd9dd;
	text-align: right;
	margin: 20px 0 0 0;
	padding: 5px 0 0 0;
}

form p {
	line-height: 18px;
}