/*
superfish
*/
/* $Id: superfish.css,v 1.3 2010/03/27 09:18:40 mehrpadin Exp $ */
/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sf-menu {
  line-height: 1.0;
  z-index: 99;
}
.sf-menu ul {
  padding-left: 0 !important;
  position: absolute;
  top: -999em;
  width: 10em; /* left offset of submenus need to match (see below) */
}
.sf-menu ul li {
  width: 100%;
}
.sf-menu li:hover {
  visibility: inherit; /* fixes IE7 'sticky bug' */
}
.sf-menu li {
  float: left;
  position: relative;
}
.sf-menu a {
  display: block;
  position: relative;
}
.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
  left: 0;
  top: 2.5em; /* match top ul list item height */
  z-index: 99;
}
ul.sf-menu li:hover li ul,
ul.sf-menu li.sfHover li ul {
  top: -999em;
}
ul.sf-menu li li:hover ul,
ul.sf-menu li li.sfHover ul {
  left: 10em; /* match ul width */
  top: 0;
}
ul.sf-menu li li:hover li ul,
ul.sf-menu li li.sfHover li ul {
  top: -999em;
}
ul.sf-menu li li li:hover ul,
ul.sf-menu li li li.sfHover ul {
  left: 10em; /* match ul width */
  top: 0;
}
/*** DEMO SKIN ***/
.sf-menu {
  float: left;
  margin-bottom: 1em;
}
.sf-menu a {
  
  padding: .75em 1em;
  text-decoration: none;
}
.sf-menu a, .sf-menu a:visited  { /* visited pseudo selector so IE6 applies text colour*/
  color: #13a;
}
.sf-menu li {
  background: #BDD2FF;
}
.sf-menu li li {
  background: #AABDE6;
}
.sf-menu li li li {
  background: #9AAEDB;
}
.sf-menu li:hover, .sf-menu li.sfHover,
.sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {
  background: #CFDEFF;
  outline: 0;
}

