/*
* HTML5 Boilerplate
*
* What follows is the result of much research on cross-browser styling.
* Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
* Kroc Camen, and the H5BP dev community and team.
*
* Detailed information about this CSS: h5bp.com/css
*
* ==|== normalize ==========================================================

=============================================================================
HTML5 display definitions
==========================================================================*/
ARTICLE, ASIDE, DETAILS, FIGCAPTION, FIGURE, FOOTER, HEADER, HGROUP, NAV, SECTION
{
	display: block;
}
AUDIO, CANVAS, VIDEO
{
	display: inline-block;
    display: inline;
	zoom: 1;
}
AUDIO:not([controls])
{
	display: none;
}
[hidden]
{
	display: none;
}
/*=============================================================================
Base
==========================================================================

* 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
* 2. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
 */
HTML
{
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
HTML, BUTTON, INPUT, SELECT, TEXTAREA
{
	font-family: sans-serif;
	color: #FFF;
}
BODY
{
	background-color: #222;
	margin: 0;
	font-size: 1em;
	line-height: 1.4;
	background-image: url(../img/background.jpg);
	background-repeat: repeat-x;
}
/*
* Remove text-shadow in selection highlight: h5bp.com/i
* These selection declarations have to be separate
* Also: hot pink! (or customize the background color to match your design)
 */
::-moz-selection
{
	background: #FE57A1;
	color: #FFF;
	text-shadow: none;
}
::selection
{
	background: #FE57A1;
	color: #FFF;
	text-shadow: none;
}
/*=============================================================================
Links
==========================================================================*/
A
{
	color: #0E0;
}
A:visited
{
	color: #551A8B;
}
A:hover
{
	color: #06E;
}
A:focus
{
	outline: thin dotted;
}
/*Improve readability when focused and hovered in all browsers: h5bp.com/h*/
A:hover, A:active
{
	outline: 0;
}
/*=============================================================================
Typography
==========================================================================*/
ABBR[title]
{
	border-bottom: 1px dotted;
}
B, STRONG
{
	font-weight: bold;
}
BLOCKQUOTE
{
	margin: 1em 40px;
}
DFN
{
	font-style: italic;
}
HR
{
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #CCC;
	margin: 1em 0;
	padding: 0;
}
INS
{
	background: #FF9;
	color: #000;
	text-decoration: none;
}
MARK
{
	background: #FF0;
	color: #000;
	font-style: italic;
	font-weight: bold;
}
/*Redeclare monospace font family: h5bp.com/j*/
PRE, CODE, KBD, SAMP
{
	font-family: monospace, serif;
	-font-family: "courier new", monospace;
	font-size: 1em;
}
/*Improve readability of pre-formatted text in all browsers*/
PRE
{
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}
Q
{
	quotes: none;
}
Q:before, Q:after
{
	content: "";
	content: none;
}
SMALL
{
	font-size: 85%;
}
/*Position subscript and superscript content without affecting line-height: h5bp.com/k*/
SUB, SUP
{
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
SUP
{
	top: -0.5em;
}
SUB
{
	bottom: -0.25em;
}
/*=============================================================================
Lists
==========================================================================*/
UL, OL
{
	margin: 1em 0;
	padding: 0 0 0 40px;
}
DD
{
	margin: 0 0 0 40px;
}
NAV UL, NAV OL
{
	list-style: none;
	list-style-image: none;
	margin: 0;
	padding: 0;
}
/*=============================================================================
Embedded content
==========================================================================

* 1. Improve image quality when scaled in IE7: h5bp.com/d
* 2. Remove the gap between images and borders on image containers: h5bp.com/i/440
 */
IMG
{
	border: 0;
	-ms-interpolation-mode: bicubic;
	vertical-align: middle;
}
/*

=============================================================================
Figures
==========================================================================*/
FIGURE
{
	margin: 0;
}
/*=============================================================================
Forms
==========================================================================*/
FORM
{
	margin: 0;
}
FIELDSET
{
	border: 0;
	margin: 0;
	padding: 0;
}
/*Indicate that 'label' will shift focus to the associated form element*/
LABEL
{
	cursor: pointer;
}
/*
* 1. Correct color not inheriting in IE6/7/8/9
* 2. Correct alignment displayed oddly in IE6/7
 */
LEGEND
{
	border: 0;
	margin-left: -7px;
	padding: 0;
	white-space: normal;
}
/*
* 1. Correct font-size not inheriting in all browsers
* 2. Remove margins in FF3/4 S5 Chrome
* 3. Define consistent vertical alignment display in all browsers
 */
BUTTON, INPUT, SELECT, TEXTAREA
{
	font-size: 100%;
	margin: 0;
	vertical-align: baseline;
	vertical-align: middle;
}
/*
* 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
 */
BUTTON, INPUT
{
	line-height: normal;
}
/*
* 1. Display hand cursor for clickable form elements
* 2. Allow styling of clickable form elements in iOS
* 3. Correct inner spacing displayed oddly in IE7 (doesn't effect IE6)
 */
BUTTON, INPUT[type="button"], INPUT[type="reset"], INPUT[type="submit"]
{
	cursor: pointer;
	-webkit-appearance: button;
	overflow: visible;
}
/*
* Re-set default cursor for disabled elements
 */
BUTTON[disabled], INPUT[disabled]
{
	cursor: default;
}
/*
* Consistent box sizing and appearance
 */
INPUT[type="checkbox"], INPUT[type="radio"]
{
	box-sizing: border-box;
	padding: 0;
	width: 13px;
	height: 13px;
}
INPUT[type="search"]
{
	-webkit-appearance: textfield;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}
INPUT[type="search"]::-webkit-search-decoration, INPUT[type="search"]::-webkit-search-cancel-button
{
	-webkit-appearance: none;
}
/*
* Remove inner padding and border in FF3/4: h5bp.com/l
 */
BUTTON::-moz-focus-inner, INPUT::-moz-focus-inner
{
	border: 0;
	padding: 0;
}
/*
* 1. Remove default vertical scrollbar in IE6/7/8/9
* 2. Allow only vertical resizing
 */
TEXTAREA
{
	overflow: auto;
	vertical-align: top;
	resize: vertical;
}
/*Colors for form validity*/
INPUT:valid, TEXTAREA:valid
{
}
INPUT:invalid, TEXTAREA:invalid
{
	background-color: #F0DDDD;
}
/*=============================================================================
Tables
==========================================================================*/
TABLE
{
	border-collapse: collapse;
	border-spacing: 0;
}
TD
{
	vertical-align: top;
}
/*=============================================================================
Chrome Frame Prompt
==========================================================================*/
.chromeframe
{
	margin: 0.2em 0;
	background: #CCC;
	color: #000000;
	padding: 0.2em 0;
}
/*==|== primary styles =====================================================
Author: Keith Ballard
==========================================================================*/
#mainframe
{
	width: 1000px;
	margin: auto;
	padding: 0px;
	position: relative;
}

#animframe
{
    width: 993px;
    height: 320px;
    position: absolute;
    margin: 270px 0px 0px 0px;
}

#caheader
{
	width: 1000px;
	height: 155px;
	margin: 0px;
	padding: 0px;
	float: left;
}
#calogo
{
	width: 237px;
	margin: 0px;
	padding: 0px;
	float: left;
}
#buttonbox
{
	width: 549px;
	height: 112px;
	margin: 0px;
	padding: 0px;
	float: right;
}
#buttons
{
	width: 549px;
	height: 31px;
	margin: 40px 0px 0px;
	padding: 0px;
	float: right;
	background-image: url(../img/bttn_bg.png);
	background-repeat: no-repeat;
}
UL.footer-nav
{
	list-style-type: none;
	padding: 0px;
	margin: 0px;
	padding-left: 30px;
}
UL.footer-nav LI
{
	font-family: "Trebuchet MS";
	font-weight: normal;
	font-size: 14px;
	line-height: 25px;
	color: #FFF;
	float: left;
	margin: 0px;
}
UL.footer-nav LI A
{
	font-family: "Trebuchet MS";
	font-weight: normal;
	font-size: 14px;
	line-height: 25px;
	color: #FFF;
	padding: 0px 14px;
	text-decoration: none;
}
UL.footer-nav LI A:hover
{
	color: #FF0;
}
#scrollclipper
{
	width: 1000px;
	height: 95px;
	overflow: auto;
}
#mainbody
{
	width: 1000px;
	margin: 0px;
	padding: 0px;
	float: left;
}
#maintext
{
	font-family: "Trebuchet MS";
	font-size: 22px;
	color: #FFF;
	line-height: 25px;
	text-align: center;
	margin: 5px 10px 0px;
}
#mainlinks
{
	width: 1015px;
	margin: 8px 0px 0px;
	padding: 0px;
	float: left;
	height: 370px;
}
.linkpics
{
	width: 239px;
	margin: 50px 0px 0px;
	padding: 0px;
	height: 220px;
	float: left;
	background-image: url(../img/link_bg.png);
	background-repeat: no-repeat;
}
.linkpics H1
{
	font-family: "Trebuchet MS";
	font-size: 18px;
	color: #FFF;
	font-weight: normal;
	text-decoration: none;
	text-align: center;
	margin: 12px 0px 0px;
}
.linkpic
{
	margin: 14px 0px 0px 10px;
	padding: 0px;
}
.prodtext
{
    margin: 15px 0px 0px 15px;
    padding: 5px;
}
FOOTER
{
	width: 1000px;
	margin: 0px;
	padding: 0px;
	float: left;
	height: 270px;
}
#phone
{
	width: 306px;
	margin: 20px 0px 0px 10px;
	padding: 0px;
	float: left;
	height: 85px;
}
#email
{
	width: 300px;
	margin: 20px 0px 0px 10px;
	padding: 0px;
	float: right;
}
.details
{
	font-family: "Trebuchet MS";
	font-size: 18px;
	color: #FF687E;
}
.details SPAN
{
	color: #FFF;
}
.details A
{
	font-family: "Trebuchet MS";
	font-size: 18px;
	color: #FF687E;
	text-decoration: none;
}
#cust_block
{
	width: 1000px;
	margin: 0px 220px;
	padding: 0px;
	float: left;
	height: 72px;
}
.cust_items
{
	width: 594px;
	margin: 0px;
	padding: 0px;
	height: auto;
	float: left;
}
.cust_item
{
	width: 112px;
	height: 54px;
	margin: 0px;
	padding: 0px;
	float: left;
}
#copyright
{
	width: 1000px;
	float: left;
	font-family: "Trebuchet MS";
	font-size: 10px;
	color: #FFF;
	text-align: center;
	margin: 50px 0px 0px;
}

#bodypic
{
    width: 750px;
    height: 250px;
    background-repeat: no-repeat;
    float: right;
}

#bodybttns
{
    background-image: url(../img/bodybttns.png);
    background-repeat: no-repeat;
    width: 230px;
    height: 250px;
    float: left;
}

.bodybttntxt a
{
    font-family: "Trebuchet MS";
    font-size: 18px;
    color: #000;
    font-weight: normal;
    text-decoration: none;
    text-align: center;
    line-height: 50px;
    margin: 0px 0px 0px 15px;
    padding: 0px;
}

.bodybttntxt a:hover
{
    color: #fff;
}

#bodytext
{
    width: 1000px;
    margin: 8px 0px 0px 0px;
    padding: 0px;
    float: left;
    min-height: 180px;
}

#general
{
    width: 1000px;
    float: left;
}

/*==|== media queries ======================================================
EXAMPLE Media Query for Responsive Design.
This example overrides the primary ('mobile first') styles
Modify as content requires.
==========================================================================
Style adjustments for viewports that meet the condition
==|== non-semantic helper classes ========================================
Please define your styles before this section.
==========================================================================
For image replacement*/
.ir
{
	display: block;
	border: 0;
	text-indent: -999em;
	overflow: hidden;
	background-color: transparent;
	background-repeat: no-repeat;
	text-align: left;
	direction: ltr;
	line-height: 0;
}
.ir BR
{
	display: none;
}
/*Hide from both screenreaders and browsers: h5bp.com/u*/
.hidden
{
	display: none !important;
	visibility: hidden;
}
/*Hide only visually, but have it available for screenreaders: h5bp.com/v*/
.visuallyhidden
{
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
/*Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p*/
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus
{
	clip: rect(auto, auto, auto, auto);
	height: auto;
	margin: 0;
	overflow: visible;
	position: static;
	width: auto;
}
/*Hide visually and from screenreaders, but maintain layout*/
.invisible
{
	visibility: hidden;
}
/*Contain floats: h5bp.com/q*/
.clearfix:before, .clearfix:after
{
	content: "";
	display: table;
}
.clearfix:after
{
	clear: both;
}
.clearfix
{
	zoom: 1;
}
/*==|== print styles =======================================================
Print styles.
Inlined to avoid required HTTP connection: h5bp.com/r
==========================================================================*/
@media print
{
	*
	{
		background: transparent !important;
		color: #000000 !important;
		box-shadow: none !important;
		text-shadow: none !important;
		filter: none !important;
		-ms-filter: none !important;
	}
	/*Black prints faster: h5bp.com/s*/
	A, A:visited
	{
		text-decoration: underline;
	}
	A[href]:after
	{
		content: " (" attr(href) ")";
	}
	ABBR[title]:after
	{
		content: " (" attr(title) ")";
	}
	.ir A:after, A[href^="javascript:"]:after, A[href^="#"]:after
	{
		content: "";
	}
	/*Don't show links for images, or javascript/internal links*/
	PRE, BLOCKQUOTE
	{
		border: 1px solid #999;
		page-break-inside: avoid;
	}
	THEAD
	{
		display: table-header-group;
	}
	/*h5bp.com/t*/
	TR, IMG
	{
		page-break-inside: avoid;
	}
	IMG
	{
		max-width: 100% !important;
	}
	@page
	{
		margin: 0.5cm;
	}
	P, H2, H3
	{
		orphans: 3;
		widows: 3;
	}
	H2, H3
	{
		page-break-after: avoid;
	}
}
