/* 
 * BoogGenius Stylesheet
 *
 * Colours: 
 * White: #FFF
 * Black: #000
 * Dark: #646464
 *	LightBlue: #bed2e7
 * MidBlue: #2e67b1
 * DarkBlue: #243e8f
 
 * Links: #0066cc
 
 * Grey: #a0a2a4
 */

/* Styles for the body and main HTML types */
html * {
    margin:0;
    padding:0;
}

body{   
    margin:0;
    padding:0;
    font-family: Arial, Verdana, Helvetica, Arial, sans-serif; 
    font-size: 10pt; 
    font-weight: normal; 
    color: #777777;
    background: black;
    text-align:center;
}

a {
	color:#0066cc; 
	text-decoration:none;
}
a:hover {
	color:#0066cc; 
	text-decoration:underline;
}

a img {
	border:none;
}
p {
	margin:0 0 5px 0; 
	line-height:1.5em;
}

h1 {
	font-size:15pt; 
	color:#243e8f;
	padding:5px 0 5px 0;
	line-height:1em;
}
h2 {
	font-size:12pt;
	color: #2e67b1;
	padding:5px 0 5px 0;
	line-height:1em;
	text-transform: uppercase;
}
h3 {
	font-size:11pt; 
	padding:0 0 5px 0;
	line-height:1em;
	font-weight: bold;
}

h1 a, h2 a, h3 a {
	text-decoration:none;
}

ul ul {
	font-size: .8em;
	padding-left: 20px;
	padding-bottom: 5px;
}
/* Flash (flashing messages */
.flash_good { border:solid 2px #2d2; margin:10px; padding:10px; background-color:#dfd;font-size:1.1em;}
.flash_bad  { border:solid 2px #d22; margin:10px; padding:10px; background-color:#fdd;font-size:1.1em;font-weight:bold;}


/* Text colors */
.grey {
	color: #777777;
}
.blue {
	color: #2e67b1;
}
.white {
	color: #fff;
}
.black {
	color: #000;
}
.light-blue {
	color: #5e89c0;
}
.bold {
	font-weight: bold;
}

.row {
	clear: both;
	display: block;
	padding:2px 2px 2px 2px;
	vertical-align: top;
}

.row .header {
	float: left;
	width: 250px;
	font-weight: bold;
	color: black;
	padding: 5px 2px 5px 2px;
	margin: 10px 5px 0px 5px;
}
.row .header_blue {
	float: left;
	width: 100px;
	background-color: #2e67b1;
	font-weight: bold;
	color: #fff;
	padding: 5px 2px 5px 2px;
	margin: 10px 5px 0px 5px;
	text-align: center;
}
.row .col_1 {
	float: left;
	width: 250px;
	color: black;
	padding: 5px 2px 5px 2px;
	font-size: .8em;
}
.row .col_2, .row .col_3, .row .col_4 {
	float: left;
	width: 100px;
	color: black;
	padding: 5px 2px 5px 2px;
	margin: 0px 5px 0px 5px;
	text-align: center;
	font-size: .8em;	
}
.right {
	float: right;
}
/* Don't let forms take any space on the page */
form {
     display:inline;
     margin:0;
}
label {
    display: block;
	color: #000;
}
input {
	width: 240px;
}
/* Button */
input.button_small {
	height: 29px;
	width: 100px;
	color: #FFF;
	background: transparent url('../images/button.png');
	font-weight: bold;
	font-size: 11pt;
	text-align:center;
	padding:3px 5px 5px 5px;
	margin: 2px 2px 2px 2px;
	border: none;
}

input.button_big {
	height: 44px;
	width: 150px;
	color: #FFF;
	background: transparent url('../images/button_big.png');
	font-weight: bold;
	font-size: 12pt;
	text-align:center;
	padding:8px 10px 10px 10px;
	margin: 2px 2px 2px 2px;
	border: none;
}

input.button_big_red {
	height: 54px;
	width: 187px;
	color: #FFF;
	background: transparent url('../images/button_big_red.png');
	font-weight: bold;
	font-size: 12pt;
	text-align:center;
	padding:8px 10px 10px 10px;
	margin: 2px 2px 2px 2px;
	border: none;

}

/* CLEARING */
.clearing {
	clear:both; 
	float:none;
}

.clearing_10px {
	clear:both; 
	float:none;
	height: 10px;
}

/* This hold the entire page, including all headers and footers */
#wrapper {
  width:1000px;
  margin:auto;
  background-color: #FFF;
}

/* Styles for our layouts - dividing up the headers footers, etc */

#header {
    background-image : url(../images/header.png);
    background-repeat : no-repeat;  
    height:121px; /* Height of background image (168) minus padding (10+10) */
    padding:0 0 0 0;
    color:#000;
    background-color:#fff;
    width:1000px;
    text-align:left;
}