/*** arrows **/
.sf-menu a.sf-with-ul {
  padding-right: 2.25em;
  min-width: 1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator {
  position: absolute;
  display: block;
  right: .75em;
  top: 1.05em; /* IE6 only */
  width: 10px;
  height: 10px;
  text-indent: -999em;
  overflow: hidden;
  background: url('../images/arrows-ffffff.png') no-repeat -10px -100px;
}
a > .sf-sub-indicator {  /* give all except IE6 the correct values */
  top: .8em;
  background-position: 0 -100px; /* use translucent arrow for modern browsers*/
}
/* apply hovers to modern browsers */
a:focus > .sf-sub-indicator,
a:hover > .sf-sub-indicator,
a:active > .sf-sub-indicator,
li:hover > a > .sf-sub-indicator,
li.sfHover > a > .sf-sub-indicator {
  background-position: -10px -100px; /* arrow hovers for modern browsers*/
}

/* point right for anchors in subs */
.sf-menu ul .sf-sub-indicator {
  background-position: -10px 0;
}
.sf-menu ul a > .sf-sub-indicator {
  background-position: 0 0;
}
/* apply hovers to modern browsers */
.sf-menu ul a:focus > .sf-sub-indicator,
.sf-menu ul a:hover > .sf-sub-indicator,
.sf-menu ul a:active > .sf-sub-indicator,
.sf-menu ul li:hover > a > .sf-sub-indicator,
.sf-menu ul li.sfHover > a > .sf-sub-indicator {
  background-position: -10px 0; /* arrow hovers for modern browsers*/
}

/*** shadows for all but IE6 ***/
.sf-shadow ul {
  background: url('../images/shadow.png') no-repeat bottom right;
  padding: 0 8px 9px 0;
  -moz-border-radius-bottomleft: 17px;
  -moz-border-radius-topright: 17px;
  -webkit-border-top-right-radius: 17px;
  -webkit-border-bottom-left-radius: 17px;
}
.sf-shadow ul.sf-shadow-off {
  background: transparent;
}
/* RTL Superfish - By Chad Kieffer (Modified by Mehrpadin) ~~~~~~~~~~~~~~~~~~~~~~~~~ */
.sf-menu.rtl,
.sf-menu.rtl li {
  float: right;
}
.sf-menu.rtl a.sf-with-ul {
  padding-left: 2.25em;
  padding-right: 1em;
}
.sf-menu.rtl .sf-sub-indicator {
  left: .75em !important;
  right: auto;
  background: url('../images/arrows-ffffff-rtl.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
}
.sf-menu.rtl a > .sf-sub-indicator {  /* give all except IE6 the correct values */
  top: .8em;
  background-position: -10px -100px; /* use translucent arrow for modern browsers*/
}
/* apply hovers to modern browsers */
.sf-menu.rtl a:focus > .sf-sub-indicator,
.sf-menu.rtl a:hover > .sf-sub-indicator,
.sf-menu.rtl a:active > .sf-sub-indicator,
.sf-menu.rtl li:hover > a > .sf-sub-indicator,
.sf-menu.rtl li.sfHover > a > .sf-sub-indicator {
  background-position: 0 -100px; /* arrow hovers for modern browsers*/
}
/* point left for anchors in subs */
.sf-menu.rtl ul .sf-sub-indicator {
  background-position: 0 0;
}
.sf-menu.rtl ul a > .sf-sub-indicator {
  background-position: -10px 0;
}
/* apply hovers to modern browsers */
.sf-menu.rtl ul a:focus > .sf-sub-indicator,
.sf-menu.rtl ul a:hover > .sf-sub-indicator,
.sf-menu.rtl ul a:active > .sf-sub-indicator,
.sf-menu.rtl ul li:hover > a > .sf-sub-indicator,
.sf-menu.rtl ul li.sfHover > a > .sf-sub-indicator {
  background-position: 0 0; /* arrow hovers for modern browsers*/
}
/*** Point all arrows down ***/
.sf-navbar.rtl ul .sf-sub-indicator {
  background-position: 0 -100px;
}
.sf-navbar.rtl ul a > .sf-sub-indicator {
  background-position: -10px -100px;
}
/* apply hovers to modern browsers */
.sf-navbar.rtl ul a:focus > .sf-sub-indicator,
.sf-navbar.rtl ul a:hover > .sf-sub-indicator,
.sf-navbar.rtl ul a:active > .sf-sub-indicator,
.sf-navbar.rtl ul li:hover > a > .sf-sub-indicator,
.sf-navbar.rtl ul li.sfHover > a > .sf-sub-indicator {
  background-position: 0 -100px; /* arrow hovers for modern browsers*/
}
/* Point left for anchors in subs */
.sf-navbar.rtl ul ul .sf-sub-indicator {
  background-position:  0 0;
}
.sf-navbar.rtl ul ul a > .sf-sub-indicator {
  background-position:  -10px 0;
}
/* apply hovers to modern browsers */
.sf-navbar.rtl ul ul a:focus > .sf-sub-indicator,
.sf-navbar.rtl ul ul a:hover > .sf-sub-indicator,
.sf-navbar.rtl ul ul a:active > .sf-sub-indicator,
.sf-navbar.rtl ul ul li:hover > a > .sf-sub-indicator,
.sf-navbar.rtl ul ul li.sfHover > a > .sf-sub-indicator {
  background-position: 0 0; /* arrow hovers for modern browsers*/
}
.sf-menu.rtl li:hover ul,
.sf-menu.rtl li.sfHover ul {
  right: 0;
}
.sf-menu.rtl li li:hover ul,
.sf-menu.rtl li li.sfHover ul {
  right:  12em; /* match ul width */
}
.sf-menu.rtl li li li:hover ul,
.sf-menu.rtl li li li.sfHover ul {
  right: 12em; /* match ul width */
}
.sf-navbar.rtl li li:hover ul,
.sf-navbar.rtl li li.sfHover ul {
  right: 0;
}
.sf-navbar.rtl li li li:hover ul,
.sf-navbar.rtl li li li.sfHover ul {
  right: 13em;
}
/*** shadows for all but IE6 ***/
.sf-menu.rtl .sf-shadow ul {
  background: url('../images/shadow.png') no-repeat bottom left;
  padding: 0 0 9px 8px;
  -moz-border-radius-bottomright: 17px;
  -moz-border-radius-topleft: 17px;
  -webkit-border-top-left-radius: 17px;
  -webkit-border-bottom-right-radius: 17px;
}
.sf-vertical.rtl li:hover ul,
.sf-vertical.rtl li.sfHover ul {
  left: auto; /* match ul width */
  right: 11em;
}
/* alter arrow directions */
.sf-vertical.rtl .sf-sub-indicator {
  background-position: -10px 0;
} /* IE6 gets solid image only */
.sf-vertical.rtl a > .sf-sub-indicator {
  background-position: 0 0;
} /* use translucent arrow for modern browsers*/
/* hover arrow direction for modern browsers*/
.sf-vertical.rtl a:focus > .sf-sub-indicator,
.sf-vertical.rtl a:hover > .sf-sub-indicator,
.sf-vertical.rtl a:active > .sf-sub-indicator,
.sf-vertical.rtl li:hover > a > .sf-sub-indicator,
.sf-vertical.rtl li.sfHover > a > .sf-sub-indicator {
  background-position: -10px 0; /* arrow hovers for modern browsers*/
}


/** blue **/
/* $Id: blue.css,v 1.4 2010/03/27 09:18:40 mehrpadin Exp $ */
.sf-menu.sf-style-blue a {
  line-height: 2.3; 
  font-size: 14px;
  color: #ffffff !important;
  font-weight: bold;
}
.sf-navbar.sf-style-blue a {
  border: 0;
}
.sf-menu.sf-style-blue li,
.sf-navbar.sf-style-blue {
  background: transparent;
  height: 56px;
  
}


.sf-menu.sf-style-blue li ul {
/*margin-top: 27px !important;*/
margin-top: 19px !important;
margin-left: -40px !important;
background: #0090c4;
width: 960px !important;
display: inline !important;
overflow: auto !important;
position: absolute !important;
border-top: 1px solid #fff !important;

}

.sf-menu.sf-style-blue li li {
  background: #0090c4!important;
  line-height: 0 !important;
	display: inline !important;
margin-top: 5px !important;
width: 150px !important;
height: auto !important;
text-align: center !important;

}

.sf-menu.sf-style-blue li li a {
font-size: 10px !important;
	border-right: 1px solid #fff !important;
	line-height:0.8 !important;
}

.sf-menu.sf-style-blue li li li {
  background: #00478f;
}
.sf-menu.sf-style-blue li:hover,
.sf-menu.sf-style-blue li.sfHover,
.sf-menu.sf-style-blue li.active a,
.sf-menu.sf-style-blue li a:focus,
.sf-menu.sf-style-blue li a:hover,
.sf-menu.sf-style-blue li a:active
{
  background: #55b7de url('nav.jpg') no-repeat;
  /*color: #ffea00 !important;*/
  font-weight: bold;
}

.sf-menu.sf-style-blue  .active-trail {
background: #55b7de url('nav.jpg') no-repeat !important;
  /*color: #ffea00 !important;*/
  font-weight: bold !important;
}

.sf-menu.sf-style-blue li .active-trail {
background: #0090c4 !important;
  /*color: #ffea00 !important;*/
  font-weight: bold !important;
}

.sf-menu.sf-style-blue li li:hover,
.sf-menu.sf-style-blue li li.sfHover,
.sf-menu.sf-style-blue li li.active a,
.sf-menu.sf-style-blue li li a:focus,
.sf-menu.sf-style-blue li li a:hover,
.sf-menu.sf-style-blue li li a:active
{
  background: #0090c4 !important;
  /*color: #ffea00 !important;*/
  font-weight: bold;
}







.sf-navbar.sf-style-blue li ul li ul {
  background-color: transparent;
}

#menu-130-1 a{
border-right: none !Important;

}


/** white **/

/* $Id: white.css,v 1.4 2010/03/27 09:18:40 mehrpadin Exp $ */
.sf-menu.sf-style-white a {
	color: #fff;
	background: transparent !important;
	
}
.sf-navbar.sf-style-white a {
  border: 0;
}
.sf-menu.sf-style-white li,
.sf-navbar.sf-style-white {
  background: transparent;
  width: 200px;
}
.sf-menu.sf-style-white li li {
  background: transparent;
}
.sf-menu.sf-style-white li li li {
  background: transparent;
}
.sf-menu.sf-style-white li:hover,
.sf-menu.sf-style-white li.sfHover,
.sf-menu.sf-style-white li.active a,
.sf-menu.sf-style-white a:focus,
.sf-menu.sf-style-white a:hover,
.sf-menu.sf-style-white a:active,
.sf-navbar.sf-style-white li li {
  background: transparent;
}




.sf-navbar.sf-style-white li ul li ul {
  background-color: transparent;
}
.sf-menu.sf-style-white .sf-sub-indicator {
  background-image: url('../../images/arrows-777777.png');
}
.sf-menu.rtl.sf-style-white .sf-sub-indicator {
  background-image: url('../../images/arrows-777777-rtl.png');
}


/******************************************/

/** font inclusion */
@font-face {
    font-family: 'FuturaMdBTBold';
    src: url('newfonts/futurab-webfont.eot');
    src: url('newfonts/futurab-webfont.eot?#iefix') format('embedded-opentype'),
         url('newfonts/futurab-webfont.woff') format('woff'),
         url('newfonts/futurab-webfont.ttf') format('truetype'),
         url('newfonts/futurab-webfont.svg#FuturaMdBTBold') format('svg');
    font-weight: normal;
    font-style: normal;
	
	
	
  

}

@font-face {
 font-family: 'FuturaLtBTLight';
    src: url('fonts/futural-webfont.eot');
    src: url('fonts/futural-webfont.eot?#iefix') format('embedded-opentype'),
    url('fonts/futural-webfont.woff') format('woff'),
    url('fonts/futural-webfont.ttf') format('truetype'),
    url('fonts/futural-webfont.svg#FuturaLtBTLight') format('svg');
    font-weight: normal;
    font-style: normal;
}

/** do not delete above **/

body {
	font-family: FuturaLtBTLight;
	font-size: 15px;
	margin: 0 0 0 0 ;
	color:#838383;
	line-height: 1.2;
	
}


.new-sidebar {
float: right;
width: 250px;
margin-top: 37px;
}

.new-content { 
float: left;
width: 650px;
margin-top: 30px;
}

.new-content a {
color: #0576BC;
}

.input-field {
width: 300px;
}

.call-me-back-title{
line-height: 1.5;
}

#menu a{
color: black;
}

