﻿/*
W3Schools HEX Code Colors
http://www.w3schools.com/html/html_colors.asp
*/

/*////////////////////////////////////////
/////// General Styles ///////////////////
////////////////////////////////////////*/

body
{
    font-family: Corbel;
    font-size: 12pt;
    margin: 0;
    line-height: 18pt;
}

h1
{
    display: inline;
    font-weight: bold;
    font-family: 'Franklin Gothic';
    font-size: 24pt;
}

h2
{
    display: inline;
    font-weight: bold;
    font-family: 'Franklin Gothic';
    font-size: 18pt;
}

h3
{
    display: inline;
    font-weight: bold;
    font-family: 'Franklin Gothic';
    font-size: 14pt;
}


.fixedHeader
{
    position: fixed;
    width: 100%;
    top: 0px;
}








.smallFont
{
    font-family: Corbel;
    font-size: 10pt;
    line-height: 11pt;
    color: #606060;
}




/*//////////////////////////////////////////////////////////
/////// Responsive CSS-3 div arrangement ///////////////////
//////////////////////////////////////////////////////////*/

/*
    Responsive Web Design
    http://www.w3schools.com/css/css_rwd_mediaqueries.asp
    Search: css mobile desktop arrange page
}
*/


/*  TEXT section  */
.textSection {
    max-width: 700px;
    text-align:center;
	clear: both;
	padding: 0px;
	margin: 0px;
}


/*  SECTIONS  */
.section {
    max-width: 1080px;
	clear: both;
	padding: 0px;
	margin: 0px;
}




/*  COLUMN SETUP  */
.col {
    //background: #ccc;
    padding:1em 0;
	display: block;
	float:left;
	margin: 1% 0 1% 1.6%;
}



.col:first-child { margin-left: 0; }





/*  GROUPING  */
.group:before, .group:after {
	content:"";
	display:table;
}

.group:after {
	clear:both;
}

.group {
    zoom:1; /* For IE 6/7 */
}




/*  GRID OF TWO  */
.span_2_of_2 {
	width: 100%;
}

.span_1_of_2 {
	width: 49.2%;
}




/*  GRID OF THREE  */
.span_3_of_3 {
	width: 100%;
}

.span_2_of_3 {
	width: 66.1%;
}

.span_1_of_3 {
	width: 32.2%;
}






/*  GO FULL WIDTH AT LESS THAN 'x' PIXELS
    http://www.responsivegridsystem.com/
*/

@media only screen and (max-width: 748px) {
	.col {
        //margin: 1% 0 1% 0%;
        margin: auto;
	}

	.span_1_of_2, .span_2_of_2 {
		width: 100%; 
	}

	.span_3_of_3, .span_2_of_3, .span_1_of_3 {
        width: 100%;
	}


}



/*////////////////////////////////////////
/////// Table Styles /////////////////////
////////////////////////////////////////*/


table
{
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
    border-collapse:separate;
    border-spacing: 0px;
}

.tableBorder
{
    border-color: #B0B0B0;
    border-style: solid;
    border-width: 1px;
    border-collapse: collapse;
}

.flashContainer
{
    height: 500px;
    width: 100%;
    position: absolute;
    top: 76px;
    left: 0;
}


/*/////////////////////////////////////////////////////
// Vertical align Facebook at Twitter Button IFrames //
/////////////////////////////////////////////////////*/


.twitter-share-button
{
    vertical-align: top;
}

/*//////////////////////////////////////////*/

.facebookShareButton_IE
{
    position: relative;
    bottom: 6px;
}

/*//////////////////////////////////////////*/

.facebookShareButton_FF
{
    position: relative;
    top: 6px;
}


/*////////////////////////////////////////
/////// Form Styles //////////////////////
////////////////////////////////////////*/

.formInput
{
    border-color: #B0B0B0;
    border-style: solid;
    border-width: 2px;
    height: 20px;
}
.formInput:focus
{
    border-color: Orange;
}


.formMessageBox
{
    border-color: #B0B0B0;
    border-style: solid;
    border-width: 2px;
}
.formMessageBox:focus
{
    border-color: Orange;
}


.formButton
{
    clear: both;
    width: 80px;
    line-height: 21px;
    border-style: solid;
    border-width: 1px;
    border-color: #404040;
    text-align: center;
    background: #FF9900;
    color: #000000;
}
.formButton:hover
{
    background: #FF6600;
}


.inputBackColor
{
    background: #C9C9C9;
}

/*////////////////////////////////////////
/////// Image Style //////////////////////
////////////////////////////////////////*/


img
{
    border-width: 0px;
}


/*///////////////////////////////////////////////
/////// Hyperlink / Text Styles /////////////////
///////////////////////////////////////////////*/


a
{
    /*
    color: #2121CB;
    */
    color: #FFFFFF;
    text-decoration: none;
}

a:hover
{
    color: #4D5656;
    text-decoration: none;
}

.smallHyperlink
{
    font-family: Arial;
    font-size: 9pt;
    line-height: 11pt;
}

.menuBorder
{
    border-color: #B0B0B0;
    border-style: solid;
    border-width: 1px;
    border-width: 0px;
    
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
}

.whiteText 
{
    color: #FFFFFF;
}

.whiteHyperlink
{
    color: #FFFFFF;
    text-decoration: none;
}


/*////////////////////////////////////////
/////// Menu Styles //////////////////////
////////////////////////////////////////*/


.menuCenter
{
    text-align: center;
    width: 100%;
    display: table-cell;
}

.menuOver:hover
{
    background-color: Orange;
}


/*////////////////////////////////////////
/////// Miscellaneous Styles /////////////
////////////////////////////////////////*/



ul {
    list-style-position: inside;
    padding-top: 0;
    padding-left: 0;
    list-style-type: inherit;
}