@charset "utf-8";
*, html {
	margin: 0; /* it's good practice to zero the margin and padding of all the elements to account for differing browser defaults */
	padding: 0;
	border: none;
}
body {
	font-family: Arial, Helvetica, sans-serif;
	background: #FFFFFF;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-size: 11pt;
	line-height: 120%; 
}
.left {
	width:50%;
	text-align: left;
	float: left;
}
.right {
	width:50%;
	text-align: right;
	float: right;
}
a:link {
	color: #FFF;
	text-decoration: underline;
}
a:visited {
	text-decoration: underline;
	color: #FFF;
}
a:hover {
	text-decoration: none;
	color: #CCC;
}
a:active {
	text-decoration: underline;
	color: #FFF;
}
#container {
	width: 100%;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0;
	text-align: left;
	background-image: url(../images/background-header.png);
	background-repeat: repeat-x;
	background-position: top;
}
#navigation {
	height: 32px;
	background-image: url(../images/background-navigation.png);
	background-repeat: repeat-x;
	font-weight: bold;
	color: #FFF;
	background-position:top;
}
#navigation h3 {
	font-size:10pt;
	padding-top: 6px;
}
#header {
	height: 140px;
}
#content {
	width: 795px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
}
#body {
	min-height: 770px;
}
#body h1 {
	color:#000000;
	font-size: 16pt;
	padding-top: 40px;
	padding-bottom: 35px;
	line-height:120%;
}
#leftPanel {
	float: left;
	width: 50%;
}
#rightPanel {
	float: right;
	width: 50%;
}
.feature {
	background-image: url(../images/feature-arrow-default.png);
	background-position: left;
	background-repeat:no-repeat;
	width: 500px;
	margin-left: -50px;
	margin-bottom: 15px;
	height: 155px;
}
.featureHover {
	background-image: url(../images/feature-arrow-hover.png);
	background-position: left;
	background-repeat:no-repeat;
	width: 500px;
	margin-left: -50px;
	margin-bottom: 15px;
	height: 155px;
}
.feature h2 {
	color:#a30b03;
	font-size: 16pt;
	padding-top: 35px;
	padding-bottom: 8px;
	padding-left: 75px;
}
.featureHover h2 {
	color:#a30b03;
	font-size: 16pt;
	padding-top: 35px;
	padding-bottom: 8px;
	padding-left: 75px;
}
.feature p {
	padding-left: 75px;
	padding-right: 70px;
}
.featureHover p {
	padding-left: 75px;
	padding-right: 70px;
}
#footerContainer {
	width: 100%;
	bottom: 0px;
	background-image: url(../images/background-footer.png);
	background-repeat: repeat-x;
	background-position:bottom;
	min-height: 194px;
}
#footer {
	width: 795px;
	margin: 0 auto;
}
.caption {
	color: #FFF;
	line-height: 150%;
	font-size: 11pt;
}
#iphone {
	background-image: url(../images/iphone.png);
	background-repeat: no-repeat;
	background-position: right top;
	min-height:655px;
}
#screenshot {
	position:relative;
	top:115px;
	width:258px;
	height:371px;
	right: 28px;
}

