﻿@charset "UTF-8";
/* CSS Document */

/********************************************
HTML ELEMENTS
********************************************/
/* top elements */
* { margin: 0; padding: 0; outline: 0; } /*sets no padding or margin around the body of our document*/

body {
	background-color: #fff; /*website background color (white)*/
	background-image: url(images/layout/background.gif); /*sets the background image, in our case the stripey background*/
	background-repeat: repeat; /*repeats our background over and over*/
	color: #000000; /*sets our text color for our website*/
	margin: 15px 0; /*sets no padding and a 15px margin around the body of our document*/
	font-family: Arial; /*sets the font family for our website*/
	font-size: 80%; /*sets the font size in %, you can also use 12px or 14px etc… px stands for pixels*/
	line-height: 1.3em; /*sets the height between each line of text.*/
}
/********************************************
WEBSITE LAYOUT
 ********************************************/
#wrap {
	width: 977px; /*width of our wrap*/
	background: #CCC url(images/layout/content.jpg) repeat-y center top; /*sets our background color to white and uses our content.jpg as a background, the background is also repeated along the Y axis*/
	margin-left: auto; /*center our margin to auto will center our website*/
	margin-right: auto;
	color: #000000;
}
#whole {
	width: 977px; /*width of our wrap*/
	margin-left: auto; /*center our margin to auto will center our website*/
	margin-right: auto;
}
#content-wrap {
	width: 947px; /*width of our wrap*/
	margin-left: auto;
	margin-right: auto;
}
#header {
	position: relative; /*An element with position: relative moves an element relative to its normal position, so "left:20" adds 20 pixels to the element's LEFT position*/
	height: 117px; /*sets our header height, this should be the same as our header image*/
	background: #caced1 url(images/layout/header2.png) no-repeat center top; /*sets a background behind our header and sets our header image onto the page*/
	padding: 0; /*no padding is needed*/
}
/********************************************
WEBSITE NAVIAGTION (Menu Bar)
********************************************/
#navigation
{
	width: 100%;
	float: left;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background: url(images/layout/menu.jpg) no-repeat center;
}

#navigation ul
{
	list-style: none;
	width: 800px;
	margin: 0 auto;
	padding: 0;
	white-space: nowrap;
	
}

#navigation ul li
{
	list-style-type: none;
	display: inline-block;	
	vertical-align: middle;
}

#navigation li a
{
	display: block;
	float: left;
	padding: 0px;
	text-decoration: none;
}

#navigation li a div
{
	height: 46px;
	width: 138px;	
}

#navigation li a div:hover 
{ 
	opacity: .5;
}

/********************************************
FOOTER
********************************************/
#footer {
	color: #333333;
	background: url(images/layout/footer.jpg) no-repeat center top;
	clear: both;
	width: 977px;
	height: 46px;
	text-align: center;
	font-size: 90%;
}
#footer p {
	padding: 10px 0;
	margin: 0;
}
#footer a {
	color: #FF0000;
	text-decoration: none;
}

/* alignment classes */
.float-left {
	float: left;
}
.float-right {
	float: right;
}
.align-left {
	text-align: left;
}
.align-right {
	text-align: right;
}

/* display and additional classes */
.clear {
	clear: both;
}

/********************************************
WEBSITE LINKS
********************************************/
a, a:visited {
	text-decoration: none;
	background: inherit;
	color: #036;
}
a:hover {
	text-decoration: underline;
	background: inherit;
	color: #F7F7F7;
}

/********************************************
WEBSITE TEXT HEADERS
********************************************/
h1 {
	font-size: 250%;
	font-weight: bold;
	color: #000;
	text-align: center;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}
h2 {
	font-size: 150%;
	color: #000;
	font-weight: normal;
	text-align: center;
}
h3 {
	font-size: 135%;
	color: #666666;
	text-align: center;
	font-family: "Calibri", serif;
}
#whole #wrap #content-wrap p {
	font-size: 100%;
	text-align: center;
}
#whole #wrap #content-wrap table tr td img {
	text-align: right;
}
.carousel-inner{
	width: 50%;
}
.carousel-inner > .item > img {
	margin: 0 auto;
	height: 300px;
	max-height: 350px !important;
}
.carousel-inner > .item > a > img {
	margin: 0 auto;
	height: 300px;
	max-height: 350px !important;
}
.carousel-caption h3{
	text-shadow: 3px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000;
}
.carousel-caption p{
	text-shadow: 2px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000;
}
iframe {
	display: block;
	margin: 0 auto;
}
.error {
	color: #FF0000;
}
/*******************Test Stuff ***************/
.content {
    width: 400px;
    border: 4px solid red;
    padding: 20px;
    overflow: hidden;
}

.content img {
    margin-right: 15px;
    float: left;
}