@charset "utf-8";
body {
	font: 100%/1.5 Arial, Helvetica, Verdana, sans-serif;
	background-color: #eee;
	background:url(images/background.jpg) fixed center;
	margin: 0;
	padding: 0;
	color: #333;
}

/* Logo style */
#logo{
width:210px;
height:100px;
padding:20px;
margin-left:auto;
margin-right:auto;
margin: 0 auto;

/* Firefox */
display:-moz-box;
-moz-box-orient:horizontal;
-moz-box-pack:center;
-moz-box-align:center;

/* Safari and Chrome */
display:-webkit-box;
-webkit-box-orient:horizontal;
-webkit-box-pack:center;
-webkit-box-align:center;

/* W3C */
display:box;
box-orient:horizontal;
box-pack:center;
box-align:center;}


/*TOP MENU */
.menu,
.menu ul,
.menu li,
.menu a {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

.menu{
text-transform:uppercase;
font-size:10pt;
font-weight:bold;
font-variant:normal;
font-family:Verdana, Geneva, sans-serif;
margin: 0 auto;
width:960px;
height:40px;}

.menu li {
    position: relative;
    list-style: none;
    float: left;
    display: block;
    height: 40px;
}
.menu li a{
	color:#fff;
	text-decoration:none; 
	padding: 10px 20px 10px 50px; margin: 0 20px 0 0 ;
	display:block;/*
-webkit-transition:all .4s ease-in-out;
	-moz-transition:all .4s ease-in-out;
	-o-transition:all .4s ease-in-out;
	transition:all .4s ease-in-out;*/}
.menu li:hover > a, .menu li a.on{
	background-color:#FFF;
	color:#400000;border-radius: 5px 5px 0px 0px;
	background-image: url(images/hat.png); 
	background-position: 15px 50%; 
	background-repeat:no-repeat;}

.menu ul li:hover > a {border-radius: 0px;}
.menu ul li:last-child a {border-radius: 0px 0px 5px 5px;}

/*.header {text-align:center}*/

/*DROP-DOWN MENU*/
.menu li:first-child a { border-left: none; }
.menu li:last-child a{ border-right: none; }


.menu ul	{
	position: absolute;
    top: 35px;
    left: 0;
	z-index:1000;
 
    opacity: 0;
    background: #400000;
	-webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
 
    -webkit-transition: opacity .25s ease .1s;
    -moz-transition: opacity .25s ease .1s;
    -o-transition: opacity .25s ease .1s;
    -ms-transition: opacity .25s ease .1s;
    transition: opacity .25s ease .1s;
	
	box-shadow: 10px 10px 10px 0px rgba(64, 0, 0, 0.5);
-moz-box-shadow: 10px 10px 10px 0px rgba(64, 0, 0, 0.5);
-webkit-box-shadow: 10px 10px 10px 0px rgba(64, 0, 0, 0.5);
}

.menu li:hover > ul { opacity: 1; }

.menu ul li {
    height: 0;
    overflow: hidden;
    padding: 0;
	
 
    -webkit-transition: height .25s ease .1s;
    -moz-transition: height .25s ease .1s;
    -o-transition: height .25s ease .1s;
    -ms-transition: height .25s ease .1s;
    transition: height .25s ease .1s;
}
 
.menu li:hover > ul li {
    height: 40px;
    overflow: visible;
    padding: 0;
}

.menu ul li a {
    width: 120px;
    padding: 10px 20px 10px 50px;
    margin: 0;
 
    border: none;
    border-bottom: 1px solid #fff;
}
 
.menu ul li:last-child a { border: none; }
/* ~~ Element/tag selectors ~~ */
h1
{
	margin-top:0;
	padding-right: 15px;
	padding-left: 15px;
  background: -webkit-gradient(linear, left top, left bottom, from(#400000), to(#DA0403));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color:#400000;
	}

 h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. 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 divs, instead of the divs themselves, gets rid of any box model math. A nested div 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: #C30;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #400000;
	text-decoration: underline;
}
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. */
	text-decoration: none;
	color: #900;
}

/* ~~ this fixed width 	 surrounds the other divs ~~ */
.container {
	border-radius: 5px;
  -moz-box-shadow: 0px 5px 100px 0px #000000;
  -webkit-box-shadow: 0px 5px 100px 0px #000000;
  -o-box-shadow: 0px 5px 100px 0px #000000;
  box-shadow: 0px 5px 100px 0px #000000;
	width: 960px;
	background-color: #FFF;
		margin: -21px auto auto 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. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
background: -webkit-gradient(linear, left bottom, left top, from(#400000), to(#DA0403));
background-color:#400000;	
	/* Firefox v3.6+ */
background-image:-moz-linear-gradient(50% 0% -90deg,rgb(218,4,3) 0%,rgb(64,0,0) 100%); 
/* safari v4.0+ and by Chrome v3.0+ */
/*background-image:-webkit-gradient(linear,50% 0%,50% 100%,color-stop(0, rgb(218,4,3)),color-stop(1, rgb(64,0,0)));
/* Chrome v10.0+ and by safari nightly build*/
/*background-image:-webkit-linear-gradient(-90deg,rgb(218,4,3) 0%,rgb(64,0,0) 100%);
*//* Opera v11.10+ */
background-image:-o-linear-gradient(-90deg,rgb(218,4,3) 0%,rgb(64,0,0) 100%);
/* IE v10+ */
background-image:-ms-linear-gradient(-90deg,rgb(218,4,3) 0%,rgb(64,0,0) 100%);
/*background-image:linear-gradient(-90deg,rgb(218,4,3) 0%,rgb(64,0,0) 100%);
*/
-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffda0403,endColorstr=#ff400000,GradientType=0)";
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffda0403,endColorstr=#ff400000,GradientType=0);
height:195px;


/*border-bottom:thick solid #DA0403;*/
}

/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/

.content  {
margin-top:0px;
	padding: 20px;
}



.ss-form-container
{
	margin-left:15px}


/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
	margin-right: 0px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 20px;
	margin-left: 0px;
	display:block;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
.rectangle {
  background: #eee;/*
  background-image: -moz-linear-gradient(270deg, #fcc 0%, #fcc 100%);
  background-image: -webkit-linear-gradient(270deg, #fcc 0%, #fcc 100%);
  background-image: -o-linear-gradient(270deg, #fcc 0%, #fcc 100%);
  background-image: linear-gradient(270deg, #fcc 0%, #fcc 100%);*/
  border: 1px solid #400000;
  width: auto;
  height: 100%;
  border-radius: 4px;/*
  -moz-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.6), 0px 2px 4px 0px rgba(0, 0, 0, 0.8);
  -webkit-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.6), 0px 2px 4px 0px rgba(0, 0, 0, 0.8);
  -o-box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.6), 0px 2px 4px 0px rgba(0, 0, 0, 0.8);
  box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.6), 0px 2px 4px 0px rgba(0, 0, 0, 0.8);*/
  position: relative;
    color: #400000;
  font-family:"Arial";
  font-size: 12pt;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  text-shadow: -1px 0px -1px rgba(94, 38, 22, 0.3);
  line-height: auto;
   margin:auto;
   padding:10px;
}



/* ~~ The footer ~~ */
.footer {
	
	background-color: #400000;
	border-radius: 0 0 5px 5px;
	  color: #fff;
  font-family:"Arial";
  font-size: small;
  font-weight: normal;
  font-style: normal;
  text-align: left;
  text-shadow: 0px -1px 0px rgba(94, 38, 22, 0.7);
  line-height: auto;
  margin: 0 auto;
  height:60px;
  border: 0px solid #333;
  width:960px;
  padding:15px 0;
}
#footer ul{list-style:none;margin:0 auto}
#footer li{float:left;list-style:none;padding:0 20px;border-right:1px solid #ccc;height:60px}
#footer li.last{border:none}
#footer ul a{color:#ccc;text-decoration:none;}
#footer ul a:hover{color:#fff; text-decoration:underline}

hr
{
border:none;
margin: -20px;
background: -webkit-gradient(linear, left bottom, left top, from(#FFF), to(#CCC));
background-color:#FFFFFF;	
/* Firefox v3.6+ */
background-image:-moz-linear-gradient(50% 0% -90deg,rgb(221,221,221) 0%,rgb(255,255,255) 100%); 
/* safari v4.0+ and by Chrome v3.0+ */
/*background-image:-webkit-gradient(linear,50% 0%,50% 100%,color-stop(0, rgb(221,221,221)),color-stop(1, rgb(255,255,255)));
*//* Chrome v10.0+ and by safari nightly build*/
/*background-image:-webkit-linear-gradient(-90deg,rgb(221,221,221) 0%,rgb(255,255,255) 100%);
*//* Opera v11.10+ */
background-image:-o-linear-gradient(-90deg,rgb(221,221,221) 0%,rgb(255,255,255) 100%);
/* IE v10+ */
background-image:-ms-linear-gradient(-90deg,rgb(221,221,221) 0%,rgb(255,255,255) 100%);
/*background-image:linear-gradient(-90deg,rgb(221,221,221) 0%,rgb(255,255,255) 100%);
*/height:50px;
-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffdddddd,endColorstr=#ffffffff,GradientType=0)";
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffdddddd,endColorstr=#ffffffff,GradientType=0);
}

button
{

	padding: 5px 7px;
	background: -moz-linear-gradient(
		top,
		#ffffff 0%,
		#ffc800 50%,
		#fa8100);
	background: -webkit-gradient(
		linear, left top, left bottom, 
		from(#ffffff),
		color-stop(0.50, #ffc800),
		to(#fa8100));
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	border: 1px solid #000000;
	-moz-box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px 0px 5px rgba(161,142,016,0.6);
	-webkit-box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px 0px 5px rgba(161,142,016,0.6);
	box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px 0px 5px rgba(161,142,016,0.6);
	text-shadow:
		0px -1px 3px rgba(255,255,255,0.8),
		0px 1px 0px rgba(255,255,255,0.3);
  position: relative;
    color: #400000;
  font-family:"Arial";
  font-size: 12pt;
  font-weight: normal;
  font-style: normal;
  text-align: center;
  text-shadow: -1px 0px -1px rgba(94, 38, 22, 0.3);
  line-height: auto;
   margin:auto;
   padding:10px;
}

.clearfloat {clear:both; height: 0}