* {
	outline: 0px;
	margin: 0px;
	padding: 0px;
	border: 0px;
}

html {
	width: 100%;
	height: 100%;
}

body {
	font-family: arial;
	font-size: 12px;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
}

/* FONTS * FORMS */

h1 {
	color: #fff;
	font-family: "futura-pt";
}

h2 {
	color: #000;
	font-size: 175%;
	letter-spacing: 2px;
	margin-bottom: 20px;
}

p {

}

a {
	color: #cc2424;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/* GENERIC DIV DEFINITIONS */

.inline {
	display: inline-block;
	*display: inline;
	zoom: 1;
	margin-right: -4px;
	vertical-align: top;
}

	.inline:before {
		content: '';
		width: 0px;
		height: 100%;
		display: inline-block;
		*display: inline;
		zoom: 1;
		margin-right: -4px;
		vertical-align: middle;
	}
	
	.centerMe {
		display: inline-block !important;
		*display: inline;
		zoom: 1;
		margin-right: -4px;
		vertical-align: middle;
	}
	
.bgcover {
	background-size: cover;
	background-position: 50% 50%;
}

#wrapper {
	width: 100%;
	height: 100%;
}

	#wrapper #content {
		width: 100%;
		min-height: 500px;
		padding-top: 60px;
	}
	
	#content .section {
		width: 90%;
		max-width: 1200px;
		margin: 20px auto 20px auto;
		text-align: center;
	}

/* HEADER STYLES */

#header {
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 500;
	width: 100%;
	height: 60px;
	background-color: #181818;
	background-image: url('../images/headerbg.png');
	background-repeat: repeat-x;
	-webkit-box-shadow: 0px 11px 30px -9px rgba(0,0,0,0.35);
	-moz-box-shadow: 0px 11px 30px -9px rgba(0,0,0,0.35);
	box-shadow: 0px 11px 30px -9px rgba(0,0,0,0.35);
}

	#header .logo {
		width: 160px;
	}
	
		#header .logo img {
			width: 100%;
		}
		
        #header .mobileMenu {
            width: 50%;
            height: 60px;
            position: absolute;
			top: -6px;
			right: 15px;
			z-index: 10;
            text-align: right;
        }
        
            #header .mobileMenu:before {
                content: '';
                width: 0px;
                height: 69px;
                display: inline-block;
                *display: inline;
                zoom: 1;
                margin-right: -4px;
                vertical-align: middle;
            }
        
            #header .mobileMenu .menuButton {
                position: relative;
                display: inline-block;
                *display: inline;
                zoom: 1;
                margin-right: -4px;
                vertical-align: middle;
                width: 29px;
                right: 6%;
            }

                #header .mobileMenu .menuButton .line {
                    display: block;
                    width: 100%;
                    height: 2px;
                    margin-bottom: 5px;
                    background-color: rgba(255,255,255,1);
                    
                    transition: all .4s;
                    -webkit-transition: all .4s;
                    -moz-transition: all .4s;
                    -o-transition: all .4s;
                }
                
                #header .mobileMenu .menuButton .line:last-child {
                    margin-bottom: 0px;
                }
				
	#header .inner {
		display: none;
		position: absolute;
		top: 60px;
		left: 0px;
		width: 100%;
		z-index: 900;
	}

	#header .menu {
		list-style-type: none;
		margin-top: 0px;
		width: 100%;
		background-color: #000;
	}
	
	#header .menu li {
		display: block !important;
		margin-right: 0px !important;
		width: 100%;
		height: 30px;
		text-align: center;
		padding: 15px 0px;
		background-color: #000;
		color: #fff;
		font-family: "futura-pt";
		font-weight: 600;
		font-size: 150%;
		cursor: pointer;
		border-bottom: 1px solid #ccc;
	}
	
	#header .menu li.pageOn {
		background-color: #c12323;
		color: #000;
	}
	
	#header .menu li:hover {
		background-color: #c12323;
		color: #000;
	}
	
	#header .menu li a {
		color: inherit;
	}
	
	#header .menu li a:hover {
		text-decoration: none;
	}

/* FOOTER STYLES */