#menu {
	display: block;
	padding: 0 10px 0 10px;
}

#menulist li {
	float: left;
	background-color: #000;
	color: #FFF;
	height:35px;
	list-style: none;
	font-size: 11pt;
	font-weight: bolder;
	margin: 0 0px 0 0px;
	padding: 5px 5px 0px 5px;
}
#menulist li:hover {
	text-decoration: none;
}
#menulist li a {
	color:#fff;
	height:20px;
	padding: 5px 10px 0px 5px;
	display:block;
	text-decoration:none;
	vertical-align: middle;
	border-right: solid 2px #fff;
}
#menulist li a.last {
	color:#fff;
	height:20px;
	padding: 5px 10px 0px 5px;
	display:block;
	text-decoration:none;
	vertical-align: middle;
	border-right: solid 0px #fff;
}

#menulist li a:hover {
	color:#2e67b1;
	text-decoration: none;
}

#menu_login {
	background-color: transparent;
	float: left;
	padding: 0 0 0 0;
}
#footer {
	background: #FFF;
	height: 40px;
	color: #1b1b1b;
	padding: 5px 5px 5px 5px;
	border: solid 1px #2e67b1;
	margin: 5px 10px 5px 10px;
	font-size: 8pt;
}
#footer img {
	float: left;
}
#footer div {
	float: left;
	width: 550px;
	padding: 0 10px 0 10px;
	text-align: left;
	color: #777777;
}
#footer ul {
	float: right;
	color: #5e89c0;
	font-size: 8pt;
	padding-top: 20px;
}

#footer ul li {
	float: left;
	border-left: solid 1px #5e89c0;
	list-style: none;
	padding: 0 5px 0 5px;
}

#page {
    clear:both;
	 background-color: #fff;
	 padding: 0 10px 10px 10px;
    width: 980px;
    margin:10px 0 15px 0;
    text-align:left;
}
.two_columns {
	float: left;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	width: 980px;
}

.two_columns .column_one {
	background-color: #ccd6eb;
	float: left;
	width:260px;
	padding: 5px 3px 5px 3px;
	margin: 0 0 0 0;
}

.two_columns .column_two {
	background-color: #fff;
	float: right;
	width:675px;
	padding: 5px 3px 5px 3px;
	margin: 0 0px 0 10px;
}

.three_columns {
	float: left;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	width: 980px;
}

.three_columns .column_one {
	background-color: #ccd6eb;
	float: left;
	width:260px;
	padding: 5px 3px 5px 3px;
	margin: 0 0 0 0;
}

.three_columns .column_two {
	background-color: #fff;
	float: left;
	width:390px;
	padding: 5px 3px 5px 3px;
	margin: 0 10px 0 10px;
}

.three_columns .column_three {
	background-color: #ededed;
	float: right;
	width:285px;
	padding: 5px 3px 5px 3px;
	margin: 0 0 0 0;
}
/* Blockquote */
blockquote {
	background: transparent url(../images/blockquote_open.png) left top no-repeat;
	display: block;
	border-top: solid 1px #a19fa0;
	border-bottom: solid 1px #a19fa0;
	font-style: italic;
	padding: 10px 0px 0 0px;
	margin: 0px auto;
	quotes: "\201C" "\201D"; 
}
blockquote p {
  padding: 0 48px;
  background: transparent url(../images/blockquote_close.png) right bottom no-repeat;
}

blockquote:after {
	content: close-quote;
	height: 50px;
	margin-top: -50px;
	margin-left: 340px;
}
blockquote div.referer {
	color: #003399;
	font-weight: bold;
	font-style: normal;
	padding-left: 50px;
}

