@charset "utf-8";

body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;

	padding: 0;
	color: #FFF;
	z-index:-1;
}

* {
  margin: 0;
}
html, body {
  height: 100%;
}
.page-wrap {
  min-height: 100%;
  /* equal to footer height */
  margin-bottom: -80px;
}

.page-wrap:after {
  content: "";
  display: block;
}
.site-footer, .page-wrap:after {
  /* .push must be the same height as footer */
  height: 80px; 
}
.site-footer {
  background: transparent;
}





/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
	
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #C00;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #FF5959;
	text-decoration: none;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	color: #F00;
	text-decoration: none;
}
/* ~~ This fixed width container surrounds all other blocks ~~ */
.container {
	
	width: 100%;
	/*margin: 0px auto 0 auto;  the auto value on the sides, coupled with the width, centers the layout */
}
/* ~~ The header is not given a width. It will extend the full width of your layout. ~~ */
header {
	height: 50px;
	position:fixed;
	/*background:#000 url('logo.png') no-repeat left top;
	background-size: 200px;*/
	background-color: #000;
	width: 100%;
	z-index: 100;
	top:0;
	right:0;
	color: #FFF;
	min-width:100% !important;
}

header img {
	height: 30px;
	padding: 10px 0px 0px 15px;
}

.column {
	padding: 0px 10px 10px 0px;
}

.content {
	text-align: center;
	height:100%;
	margin: 0;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
	padding: 0 15px 15px 15px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */

.content h1 {
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-transform: lowercase;
	text-align: center;
	color: #fff;
	margin-top: 25px;
	margin-bottom: 35px;
	line-height: 0.90em;
	position: relative;
	z-index: 50;
	font-size: 70px;	
}

#contentBox .column h4 {
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-transform: lowercase;
	text-align: center;
	color: #fff;
	margin-top: 25px;
	margin-bottom: 10px;
	line-height: 0.90em;
	position: relative;
	z-index: 50;
	font-size: 18px;	
}

.homequote {
	padding-top: 120px;
	text-align: center;
	line-height: 1.05em;
	font-size: 26px;
	color: #FFF;
}

.red { font-color:#FF5353; }

#contentBox {
	text-align: center;
	padding-bottom:25px;
}

#contentBox .column {
	width: 200px;
	min-height 250px;
	vertical-align:top;
	display: -moz-inline-stack; /*mozilla hack*/
	display: inline-block;
	zoom: 1; /*ie7 hack*/
    *display: inline; /*ie7 hack*/
	_height: 250px; /*ie6 hack*/
}

#contentBox .column2 {
	width: 423px;
	min-height 200px;
	vertical-align:top;
	display: -moz-inline-stack; /*mozilla hack*/
	display: inline-block;
	zoom: 1; /*ie7 hack*/
    *display: inline; /*ie7 hack*/
	_height: 200px; /*ie6 hack*/
	padding:10px 20px 10px 20px;
}

#contentBox .column ul {
	list-style-type: none;	
}

#menu {  
    list-style:none;
    float:right;  
    /*height: 47px;*/ 
    padding:4px 20px 0px 20px;
}

#menu a {
	color:#D6D6D6;
	text-decoration:none;
}

#menu a:hover {
	color:#FFF;
	text-decoration:none;
}

#menu li {
	float:right;
	display:block;
	text-align:center;
	position:relative;
	padding: 4px 10px 4px 10px;
	margin-right:30px;
	margin-top:7px;
	border:none;
	background: #171717;
}

#menu li:hover {
	background: #252525;
}


/* ~~ The footer ~~ */
footer {
	padding: 10px 10px;
	color: #FFF;
	text-align:center;
}

/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, nav, article, figure {
	display: block;
}