/*

CSS STRUCTURE:

1. GENERAL TYPOGRAPHY
	1.1 Global Reset 
	1.2 Extra fonts
	1.3 General Styles	
	1.4 Columns Styles
		- 960px grid system
		- Box styles
	1.5 List Styles
	1.6 Borders & Dividers
	1.7 Headers
	1.8 Tables
	1.9 Images
	1.10 Forms
	1.11 Buttons
		- Color Styled Buttons

2. SITE STRUCTURE
	2.1 Header
		- topmenu		
	2.2 Search
	2.3 Middle content
	2.4 Sidebar
		- Custom menu
		- Flickr box
	2.5 Footer


/*============================================================================================*/
/* 1. GENERAL TYPOGRAPHY */
/*============================================================================================*/
/*----------------------------------------------*/
/* 1.1 Global Reset */
/*----------------------------------------------*/

body, html  { height: 100%; }
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	
}
body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
:focus { outline: 0; }/* remember to define focus styles! */
del { text-decoration: line-through; }
table { border-collapse: collapse; border-spacing: 0; }/* tables still need 'cellspacing="0"' in the markup */

/*----------------------------------------------*/
/* 1.2 Extra fonts */
/*----------------------------------------------*/
@font-face {
    font-family: 'CartoGothicStdBold';
    src: url('css/cartogothicstd-bold-webfont.eot');
    src: url('css/cartogothicstd-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('css/cartogothicstd-bold-webfont.woff') format('woff'),
         url('css/cartogothicstd-bold-webfont.ttf') format('truetype'),
         url('css/cartogothicstd-bold-webfont.svg#CartoGothicStdBold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CartoGothicStdBoldItalic';
    src: url('css/cartogothicstd-bolditalic-webfont.eot');
    src: url('css/cartogothicstd-bolditalic-webfont.eot?#iefix') format('embedded-opentype'),
         url('css/cartogothicstd-bolditalic-webfont.woff') format('woff'),
         url('css/cartogothicstd-bolditalic-webfont.ttf') format('truetype'),
         url('css/cartogothicstd-bolditalic-webfont.svg#CartoGothicStdBoldItalic') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CartoGothicStdBook';
    src: url('css/cartogothicstd-book-webfont.eot');
    src: url('css/cartogothicstd-book-webfont.eot?#iefix') format('embedded-opentype'),
         url('css/cartogothicstd-book-webfont.woff') format('woff'),
         url('css/cartogothicstd-book-webfont.ttf') format('truetype'),
         url('css/cartogothicstd-book-webfont.svg#CartoGothicStdBook') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CartoGothicStdItalic';
    src: url('css/cartogothicstd-italic-webfont.eot');
    src: url('css/cartogothicstd-italic-webfont.eot?#iefix') format('embedded-opentype'),
         url('css/cartogothicstd-italic-webfont.woff') format('woff'),
         url('css/cartogothicstd-italic-webfont.ttf') format('truetype'),
         url('css/cartogothicstd-italic-webfont.svg#CartoGothicStdItalic') format('svg');
    font-weight: normal;
    font-style: normal;
}

/*----------------------------------------------*/
/* 1.3 General Styles */
/*----------------------------------------------*/
body {
	font-family: Arial, Helvetica, sans-serif;
	color:#808080;
	font-size:13px;
	line-height:1.5em;
	background:#FFFFFF;}

.body_wrap {
	/*background:url(images/body_top.jpg) center top no-repeat;*/
	width:100%;
	min-height:400px;}

/* Floating & Alignment */
.aligncenter,
div.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto}

.alignleft {
	float: left}
	
.alignright {
	float: right}
	
.text-right {
	text-align:right}
.text-left {
	text-align:left}
.text-center {
	text-align:center}

.text-green {
	 color:#12a0a9}

.text-gray {
	 color:#808080}
	 	
.text-blue {
	 color:#12a0a9}	

/* Clear Floats */
.clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

.clearfix:before,
.clearfix:after {
	content: "\0020";
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}
.clearfix:after {
	clear: both;
}

.clearfix {
	zoom: 1; /*The following zoom:1 rule is specifically for IE6 + IE7.*/
}

* html .clearfix {
	height: 1%;}

.clearfix {
	display: block;}
	
.fix{
	clear: both;
	height: 1px;
	margin: -1px 0 0;
	overflow: hidden;}

html body * span.clear,
html body * div.clear,
html body * li.clear,
html body * dd.clear {
	background: none;
	border: 0;
	clear: both;
	display: block;
	float: none;
	font-size: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;}

a {
	outline:none;
	color:#12a0a9;
	text-decoration:none}
	
/*----------------------------------------------*/
/* 1.4 Columns Styles */
/*----------------------------------------------*/
/*
960px grid system ~ Core CSS.
12 Columns ~ Margin left: 10px ~ Margin right: 10px
*/

/* =Containers
--------------------------------------------------------------------------------*/
.container_12
{
	margin-left: auto;
	margin-right: auto;
	width: 960px;
}

/* =Grid >> Global
--------------------------------------------------------------------------------*/
.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12 {
	display: inline;
	float: left;
	margin-left: 10px;
	margin-right: 10px;
}

.push_1, .pull_1,
.push_2, .pull_2,
.push_3, .pull_3,
.push_4, .pull_4,
.push_5, .pull_5,
.push_6, .pull_6,
.push_7, .pull_7,
.push_8, .pull_8,
.push_9, .pull_9,
.push_10, .pull_10,
.push_11, .pull_11 {
	position: relative;
}

/* =Grid >> Children (Alpha ~ First, Omega ~ Last)
--------------------------------------------------------------------------------*/
.alpha {margin-left: 0;}
.omega {margin-right: 0;}

/* =Grid >> 12 Columns
--------------------------------------------------------------------------------*/
.container_12 .grid_1 {width: 60px;}
.container_12 .grid_2 {width: 140px;}
.container_12 .grid_3 {width: 220px;}
.container_12 .grid_4 {
	width: 350px;
}
.container_12 .grid_5 {width: 380px;}
.container_12 .grid_6 {width: 460px;}
.container_12 .grid_7 {width: 540px;}
.container_12 .grid_8 {width: 940px;}
.container_12 .grid_9 {width: 700px;}
.container_12 .grid_10 {width: 780px;}
.container_12 .grid_11 {width: 860px;}
.container_12 .grid_12 {width: 940px;}

/* =Prefix Extra Space >> 12 Columns
--------------------------------------------------------------------------------*/
.container_12 .prefix_1 {padding-left: 80px;}
.container_12 .prefix_2 {padding-left: 160px;}
.container_12 .prefix_3 {padding-left: 240px;}
.container_12 .prefix_4 {padding-left: 320px;}
.container_12 .prefix_5 {padding-left: 400px;}
.container_12 .prefix_6 {padding-left: 480px;}
.container_12 .prefix_7 {padding-left: 560px;}
.container_12 .prefix_8 {padding-left: 640px;}
.container_12 .prefix_9 {padding-left: 720px;}
.container_12 .prefix_10 {padding-left: 800px;}
.container_12 .prefix_11 {padding-left: 880px;}

/* =Suffix Extra Space >> 12 Columns
--------------------------------------------------------------------------------*/
.container_12 .suffix_1 {padding-right: 80px;}
.container_12 .suffix_2 {padding-right: 160px;}
.container_12 .suffix_3 {padding-right: 240px;}
.container_12 .suffix_4 {padding-right: 320px;}
.container_12 .suffix_5 {padding-right: 400px;}
.container_12 .suffix_6 {padding-right: 480px;}
.container_12 .suffix_7 {padding-right: 560px;}
.container_12 .suffix_8 {padding-right: 640px;}
.container_12 .suffix_9 {padding-right: 720px;}
.container_12 .suffix_10 {padding-right: 800px;}
.container_12 .suffix_11 {padding-right: 880px;}

/* `Push Space >> 12 Columns
--------------------------------------------------------------------------------*/
.container_12 .push_1 {left: 80px;}
.container_12 .push_2 {left: 160px;}
.container_12 .push_3 {left: 240px;}
.container_12 .push_4 {left: 320px;}
.container_12 .push_5 {left: 400px;}
.container_12 .push_6 {left: 480px;}
.container_12 .push_7 {left: 560px;}
.container_12 .push_8 {left: 640px;}
.container_12 .push_9 {left: 720px;}
.container_12 .push_10 {left: 800px;}
.container_12 .push_11 {left: 880px;}

/* `Pull Space >> 12 Columns
--------------------------------------------------------------------------------*/
.container_12 .pull_1 {left: -80px;}
.container_12 .pull_2 {left: -160px;}
.container_12 .pull_3 {left: -240px;}
.container_12 .pull_4 {left: -320px;}
.container_12 .pull_5 {left: -400px;}
.container_12 .pull_6 {left: -480px;}
.container_12 .pull_7 {left: -560px;}
.container_12 .pull_8 {left: -640px;}
.container_12 .pull_9 {left: -720px;}
.container_12 .pull_10 {left: -800px;}
.container_12 .pull_11 {left: -880px;}

/* Shortcode Columns (10px margin) */
.col_1,
.col_1_2,
.col_1_3,
.col_2_3,
.col_1_4,
.col_3_4,
.col_1_5,
.col_2_5,
.col_3_5,
.col_4_5,
.col_1_6,
.col_5_6,
.col_3_8,
.col_5_8,
.col_1_12 {
	display:inline;
	float: left;
	position: relative;
	margin-left: 10px;
	margin-right: 10px;}


.col_1 {width:940px;}
.col_1_2 {width:460px;}
.col_1_3 {width:300px}
.col_2_3 {width:620px}
.col_1_4 {width:220px}
.col_3_4 {width:700px}
.col_1_5 {width:172px;}
.col_2_5 {width:364px;}
.col_3_5 {width:556px;}
.col_4_5 {width:748px;}

.row .col_1_2 {width:470px;}
.row .col_1_3 {width:306px}
.row .col_2_3 {width:632px}
.row .col_1_4 {width:225px}
.row .col_3_4 {width:715px}
.row .col_1_5 {width:176px;}
.row .col_2_5 {width:362px;}
.row .col_3_5 {width:578px;}
.row .col_4_5 {width:764px;}

.grid_8 .row .col_1_2 {width:300px;}
.grid_8 .row .col_1_3 {width:193px}
.grid_8 .row .col_2_3 {width:406px}
.grid_8 .row .col_1_4 {width:140px}
.grid_8 .row .col_3_4 {width:460px}

.grid_2.box_border {width:118px}
.grid_3.box_border, .col_1_4.box_border {width:218px}
.grid_4.box_border, .col_1_3.box_border {width:290px}
.grid_6.box_border, .col_1_2.box_border {width:458px}
.grid_8.box_border, .col_3_4.box_border  {width:698px}
.col_2_5.box_border {width:342px;}
	
.row .alpha, .col.alpha {
	margin-left:0}
.row .omega, .col.omega {
	margin-right:0}

.row .grid_3 {
	width:176px;
	margin-left: 18px;
	margin-right: 18px;}

/* Box styles */
.box {
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;}

.box_border {
	border:1px solid #e5e5e5;}

.box_border2 {
	border-top:1px solid #e5e5e5;
	border-bottom:1px solid #e5e5e5;
	padding:30px 0 25px 0}

.noborder, 
.entry img.noborder {
	border:none !important}

.box_shadow {
	box-shadow: 0 0 3px black; 
	-moz-box-shadow: 0 0 3px rgba(0,0,0,0.15); 
    -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.15);}

.box_inner_shadow,
.box.box_inner_shadow {
	padding:45px 0 0 0;
	border:none}

.box_white {
	background:#fff;}

.box_light_gray {
	background:#f5f5f5}

.box_gray {
	background:#e9e9e9}

.box_green {
	background:#ddf5bf}

.box_yellow {
	background:#fcf896}

.box_blue {
	background:#e2f4f5}

.box_blue.box_border {
	border:1px solid #dde8e9}

.box_pink {
	background:#f1dde8}

.box .inner {
	padding:15px}

.sidebar .box h3 {
	font-size:18px}

/*----------------------------------------------*/
/* 1.5 List Styles */
/*----------------------------------------------*/
ul{ list-style:disc outside; }
ol{ list-style:decimal outside; }
li{ margin:2px 0;}
ol li{ margin-top:5px; margin-bottom:7px }
ul, ol, dd{ margin-left:25px; }
ul ul, ol ul, ul ol, ol ol{ margin-bottom:0; }

/*----------------------------------------------*/
/* 1.6 Borders & Dividers */
/*----------------------------------------------*/
hr{
	border:0px solid transparent !important;
	background-color:transparent !important;
	height:1px;}

.border {
	border:1px solid #d1d1d1}

.divider_space, .divider_space_thin, .divider, .divider_thin, .divider_dots, .divider_dots_full {
	clear:both;
	display:block;
	margin-bottom:25px;
	padding-top:26px;
	width:100%;}

.divider_space_thin {
	margin-top:5px;
	margin-bottom:5px;}
	
.divider_thin {
	margin-bottom:15px;
	padding-top:15px;
	background:url(images/divider_line.gif) bottom repeat-x;}

.divider{
	background:url(images/divider_line.gif) bottom repeat-x;}

.footer .divider{}

.divider_dots {
	background:url(images/divider_dots.gif) center bottom no-repeat;
	margin-bottom:20px;
	padding-top:20px;}

.divider_dots_full {
	background:url(images/divider_dots_full.gif) center bottom no-repeat;
	margin-bottom:40px;
	padding-top:45px;}

.content .divider_dots {
	margin-bottom:40px;
	padding-top:41px;}

/*----------------------------------------------*/
/* 1.7 Headers */
/*----------------------------------------------*/
h1,h2,h3,h4,h5,h6{
	font-weight:normal;
	font-family:'CartoGothicStdBook', Arial, Helvetica, sans-serif;
	color:#474747;
	line-height:1.2em}
	
.playSlider h1{
	color:#FFF;
	font-size:22px;
}
	
h1{
	font-size:27px;}	
	
h2{
	font-size:25px;
	margin-bottom:15px}
	
h3{
	font-size:22px;
	margin-bottom:10px}
	
h3.widgettitle{
	margin-bottom:10px; }
	
h4{
	font-size:18px;
	margin-bottom:10px;}
	
h5{
	font-size:17px;}
	
h6{
	font-size:14px;}

h1 span, h2 span, h3 span ,h4 span, h5 span {
	color:#12a0a9}

.entry h1, .post-item .entry h1 {
	margin:0 0 20px 0;
	padding:0}

.entry h2, .post-item .entry h2 {	
	font-size:25px;
	margin:40px 0 10px}

.entry h3, .post-item .entry h3 {
	font-size:23px;
	margin:35px 0 10px;}

.entry h4, .post-item .entry h4 {
	font-size:18px;
	margin:30px 0 10px;
	font-family:Georgia, "Times New Roman", Times, serif;
	color:#ca2b63;
	font-style:italic}

.entry h5, .post-item .entry h5 {
	font-size:17px;
	margin:25px 0 10px;
	font-family:Georgia, "Times New Roman", Times, serif;
	color:#ca2b63;
	font-style:italic}

.entry h6, .post-item .entry h6 {
	margin:25px 0 10px;
	color:#ca2b63;}

.title_brown, .box .title_brown {
	color:#653c17}

.title_green, .box .title_green {
	color:#a5cd39}

.title_pink {
	color:#ca2b63}

.title_pink2,
.post-item .entry .title_pink2 {
	color:#ca2b63;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style:italic;
	font-size:18px}

.title_blue {
	color:#12a0a9;}

.title_blue2,
.post-item .entry .title_blue2 {
	color:#12a0a9;
	font-size:20px;
	margin-top:35px}
	
.text_italic {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style:italic;}

.title_address, 
.post-item .entry .title_address {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style:italic;
	color:#12a0a9;
	font-size:16px;
	margin:20px 0 20px 0}

/*----------------------------------------------*/
/* 1.8 Tables */
/*----------------------------------------------*/
table,td,th { vertical-align:middle; text-align:center; }
th{ padding:5px; font-size:14px; letter-spacing:1px;}
td{ font-size:13px; padding:5px; }

/*----------------------------------------------*/
/* 1.9 Images */
/*----------------------------------------------*/
img.alignleft {
	margin:5px 20px 5px 0 !important;}
img.alignright {
	margin:5px 0 5px 20px !important;}

.entry .col_1_2 img.alignleft {
	margin:3px 15px 3px 0 !important;}

.entry .col_1_2 img.alignright {
	margin:3px 0 3px 15px !important;}

span.preload.alignleft {
	float:left;
	display: inline-block;
	margin:5px 20px 5px 0 !important;}

span.preload.alignright  {
	float:right;
	display: inline-block;
	margin:5px 0 5px 20px !important;}

span.preload.aligncentert  {
	float:right;
	display: inline-block;
	margin:5px auto;}

.video_frame,.wp-caption,#flickr a img, dl.gallery-item img{ padding:6px;margin:2px; }
p.wp-caption-text{
	margin-bottom:0px;
	text-align:center;}
	
.wp-caption{
	margin-bottom:10px !important;
	padding-top:10px;
	text-align:center;}
	
.image_frame img, img.image_frame {
	background:#fff;
	border:4px solid #ebebeb}

/*----------------------------------------------*/
/* 1.10 Forms */
/*----------------------------------------------*/
fieldset{
	padding:20px;
	border:1px solid #e0e0e0;}
form .row {
	padding:5px 0}
input[type=text],input[type=password],textarea{
	color:#666;
	padding:5px;
	border:1px solid #dcdcdc;
	background:#f5f5f5;
	resize:none}
	
textarea{
	width:90%;
	font-size:12px;
	background:#fff;
	overflow:auto;}
	
input, textarea,input[type="submit"]:focus{
	outline:0 none;}
	
input[type="radio"],input[type="checkbox"]{
	margin-right:10px; margin-left:10px;}
	
button::-moz-focus-inner {
	border: 0;
	padding: 0;}
	
input[type="reset"],input[type="submit"],input[type="button"], button{
	border:none;
	color:#fff;
	margin:10px 0;
	outline-width:0;
	padding:3px 35px 3px 15px;
	height:32px;
	line-height:30px;
	text-align:left;
	font-family:'CartoGothicStdBold', Arial, Helvetica, sans-serif;
	font-size:11px;
	text-shadow:0 1px 1px #000;}	
	
input[type="button"]:hover, input[type="button"]:focus,input[type="reset"]:hover,
input[type="reset"]:focus,input[type="submit"]:hover,input[type="submit"]:focus,
button:hover,button:focus{
	color:#fff;
	cursor:pointer;}

/*----------------------------------------------*/
/* 1.11 Buttons */
/*----------------------------------------------*/
.button_link {
	background:url(images/buttons_bg_gray.png) no-repeat scroll right -32px transparent;
	color:#12a0a9;
	display:inline-block;
	margin:5px 0;
	border:0 none;
	padding:0 35px 0 0;
	font-family:'CartoGothicStdBold', Arial, Helvetica, sans-serif;
	font-size:11px;
	text-align:left;
	text-decoration:none}

.button_link span {
	background:url(images/buttons_bg_gray.png) no-repeat scroll left 0 transparent;
	display:block;
	line-height:32px;
	padding:0 10px 0 12px;
	color:#737373;
	min-width:100px;
	cursor:pointer;
	text-shadow:0 1px 1px #fff;
	text-transform:uppercase}

.button_link:hover,
.button_link:active,
.button_link:hover span {}
	
/* Color Styled Buttons */
.btn_blue, .btn_blue span {
	background-image:url(images/buttons_bg_blue.png);
	color:#fff;
	text-shadow:0 1px 1px #0a2c2e}

.btn_black, .btn_black span {
	background-image:url(images/buttons_bg_black.png);
	color:#fff;
	text-shadow:0 1px 1px #000}

.btn_green, .btn_green span {
	background-image:url(images/buttons_bg_green.png);
	color:#33680f;}

.btn_pink, .btn_pink span {
	background-image:url(images/buttons_bg_pink.png);
	color:#fff;
	text-shadow:0 1px 1px #000;}

.btn_yellow, .btn_yellow span {
	background-image:url(images/buttons_bg_yellow.png);
	color:#776512;}

.button_styled {
	display: inline-block;
	margin:5px 1px;
	border:none;
	padding:0 12px;
	font-family:'CartoGothicStdBold', Arial, Helvetica, sans-serif;
	font-size:11px;
	line-height:30px;
	text-align:left;
	text-decoration:none;
	color:#12a0a9;
	background:#3c444f;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	text-transform:uppercase;
	text-shadow:0 1px 1px #333;
	min-width:126px;}

.button_styled span {
	padding:0;}

.button_styled:hover, .button_styled:hover span {
	color:#fff}

/*============================================================================================*/
/* 2. SITE STRUCTURE */
/*============================================================================================*/
.container {
	width:992px;
	margin:0 auto}
	
/*----------------------------------------------*/
/* 2.1 Header */
/*----------------------------------------------*/
.header_top .container {
	height:119px;}

.logo {
	padding:0 0 0 12px;
	width:312px;
	float:left}
	
.header_contacts {
	text-align:right;
	padding-top:43px;
	color:#325b7b;
	font-family:'CartoGothicStdBold', Arial, Helvetica, sans-serif;
	font-size:14px;
	text-shadow:0 1px 1px #fff;
	line-height:1.2em}

.header_contacts p {
	margin:0 17px 10px 0}

.header_contacts a,
.header_contacts .icon_phone {
	color:#12a0a9}

.header_contacts .icon_phone {
	background:url(images/icons/header_phone.png) right 0 no-repeat;
	padding-right:22px}

.header_contacts .icon_map {
	background:url(images/icons/header_map.png) right 0 no-repeat;
	padding-right:22px}

.header_contacts .icon_map:hover {
	color:#ce205a}

.header_menu {
	/*background:url(images/bg_content_top.png) center bottom no-repeat;*/
	position:relative;
	z-index:2}
	
.header_menu .container {
	height:63px}

.header_bot {
	/*background:url(images/bg_content_top2.png) center center repeat-y;*/
	padding-top:24px;
	position:relative;
	z-index:1}

.header_bot .container {
	width:960px;}

.header_slider .container {
	/*background:url(images/header_slider_shadow.jpg) center bottom no-repeat;*/
	padding-bottom:48px;}

.header_image .container {
	/*background:url(images/header_image_shadow.jpg) center bottom no-repeat;*/
	padding-bottom:41px;}

/* topmenu */
.topmenu {
	height:54px;
	padding:9px 7px 0 7px;
	position:relative;}

.topmenu .dropdown {
	font-family:'CartoGothicStdBold', Arial, Helvetica, sans-serif;
	font-size:16px;
	line-height:54px;
	color:#325b7b;	
	z-index:1300;
	margin:0;
	padding:0;
	text-shadow:1px 2px 1px #fff}

.topmenu .dropdown li {
	display:block;
	float:left;
	margin:0;
	position:relative;
	list-style:none;
	padding:0 15px 0 0;
	margin:0 2px;
	/*background:url(images/topmenu_line.png) right bottom no-repeat;*/
	}

.topmenu .dropdown li.current-prev {
	background:none}

.topmenu .dropdown li a {
	display:block;
	color:#325b7b;
	height:54px;
	text-decoration:none;
	padding:0 25px 0 25px;}

.topmenu .dropdown li a span {
	display:block;
	padding-top:2px}

.topmenu .dropdown .current-menu-ancestor,
.topmenu .dropdown .current-menu-item{
/*	background:url(images/topmenu_current.png) no-repeat scroll right -54px transparent;*/
	padding:0 15px 0 0;}

.topmenu .dropdown .current-menu-ancestor a,
.topmenu .dropdown .current-menu-item a {
	/*background:url(images/topmenu_current.png) no-repeat scroll left 0 transparent;*/
/*	padding:0 10px 0 25px;*/
	cursor:pointer}

.topmenu .dropdown li a:hover,
.topmenu .dropdown .current-menu-item a,
.topmenu .dropdown .current-menu-item li a:hover,
.topmenu .dropdown .current-menu-item .current_page_item a,
.topmenu .dropdown .current-menu-ancestor a,
.topmenu .dropdown .current-menu-ancestor a:hover,
.topmenu .dropdown li li.current-menu-ancestor a,
.topmenu .dropdown li .current-menu-ancestor .current-menu-item a,
.topmenu .dropdown .menu-item-home.current-menu-item a, 
.topmenu .dropdown .menu-item-home a:hover{
	color:#ca2b63;}

.topmenu .dropdown .current-menu-item ul li a,
.topmenu .dropdown .current-menu-ancestor ul li a,
.topmenu .dropdown .current-menu-ancestor .current-menu-item li a,
.topmenu .dropdown .menu-item-home ul li a,
.topmenu .dropdown .current-menu-ancestor .current-menu-ancestor li a {
	color:#fefefe;
	/*background:url(images/dropdown_1_line.png) center bottom no-repeat*/;}

.topmenu .dropdown li ul li a:hover,
.topmenu .dropdown .current-menu-ancestor ul li a:hover,
.topmenu .dropdown .current-menu-ancestor .current-menu-item a,
.topmenu .dropdown .current-menu-ancestor li .current-menu-item a,
.topmenu .dropdown li .current-menu-item a,
.topmenu .dropdown li.parent li a:hover,
.topmenu .dropdown .current-menu-ancestor .current-menu-ancestor a{
	color:#a4e8ed}

.topmenu .dropdown li ul {
	display:none;
	position: absolute;
	top: 42px;
	left:15px;
	z-index: 1308;
	width: 173px;
	padding:0;
	margin:0;
	font-family:'CartoGothicStdBook', Arial, Helvetica, sans-serif;
	font-size:13px;
	text-shadow:1px 1px 1px #000;}

.topmenu .dropdown li ul li ul {
	display:none;
	position: absolute;
	top:-7px;
	left:169px !important;
	z-index: 1308;}

.topmenu .dropdown li.last ul li ul {
	left:-169px !important}

.topmenu .dropdown li ul li.first ul {
	top:9px}
	
.topmenu .dropdown li ul li,
.topmenu .dropdown li ul li.current-prev,
.topmenu .dropdown li .current-menu-item,
.topmenu .dropdown li .current-menu-ancestor {
	display:block;
	background:url(images/dropdown_1_bg.png) 0 0 repeat-y;
	padding:0;
	width: 173px;
	margin:0;
	height:auto;
	clear:both;
	position:relative;
	line-height:1.3em}

.topmenu .dropdown li ul li ul li,
.topmenu .dropdown .current-menu-ancestor .current-menu-ancestor li,
.topmenu .dropdown li li .current-menu-item {
	background:url(images/dropdown_1_bg2.png) 0 0 repeat-y;}

.topmenu .dropdown li ul .first,
.topmenu .dropdown li ul .current-prev.first {
	background:url(images/dropdown_1_first.png) 0 top no-repeat;
	padding-top:10px}

.topmenu .dropdown li ul li ul .first,
.topmenu .dropdown .current-menu-ancestor .current-menu-ancestor .first {
	background:url(images/dropdown_1_first2.png) 0 top no-repeat;
	padding-top:4px}
	
.topmenu .dropdown li ul .last {
	background:url(images/dropdown_1_last.png) 0 bottom no-repeat;
	padding:0 0 6px 0;}

.topmenu .dropdown li ul li ul .last,
.topmenu .dropdown .current-menu-ancestor .current-menu-ancestor .last  {
	background:url(images/dropdown_1_last2.png) 0 bottom no-repeat;}

.topmenu .dropdown .last ul li ul .first,
.topmenu .dropdown .last.current-menu-ancestor ul li ul .first {
	background:url(images/dropdown_1_first3.png) 0 top no-repeat;
	padding-top:4px}

.topmenu .dropdown .last ul li ul li,
.topmenu .dropdown .last.current-menu-ancestor li li{
	background:url(images/dropdown_1_bg3.png) 0 0 repeat-y;}

.topmenu .dropdown .last ul li ul .last,
.topmenu .dropdown .last.current-menu-ancestor li .last {
	background:url(images/dropdown_1_last3.png) 0 bottom no-repeat;}

.topmenu .dropdown li ul li a,
.topmenu .dropdown li ul li.last ul li a,
.topmenu .dropdown li .current-menu-item a,
.topmenu .dropdown .current-menu-ancestor li a,
.topmenu .dropdown .current-menu-item li a {
	display:block;
	color:#fefefe;
	height: auto;
	padding:10px 15px 10px 16px;
	background:url(images/dropdown_1_line.png) center bottom no-repeat;}

.topmenu .dropdown li ul li ul li a,
.topmenu .dropdown .current-menu-ancestor .current-menu-ancestor li a,
.topmenu .dropdown li li .current-menu-item a {
	background:url(images/dropdown_1_line2.png) center bottom no-repeat;
	padding:10px 15px 10px 23px}

.topmenu .dropdown .last li li a,
.topmenu .dropdown .last.current-menu-ancestor li li a {
	background:url(images/dropdown_1_line3.png) center bottom no-repeat;
	padding:10px 15px 10px 20px}

.topmenu .dropdown li ul li.last a,
.topmenu .dropdown li ul li ul .last a,
.topmenu .dropdown .current-menu-ancestor .last a,
.topmenu .dropdown .last.current-menu-ancestor li .last a {
	background:none}

.topmenu .dropdown li li a span {
	display:block;
	padding-top:0px}

.topmenu .dropdown li a:hover span {
	cursor:pointer}

.topmenu .dropdown li ul .parent span {
	background:url(images/dropdown_1_arrow.png) 130px 4px no-repeat;
	padding-right:10px}

.topmenu .dropdown li ul .parent a:hover span {
	background:url(images/dropdown_1_arrow.png) 131px 4px no-repeat;}

.topmenu .dropdown li ul .parent ul li span,
.topmenu .dropdown li ul .parent ul a:hover span {
	background:none;
	padding-right:0px}

.topmenu .dropdown li:hover ul li ul {
	display:none;}	

.topmenu .dropdown li:hover ul,
.topmenu .dropdown li:hover ul li:hover ul{
	display:block}
	
.preloader { 
	background:url(images/loading.gif) center center no-repeat; 
	display:inline-block; }

/*----------------------------------------------*/
/* 2.2 Search */
/*----------------------------------------------*/
.widget_search label {
	display:none}

.widget_search {
	width:300px}

.sidebar .widget_search {
	width:265px}

.footer .grid_2 .widget_search {
	width:140px}

.widget_search input {
	border:none;
	margin:0;
	padding:0;
	float:left}

.widget_search #searchform {
	width:300px;
	height:32px;
	padding:0;
	position:relative}

.sidebar .widget_search #s {
	width:170px}

.widget_search cite {
	display:none}
	
.widget_search #s{
	border:2px solid #d0d0d0;
	background:#fff;
	color:#808080;
	height:18px;
	width:205px;
	padding:6px 5px 6px 5px;	
	margin:0;
	line-height:14px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style:italic;
	font-size:14px;}

.widget_search #searchsubmit {
	width:67px;
	height:32px;
	float:left;
	margin:2px 0 0 5px;
	padding:0;
	color:#737373;
	text-shadow:0 1px 1px #fff;
	font-family:'CartoGothicStdBold', Arial, Helvetica, sans-serif;
	font-size:11px;
	text-transform:uppercase;
	background:url(images/buttons_submit_2.png) no-repeat;
	text-align:center;}

.footer .grid_2 .widget_search #searchform {
	width:140px}

.footer .grid_2 .widget_search #s{
	width:120px;
	padding:5px}

.footer .grid_2 .widget_search #searchsubmit {
	display:none}

/*----------------------------------------------*/
/* 2.3 Middle content */
/*----------------------------------------------*/
.middle {
	clear:both;
	/*background:url(images/bg_content_mid.png) center center repeat-y;*/
	}

.middle .container_12 {
	min-height:300px;
	padding-bottom:45px;}

.middle_bot {
	/*background:url(images/bg_content_bot.png) center top no-repeat;*/
	height:17px;}

/*.sidebarRight .container_12{
	background:url(images/sidebar_menu_bg.jpg) 650px 0 no-repeat;}*/

.nobg .container_12{
	background:none !important}

/*.sidebarLeft .container_12{
	background:url(images/sidebar_menu_bg_left.jpg) 10px 0 no-repeat;}*/

.container_12 {
	line-height:1.6em}
	
.container_12 a:hover {
	color:#ce205a}

.container_12 p {
	margin:0 0 0 0}

.text-block-1 {
	padding:0 20px}

.title_icon {
	min-height:87px;
	margin-bottom:15px}
	
.title_icon img {
	float:right;
	margin-left:20px;}

.title_icon h2, .title_icon h3 {
	padding-top:15px;}

.title_black {
	color:#1a1a1a;
	text-shadow:1px 1px 1px #fff}

.link_arrow_left, .link_arrow_right, .link-more {
	color:#ca2b63;
	background:url(images/arrow_pink_left.png) 0 7px no-repeat;
	padding:0 0 0 13px;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:15px;
	font-style:italic}

.link_arrow_right, 
.content .link-more {
	background:url(images/arrow_pink_right.png) right 7px no-repeat;
	padding:0 13px 0 0;
	color:#ca2b63;}
	
/* cat title */
.cat_title {
	clear:both;
	background:url(images/divider_line.gif) bottom repeat-x;
	padding-bottom:16px;
	margin:5px 0 20px;}

.cat_title a {
	text-decoration:none}	

.cat_title h2, .cat_title h1 {
	color:#474747;
	margin:0;
	font-family:'CartoGothicStdBook', Arial, Helvetica, sans-serif;
	font-size:27px;
	float:left;}

.sort {
	width:150px;
	float:right;
	margin-bottom:-1px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:bold;
	text-transform:uppercase}
	
.sort a {
	color:#676767;
	text-decoration:none;
	display:block;
	float:right;
	padding:5px 10px 10px 10px}

.sort a.active {}

/*----------------------------------------------*/
/* 2.4 Sidebar  */
/*----------------------------------------------*/
.sidebar h3 {
	font-size:21px;
	color:#474747;
	font-family:'CartoGothicStdBook', Arial, Helvetica, sans-serif;
	margin-bottom:10px}

.sidebar ul, .sidebar ol {
	margin:0;
	padding:0}

.sidebar ul li {
	list-style:none}

.sidebar_space {
	padding:10px }

.sidebar_baner {
	padding:15px 0}

/* Custom menu */
.tf_menu_left .inner{
	text-align:right;
	padding:0}

.tf_menu_right .inner {
	text-align:left;
	padding:0}

.tf_menu_left h3 {
	padding-right:30px}

.tf_menu_right h3 {
	padding-left:30px}

.tf_menu_left li,
.tf_menu_right li  {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size:14px;
	color:#3c444f;
	line-height:38px;}

.tf_menu_left li a,
.tf_menu_right li a {
	color:#3c444f;
	text-decoration:none;
	display:block;
	padding:0 30px 0 0;}

.tf_menu_right li a {
	padding:0 0 0 30px}

.tf_menu_left li a:hover,
.tf_menu_left .current-menu-item a, 
.tf_menu_left .current-menu-ancestor a {
	color:#804712;
	text-shadow:0 2px 1px #fff;}

.tf_menu_left .current-menu-item a,
.tf_menu_right .current-menu-item a  {
	font-weight:bold}

.tf_menu_right li a:hover,
.tf_menu_right .current-menu-item a, 
.tf_menu_right .current-menu-ancestor a {
	color:#804712;
	text-shadow:0 2px 1px #fff;
}

.tf_menu_left .current-menu-ancestor a,
.tf_menu_right .current-menu-ancestor a {
	color:#3c444f}

.tf_menu_left li ul li a,
.tf_menu_left .current-menu-ancestor ul li a,
.tf_menu_right li ul li a,
.tf_menu_right .current-menu-ancestor ul li a{
	background:none;
	color:#3c444f;}
	
.tf_menu_left li ul .current-menu-item a,
.tf_menu_right li ul .current-menu-item a  {
	background:none;
	color:#804712;}

.tf_menu_left li ul,
.tf_menu_right li ul {
	margin-bottom:5px}
	
.tf_menu_left li ul li,
.tf_menu_right li ul li {
	font-size:13px;
	line-height:25px;
	padding:0 25px 0 0;}

.tf_menu_right li ul li {
	padding:0 0 0 25px;}

.tf_menu_left li ul li a,
.tf_menu_right li ul li a  {
	color:#555}

.tf_menu_left li ul li a:hover,
.tf_menu_right li ul li a:hover {
	color:#804712;
	background:none}

/* Flickr box */
.box_flickr {
	padding:5px}
	
.box_flickr h3 {
	
	font-size:20px;
	color:#3c444f;
	margin:10px 0 10px 10px}

.box_flickr ul {
	margin:0;}
	
.box_flickr li {
	display:block;
	float:left;
	margin:10px;}
	
.box_flickr li img {
	background:#fff;
	border:1px solid #848484;
	padding:5px}

/*----------------------------------------------*/
/* 2.5 Footer */
/*----------------------------------------------*/
.footer {
	/*background:url(images/body_bot.jpg) center bottom no-repeat;*/
	color:#394547;
	font-size:12px;
	padding:50px 0 20px 0}

.footer .container_12 {
	min-height:140px;}

.footer a {
	color:#394547;}

.footer a:hover {
	color:#12a0a9}

.footer h3 {
	font-size:16px;
	color:#325b7b;
	margin:0 0 20px 0;
	padding:0}

.footer .widget-container h3,
.footer .widget-container .widget-title {
	margin:10px 0 5px 0}

.footer .widget-container {
	text-align:left}

.footer ul {
	margin:0;
	padding-bottom:10px;}
	
.footer ul li {
	list-style:none;
	margin-bottom:8px;}

.footer_logo {
	float:right;}
	
.copyright {
	text-align:right;
	padding:0 40px;
	font-size:11px;}

.copyright a {
	color:#12a0a9}

.copyright a:hover {
	color:#ce205a}

/* Widget Contact Info  */
.widget-container.widget_contact {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	color: #b4b4b4;
	width: 270px;
	margin: 10px 0 15px 0
}

.sidebar .widget-container.widget_contact {
	margin: 0;
	border-bottom: none;
	width: 380px
}

.widget-container.widget_contact .inner {
	font-style:italic;
	border:1px solid #e1e1e1;
	background:#f4f4f4;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	padding:5px 15px;}

.content .col_1_2 .widget_contact {
	width:270px}

.widget_contact .contact-phone,
.widget_contact .contact-mail,
.widget_contact .contact-address {
	background:url(images/contact_line.gif) 0 top repeat-x;
	padding:12px 0;
	clear:both;
	line-height:1.4em}

.widget_contact .contact-phone {
	background:none}	

.widget_contact .contact-phone label,
.widget_contact .contact-mail label,
.widget_contact .contact-address label {
	background:url(images/icons/icon_phone_small.png) 0 2px no-repeat;
	padding-left:22px;
	margin-right:3px}

.widget_contact .contact-mail label {
	background-image:url(images/icons/icon_mail_small.png);}

.widget_contact .contact-address label {
	background-image:url(images/icons/icon_map_small.png);}
	
.widget_contact .contact-phone strong {
	font-size:17px;
	color:#ce205a;
	font-weight:normal}

.widget_contact .contact-mail a,
.widget_contact .contact-address a {
	font-size:17px;}
/*----------------------------------------------*/
/* Comment form */
/*----------------------------------------------*/
.comment-form {
	padding:15px 0;}

.comment-form .row {
	padding:7px 0}

.comment-form .row label {
	color:#808080;
	font-size:13px;
	display:block;}

.comment-form .inputtext, .comment-form .textarea {
	font-size:13px;
	font-family:Arial, Helvetica, sans-serif;
	line-height:14px;
	color:#666;
	padding:7px;
	border:2px solid #d0d0d0;
	background:#fff;
	width:220px;
	margin:5px 0}

.comment-form .inputtext {
	margin-right:20px;
	padding:7px;
	height:15px;}

.comment-form .inputtext:focus,
.comment-form .textarea:focus {
	border:2px solid #999}

.comment-form .textarea {
	width:480px;
	height:130px;
	padding:7px;
	overflow:auto;}

.btn-submit, 
.contact-form .btn-submit,
.contact-form-footer .btn-submit, 
.comment-form .btn-submit{
	background:url(images/buttons_submit.png) 0 0 no-repeat;
	width:163px;
	height:32px;
	line-height:32px;
	padding:0 35px 0 12px;
	color:#fff;
	font-family:'CartoGothicStdBold', Arial, Helvetica, sans-serif;
	font-size:11px;
	text-shadow:0 1px 1px #000;
	text-transform:uppercase;
	border:none;}

.comment-form .btn-submit,
.contact-form .btn-submit {
	background:url(images/buttons_submit.png) 0 0 no-repeat;}

.comment-form .btn-submit:hover,
.contact-form .btn-submit:hover{
	background:url(images/buttons_submit.png) 0 0 no-repeat;}

.comment-form .btn-submit,
.comment-form .btn-submit:hover {
	background:url(images/buttons_submit_2.png) 0 0 no-repeat;
	width:67px;
	color:#737373;
	text-shadow:0 1px 1px #fff;
	padding:0;
	text-align:center}
.valid{border:1px solid #70A41B!important; overflow:hide;} /*#70A41B*/
.error {overflow:hide; border:1px solid red!important; }	


/*----------------------------------------------*/
/* Contact Form  */
/*----------------------------------------------*/
.contact-form {
	padding:20px 0 20px 10px;}

.text .contact-form h2 {
	font-size:25px;}

.contact-form {
	font-size:13px}

.contact-form .row {
	padding:10px 0}

.contact-form .inputtext, .contact-form select, .contact-form textarea {
	color:#474747;
	margin:5px 0;
	padding:7px 10px;
	font-size:13px;
	font-family:Arial, Helvetica, sans-serif;
	background:#f5f5f5}

.contact-form .field_text .inputtext {
	width:250px;
	margin-right:40px}

.contact-form .omega .inputtext {
	margin-right:0}
	
.contact-form .ui-selectmenu {
	margin-right:40px}

.contact-form .field_select .select_styled {
	width:270px !important;
	padding:0}

.contact-form .field_textarea textarea {
	width:560px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:13px;
	margin-bottom:0;
	resize:none}

.contact-form label {
	font-family: Georgia, "Times New Roman", Times, serif;
	color:#12a0a9;
	font-style:italic;}

.reset-link {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: italic;
	display: block;
	float: right;
	padding: 10px 350px 0 0;
}
	
.contact-form .reset-link a {
	color:#929292;
	text-decoration:none;}

.contact-form .reset-link a:hover {
	color:#ce205a;}

.contact-form .field_submit {
	padding:0}