#footer {
	width: 100%;
	height: auto;
	background-color: #000;
	color: #fff;
	text-align: center;
}

	#footer h1 {
		font-size: 125%;
		margin-bottom: 15px;
	}

	#footer .inner {
		width: 90%;
		margin: auto;
		padding-top: 40px;
	}

	#footer .col {
		width: 100%;
		text-align: left;
		vertical-align: top;
		line-height: 175%;
		margin-bottom: 15px;
	}
	
	#footer .col.right {
		width: 100%;
	}
	
		#footer .col.right .cell {
			width: 100%;
			margin-bottom: 15px;
		}
	
	#footer .col ul {
		list-style-type: none;
	}

#copyright {
	width: 100%;
	background-color: #4b4b4b;
	height: 34px;
	color: #a5a5a5;
	text-align: center;
}

	#copyright .inner {
		width: 80%;
		margin: auto;
		padding-top: 10px;
	}

/* BEGIN PAGE CONTENT STYLING */

/* **************************************** */
/* HOMEPAGE */

#content #slideshow {
	width: 100%;
	height: 465px;
}

	#content #pager {
		width: 100%;
		height: 28px;
		background-color: #181818;
		text-align: center;
	}
	
	#content #pager span {
		color: #fff;
		font-size: 300%;
		position: relative;
		top: -7px;
		cursor: pointer;
		margin-right: 8px;
	}
	
		#content #pager span:first-child {
			margin-left: 8px;
		}
	
		#content #pager span.cycle-pager-active {
			color: #cc2424;
		}
	
	#content {
		text-align: center;
	}

	#content #slideshow .slide {
		width: 100%;
		height: 100%;
	}
	
		#content #slideshow .slide img {
			width: 100%;
		}
	
		#content .section h1 {
			color: #000;
			font-size: 200%;
			letter-spacing: 2px;
		}
	
	#content .section.topBorder {
		border-top: 1px dotted #cd2b2b;
		margin-top: 30px;
		padding-top: 30px;
	}
	
	#content .items .circles {
		margin-top: 20px;
		margin-bottom: 20px;
	}
	
	#content .items .circles img {
		max-width: 162px;
		width: 40%;
		margin-right: 3%;
		margin-bottom: 3%;
	}
	
	#content .items .circles img:last-child {
		margin-right: 0%;
	}
	
	#content .items .colHolder {
		margin: 0px auto 50px auto;
		line-height: 175%;
	}
	
	#content .items .col {
		width: 100%;
		margin-right: 0%;
		text-align: left;
	}
	
		#content .items .col p {
			margin-bottom: 20px;
		}
	
	#content .rates .table {
		width: 100%;
		margin: 20px auto 30px auto;
	}
	
		#content .rates .table .row {
			padding: 5px 0px 5px 0px;
		}
	
		#content .rates .table .row.odd {
			background-color: #f39494;
		}
		
		#content .rates .table .row.even {
			background-color: #fae8e8;
		}
	
		#content .rates .table .row {
			text-align: center;
			font-family: "futura-pt";
			font-weight: 600;
			font-size: 180%;
		}
		
			#content .rates .table .row span {
				font-size: 80%;
			}
			
		#content .ebay .widgetHolder {
			margin: 30px auto;
		}
		
/* LOAN PAGE */

#content .billboard {
	width: 100%;
	height: auto;
	margin: 20px auto;
}

	.loans #content .colHolder {
		margin-top: 30px;
	}

	.loans #content .colHolder .col {
		width: 100%;
		margin-right: 0%;
	}
	
/* LOCATIONS PAGE */

.locations #content .section .cell {
	width: 100%;
	text-align: center;
	line-height: 150%;
	margin: 30px auto;
}

	.locations #content .section .cell.topBorder {
		border-top: 1px dotted #cd2b2b;
		padding-top: 30px;
	}

	.locations #content .section .cell iframe {
		width: 100%;
		height: 250px !important;
		margin: 0px auto 30px auto;
	}
	
	.locations #content .section .cell h2 {
		margin-bottom: 10px;
		font-size: 175%;
	}


.mobileOnly {
	display: block;
}

.desktopOnly {
	display: none !important;
}