.sidebar-heading,.categories {
font-size: 25px;
 font-family: 'FuturaMdBTBold';
color: #0576bc;
text-transform: uppercase;
margin-bottom: 30px;
}
.categories {
list-style:none;

}
.categories ul {
list-style:none;

padding:0;
border-left: 1px solid #dadada;
padding-left: 20px;
}

.sidebar-border {
border-left: 1px solid #dadada;
padding-left: 20px;
}


.cat-item a {
color:#838383 !important;
font-size: 12px;
text-decoration:none !important;
font-family: FuturaLtBTLight;
}





/** new styles added by emil **/
.new-header {
background: #203c6e url('top.jpg') repeat-x;
height: 157px;
}
.new-container {
width: 960px;
text-align: left;
}
.new-nav {
background: url('nav.jpg') repeat-x;
height: 56px;
}
.new-main-banner {
background: url('main-banner.jpg') repeat-x;
height: 150px;
margin-top: 1px;
margin-bottom:1px;
}


.new-backbar {
background: #103F97;
height: 31px;
z-index:-7;
}

.new-backbar-shadow {
background:  url('backbar.png') repeat-x;
width: 960px;
height: 31px;
z-index:-7;
}

.clear {
clear:both;
}

.new-heroes {
float: right;
position: relative;
z-index:9999;
}

