/* Basics and Browser Resets */
* { 
	margin:0; padding:0; 
}
html { 
	height: 100%;
}
body {
	color: #777;
	font-family: "Lucida Grande", Lucida,  Verdana, Arial, sans-serif;
	font-size: 16px;
	font-size-adjust: none;
	font-stretch: normal;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	height: 100%;
	line-height: 1.2em;
	background:#111;
	text-align:left;
}
p, div {
	margin: 0;
	text-align:left;
}
ul {
	margin: 0;
	list-style-type:none;
}
li {
	list-style-position: inside;
}
a {
	color: #6699cc;
	outline:0;
	text-decoration: none;
}
a:hover {
	color: white;
}
a img { border:0; }



/* Text Styles */
h1 {
	font-family:"Trebuchet MS" "Lucida Grande", arial, sans-serif;
	font-size:1.25em;
	line-height:1.4em;
	font-weight:normal;
	margin-bottom:0.81em;
	color:white;
}
h2 {
	font-size:0.81em;
	font-weight: normal;
	margin-bottom:0.81em;
	color:white;
}
h3 {
	font-size:0.81em;
	font-weight:normal;
	margin-bottom:0.81em;
	color:white;
}
#details a {
	color:inherit;
	text-decoration: none;
}
#details a:hover {
	color:#white;
}
#page-body p {
	font-size:0.81em;
	margin-bottom: 0.81em;
	color:#777;
}
#footer a{
	color:#777;
}
#footer a:hover {
	color:#white;
}
/* Top Logo Bar */
#logo-bar {
	width:100%;
	height:54px;
	overflow:hidden;

}
#logo-bar-left {
	width:50%;
	height:54px;
	background:url(../img/logo_bar_l.png) repeat-x top;
	float:left;
	display:inline;
}
#logo-bar-right {
	width:49.9%;
	height:54px;
	background:url(../img/logo_bar_r.png) repeat-x top;
	float:left;
	display:inline;
}
#logo-bar-lcontent {
	width:100%;
	height:54px;
	background:url(../img/lcurve.png) no-repeat top right;
	float:left;
	display:inline;
}
#logo-bar-rcontent {
	width:100%;
	height:54px;
	background:url(../img/rcurve.png) no-repeat top left;
	float:left;
	display:inline;
	min-width:460px;
}
#logo-bar-rcontent img{
	margin:0 -28px 0 28px;
}
/* Main Content Containers */

#container {
	width:930px;
	margin: 0 auto;
	clear:left;
	cursor:default;
}
#logo {
	float:left;
	display:inline;
	margin-left:15px;
}
#details {
	float:right;
	display:inline;
	text-align:right;
	margin:18px 15px 0 0;
	font-size:0.75em;
	color:#777;
}
#nav {
	clear:both;
	width:100%;
	height:56px;
	background:url(../img/nav_bg.png) no-repeat ;
	overflow: visible;
	font-size:0.81em;
}
#sub-nav {
	position: relative;
	top:-8px;
	clear:both;
	height:29px;
	font-size:0.75em;
	color:#E5E5E5;
	background:url(../img/subnav_bg.png) no-repeat;
}
#page-body {
	clear:both;
/*	background:url(../img/body_bg.png) repeat-y;*/
}
#body-content {
/*	background:url(../img/body_top.png) no-repeat;*/
	padding:0 15px 0 45px;
	min-height:61px;
}
#body-foot {
	height:18px;
/*	background:url(../img/body_foot.png) no-repeat;*/
	clear:left;
	margin-top:-25px;
}
#footer {
	clear:both;
	height:55px;
	padding:0 45px;
	line-height:56px;
	background:url(../img/nav_bg.png) no-repeat ;
	overflow: visible;
	font-size:0.81em;
	color:#999;
	text-align:center;
}