/* Boxes */
.box_blue {
	display: block;
	color: #000;
	background-color: #b1c5d9;
	margin: 0 0 10px 0;
	padding: 5px 5px 5px 5px;
}

.box_black {
	display: block;
	color: #fff;
	font-size: 10.5pt;
	background-color: #000;
	margin: 0 0 10px 0;
	padding: 15px 15px 15px 15px;
	line-height: 1.5em;
	text-align: center;
}

.box_features {
	display: block;
	color: #000;
	background-color: #fff;
	margin: 0 0 10px 0;
	padding: 0px 0px 0px 0px;
	border: solid 1px #003399;
}
.box_features p {
	position: relative;
	padding: 5px 5px 5px 5px;
}
.box_features img {
	float: right;
}
.box_features .box_header {
	display: block;
	background-color: #003399;
	color: #fff;
	font-size:13pt;
	font-weight: bold;
	text-align: center;
	line-height: 1.5em;
	margin: 0 0 0 0;
}

.box_features ul li {
	color: #777777;
	list-style: none inside url(../images/bullet.png);
	font-size: 10pt;
	font-weight: bold;
	padding: 5px 5px 0px 5px;
}

div.fyler_register {
	position:  relative;
	z-index: 100;
	background-image: url('../images/flyer_register.png');
	left:265px;
	top: -200px;
	height: 179px;
	width: 150px;
	margin-bottom: -160px;
}

.box_news {
	display: block;
	border-bottom: solid 1px #5984bc;
	margin: 0 0 10px 0;
	padding: 5px 5px 5px 5px;
}

.box_news img {
	float: left;
	margin: 5px 5px 5px 5px;
}
.box_news_header {
	display: block;
	border-bottom: solid 2px #5984bc;
	margin: 0 0 10px 0;
	padding: 15px 5px 5px 5px;
}
.box_news ol li, .box_news ul li {
	margin: 5px 10px 5px 30px;
	list-style-position: outside;
}

.box {
	display: block;
	margin: 0 0 10px 0;
	padding: 0px 5px 5px 5px;
}

.box .box_header {
	display: block;
	color: #000;
	font-size:15pt;
	font-weight: bold;
}

.box img {
	float: left;
	margin: 2px 2px 2px 2px;
}

.boxed {
	border: solid 1px #000;
	padding: 5px 5px 5px 5px;
}

.boxed img {
	float: left;
	margin: 5px 5px 5px 5px;
}

.boxed_blue_header {
	background-color: #243e8f;
	color: white;
	width: 400px;
	font-size: 1.2em;
	font-weight: bold;
	padding: 5px 0 0 5px;
	margin: 0 0 0 0;
}
.boxed_blue {
	border: solid 1px #243e8f;
	padding: 5px 5px 5px 5px;
	margin-bottom: 10px;
}

.boxed_blue img {
	float: left;
	margin: 5px 5px 5px 5px;
}

.boxed_blue .label {
	float: left;
	width: 150px;
	line-height: 1.4em;
	vertical-align: middle;
}
.boxed_blue .telephone {
	float: left;
	font-size: 1.4em;
	font-weight: bold;
	color: #243e8f;
}
.box_register {
	float: right;
	margin-top: -25px;
}
#solutions li {
	display: block;
	background-color: #b1c5d9;
	color: #000;
	height:25px;
	list-style: none;
	font-size: 10.5pt;
	font-weight: bold;
	padding: 10px 5px 0px 5px;
	margin: 0 0 0px 0;
}

#faq_list li {
	display: block;
	color: #777777;
	list-style: none;
	list-style-position: inside;
	font-weight: bold;
	padding: 5px 5px 0px 5px;
	margin: 0 0 0px 0;
}
.text_right {
	display: block;
	text-align: right;
}
.red_button_div {
	float: right;
	background: #fff url(/images/button_red.png) no-repeat;
	width: 100px;
	height: 30px;
	padding: 1px 1px 1px 1px;
	text-align: center;
}

.red_button_div a:link, .red_button_div a:visited, .red_button_div a:active, .red_button_div a:hover {
	color: white;
	line-height: 28px;
	font-weight: bold;
	text-decoration: none;
}
