/* Reset everything so that we remember to style it how we want it and not what the browser wants it to be */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

body {
	line-height: 1;
	color: black;
	background: white;
}

ol, ul {
	list-style: none;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}

caption, th, td {
	text-align: left;
	font-weight: normal;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '"';
}

blockquote, q {
	display: block;
	margin-left: 5px;
	quotes: "" "";
}

cite {
	margin-left: 10px;
	}

cite:before {
	content: "- ";
	}

cite {
	font-style: italic;
	}

/* This is where we start defining our own styles */

/* Start with re-defining entire tags */
body {
	/* background-color: #253046; */
	background-color: #222;
	margin-left: auto;
	margin-right: auto;
	font-family: "Lucida Grande", Lucida, Verdana, sans-serif;
	font-size: 14px;

        /* IE 6 fix */
        text-align: center;
}

p {
	margin-bottom: 5px;
	line-height: 1.3;
}

p + p {
	text-indent: 10px;
}

* + p {
	margin-top: 5px;
}

h1 {
	font-size: 24px;
	font-weight: bold;
}

h2 {
	font-size: 18px;
	font-weight: bold;
}

a {
	color: #06c;
	text-decoration: underline;
}

a:visited {
	color: #000;
	text-decoration: underline;
}

a:hover {
	color: #06c;
	text-decoration: none;
}
/* This is where we start defining class' */

/* This wrapper is so that IE 6 can properly center our main content. I hate IE */
.pwrapper {
    margin-left: auto;
    margin-right: auto;
    width: 900px;

    /* IE 6 fix */
    text-align: left;
}

/* Header */
.header {
	margin-top: 20px;
	background-color: #000;
}

.header img {
	float: left;
	padding-top: 10px;
	padding-left: 10px;
        width: 61px;
        height: 42px;
	}

.header .name {
	padding-top: 5px;
	padding-left: 80px;
	color: #fff;
	font-size: 36px;
	}

.header .tagline {
	padding-left: 90px;
	color: #fff;
	font-size: 18px;
	padding-bottom: 4px;
}

.header .head-image {
	height: 139px;
}

.header .menu {
	position: relative;
	margin-bottom: 26px;
	height: 6px;
	background-color: #555;
	border-bottom: 1px solid white;
}

.header .menu ul {
	display: block;
	padding: 0;
	margin: 0;
	padding-top: 6px;
	float: right;
}

.header .menu ul li {
	display: inline;
}

.header .menu ul li a {
	display: block;
	float: left;
    background-color: #000;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	border-top: 1px solid white;
	border-left: 1px solid white;
	padding: 6px 5px 6px;
}

.header .menu ul li a:hover {
	background-color: #fff;
	color: #000;
}

/* This comes before the .here specifier so that if someone is on a page, we do want the left entry to show up even on the first child. */

.header .menu ul li:first-child a {
	border-left: none;
}

.header .menu ul li.active a {
	background-color: #555;
	border-left: 1px solid white;
	border-top: 1px solid #555;
}

/* Bottom of the page */
.clear {
	clear: both;
	}

.footer {
	clear: both;
	padding: 5px 1em;
	text-align: right;
	font-size: 12px;
	color: #fff;
	background-color: #555;
	float: right;
	line-height: 1.3;
}

/* In the footer, the link has to not be visible as a link */

.footer a {
	text-decoration: none;
	/* workaround for IE 7, it does not inherit color! */
	color: #fff;
}

/* workaround for IE 7, which does not care that .footer a has bigger specificity than a, a:hover, and a:visited */
.footer a:visited {
	text-decoration: none;
	color: #fff;
}

.footer a:hover {
	text-decoration: none;
	color: #fff;
}

/* Main content */
.wrapper {
	position:relative;	/* This fixes the IE7 overflow hidden bug */
	clear:both;
	float:left;
	width:100%;			/* width of whole page */
	overflow:hidden;		/* This chops off any overhanging divs */
}

/* common column settings */
.colleft {
	float:left;
	width:100%;
	position:relative;
}

.content,
.lmenu {
	float:left;
	position:relative;
	padding: 1em 0 1em 0;
	overflow:hidden;
}
/* 2 Column (left menu) settings */
.leftmenu {
	background:#fff;		/* right column background colour */
}
.leftmenu .colleft {
	right:75%;			/* right column width */
	background:#f4f4f4;	/* left column background colour */
}
.leftmenu .content{
	width:71%;			/* right column content width */
	left:102%;			/* 100% plus left column left padding */
}
.leftmenu .lmenu {
	width:21%;			/* left column content width (column width minus left and right padding) */
	left:6%;			/* (right column left and right padding) plus (left column left padding) */
	}

/* Images that need to float */
.floatright {
	float: right;
}

.floatleft {
	float: left;
}

.image {
	padding: 4px;
	}


.scripton {
	display: none;
}

.testimonials li {
    margin-top: 10px;
}