/* Main Nav */
#nav ul {
	margin:0 27px;
}
#nav ul li {
	float:left;
	display:inline;
	height:39px;
	padding-top:10px;
	text-align:center;
	text-transform:capitalize;
}
#nav ul li a {
	display:block;
	height:38px;
	padding:0 18px;
	margin:0;
	line-height:38px;
	background:url(../img/nav_hover.png) no-repeat -5px top;
	color:#999;
	text-decoration: none;
}
* html #nav ul li a {
	display:inline-block; /*To stop IE dropping each list item onto the next line*/
}
#nav ul li a:hover, #nav ul li.selected a {
	background:url(../img/nav_hover.png) repeat-x left bottom;
	color:#E5E5E5;
	padding:0 17px;
	border-left:1px solid #505153;
	border-right:1px solid #505153;
}
#nav ul li.last-item {
	float:right;
}
/* Sub Nav */
#sub-nav ul {
	margin:0 20px;
}
#sub-nav ul li {
	float:left;
	text-align:center;
	display: inline;
}
#sub-nav ul li a {
	display:block;
	line-height:29px;
	padding:0 25px;
	color:#5E5E5E;
	text-decoration: none;
}
#sub-nav ul li a:hover, #sub-nav ul li.selected a {
	color:#E5E5E5;
}

/*
Cols (including 30px right margin):
t1. 1/3
t2. 2/3
t3. 1/2
t4. 1/1
*/

.col-t1 {
	width:260px;
	margin:30px 30px 0 0;
	float:left;
	display:inline;
}
.col-t1r {
	width:260px;
	margin:30px 30px 0 0;
	float:right;
	display:inline;
}
.col-t2 {
	width:550px;
	margin:30px 30px 0 0;
	float:left;
	display:inline;
}
.col-t3 {
	width:405px;
	margin:30px 30px 0 0;
	float:left;
	display:inline;
}
.col-t4 {
	width:840px;
	margin:30px 30px 0 0;
	float:left;
	display:inline;
}
.clear {
	clear:both;
}
.clear-left {
	clear:left;
}
.spacer {
	width:100%;
	height:2em;
}
.highlight {
	color:white;
}
/*home*/
.highlight-box-top {
	background:url(../img/highlight-box-top.png) no-repeat;
	height:12px;
	font-size:0.1em;
}
.highlight-box {
	background:url(../img/highlight-box-bg.png) repeat-y;
	padding:8px 20px;
}
.highlight-box-btm {
	background:url(../img/highlight-box-btm.png) no-repeat;
	height:9px;
	font-size:0.1em;
}
.home-img-container {

}
/*missioncontrol*/
ul.features {
	font-size:0.81em;
	margin-left:14px;
}
ul.features li {
	margin-bottom:1em;
	list-style: disc outside;
}
/*moonmail*/
.mail-image {
	margin-bottom:1em;
}
.sample {
	font-size:0.81em;
	width:100%;
}
ul.num-features {
	
}
ul.num-features li {
	margin-bottom:1em;
	padding-left:31px;
	line-height:23px;
	font-size:13px; /*Shouldn't be in pixels should be 0.81em Safari is not understanding needs fix*/
	color:#A2A2A2; /*Shouldn't be required Safari is not understanding needs fix*/
}
.no1 {
	background:url(../img/1.png) no-repeat left top;
}
.no2 {
	background:url(../img/2.png) no-repeat left top;	
}
.no3 {
	background:url(../img/3.png) no-repeat left top;		
}
.no4 {
	background:url(../img/4.png) no-repeat left top;	
}
.no5 {
	background:url(../img/5.png) no-repeat left top;		
}
.no6 {
	background:url(../img/6.png) no-repeat left top;	
}
.no7 {
	background:url(../img/7.png) no-repeat left top;	
}
.no8 {
	background:url(../img/8.png) no-repeat left top;		
}

form.moonmail-login input[type=text], form.moonmail-login input[type=password] {
	padding:0;
	margin:0;
	width:90%;
}
input.mail-signin {
	padding:0;
	margin:0;
	width:90%;
}
form.moonmail-login input[type=image]
 {
	margin:0 0 -5px 0;
}
.moonmail .highlight-box {
	padding-top:0;
}
.moonmail .highlight-box h1 {
	margin-top:0;
}
/*Showcase*/
.info-space {
	padding:5px;
}
/*contact*/
.contact h2 {
	margin-bottom:0;
}
.button-container {
	text-align: right;
}