.new-description 
{
float: left; 
width: 500px;
color: #ffffff;

margin-top: 0px;
}
.new-heading {
font-weight: bold;
font-size: 2em;

}

.graylinks a{
color:#838383 !important;
text-decoration:none !important;

}

#twitter_update_list {
list-style:none;
margin:0;
padding:0;
}
#twitter_update_list li {
padding: 10px;
}
#twitter_update_list li a {
color: #0576BC;
}

.title-page a{
  font-family: 'FuturaMdBTBold';
  font-size: 30px;
  text-decoration:none;
}


.search-b-left {
background: url('search/searchleft.png');
width: 21px;
height: 27px;
float: left;
}
.search-b-right {
background: url('search/searchright.png');
width: 21px;
height: 27px;
float: left;
}
.search-b-center {
background: url('search/searchcenter.png');
width: 200px;
height: 27px;
float: left;
}
.search-box {
border: none !important;
font-size: 16px;
width:200px;
background: transparent !important;
}



#footer-top {
background: #53709c;
height: 15px;
margin-top: 50px;
}

#footer {
background: #203c6e;

padding-top: 30px;
}



.footer-container {
width: 980px;
text-align: left;
}

.ftr-1,.ftr-2,.ftr-3 {
float: left; width: 200px;
padding-left:60px;
padding-right: 60px;
height:250px;
}

.ftr-1 { 
border-right: 2px solid #4E668C;
}
.ftr-2 {
border-right: 2px solid #4E668C;
}

.footer-heading { font-size: 16px; font-weight: bold; text-transform: uppercase;  color: #fff; text-align: center; 
 font-family: 'FuturaMdBTBold';
 margin-bottom: 10px;
}
.footer-icons { text-align: center; 
border-top: 2px solid #4E668C;
}

.icon-left { float: left; 
}
.icon-right { float: left; margin-left: 5px; margin-top: 4px;}
.icon-right a { color: #fff; }\


/** call me **/
.call-me-left {
float: left;
width: 300px;
}
.call-me-right {
float: left;
width: 300px;
margin-left: 50px;
}

.call-me-title {
font-size: 16px;
font-weight: bold;
}

.call-me-field {

}

.input-text {
width: 300px;
}
.input-textarea {
width: 300px;
height: 90px;
}
.input-select {
width: 300px;
}

.button{
background: url('../css/button_blue.jpg') repeat-x;
text-align: center;
height: 40px;

color: #fff; 
font-weight: bold;
width: 125px;
text-align: center;
}
.error-message {
color: red; 
font-weight: bold;
font-size: 13px;
}

.h-input {
visibility:hidden;
}
