﻿/* --------------------------------------------------------------

SaleRide Master Styles
Author:	Justin Pardee, Collective Industry
Date: 	Oct 13, 2008

-------------------------------------------------------------- */

@import 'reset.css';

/* --------------------------------------------------------------

1: BASE STYLES
2: TYPOGRAPHY
3: STRUCTURE
	a) Mast & Branding
	b) Content & Columns
	c) Footer
4: NAVIGATION
	a) Primary
	b) SubNav
5: SECTIONS
	a) Homepage
	b) Pricing
	c) Sign Up
6: ASSETS
	a) Forms
	b) Demo Blocks
	c) FAQs
	d) Testimonial
	e) Next Steps
	f) Buttons
	g) Image Extras
7: MISC

-------------------------------------------------------------- */

body {
    background: #e3e3e3;
    text-align: center;
    font: 13px/1.5 Helvetica, Arial, 'Liberation Sans', FreeSans, sans-serif;
}

hr { display: none; }
a:focus { outline: 1px dotted invert; }


/* Typograpy
--------------------------------------------------*/
/* Spacing */
ol {
	list-style: decimal;
}

ul {
	list-style: square;
}

li {
	margin-left: 30px;
}

dl,
hr,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
ul,
pre,
address,
table,
fieldset {
	margin-bottom: 0px;
}

p {
	margin-bottom: 10px;
}

/* Typography */
h1 {
	font-size: 25px;
	font-family:Georgia, "Times New Roman", Times, serif;
	color:#c00;
	font-weight:normal;
}
h2 {
	font-size: 23px;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #848484;
	font-weight: normal;
	font-style: italic;
}
h3 {
	font-size: 21px;
}
h4 {
	font-size: 19px;
}
h5 {
	font-size: 17px;
}
h6 {
	font-size: 15px;
}
p {
	color:#464646;
}

#secondary p {
	font-size: 11px;
}


/* Structure
--------------------------------------------------*/
#wrap {
	margin: 0 auto;
	width: 960px;
	position: relative;
	background: #fff;
	text-align: left;

border-left:solid 1px #bdb9b6;
border-right:solid 1px #bdb9b6;
}

/* Mast & Branding ---------*/
#mast {
	position: relative;
}
#logo {
	padding: 18px 0 18px 20px;																/* <-- switch to margin */
}

/* Utilities */
#util {
	position: absolute;
	top:0; right:0;
	background:url('/images/top-nav.gif') no-repeat;
	width:603px;
	height:29px;
	text-align:right;
	color:#fff;
}

#util ul {
	margin: 0 20px 0 0;
	float: right;
}
#util li {
	float: left;
	margin-left: 20px;
	line-height: 27px;
	list-style: none;
	font-size: 11px;
}
#util li a {
	color: #fff;
	text-decoration: none;
}
#util li a:hover {
	text-decoration: underline;
}
#util li#btn-login {
	padding-top: 5px;
}

#util li * {
	vertical-align: middle;
}

/* Content & Columns -------*/
#content {
	margin: 18px 20px;
}
#primary {
	width: 605px;
	float: left;
}
#secondary {
	width: 295px;
	float: right;
}

/* Footer ------------------*/
#foot {
	padding: 9px 0;
	background: #000;
	color: #fff;
	font-size: 11px;
	text-align: center;
}
#foot a {
	color: #fff;
	text-decoration: none;
}
#foot a:hover {
	text-decoration:underline;
}

/* Meta */
#meta {
	margin-top:18px;
    margin-bottom:36px;
	font-size: 11px;
	color: #474747;
}
#meta p {
	margin-bottom: 9px;
}
#meta a{
	text-decoration: none;
	color: #474747;
}
#meta a:hover {
	text-decoration: underline;
}


/* Page Specific
--------------------------------------------------*/

/* Home --------------------*/
#pitch {
	width: 605px;
	float: left;
}
#pitch h1, #pitch h2 {
	margin-bottom: 0;
}
#pitch h2 {
	font-size: 18px;
}
#pitch h3 {
	margin: 18px 0 0;
	font-size: 18px;
}

#cta, #hero {
	width: 295px;
	float: right;
}
#hero {
	margin-top: -45px;
	margin-bottom: 9px;
}
#cta {
	margin-bottom: 18px;
	font-size: 10px;
	text-align: center;
}
#cta a {
	margin-bottom: 9px;
}

#overview {
    width:920px;
    height:300px;
	clear: both;
	position: block;
}

#overview .block {
	float: left;
	margin-right: 20px;
	width: 215px;
}

#overview .block.last {
	margin-right: 0px;
}

#overview h3 {
	margin-bottom: 9px;
	font-size: 14px;
	color: #c00;
}

#overview p {
	font-size: 11px;
}

/* Miscellaneous
--------------------------------------------------*/

/* Self-Clearing Floats ----*/
#wrap:after,
#content:after,
.nav:after {
	content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

