/* 
  style.css contains a reset, font normalization and some base styles.
  
  credit is left where credit is due.
  additionally, much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/

/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/

/*Fonts CSS*/
@import url("../../css/balaynew/fonts/balay_fonts.css");

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
    outline: none;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}                  

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { 
    display:block;
}

nav ul { list-style:none; }

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }

ins { background-color:#ff9; color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-family: "opensans-regular-bold",Helvetica, sans-serif; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; height:3px; border:0; background:url(/templates/balay-resources/images/blue_dotted_border.png) transparent repeat-x 0 0; margin:1em 0; padding:0; }
* + html hr {line-height:5px; clear:left;}

.hr { display:block; height:3px; border:0; background:url(/templates/balay-resources/images/blue_dotted_border.png) transparent repeat-x 0 0; margin:1em 0; padding:0; }
* + html .hr {line-height:5px; clear:left;}

input, select { vertical-align:middle; }
/* END RESET CSS */


/* fonts.css from the YUI Library: developer.yahoo.com/yui/
   Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages

  There are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/
body { font-size: 14px; font-family: "opensans-regular",Helvetica, sans-serif; word-wrap: break-word; *font-size:small; } /* hack retained to preserve specificity */

select, input, textarea, button { font:99% sans-serif; }

/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp { font-family: "pf_square_sans_pro_thin",Helvetica, sans-serif; }
 

/* 
 * minimal base styles 
 */


body, select, input, textarea { 
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
  color: #707070; 
  /* set your base font here, to apply evenly */
  font-family: "opensans-regular",Helvetica, sans-serif;  
}

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */ 
h1,h2,h3,h4,h5,h6 { font-family: "opensans-regular-bold",Helvetica, sans-serif; }

/* always force a scrollbar in non-IE */ 
html { overflow-y: scroll; }

 
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

a, a:active, a:visited { color: #607890; }
a:hover { color: #036; }


ul, ol { margin-left: 1.8em; }
ol { list-style-type: decimal; }
ul li { list-style:none; }

small { font-size: 85%; }
strong, th { font-family: "opensans-regular-bold",Helvetica, sans-serif; }

td, td img { vertical-align: top; } 

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

pre { 
  padding: 15px; 
  
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}
 
textarea { overflow: auto; } /* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } /* thnx ivannikolic! */

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }
 
/* webkit browsers add a 2px margin outside the chrome of form elements */  
button, input, select, textarea { margin: 0; }

/* colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid { 
      border-radius: 1px;
    -moz-box-shadow: 0px 0px 5px red; 
 -webkit-box-shadow: 0px 0px 5px red; 
         box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, 
.no-boxshadow textarea:invalid { background-color: #f0dddd; }


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
::-moz-selection{ background: #007AC2; color:#fff; text-shadow: none; }
::selection { background:#007AC2; color:#fff; text-shadow: none; } 

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #FF5E99; } 

/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }
 
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }



/* 
 * Non-semantic helper classes 
 */

/* for image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.dpn { display: none; visibility: hidden; } 
.cb{clear:both;}
/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/ 
   Solution from: j.mp/visuallyhidden - Thanks Jonathan Neal! */
.visuallyhidden { position: absolute !important;    
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* >> The Magnificent CLEARFIX << j.mp/phayesclearfix */
.clearfix:after, .clear  { content: "\0020"; display: block; height: 0; clear: both; visibility: hidden; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix, .clear { zoom: 1; }
*+html .clearfix, .clear { zoom: 0; }
.center{margin-left:auto;margin-right:auto}
.fl{float:left}
.fr{float:right}
.w100{width:100%;}
.w1000{padding: 0 10px;width: 982px;}
.header_safe{height:82px;margin-bottom:25px;}
.ie7 .header_safe{height:82px;margin-bottom:25px;}
.ml10{margin-left:10px;}
.ml13{margin-left:13px;}
.clear{clear:both;}
.margintop-0 {margin-top:0;}
.marginbottom-0{margin-bottom:0;}

#header{	
	width:100%;
	height:	176px;
	margin:0 0 6px 0 !important;
	padding:0 !important;
}

.topfix{
	background:#fff;
	height:	18px;
	float:left;
	width:100%;
	margin:4px 0 0 0;
}

.topnav{
	margin-top:-22px;	
	position:relative;
}

.topnav li a.icon {
	display:block;
	height:15px;
	margin:3px 0 0 0;
    padding: 0 0 0 15px;
	background:url(/templates/balay-resources/images/icons2.png) no-repeat 0 1px;
}
.topnav li a.icon.contact {
	background-position: 0 -19px;
}

.topnav li a.icon.login {
	background-position: 0 -39px;
}
.topnav li{
	float:left;
	list-style:none;
    margin-left: 30px;
}
.topnav ul {
    float: right;
}
.topnav li a{
	padding-left:3px;
	color:#fff;
	margin-right:15px;
	text-decoration:none;
	font-size:10px;
    font-family: "opensans-regular-bold", Helvetica, sans-serif;
}

.logo{
	position:relative;	
	margin-top:23px;
	margin-left:0px;
	margin-bottom:16px;
	}
.ie7 .logo{margin-top:-8px;}
.storeLink { float: right;margin-top: 13px;margin-right: 16px;}
/*navigation*/
.navCont{
	background:none;
	height:	69px;
}
.navigation
{    
	height:27px;
	margin-bottom:20px;
}
.navigation ul li{
	text-align:center;
	float:left;	
	list-style:none;	
}
.navigation ul li.search
{    
	padding:7px 4px 0 4px;
}
.navigation ul li a{
	display:block;
	text-decoration:none;
	color:#449dd2;	
	font-size:12px;
    font-family: "opensans-regular", Helvetica, sans-serif;
	margin-right:10px;
}
.navigation > ul > li > a
{
    background: url(/templates/balay-resources/images/menu-bg.png) no-repeat transparent;
    padding:8px 23px 0 19px;
    height: 23px;    
}
.navigation > ul > li.active > a
{    
    color:#707070;
    zoom: 1;
}
.navigation > ul > li.over > a {    
    zoom: 1;
}
.navigation > ul > li.over.noNav > a {    
    zoom: 1;
}
.navigation > ul > li.over > a > span {
    color: #707070;
}
.navigation ul{
	margin-left:0;
}
.navigation .search{
	width:106px;
}

.navigation .searchBlock
{
    border:1px solid #cfcbcb;
	outline:none;
	color:#fff;
	font:10px ;
    font-family: "opensans-regular-bold", Helvetica, sans-serif;
	height:17px;	  
}
.navigation .searchBlock img{
	margin:3px 5px 3px 2px;
}
.navigation .searchBlock input{	
	text-decoration: none;
	    background-color: #FFF;
	    border-top-style: none;
	    border-right-style: none;
	    border-bottom-style: none;
	    border-left-style: none;
	    border-top-color: #FFF;
	    border-right-color: #FFF;
	    border-bottom-color: #FFF;
	    border-left-color: #FFF;
	    width: 80px;
	    height: 15px;
	    color:#449dd2;
	    outline:none;	    
        font-size: 13px;
}

/*navigation*/

/*breadcrumb*/
    
	.breadcrumb ul{
		margin-left:11px;	    
	}
	.breadcrumb li{
		list-style:none;
		float:left;
	    color: #FFF;	    
	    margin: 0 4px 0 0;
	    padding-left:8px;
	}
	.breadcrumb li.home {
	    background:url(/templates/balay-resources/images/home-icon.png) no-repeat 0 8px;	    
	}
	.breadcrumb li:first-child {
	    margin-left: 0 !important;
	    padding-left: 0 !important;
	}
	.breadcrumb li + li {
	    background:url(/templates/balay-resources/images/breadcrumb-arrow.png) no-repeat 0 8px;
	}
	.breadcrumb li a{
		color:#449dd2;
		font-size:11px;
	    text-decoration: none;
	    line-height: 16px;
	    display: block;
	}
	.breadcrumb li a.active{
	    color:#707070;
	}
	.breadcrumb li.home a.active{
	    color:#449DD2;
	}
/*breadcrumb*/

#main h1 
{
    background:url("/templates/balay-resources/images/blue_dotted_border.png") repeat-x left bottom;
    font-size: 20px;
    font-weight:normal;
    margin: 0px 0 10px 0;
    padding-left:10px;
    padding-bottom:3px;
    color:#007ac2;
}

.stageArea .sub {
    margin: 0 0 0 1em;
    font-size:14px;
    line-height:18px;
}

.stageArea .sub p, .stageArea .sub span 
{
    font-size:14px;
    line-height:18px;
}

/* popup */

/* Footer */
.footer {
    color: #242424;
}
.teaser4group {
    margin-top: 20px;
}
.teaser4group ul{
	margin-left:7px;
}
.teaser4group li{
    background-color: #F5F4F4;
	float:left;
	list-style:none;
	width:227px;
	padding:0px;
    margin: 0 22px 0 0;       
	/*

	float:left;
	background:none !important;
    border:0 solid #fff;
    box-shadow: 0 2px 3px #aaa;
	height:auto !important;
    margin: 5px !important;
    padding: 5px !important;
	*/
	
	
}
.teaser4group li:first-child
{
    margin-left: 0;
}
.teaser4group li:last-child
{
    margin-right: 0;
}
.teaser4group li div.teaser4.content
{
    background-color: red;
	width:230px;
	float:left;
}
/*.teaser4group li.teaser1 {
    background: -moz-linear-gradient(bottom, #c8f083 0%, #FFF 31%, #dfecbc 100% );
    background: -webkit-linear-gradient(bottom, #c8f083 0%, #FFF 31%, #dfecbc 100% );
    background: -o-linear-gradient(bottom, #c8f083 0%, #FFF 31%, #dfecbc 100% );
    background: -ms-linear-gradient(bottom, #c8f083 0%, #FFF 31%, #dfecbc 100% );
    background: linear-gradient(bottom, #c8f083 0%, #FFF 31%, #dfecbc 100% );
    -pie-background: linear-gradient(bottom, #c8f083 0%, #FFF 31%, #dfecbc 100% );
}*/

.teaser4group li h3, .teaser4group li h5 a {
    color: #007ac2;
}

.footer_line
{
    margin:40px auto auto auto !important;
    width:980px;
	background:url(/templates/balay-resources/images/footer-line.png) repeat-x;
	height:3px;
}

.footer_content{
	margin-bottom:25px;
	text-align:center;
}
.footer_content p
{
    color:#78747a;
	font-size:12px;
    font-family: "opensans-regular", Helvetica, sans-serif;
    display:inline;
}

.footer_content .copy a 
{
    color: #78747a;
    text-decoration: none;
    font-size: 12px;
}
.footer_content .buttonContainer {
    position: relative;
    float: right;
}
.footer_content .fRate{
	background:url(/templates/balay-resources/images/share-icon.png) no-repeat 0 0;
    height: 23px;
    float: right;
    display: block;
    margin-top:6px;
    padding-left:10px;
    text-decoration:none;
    color:#78747A;
    font-family: "opensans-regular-bold", Helvetica, sans-serif;
    font-size: 13px;
    position: relative;
}
.footer_content .fRate img {
    bottom: 0;
    height: 0;
    left: 0;
    position: absolute;
    width: 0;
}
.footer_content .fRecommend {
	background:url(/templates/balay-resources/images/send_icon.png) no-repeat 4px 4px #FFF;
    color: #000;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    float: right;
    padding: 3px 3px 3px 25px;
    margin-left: 5px;
    display: block;
    text-decoration: none;
    border: 1px solid #aaa;
    border-radius: 3px;
    -moz-box-shadow: 0 0 3px #aaa;
        -webkit-box-shadow: 0 0 3px #aaa;
            -o-box-shadow: 0 0 3px #aaa;
                box-shadow: 0 0 3px #aaa;
    
    behavior: url(/templates/balay-resources/scripts/PIE.htc);
}
.footerNav, .footer_content .copy {
    margin: 8px auto 0 auto;
    text-align: center;
    display:inline-block;
    *display: inline;
    zoom: 1;
    overflow:hidden;
    width: 89%;
}


.footerNav ul {
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.footerNav ul, .footerNav ul:after {
    content: "";
    clear: both;
}
.footerNav ul li {
    display: block;
    float: left;
    font-size: 10px/15px;
    font-family: "opensans-regular-bold", Helvetica, sans-serif;
    list-style-type: none;
    margin: 2px 0 0 7px !important;
}
.footerNav ul li:first-child {
    margin-left: 0 !important;
}
.footerNav ul li:first-child a {
    border: 0 none;
    padding: 0;
}
.footerNav ul li a {
    border-left: 1px solid #78747a;
    font-size: 12px;
    color: #78747a;
    letter-spacing: -0.1px;
    padding: 0 0 0 7px;
    text-decoration: none;
    display: block;
}
.footerNav ul li a:hover {
    text-decoration: underline;
}
.footer_content .scrollToTop 
{
    background: url(/templates/balay-resources/images/up_icon_black.png) no-repeat 0 3px;
    color: #242424;
    padding-left: 12px;
    text-decoration: none;
    display: block;
}

/*.footerNav a.fright{margin-left:15px}*/

.fTwitter, .fYouTube, .fFacebook{display:block; height:24px; float:right; margin-left:5px;}

.fTwitter{background:url(/templates/balay-resources/images/footer_twitter.png) no-repeat 0 0 !important; width:24px;}
.fYouTube{background:url(/templates/balay-resources/images/footer_youtube.png) no-repeat 0 0px !important; width:58px;}
.fFacebook{background:url(/templates/balay-resources/images/footer_facebook.png) no-repeat 0 0px !important; width:24px;}
/*.fTwitter:hover{background:url(/templates/bosch-resources/images/footer_twitter_hover.png) no-repeat 0 7px !important;}
.fYouTube:hover{background:url(/templates/bosch-resources/images/footer_youtube_hover.png) no-repeat 0 6px !important;}
.fFacebook:hover{background:url(/templates/bosch-resources/images/footer_facebook_hover.png) no-repeat 0 6px !important;}
 */

/* Footer */

/* home main */
.stageArea{
	position: relative;
    padding: 0;
    margin-bottom: 20px;
    font-size: 13px;
}
.middle_nav{	
	/*height:	42px;*/
	padding:3px 0 10px;
    margin:10px auto 20px;
}
.middle_nav ul li
{    
	list-style:none;
	float:left;
	line-height:33px;
	height:123px;
	width: 122px;
	text-align: center;
}
.middle_nav ul li a.image { background-image:none; margin-bottom:10px;}
.middle_nav ul li a { background: url(/templates/balay-resources/images/menu-bg.png) no-repeat;text-decoration:none;color:#007ac2;font:normal 12px/33px Tahoma; padding: 0 0;margin-right:14px;display:block;}
.middle_nav ul li.last a { margin-right:0 }
.middle_nav ul{
	margin-left:4px;
	overflow:hidden;
	width:980px;
}
/* home main */






/* product */

.productSpec h1 {
    font-size: 16px;
    margin: 20px 0;
}
.productIntro 
{
    background-color: #fff;
    background:url("/templates/balay-resources/images/blue_dotted_border.png") repeat-x left bottom;
}
.productIntro .productImage {
    width: 484px;
    position: relative;
}
.iconSet {
    width: 80px;
    left: 0;
    top: 0;
    position: absolute;
    text-align: center;
}
.iconSet span {
    display: block;
    margin-top: 10px;
}
.bigImage {
    padding: 10px;
    position: relative;
}
.bigImage img {
    margin: 0 auto;
    display: block;
}
.bigImage .magnifyIcon {
    right: 40px;
    bottom: 5px;
    position: absolute;
    width:24px;
}
.imageThumbs {
    margin: 10px auto;
    width: 480px;
}
.imageThumbs ul {
    margin: 0 auto;
    width: 400px;
}
.imageThumbs ul li {
    width: 90px;
    height: 90px;
    float: left;
    text-align: center;
    list-style-type: none;
}
.imageThumbs ul li +li {
    margin-left: 10px;
}
.imageThumbs ul li img {
    display: block;
    margin: 0 auto;
    padding: 15px;
}
.productInfo {
    width: 474px;
    margin-bottom: 10px;
    margin-right: 10px;
}
.productInfo h2 {
    font-size: 16px;
    color: #007ac2;
}
.productInfo .itemSpec h2 {
    font-size: 14px;
    margin:10px 0 !important;
}

.productInfo h2.productName {
    font-size: 14px !important;
    margin:10px 0 !important;
}

.productInfo .accessoriesWrap h2, .productInfo .colorWrap h2 {
    font-size: 14px;
    font-weight:normal;
    margin:10px 0 !important;
}
.productInfo .accessoriesWrap ul li a, .productInfo .colorWrap ul li a{
    font-size: 12px;
    font-weight:normal;
    color:#707070;
    text-decoration:none;
}
.priceWrap {
    padding: 10px 0;
    min-height: 40px;
    margin-bottom:10px;
}

.dbbBottom {
    background:url("/templates/balay-resources/images/blue_dotted_border.png") repeat-x left bottom;
}
h2.dbbBottom {
    margin: 20px 0 10px;
    padding-bottom: 10px;
}
.itemPrice {
    clear:left;
}
.itemPrice h2, .itemPrice p{
    margin-bottom: 10px;
    font-size:14px;
    color:#707070;
    font-weight:normal;
}
.itemPrice .price, .itemPrice span {
    color:#007ac2;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    padding-left:10px;
}
.itemPrice .link {
    font-size: 11px;
    color: #33ccff;
    text-decoration: none;
    background: none no-repeat 0 0;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    padding: 0;
}
.voteWrap {
    width: 150px;
}
.itemIcons {
    margin: 10px 0 0 0;
}
.itemIcons li {
    margin: 0 2px 5px 2px;
    float: left;
    list-style-type: none;
}
.itemSpec .itemIcons li{
    width:47px;
    height:65px;
}
.accessoriesWrap {
    width: 235px;
}
.colorWrap {
    width: 225px;
}
.accessoriesWrap ul, .colorWrap ul {
    margin-left: 15px;
}
.accessoriesWrap ul li, .colorWrap ul li 
{
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    font-size: 13px;
    list-style-image: url(/templates/balay-resources/images/link_icon.png);
}
.productInfo .buttonWrap {
    margin-top: 10px;
    /*margin-top: 70px;*/
    margin-right: -10px;
    width: 484px;
}
.productInfo .buttonWrap div {
    background: url(/templates/balay-resources/images/button_bg.png) repeat-x 0 0;
    width: 162px;
    margin-right:13px;
    height: 26px;
    border-bottom: 1px solid #94badb;
    padding:0 10px;
}
.productInfo .buttonWrap div a 
{
    font-size: 13px;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    color: #FFF;
    padding: 5px 0;
    text-align: center;
    text-decoration: none;
    display: block;
}
.productInfo .buttonWrap div img { 
    vertical-align: bottom;
    margin-right: 10px;
}
.productMore 
{
    margin-top: 20px;
}
.col-1 {
    width: 732px;
}
.tabs 
{
    margin: 0;
}
.tabs li 
{
    background: url("/templates/balay-resources/images/blue_dotted_border.png") repeat-x left top;
    width: auto;
    height: 25px;
    float: left;
    list-style-type: none;
    margin-right:13px;
}
.tabs li.active {
    background-position: 0 0;
}
.tabs li a 
{
    font-size: 12px;
    color: #007AC2;
    text-align: center;
    padding: 12px;
    display: block;
    text-decoration: none;
    background: url("/templates/balay-resources/images/blue_dotted_border.png") repeat-x left bottom;
}
.tabs li.active a {
    color: #767676;
}
.tabContent 
{
    min-height:350px;
    color: #424242;
    background-color: #FFF;
    margin: 0;
    padding: 20px 10px 20px 0;
}
.tabContent li .accordionView {
    float:left;
}
.tabContent li {
    list-style-type: none;
}
.listView li 
{
    margin-bottom: 10px;
    list-style-image:  url(/templates/balay-resources/images/listView_icon.png);
}
.accordionView ul
{
    margin: 0 0 20px 0;
    overflow: hidden;
}
.accordionView li 
{
    padding: 2px 10px 2px 0;
    font-size:12px;
    line-height:18px;
    background: url(/templates/balay-resources/images/long_text_bullet.png) no-repeat 5px 10px;
    padding-left:20px;
}
.product-sheet-style .productMore .accordionView li 
{
    border:none;
}
.accordionView li.handle
{
    color: #007AC2;
    font-size: 14px;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    border: none;
    cursor: pointer;
    background-image:none;
    padding-left:0;
}
.accordionView li.handle.collapsed 
{
    background-position: 10px -30px;
}
.tableView {
    padding: 10px;
    font-size: 12px;
}
.tableView table {
    width: 708px;
}
.tableView td {
    border-bottom: 1px solid #c3c3c4;
    padding: 5px 20px;
}
.tableView table thead .even {
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    background-color: #e1e1e2;
    width: 220px;
}
.tableView table thead .odd {
    background-color: #c3c3c4; 
}
.tableView table tbody .even {
    background-color: #FFF; 
}
.tableView table tbody .odd {
    background-color: #e1e1e2; 
}
.docView ul {
    margin: 8px 20px 0 0;
}
.docView li {
    font-size: 12px;
}
docView li a, .newDocumentLinks a.document-link
{
    color:#707070;
    font-size:12px;
    line-height:20px;
    text-decoration:none;
    padding-left:15px;
    background: url(/templates/balay-resources/images/arrow_down.png) no-repeat 4px 5px;
}
.newDocumentLinks a.document-link
{
    float: left;
}
.newDocumentLinks a.energyLabel
{
    display: block;
    margin-bottom: 10px;
}
.docView h3 a{color:inherit;}
.docView .downloadButton a {
    background: url(/templates/balay-resources/images/download_icon.png) no-repeat right 0;
    color: #ed6e00;
    font-size: 12px;
   /* width: 30px;*/
    height: 25px;
    padding: 10px 35px 0 0;
    display: block;
    text-decoration: none;
}
.col-2 
{
    width: 236px;
}
.col-2 .item {
    margin-bottom: 10px;
    padding: 15px 9px;
    line-height: 1.2;
    width:218px;
    border:2px solid #f6f5f5;
}
.col-2 .item h2 {
    font-size: 13px;
    color: #007ac2;
}
.quickAccess 
{
    width:218px;
    border:2px solid #f6f5f5;
}
.quickAccess ul {
    margin: 10px 0 0 15px;
}
.quickAccess ul li 
{
    margin: 5px 0;
    list-style-image: url(/templates/balay-resources/images/link_icon.png);
}
.quickAccess ul li a 
{
    font-size: 12px;
    color: #007ac2;
}
.gradient 
{
    background: -moz-linear-gradient(bottom, #e9e9e9 0%, #FFF 13%, #FFF 90%, #dcdcdc 100% );
    background: -webkit-linear-gradient(bottom, #e9e9e9 0%, #FFF 13%, #FFF 90%, #dcdcdc 100% );
    background: -o-linear-gradient(bottom, #e9e9e9 0%, #FFF 13%, #FFF 90%, #dcdcdc 100% );
    background: -ms-linear-gradient(bottom, #e9e9e9 0%, #FFF 13%, #FFF 90%, #dcdcdc 100% );
    background: linear-gradient(bottom, #e9e9e9 0%, #FFF 13%, #FFF 90%, #dcdcdc 100% );
    -pie-background: linear-gradient(bottom, #e9e9e9 0%, #FFF 13%, #FFF 90%, #dcdcdc 100% );
    border: 3px solid #FFF;
    
    -moz-box-shadow: 0 1px 3px #AAAAAA;
        -webkit-box-shadow: 0 1px 3px #AAAAAA;
            -o-box-shadow: 0 1px 3px #AAAAAA;
                box-shadow: 0 1px 3px #AAAAAA;
                
    behavior: url(/templates/balay-resources/scripts/PIE.htc);
}
.gradient a {
    color: #606060;
    text-decoration: none;
}
.productSmallList ul {
    margin: 15px 0 0 5px;
}
.productSmallList ul li 
{
    margin: 10px 0;
    list-style-type: none;
}
.productSmallList ul li a 
{
    text-decoration: none;
}
.productSmallList .info {
    width: 150px;
}
.productSmallList .info span 
{
    font-size: 11px;
    display: block;
}
.productSmallList .info .desc {
    color: #707070;
}
.productSmallList .info .sku, .productSmallList .info .price {
    color: #707070;
}
.productSmallList .info .sku 
{
    color:#007AC2;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;  
}
.productSmallList .info .price {
    font-size: 12px;
}

/* product result */
.productResult {
}
.productResult h1 {
    font-size: 16px;
    margin: 20px 0 0;
}
.productResult a, .searchResultList .productDetails a{
    text-decoration: none;
}
.productResult .intro {
    padding-bottom: 10px;
    background: url("/templates/balay-resources/images/blue_dotted_border.png") repeat-x left bottom;
}
.productResult .intro h3
{
    float:left;
    font-size:13px;
    width:350px;
    color:#007ac2;
    padding:6px 0 0 13px;
}
.listInfo {
    font-size: 13px;
    padding: 8px 0 0;
}
.listInfo .productCount {
    margin-left: 10px;
}
.listInfo .pageCount {
    margin-right: 6px;
    color:#007AC2;
    font-size:13px;
    padding-left:10px;
}
.compareButton {
    background: url(/templates/balay-resources/images/button_bg.png) repeat-x 0 0;
    width: auto;
    height: 26px;
    border-bottom:1px solid #cadced;
    padding:0 14px;
    margin-left:5px;
}
.compareButton a {
    color: #f8f8f8;
    padding: 6px 0;
    font-size: 13px;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    text-align: center;
    text-decoration: none;
    display: block;
}
.resultList {
}
.resultList ul {
    margin: 0;
}
.resultList > ul > li 
{
    background: url("/templates/balay-resources/images/blue_dotted_border.png") repeat-x left bottom;
    padding: 20px 0 20px 9px;
    list-style-type: none;
}
.productImage {
    width: 186px;
    position: relative;
}
.productImage a {
    display: block;
    text-align: center;
}
.productImage a img {
    padding: 5px;
    display: block;
}
.productImage .newLabel {
    background: url(/templates/balay-resources/images/new_icon_small.png) no-repeat 0 0;
    width: 38px;
    height: 38px;
    top: 0;
    left: 0;
    position: absolute;
    text-indent: -9999px;
}
.productWrap {
    width: 531px;
}
.productText {
    width: 353px;
    min-height: 185px;
    color: #707070;
    position: relative;
}
.productText a {
    color: #707070;
    text-decoration: none;
}
.productText h2 {
    font-size: 16px;
    margin-bottom: 5px;
}
.productText h2 a {
    color: #007AC2;
}
.productWrap .buttons {
    font-size: 12px;
    width: 310px;
    padding-top:10px;
}
.buttons .readMore {
    color: #007AC2;
    text-decoration: none;
}
.productDetails {
    width: 165px;
    min-height: 185px;
}
.productDetails .compareCheckbox {
    background: url(/templates/balay-resources/images/button_bg.png) repeat-x 0 0;
    width: auto;
    height: 26px;
    border-bottom:1px solid #cadced;
    padding:0 14px 0 2px;
}
.productDetails .compareCheckbox span 
{
    color: #f8f8f8;
    padding: 6px 0;
    font-size: 13px;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    text-align: center;
    text-decoration: none;
    display: block;
}

.productDetails .compareCheckbox input[type="checkbox"]{
    padding: 0;
    margin:0;
    vertical-align: bottom!important;
    position: relative;
    top: -1px;
    *overflow: hidden;
    *top: -1px;
}
.productDetails .compareCheckbox label
{
    margin-left:4px;    
    line-height: 14px;
}
.productDetails div.price {
    padding-right:10px;
    float:right;
    clear:right;
    width:110px;
}
.productDetails .price {
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    font-size: 18px;
    text-align: right;
}
.productDetails .energyLabel {
    float: right;
    margin-top: 10px;
}
.productDetails .itemIcons {
    margin: 20px 0;
}
.productWrap .info {
    font-size: 11px;
    color: #707070;
    width: 353px;
    margin-top:25px;
}
.productWrap .info a {
    text-decoration: none;
}
.outro {
    margin: 10px 0;
}
.pagination {
    margin-top: 10px;
}
.pagination ul {
    margin: 0;
}
.pagination ul li {
    background-color: #FFF;
    font-size: 10px;
    margin: 0 4px 0 1px;
    float: left;
    list-style-type: none;
    border:1px solid #b9b9b9;
}
.pagination ul li.active {
    background-color: #0075bc;
    border:1px solid #0075bc;
}
.pagination ul li strong 
{
    background-color: #ed6e00;
    color: #FFF;
    font-size: 10px;
    line-height: 1.2;
    padding: 2px 6px;
    display: block;
    text-decoration: none;
    -moz-border-radius: 2px;
        -webkit-border-radius: 2px;
            -o-border-radius: 2px;
                border-radius: 2px;
    -moz-box-shadow: 0 1px 1px #959595;
        -webkit-box-shadow: 0 1px 1px #959595;
            -o-box-shadow: 0 1px 1px #959595;
                box-shadow: 0 1px 1px #959595;
    
    behavior: url(/templates/balay-resources/scripts/PIE.htc);
    }
.pagination ul li.prev, .pagination ul li.next {
    background: url(/templates/balay-resources/images/pagination_arrows.png) no-repeat 2px 2px #ffffff;
    width: 16px;
    height: 16px;
    margin: 0 4px 0 0;
    text-indent: -9999px;
}
.pagination ul li.prev.disabled {
    background-position: 2px -10px;
}
.pagination ul li.next {
    background-position: -10px 2px;
    margin: 0 0 0 4px;
}
.pagination ul li.next.disabled {
    background-position: -10px -10px;
}
.pagination ul li a {
    font-size: 10px;
    line-height: 1.2;
    color: #7a7a7a;
    padding: 2px 6px;
    display: block;
    text-decoration: none;
}
.pagination ul li.prev a, .pagination ul li.next a {
    padding: 0 !important;
    width: 16px;
    height: 16px;
}
.pagination ul li.active a {
    color: #FFF;
}
.item.filterResult h2 
{
    margin-bottom:0 !important;
    }
.filterResult h3 
{
    font-size: 13px;
    color: #007AC2;
    font-family: "opensans-regular",Helvetica, sans-serif !important;    
    margin: 5px 0 3px;
}
.filterResult ul {
    margin: 0;
}
.filterResult ul li 
{
    font-size: 12px;
    color: #707070;
    padding: 5px 0 5px 4px;
    list-style-type: none;
}
.filterResult ul li .inputWrap
{
    padding:2px 0 2px 10px;
}
.filterResult ul li .inputWrap label
{
    padding-left:4px;
}
.filterResult .amount {
    border:0; color:#000; font-family: "opensans-regular-bold",Helvetica, sans-serif; width: 120px;
}
.filterResult .productCompareSort .buttonWrap
{
    margin-left:13px;
}
.filterResult .productCompareSort .buttonWrap .button
{
    margin-top:10px;
    height:auto;
    clear:left;
    font-size: 13px;
}
.filterResult .productCompareSort h2
{
    margin-top: 10px !important;
}
/* end of product result */
/* product comparison */
.compareItems  
{
    margin-left: 20px;
    margin-right: 10px;   
    font-size: 12px;
    color: #636363;
}
.compareItems td {
    width: 185px;
    padding: 5px 10px;
    vertical-align: top;
    font-size:13px;
}
.compareItems h2 {
    color: #007ac2;
    font-size:20px;
    font-weight:normal;
}
.compareItems td.center img {
    margin: 0 auto;
    display: block;
}
.compareItems .head {
    height: 34px;
    background:url("/templates/balay-resources/images/title_bg.png") repeat-x scroll 0 0 transparent
}
.compareItems .head td {
    background: none;
    vertical-align: middle;    
    padding: 3px 10px 0 10px;
}
.compareItems .head h2 {
    width: 270px;    
}
.compareItems tr.prop {border-bottom:1px solid #C3C3C4}
.compareItems .delete img, .compareItems .sku img {
    margin-right: 5px;
    vertical-align: middle;
    float:right;
}
.compareItems .delete a {
    color: #007ac2;
    text-decoration: none;
}
.compareItems .sku, .compareItems .delete a {
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    font-size:13px;
}
.compareItems .sku {
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    font-size:13px;
    color:#007ac2;    
    margin-top: 3px;
}
.compareItems .head .bdRight {
    background: none;
}
.compareItems .price {
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
}
.compareItems h3 {
    color: #ed6e00;
    margin: 5px 0;
}
.compareItems li {
    list-style-image: none;
    background:none;
    padding:3px 0;
    font-size:14px;
    color:#707070;
}
.compareItems .spec {
    color: #007ac2;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    font-size:13px;
}
/* end of product comparison */

/* product category */
.productCategory h1 {
    font-size: 16px;
    margin: 20px 0 10px;
}
.productCategory .sub {
    font-size: 11px;
    color: #636363;
}
.categoryItem 
{
    padding-left:10px;
    width: 173px;
    min-height: 300px; 
    text-align: center;   
}
.productCategory .categoryItem 
{
    width:163px;
    padding-right:10px;
    }
.categoryItem .image, .categoryItem .navImage {   
    color:#007ac2;
    display:block;
}
.categoryItem .image img, .categoryItem .navImage img 
{
    height:51px;
    margin: 0 auto;
    padding: 10px 0;
    display: block;
}
.categoryItem h2
{
    background: url("/templates/balay-resources/images/blue_dotted_border.png") repeat-x;
    font-size: 14px;
    color: #007ac2;
    text-decoration: none;
    width:163px;
    display:inline-block;
    padding:27px 0 0 0;
    *display: inline;
    zoom: 1;
}
.categoryItem h2 a 
{
    display: inline;	
	margin:27px 0 0 0;	
	color: #007ac2;
    text-decoration: none;    
}

.categoryItem ul 
{
    padding-top:20px;
    margin: 0;
    clear:both;
    text-align:left;  
}
.categoryItem ul li 
{    
    margin-bottom: 12px;      
}
.productCategory .categoryItem ul li 
{    
    text-align:center;  
}
.categoryItem ul li a {
    font-size: 12px;
    color: #707070;
    text-decoration: none;
}
.categoryItem ul li a:hover {
    color: #707070;
    text-decoration: none;
}
.category-item .imageDivVisible:after {
    clear: both;
    content: " ";
    display: block;
    height: 0;
    visibility: hidden;
}
.item .tip {
    color: #707070;
    font-size: 12px;
    margin: 10px 0;
}
.item {
    font-size: 12px;
}
.item h2 {
    margin: 0 0 10px 0 !important;
}
.item .link a, .item .link{
    color: #007ac2;
    text-decoration: none;
}
.whereTo .link {
    margin-top: 50px;
}
.item .hr {
    border-color: #ed6e00;
    margin: 5px 0;
}
.listWrap ul {
    margin: 10px 0 0 15px;
}
.listWrap ul li {
    margin-bottom: 10px;
    list-style-image: url(/templates/balay-resources/images/link_icon.png);
}
.listWrap ul li a 
{
    color:#707070;
    text-decoration: none;
}
.listWrap ul li a:hover {
    color: #707070;
    text-decoration: underline;
}
/* end of product category */
/* product catalogue */
.productCatalogue h1 {
    font-size: 16px;
    margin: 20px 0 10px;
}
.catalogueList {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 992px;
    margin-left: -6px;
}    
.catalogueItem 
{
    background-color:#F5F4F4;
    width: 449px;
    height: 118px;
    font-size: 13px;
    padding: 14px 18px;
    margin: 5px;
    display: block;
    
}
.catalogueItem.blueGrad {
    background: -moz-linear-gradient(bottom, #a4ebff 0%,  #fff 50%, #fff 70%, #d6f5fa 100% );
    background: -webkit-linear-gradient(bottom, #b0e6fe 0%, #ffffff 60%, #d6f5fa 100%  );
    background: -o-linear-gradient(bottom, #b0e6fe 0%, #ffffff 60%, #d6f5fa 100%  );
    background: -ms-linear-gradient(bottom, #b0e6fe 0%, #ffffff 60%, #d6f5fa 100%  );
    background: linear-gradient(bottom, #b0e6fe 0%, #ffffff 60%, #d6f5fa 100%  );
    -pie-background: linear-gradient(bottom, #b0e6fe 0%, #ffffff 60%, #d6f5fa 100%  );
    
    border: 3px solid #FFF;
}
.catalogueItem .text h2, .catalogueItem .text h2 a {
    font-size: 16px;
    margin-bottom: 20px;
    color: #007ac2;
    text-decoration: none;
}
.catalogueItem.blueGrad .text h2, .catalogueItem.blueGrad .text h2 a {
    color: #29a1d6;
}
.catalogueItem .text {
    width: 220px;
}
.catalogueItem .text, .catalogueItem .text a {
    color: #707070;
    text-decoration: none;
}
.catalogueItem .image {
    width: 200px;
}
/* end of product catalogue */

/* product announcement */
.announcements h1 {
    font-size: 16px;
    margin: 20px 0 10px;
}

.announcements .hr{
    margin-top:0px !important;
}

.announcements .sub {
    font-size: 12px;
    color: #636363;
    margin-bottom:15px;
}
.announcementsItem {
    font-size: 12px;
    width: 236px;
    color: #636363;
    margin: 0 7px 10px 0;
    position:relative;
}
.announcementsItem h3 
{
    font-size:16px;
    color:#007ac2;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    margin: 19px 0 8px 13px;
}
.announcementsItem .text 
{
    margin-left:13px;
    color: #707070;
    font-size:13px;
	word-wrap: break-word;
}
.announcementsItem .link {
    position:absolute;
    bottom:0;
    right:5px;    
}
.announcementsItem .link a {
    font-size:13px;
    color: #007ac2;    
    padding: 1px 0 0 20px;
    text-decoration: none;
}
/* end of product announcement */

/* product announcement detail */
.productCategoryDetail {
    color: #000;
    line-height: 1.5;
}
.productCategoryDetail h1 {
    font-size: 16px;
    margin: 20px 0 10px;
}
.detailText {
    margin-bottom: 20px;
}
.productCategoryDetail h2 
{
    color:#007ac2;
    font-size: 15px;
    margin: 10px 0;
}
.productCategoryDetail p 
{
    color:#707070;
    font-size: 12px;
    margin: 10px 0 30px;
}
.productCategoryDetail h3 {
    font-size: 12px;
    margin: 10px 0;
}
.productCategoryDetail .detailText ul {
    margin: 20px 0 0 15px;
}
.productCategoryDetail .detailText ul li {
    list-style-image: url(/templates/balay-resources/images/link_icon.png);    
}
.productCategoryDetail .pagination {
    margin: 20px 0;
}
/* end product announcement detail */
/* end of product */


/* content */
.content {
    color: #707070;
    line-height: 1.5;
}
.content h1 {
    font-size: 20px;
    font-weight:normal;
    margin: 20px 0 10px 10px;
    color:#007ac2;
}
.content .sub {
    font-size: 11px;
    color: #636363;
}
.content h2 {
    color:#007ac2;
    font-size: 15px;
    margin: 10px 0;
}
.news-detail-style .content h2 {
    font-size: 15px;
    margin: 10px 0;
    color:#007ac2;
}
.news-detail-style .content ul{
    margin:0;
    padding:0;
}
.news-detail-style .content ul li{
    background:url(/templates/balay-resources/images/list_image.png) no-repeat 0 7px !important;    
    padding-left:7px;
    font-size:14px;    
}
.content p {    
    color:#707070;
    font-size: 12px;
    margin: 10px 0 30px 0;
}
.news-detail-style .content p{
    color:#707070;
    font-size:14px; 
    margin: 10px 0 30px 0;
}
.news-detail-style .content p a{
    color:#007ac2;
    text-decoration:none;
}
.news-detail-style .content strong{
    font-size:13px;
    color:#007ac2;
}
.content h3 {
    font-size: 12px;
    margin: 10px 0;
    color:#007ac2;
}
.contentList {
    margin: 10px 0;
}
.contentList ul {
    margin: 0;
}
.contentList ul li {
    margin: 0 0 15px 0;
    list-style-type: none;
}
.contentList.one_third ul li {
    width: 232px;
    margin: 6px 12px 6px 0;
    float: left;
    list-style-type: none;
}
.contentList.one_third ul li.last {
    margin-right: 0;
}
.contentList.one_third ul li:nth-child(3n+1) {
    clear:both;
}
.contentList ul li h2 {
    font-size: 11px;
}
.contentList ul li p {
    font-size: 14px;
}
.contentList.one_third .text {
}
.contentList.w100 .text {
    width: 484px;
}
.contentList .more {
    background: url(/templates/balay-resources/images/orange_line.png) repeat-x 0 center;
    margin-top: 10px;
}
.contentList .more a {
    font-size: 14px;    
    padding: 1px 0 0 20px;
    color: #007ac2;
    float: right;
    text-decoration: none;
}
.freeContent {
    font-size: 12px;
}

.freeContent .col-1 h1 {
	font-size:138.5%;  
}
.freeContent .col-1 h2 {
	font-size:123.1%; 
}
.freeContent .col-1 h3 {
	font-size:108%;  
}
.freeContent .col-1 h1, .freeContent .col-1 h2, .freeContent .col-1 h3 {
	margin:1em 0 1em 1em;
}
.freeContent .col-1 abbr, .freeContent .col-1 acronym {
	border-bottom:1px dotted #000;
	cursor:help;
} 
.freeContent .col-1 em {
	font-style:italic;
}
.freeContent .col-1 blockquote, .freeContent .col-1 ul, .freeContent .col-1 ol, .freeContent .col-1 dl {
	margin:1em;
}
.freeContent .col-1 ol, .freeContent .col-1 ul, .freeContent .col-1 dl {
	margin-left:2em;
}
.freeContent .col-1 ol li {
	list-style: decimal outside;	
}
.freeContent .col-1 ul li {
	list-style: disc outside;
}
.freeContent .col-1 dl dd {
	margin-left:1em;
}
.freeContent .col-1 th, .freeContent .col-1 td {
	border:1px solid transparent;
	padding:.5em;
    vertical-align: middle;
}
.freeContent .col-1 th {
	font-family: "opensans-regular-bold",Helvetica, sans-serif;
	text-align:center;
}
.freeContent .col-1 caption {
	margin-bottom:.5em;
	text-align:center;
}
.freeContent .col-1 p, .freeContent .col-1 fieldset, .freeContent .col-1 table {
	margin-bottom:1em;
}
.freeContent .col-1 h3.bg-gray {
    background-color: #E5E5E5;
    color: #66737B;
    font-size: 13px;
    padding: 8px 0 8px 10px;
}
/* end of content */

/* partner search */
.partnerSearch {
    font-size: 12px;
    color: #636363;
}
.partnerSearch #divRouteResult .subDetails{
    padding-top:25px;
}
.partnerSearch h1 {
    color: #000;
    font-size: 16px;
    margin: 20px 0 10px;
}
.partnerSearch .sub {
    font-size: 11px;
    color: #636363;
}
.partnerSearch .searchWrapContent
{
    width:540px;
    margin:10px auto 20px auto;
    }
.searchWrap h2 {
    color: #007ac2;
    background:url("/templates/balay-resources/images/blue_dotted_border.png") repeat-x left top;
    padding-left: 13px;
}
.searchContent {
    margin: 20px 0 50px 0;
}
.searchWrap .buttonWrap 
{
    margin:20px 0 0 170px;
}
.searchWrap input {
    width: 360px;
    height:20px;
}
.searchWrap label {
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    font-size:13px;
    color:#007ac2;
    text-align:right;
    padding: 3px 10px 3px 10px;
    display: inline-block;
    width:150px;
}
.searchWrap .input-wrap select {
    width: 200px;
}
.searchWrap .input-wrap.buttonWrap {
    margin-top: 50px;
}
.searchWrap .input-wrap .button {
    background: url(/templates/balay-resources/images/button_bg.png) repeat-x 0 0;
    width: 150px;
    height: 20px;
    padding: 6px 0 0;
    margin: 0 auto;
    border: 1px solid #FFF;
    color: #FFF;
    display: block;
    text-decoration: none;
    text-align: center;
}
.searchWrap .input-wrap .button img {
    margin-right: 10px;
    vertical-align: bottom;
}
.resultWrap .hr {
    border-color: #636363;
}
.resultWrap h3 {
    color: #000;
    margin: 10px 0;
}
.resultWrap ul {
    margin: 0;
}
.resultWrap ul.partnerList 
{
    margin-top:25px;
    width:825px;
    }
.resultWrap ul.partnerList > li {
    list-style-type: none;
    padding: 10px 0 10px 8px;
}
.resultWrap ul.partnerList > li h4 
{
    background:url("/templates/balay-resources/images/blue_dotted_border.png") repeat-x left bottom;
    font-size:14px;
    color:#007ac2;
    padding-bottom:6px;
    position:relative;
}
.resultWrap ul.partnerList > li h4 .distance 
{
    position:absolute;
    right:0;
    top:0;
    font-size:12px;
    font-weight:normal;
    }
.resultWrap ul.partnerList > li .leftBlock, .resultWrap ul.partnerList > li .rightBlock
{
    padding-top:5px;
    }
.resultWrap ul.partnerList > li .leftBlock ol 
{
    margin-left:5px;
}
.resultWrap ul.partnerList > li .label 
{
    width:115px;
    float:left;
    }
.resultWrap ul.partnerList > li span.button
{
    float:left;
    padding-right:25px;
    }
.partnerInfo {
    width: 370px;
}
.partnerInfo td {
    padding: 3px 0;
}
.partnerInfo td.head {
    width: 120px;
}
.partnerInfo td.doubleDot {
    width: 50px;
    text-align: center;
}
.partnerInfo .address, .partnerInfo .telephone, .partnerInfo .fax, .partnerInfo .email, .partnerInfo .website  {
    background: url(/templates/balay-resources/images/contact_icons.png) no-repeat 0 0;
    padding: 3px 0 3px 25px;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
}
.partnerInfo .telephone {
    background-position: 0 -20px;
}
.partnerInfo .fax {
    background-position: 0 -40px;
}
.partnerInfo .email {
    background-position: 0 -60px;

}
.partnerInfo .website {
    background-position: 0 -80px;
}
.partnerMore {
    width: 370px;
}
.partnerMore ul {
    margin: 0;
}
.partnerMore ul li {
    padding: 5px 0;
    list-style-type: none;
}
.partnerMore ul li .link {
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    background: url(/templates/balay-resources/images/link_icon.png) no-repeat 0 2px;
    padding-left: 12px;
    color: #ed6e00;
    display: block;
    text-decoration: none;
}
.partnerSearch .bottomContent {
    margin: 40px 0 40px 20px;
}
.print a {
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    color: #ed6e00;
    text-decoration: none;
}
.print img {
    margin-right: 5px;
    vertical-align: middle;
}
.bottomContent .pagination {
    margin-top: 0;
}
a.link {
    color: #007ac2;
    text-decoration: none;
}
.buttonWrap .button {
    background: url("/templates/balay-resources/images/button_bg.png") repeat-x scroll 0 0 transparent;
    border-bottom: 1px solid #94BADB;
    color: #FFFFFF;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    height: 26px;
    margin: 0 auto;
    padding: 6px 10px;
    text-align: center;
    text-decoration: none;
}

a.button {
    background: url("/templates/balay-resources/images/button_bg.png") repeat-x scroll 0 0 transparent;
    border-bottom: 1px solid #94BADB;
    color: #FFFFFF;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    height: 26px;
    margin: 0 auto;
    padding: 6px 10px;
    text-align: center;
    text-decoration: none;
}
.partnerInfo a.link { background: none !important;padding-left: 0px !important;}

a.back {
    background: url("/templates/balay-resources/images/back_icon.png") no-repeat 0 3px !important;
}
/* search */
.searchResult {
    font-size: 12px;
}
.searchResult h1 {
    color: #000;
    font-size: 16px;
    margin: 20px 0 10px;
}
.searchResult .sub {
    font-size: 11px;
    color: #636363;
}
.searchResult .searchInput {
    width: 260px;
    margin-top: 3px;
}
.searchResult .searchInput input[type="text"] {
    border: 1px solid #d1cdcd;
    color: #707070;
    font-size:10px;
    font-family:"opensans-regular", Helvetica, sans-serif;
    height: 15px;
    outline: medium none;
    padding: 0 3px 1px 5px;
    width: 172px;
    margin-left:4px;
}
.searchResult .searchInput label {
    color: #007ac2;
}
.searchResult .tip {
    color: #000;
    width: 435px;
}
.searchResult .top {
    padding: 20px 0 10px;
    background:url("/templates/balay-resources/images/blue_dotted_border.png") repeat-x left bottom;
}
.searchResult .col-wrap {
}
.searchResult .col-2 {
    width: 206px;
}
.searchResult .col-1 {
    width: 771px;
    position: relative;
}
.searchResult .col-1 .borderLeft {
    left:1px;
    top: 0;
    height: 100%;
    width: 1px;
    border-left: 1px dotted #e4e4e4;
    position: absolute;
}
.searchResult .col-2 h2 {
    margin: 5px 0 5px 13px;
    color: #007ac2;
    font-size:15px;
}
.searchResult .col-2 ul {
    margin: 0;
}
.searchResult .col-2 ul li {
    margin: 5px 0;
    list-style-type: none;
}
.searchResult .col-2 ul li .link {
    padding: 3px 0 3px 24px;
    display: block;
    text-decoration: none;
}
.searchResult .col-2 ul li.disabled .link{color:#707070;}
.searchResult .col-2 ul li .link input{float:left;margin:0 5px 0 0;display:block;}

.searchResultList {
    margin: 0;
    min-height:300px;
}
.searchResultList > li {
    background:url("/templates/balay-resources/images/blue_dotted_border.png") repeat-x left bottom;
    padding: 8px 0 8px 40px;
    margin-left: 1px;
    list-style-type: none;
}
.searchResultList .productImage {
    width: 160px;
}
.searchResultList .productImage a {
    text-align: left;
}
.searchResultList .productImage a img {
    padding: 5px 0;
}
.searchResultList h2 {
    color: #007ac2;
    font-size:15px;
    text-decoration:none;
    margin-bottom:2px;
}
.searchResultList .price h2 {
    color: #707070;
    font-size:18px;
}
.searchResultList h2 a {
    color: #007ac2;
    font-size:14px;
    text-decoration:none;
}
.searchResultList li .sub {
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    font-size: 12px;
}
.searchResultList .text {
    color: #707070;
    font-size:14px;
    margin-bottom:3px;
}
.searchResultList .readMore {
    color: #007ac2;
    text-decoration: none;
}
.searchResult .pagination {
    padding-bottom: 30px;
}
/* end of search */

/* contact */
.contactUs {
    font-size: 12px;
    color: #636363;
}
.contactUs h1 {
    color: #000;
    font-size: 16px;
    margin: 20px 0 10px;
}
.contactUs .sub {
    font-size: 11px;
    color: #636363;
}
.contactUs h2 {
    color: #ed6e00;
    border-bottom: 1px solid #ed6e00;
    padding-left: 12px;
}
.contactContent {
    margin: 20px 0 50px 0;
}
.contactWrap .input-wrap {
    width: 360px;
    margin: 10px auto;
}
.contactWrap .input-wrap label {
    background: url(/templates/balay-resources/images/orange_link.png) no-repeat 0 1px;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    padding: 3px 0 3px 20px;
    display: inline-block;
}
.contactWrap .input-wrap select {
    width: 100px;
    margin-right: 20px;
}
.contactWrap .input-wrap.buttonWrap {
    margin-top: 50px;
}
.contactWrap .input-wrap .button {
    background: url(/templates/balay-resources/images/button_bg.png) repeat-x 0 0;
    width: 240px;
    height: 20px;
    padding: 6px 0 0;
    margin: 0 auto;
    border: 1px solid #FFF;
    color: #FFF;
    -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
            -o-border-radius: 5px;
                border-radius: 5px;
    -moz-box-shadow: 0px 4px 1px #ccc;
        -webkit-box-shadow: 0px 4px 1px #ccc;
            -o-box-shadow: 0px 4px 1px #ccc;
                box-shadow: 0px 4px 1px #ccc;
    
    behavior: url(/templates/balay-resources/scripts/PIE.htc);
    
    display: block;
    text-decoration: none;
    text-align: center;
}
.contactWrap .input-wrap .button img {
    margin-right: 10px;
    vertical-align: bottom;
}
.contactWrap .input-wrap .contactSelect {
    width: 292px;
}
.contactInfo {
    width: 370px;
    margin: 30px 0 30px 380px;
}
.contactInfo td {
    padding: 3px 0;
}
.contactInfo td.head {
    width: 120px;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
}
.contactInfo td.doubleDot {
    width: 50px;
    text-align: center;
}
.contactForm {
    width: 600px;
}
.contactForm .input-wrap {
    margin: 10px auto;
}
.contactForm .input-wrap label {
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    width: 120px;
    margin-right: 5px;
    display: inline-block;
    text-align: right;
    vertical-align: top;
    float:left;
}
.contactForm .input-wrap input[type="text"], .contactForm .input-wrap textarea {
    width: 454px;
}
.contactForm .input-wrap select {
    width: 459px;
}
.contactForm .input-wrap.buttonWrap {
    margin-top: 30px;
}
.contactForm .input-wrap .button {
    background: url(/templates/balay-resources/images/send_button.png) no-repeat 0 0;
    width: 155px;
    height: 34px;
    padding: 8px 0 0;
    margin: 20px auto 0;
    color: #FFF;
    
    display: block;
    text-decoration: none;
    text-align: center;
    outline: none;
    border: none;
}
.contactForm .input-wrap .required {
    color: #ed6e00;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
}
.contactForm .input-wrap label small strong {
    color: #ed6e00;
}
.contactForm .input-wrap .subscribe {
    width: 450px;
}

.contactForm .subscribeWrap input[type="checkbox"] {
    margin-left: 125px;
}
.contactForm .buttonWrap .required {
    display: block;
    margin-left: 125px;
}
.extendedForm .input-wrap span.mainSpan label { text-align:left; font-weight:400; }
.extendedForm .input-wrap span.mainSpan { float:left; max-width:475px; }
.extendedForm .input-wrap input[type="checkbox"] { float: left; margin: 0 3px 6px 0; clear:left }
.extendedForm .input-wrap input.error, .extendedForm .input-wrap select.error, .extendedForm .input-wrap textarea.error{border:1px solid #e2001a;}
.extendedFormpr .input-wrap input.error, .extendedFormpr .input-wrap select.error, .extendedFormpr .input-wrap textarea.error{border:1px solid #e2001a;}
.extendedForm .input-wrap select.error{filter:progid:DXImageTransform.Microsoft.dropshadow(OffX=-1, OffY=-1,color=#e2001a) progid:DXImageTransform.Microsoft.dropshadow(OffX=1, OffY=1,color=#e2001a);}
.extendedForm .input-wrap.RadioButtonList span label { width: auto;float: none;margin-left: 3px;}

.contactForm .extendedForm .input-wrap span.mainSpan.DoubleDropDownListSub{
    float: none!important;
    max-width: 100%!important;
}
.contactForm .extendedForm .DoubleDropDownList .district_container 
{
    margin-left: 126px;
    margin-top: 10px;
    display: none;
    position: relative;
    clear: both;
}
.contactForm .extendedForm .DoubleDropDownList .district_container .District {
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    left: -30px;
    padding-right: 5px;
    position: absolute;
}    
.contactForm .extendedForm .DoubleDropDownList .district_container select 
{
    float: left;
    zoom: 1;
}
/* end of contact */

/* documents */
.documentsList 
{
    margin-bottom:40px;
}
.documents h1 {
    font-size: 16px;
    margin: 20px 0 10px;
}
.documentsItem {
    width: 236px;
    font-size: 14px;
    margin: 6px;
}
.documentsItem .image {
    width: 236px;
}
.documentsItem h2 {
    font-size: 16px;
    line-height:20px;
    margin: 15px 0 5px 13px;
    color: #007AC2;
}
.documentsItem .text {
    width: 236px;
    font-size: 12px;
    margin-bottom:23px;
}
.documentsItem .text .textContent {
    height: 55px;
    margin-bottom: 3px;
    padding: 0 5px 15px 1em;
}

.documentsItem .text .textContent p {
	margin: 0 !important;
}

.documentsItem .text .link a {
    color: #007AC2;
    margin-left: 5px;
    text-decoration: none;
}
.documentsItem .text a.view-links {
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    margin-left: 1em;
    font-size:14px;
    text-decoration: none;
}
.documentsItem .bottom {
    background-color: #FFF;
}
.documentsItem .bottom .brochure {
    padding: 5px 0 0;
    width:234px;
    text-align:right;
    zoom:1;
    
}
.documentsItem .bottom .brochure + .brochure {
    text-align:right;
    width:236px;
}
.documentsItem .bottom a {
    font-size: 12px;
    color: #007AC2;
    text-decoration: none;
}
.documents .pagination {
    margin: 20px 0; 
}
/* end of documents */

/* document request form */
.documentRequest {
    font-size: 12px;
    color: #636363;
}
.documentRequest h1 {
    color: #000;
    font-size: 16px;
    margin: 20px 0 10px;
}
.documentRequest .formWrap {
    background-color: #f5f5f5;
    padding-bottom: 30px;
    margin-top: 30px;
}
.documentRequest h2 {
    color: #000;
    border-bottom: 5px solid #FFF;
    font-size: 16px;
    padding: 10px 15px;
}
.requestForm {
    width: 600px;
}
.requestForm .input-wrap {
    margin: 10px auto;
}
.requestForm .input-wrap label {
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    color: #000;
    width: 120px;
    margin-right: 5px;
    display: inline-block;
    text-align: right;
    vertical-align: top;
}
.requestForm .input-wrap input[type="text"], .requestForm .input-wrap textarea {
    width: 455px;
}
.requestForm .input-wrap select {
    width: 461px;
}
.requestForm .input-wrap.buttonWrap {
    margin: 30px 0;
}
.requestForm .input-wrap .button {
    background: url(/templates/balay-resources/images/send_button.png) no-repeat 0 0;
    width: 155px;
    height: 34px;
    padding: 5px 0 3px;
    margin: 20px auto 0;
    color: #FFF;
    
    display: block;
    text-decoration: none;
    text-align: center;
    outline: none;
    border: none;
 
}
.button, .button:hover, .button:active, .button:focus { outline: 0; outline: none; }
.requestForm .input-wrap .required {
    color: #ed6e00;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
}
.requestForm .input-wrap .subscribe {
    width: 450px;
}
.requestForm .subscribeWrap input[type="checkbox"] {
    margin-left: 125px;
}
.requestForm .buttonWrap .required {
    display: block;
    margin-left: 125px;
}
/* end of document request form */

/* faq */
.faq h1 {
    color: #000;
    font-size: 16px;
    margin: 20px 0 10px;
}
.faq select {
    width: 80px;
}
.categorySelect {
    padding: 10px;
    background: url(/templates/balay-resources/images/blue_dotted_border.png) repeat-x;    
}
.pressReleases .categorySelect {
    background: none;
}
.categorySelect h2 {
    color: #007ac2;
    font-size: 13px;
    margin-bottom: 15px;
}
.categorySelect select {
    width: auto;
}
.faq .blockUI h1{
    background:none !important;
}
.faq .buttonWrap {
}
.faq .buttonWrap .button {
    background: url(/templates/balay-resources/images/button_bg.png) repeat-x 0 0;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    width: 112px;
    height: 20px;
    padding: 6px 0 0;
    margin: 0 auto;
    border: 1px solid #FFF;
    color: #FFF;
    display: block;
    text-decoration: none;
    text-align: center;
}
.faqList {
    padding: 10px 0;
}
.faqList h2 {
    font-size: 15px;
    color:#007AC2;
    padding: 5px 10px;
    /*border-bottom: 3px dotted #007AC2;*/
}
.faqList ul {
    margin: 0;
}
.faqList ul li {
    list-style-type: none;
    padding: 8px 0;
    /*border-bottom: 3px dotted #007AC2;*/
}
.faqList ul li .rightBlock ul li{
    list-style-type: none;
    border: none;
}

.faqList ul li div.faqAnswerPnl
{
    /*border-bottom: 1px solid #828282;*/
    padding:8px 0;           
}
.faqList ul li .leftBlock
{
    width:450px;        
}
.faqList ul li .rightBlock
{
    padding: 0 0 0 25px;
    width: 238px;
}

.faqList ul li .hr
{
    border-top: 1px solid #C3C3C4;
    clear: both;
    display: block;
    height: 0;
    margin: 0 0 11px;
    overflow: hidden;
}
.faqList h3 {
    color: #007AC2;
    padding: 3px 0 3px 25px;
    cursor: pointer;
    font-weight:normal;
    border-bottom: 3px dotted #007AC2;
    font-size: 13px;
}
.faqList h4 {
    padding-left: 25px;
}
.faqList h3.collapsed {
    background-position: 0 -36px;
}
.faqList p {
    padding-left:25px;
    margin-top: 10px;
}
.faqList .rightBlock p {
    padding-left: 0;
    margin-top: 10px;
}
/* end of faq */

/* feature label list */
.featureLabelList {
    font-size: 12px;
    color: #707070;
    margin-bottom: 30px;
}
.featureLabelList h1 {
    color: #000;
    font-size: 16px;
    margin: 20px 0 10px;
}
.featureLabelList .top {
    width: 500px;
}
.featureLabelList .featureInput {
    padding: 5px 0;
}
.featureLabelList input[type="text"] {
    background: url("/templates/balay-resources/images/search_bg.png") no-repeat scroll 0 0 transparent;
    border: medium none;
    color: #FFFFFF;
    font-size:10px;
    font-family: "opensans-regular-bold", Helvetica, sans-serif;
    height: 21px;
    outline: medium none;
    padding: 0 3px 1px 5px;
    width: 168px;
}
.featureLabelList .featureInput input[type="image"] { 
    margin-left: 5px;
}
.featureLabelList select {
    background-color: #e1e1e2;
    border: none;
    padding: 3px;
    width: auto;
    margin-left: 20px;
    
    -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
            -o-border-radius: 5px;
                border-radius: 5px;
    
    behavior: url(/templates/balay-resources/scripts/PIE.htc);
}
.featureLabelList .buttonWrap {
    display: inline;
}
.featureLabelList .buttonWrap .button {
    background: url(/templates/balay-resources/images/button_bg.png) repeat-x 0 0;
    width: 40px;
    height: 20px;
    padding: 6px 0 0;
    margin: 0 auto;
    border: 1px solid #FFF;
    color: #FFF;
    -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
            -o-border-radius: 5px;
                border-radius: 5px;
    -moz-box-shadow: 0px 4px 1px #ccc;
        -webkit-box-shadow: 0px 4px 1px #ccc;
            -o-box-shadow: 0px 4px 1px #ccc;
                box-shadow: 0px 4px 1px #ccc;
    
    behavior: url(/templates/balay-resources/scripts/PIE.htc);
    
    display: block;
    text-decoration: none;
    text-align: center;
}
.customSelect {
    margin: 5px 0 4px 20px;
    position: relative;
    z-index: 999;
    display: inline-block;
}
.customSelect p{
    background: url("/templates/balay-resources/images/arrow_down.png") no-repeat scroll 150px center #E1E1E2;
    cursor: pointer;
    display: block;
    height: 12px;
    padding: 5px 7px;
    width: 150px;
}
.customSelect ul.holder {
    background: none repeat scroll 0 0 #E1E1E2;
    padding: 10px;
    position: absolute;
    top: 18px;
    width: 195px;
    margin: 0;
    z-index: 99;
}
.customSelect p, .customSelect ul.holder {
    -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
            -o-border-radius: 5px;
                border-radius: 5px;
    
    behavior: url(/templates/balay-resources/scripts/PIE.htc);
}
.customSelect ul li {
    float: left;
    height: 20px;
    padding: 1px 3px 3px 5px;
    width: 200px;
    list-style-type: none;
}
.customSelect ul input {
    float: left;
    margin: 5px 4px 0 0;
}
.customSelect ul label {
    color: #007ac2;
    float: left;
    font-size:12px;
    font-family: "opensans-regular", Helvetica, sans-serif;
    margin: 4px 0 0;
}
.featureLabelList .properties 
{   
    margin-bottom:6px;
}
.featureLabelList .properties h2 {
    font-size: 11px;
    font-weight: normal;
    border-top: 1px dotted #e4e4e4;
    margin: 10px 0;
}
.featureLabelList .properties h2 span {
    font-size: 11px;
    font-weight: normal;
    margin: 1px 0;
    padding: 10px 0;
    border-top: 1px dotted #e4e4e4;
    display: block;
}
.featureLabelList .properties ul {
    margin: 10px 0 0 11px;
}
.featureLabelList .properties ul li {
    font-size: 15px;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    color: #ed6e00;
    margin-right: 5px;
    list-style-type: none;
    display: inline;
}
.featureLabelList .properties ul li a {
    color: #007ac2;
    text-decoration: none;
}

.propertiesList
{
    background:url("/templates/balay-resources/images/blue_dotted_border.png") repeat-x;
}

.propertiesList ul {
    margin: 0;
}
.propertiesList ul li {
    list-style-type: none;    
    margin:1px 0;        
}

.propertiesList h2 span {
    color: #007ac2;
    font-size: 15px;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    margin-left: 11px;
    display: block;
    padding: 18px 0 0 0;
}
.propertiesList h3 
{
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    color: #007ac2;
    margin: 7px 0 0 11px;
}
.propertiesList p {
    margin: 6px 0 8px 11px;
}

.propertiesList .link  
{
    background:url("/templates/balay-resources/images/up_icon_balay.png") no-repeat 0 4px;
    font-weight:normal;	
    color: #007ac2;
    padding-left:11px;
}
.propertiesList .up {
    text-align: right;
    margin-bottom:2px;
    margin-right:3px;
}
.propertiesList .up a 
{    
    background:url(/templates/balay-resources/images/up_link_bg.png) no-repeat;
    font-weight: normal;
    color: #707070;
    padding-left: 20px;
    text-decoration: none;
    line-height:13px;    
}

.propertiesList .bottomBg
{
    display:block;
    margin-top:6px;
    height:3px;
    background:url("/templates/balay-resources/images/menu-bg.png") no-repeat;
}
/* end of feature label list */

/* newsDetail */
.newsDetail {
    font-size: 12px;
    margin-bottom: 10px;
}
.newsDetail h1 {
    color: #000;
    font-size: 16px;
    margin: 20px 0 10px;
}
.newsDetail .top {
    border-bottom: 1px dotted #e4e4e4;
    padding: 10px 0;
}
.newsDetail .col-2 {
    font-size: 16px;
    width: 206px;
    border-top: 1px dotted #e4e4e4;
}
.newsDetail .col-2 h2 {
    font-size: 16px;
    margin: 5px 0;
    color: #000;
}
.newsDetail .col-1 {
    width: 730px;    
    position: relative;
}
.newsDetail .col-1 .content {
    margin: 0;
    padding: 0 10px;
}
.newsDetail .col-1 .borderLeft {
    left:1px;
    top: 0;
    height: 100%;
    width: 1px;
    border-left: 1px dotted #e4e4e4;
    position: absolute;
}
.newsDetail img.center {
    display: block;
}
.newsDetail .col-1 ul {
    margin-bottom: 20px;
}
.newsDetail .buttonWrap {
    margin: 0;
}

/* newsArchive */
.newsArchive {
    font-size: 12px;
    color: #636363;
}
.newsArchive h1 {
    color: #000;
    font-size: 16px;
    margin: 20px 0 10px;
}
.newsArchive .sub {
    font-size: 11px;
    color: #636363;
    margin: 10px 0;
}
.newsArchive .wrap1 {
    margin-right: 80px;
}
.newsArchive .wrap1 select {
    width: 192px;
}
.newsArchive .wrap2 {
    margin-right: 60px;
}
.newsArchive .wrap3 {
    margin-right: 20px;
}
.newsArchive select {
    width: 80px;
}
.newsArchive .categorySelect {
    padding: 10px;
}
.newsArchive .categorySelect h2 {
    color: #ed6e00;
    font-size: 14px;
    margin-bottom: 5px;
}
.categorySelect select {
    width: auto;
    margin: 1px 10px 0 0;
}
.newsArchive .categorySelect label {
    display: block;
}
.newsArchive .buttonWrap {
    margin-top: 10px;
}
.newsArchive .buttonWrap .button {
    background: url(/templates/balay-resources/images/button_bg.png) repeat-x 0 0;
    width: 40px;
    height: 20px;
    padding: 3px 0 0;
    margin: 0 auto;
    border: 1px solid #FFF;
    color: #FFF;
    -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
            -o-border-radius: 5px;
                border-radius: 5px;
    -moz-box-shadow: 0px 4px 1px #ccc;
        -webkit-box-shadow: 0px 4px 1px #ccc;
            -o-box-shadow: 0px 4px 1px #ccc;
                box-shadow: 0px 4px 1px #ccc;
    
    behavior: url(/templates/balay-resources/scripts/PIE.htc);
    
    display: block;
    text-decoration: none;
    text-align: center;
}
.newsTable {
    width: 100%;
    color: #000;
    border-collapse: separate;
    border-spacing: 1px;
}
.newsTable thead td {
    font-size: 14px;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
}
.newsTable td {
    padding: 10px;
    font-size: 12px;
}
.newsTable td.date {
    border-top: 1px dotted #e4e4e4;
    border-bottom: 1px dotted #e4e4e4;
    border-right: 1px dotted #e4e4e4;
}
.newsTable td.text {
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    border-top: 1px dotted #e4e4e4;
    border-bottom: 1px dotted #e4e4e4;
    border-left: 1px dotted #e4e4e4;
}
.newsTable td .more {
    margin-top: 3px;
}
.newsTable td .more a {
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    color: #ed6e00;
    text-decoration: none;
}
/* end of newsArchive */

/* newsList */
.newsList {
    font-size: 12px;
    color: #636363;
}
.newsList h1 {
    color: #000;
    font-size: 16px;
    margin: 20px 0 10px;
}
.newsList .sort {
    width: 200px;
    margin-top: 12px;
    position: relative;
}
.newsList .sort a {
    font-size: 11px;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    color: #007ac2;
    text-decoration: none;
}
.newsList .sort .sortLink {
    position: relative;
    z-index: 2;
}
.newsList .sort ul {
    background-color: #FFF;
    border: 1px solid #ccc;
    padding: 30px 20px 10px;
    margin: 0;
    z-index: 1;
    position: absolute;
    left: -9999px;
    top: 0;
    -moz-box-shadow: 4px 4px 4px #ccc;
        -webkit-box-shadow: 4px 4px 4px #ccc;
            -o-box-shadow: 4px 4px 4px #ccc;
                box-shadow: 4px 4px 4px #ccc;
    
    behavior: url(/templates/balay-resources/scripts/PIE.htc);
}
.newsList .sort ul li a {
    padding: 5px 0;
}
.newsList .sort:hover ul {
    top: -10px;
    left: -10px;
}
.newsList .sort:hover ul {
}
.newsListTable {
    width: 100%;
    color: #000;
    border-collapse: separate;
    border-spacing: 1px;
}
.newsListTable thead td {
    font-size: 14px;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
}
.newsListTable tbody tr{
    background:url(/templates/balay-resources/images/blue_dotted_border.png) repeat-x bottom left;
}
.newsListTable td {
    padding: 23px 0 9px 14px;
    font-size: 14px;
}
.newsListTable td .pagination {
    margin: 0 !important;
}
.newsListTable td.date {
    font-size: 12px;
    color:#707070;    
    width: 215px;
}
.newsListTable td.date p 
{
    color:#707070;
    margin-top: 20px;
}
.newsListTable td.text {
    
}
.newsListTable td.text h2 {
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    color: #007ac2;
}
.newsListTable td.text p {
    font-size: 14px;
    color: #707070;
    margin: 20px 0 30px;
}
.newsListTable td .more {
    margin-top: 3px;
}
.newsListTable td .more a 
{
    font-size:13px;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    color: #007ac2;
    text-decoration: none;    
}
/* end of newsList */

/* pressCenter */
.pressCenter {
    font-size: 12px;
    color: #000;
}
.pressCenter h1 {
    color: #000;
    font-size: 16px;
    margin: 20px 0 10px;
}
.pressCenter .sub {
    font-size: 11px;
    color: #636363;
    margin: 10px 0;
}
.pressCenter .contentList {
    margin: 0;
}
.pressCenter .contentList ul li {
    height: auto;
}
.pressCenter .contentList h2 
{
    color:#007ac2;
    font-size: 16px;
    margin: 10px 0 10px 12px;
}
.pressCenter .contentList .text 
{
    margin-left:12px;
    font-size: 14px;
    color:#707070;
    height: auto;
}
.pressCenter .contentList .more {
    background-image: none;    
    padding-bottom: 3px;
}
/* end of pressCenter */

/* pressKit */
.pressKit {
    font-size: 12px;
    color: #000;
}
.pressKit h1 {
    color: #000;
    font-size: 16px;
    margin: 20px 0 10px;
}
.pressKit .sub {
    font-size: 11px;
    color: #636363;
    margin: 10px 0;
}
.kitContent ul {
    margin: 0;
    list-style: none outside none;
}
.kitContent ul li {
    background-color: #f5f5f5;
    margin-bottom: 10px;
}
.kitContent .top {
    border-bottom: 1px solid #595b5c;
    padding: 10px 20px 10px 10px;
}
.kitContent h2 {
    font-size: 14px;
}
.kitContent .date {
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
}
.kitContent .bottom {
    padding: 10px 20px 10px 10px;
}
.kitContent .bottom .size {
    color: #636363;
}
.kitContent .downloadButton a {
    background: url(/templates/balay-resources/images/download_icon_small.png) no-repeat 0 0;
    color: #ed6e00;
    font-size: 12px;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    padding: 0 0 0 20px;
    display: block;
    text-decoration: none;
}
/* end of pressKit */

/* pressOffice */
.pressOffice {
    font-size: 12px;
    color: #000;
}
.pressOffice h1 {
    color: #000;
    font-size: 16px;
    margin: 20px 0 10px;
}
.pressOffice .sub {
    font-size: 11px;
    color: #636363;
    margin: 10px 0;
}
.officeContent ul {
    margin: 0;
    list-style: none outside none;
}
.officeContent ul li {
    background-color: #f5f5f5;
    margin-bottom: 10px;
    padding: 10px 20px;
}
.officeContent h2 {
    font-size: 12px;
}
.officeContent .subText {
    color: #636363;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
}
.officeContent p {
    color: #636363;
    margin: 10px 0 0;
}
.officeContent .sendButton a {
    background: url(/templates/balay-resources/images/send_icon.png) no-repeat 0 0;
    color: #ed6e00;
    font-size: 12px;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    padding: 0 0 0 20px;
    display: block;
    text-decoration: none;
}
/* end of pressOffice */

/* pressReleases */
.pressReleases {
    font-size: 12px;
    color: #636363;
    margin-bottom: 30px;
}
.pressReleases h1 {
    color: #000;
    font-size: 16px;
    margin: 20px 0 10px;
}
.pressReleases .sub {
    font-size: 11px;
    color: #636363;
    margin: 10px 0;
    padding-left:10px;
}
.pressReleases .customSelect, .pressReleases .inputWrap, .pressReleases .buttonWrap {
    margin: 10px 0;
}
.pressReleases .inputWrap {
    margin-left: 5px;
}

.pressReleases .inputWrap input[type="text"]
{    
    border:1px solid #cdc9c9; 
}
.pressReleases .inputWrap .keyword {
    width: 172px;
}
.pressReleases .inputWrap .sDay {
    width: 30px;
}
.pressReleases .inputWrap .sMonth {
    width: 30px;
}
.pressReleases .inputWrap .sYear {
    width: 43px;
}
.pressReleases .inputWrap .to {
    padding: 0 6px;
}
.pressReleases .inputWrap .eDay {
    width: 30px;
}
.pressReleases .inputWrap .eMonth {
    width: 30px;
}
.pressReleases .inputWrap .eYear {
    width: 43px;
}
.pressReleases .inputWrap img 
{
    margin-left:3px;
    vertical-align: middle;
    cursor: pointer;
}
.pressReleases .buttonWrap {
    margin-left: 5px;
}
.pressReleases .buttonWrap a {
    background: url(/templates/balay-resources/images/button_bg.png) repeat-x 0 0;
    height: 20px;
    padding: 5px 10px 1px 10px;
    margin: 0 auto;
    border-bottom: 1px solid #c3d4e5;
    color: #FFF;
    display: block;
    text-decoration: none;
    text-align: center;
}
.pressReleases .mod {
    padding: 10px 0 0;
}
.pressReleases .sort {
    color: #ed6e00;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    font-size: 11px;
    padding: 10px 0 0;
}
.pressReleasesList ul {
    margin: 0;
}
.pressReleasesList li {
    width:732px;
    padding: 15px 0 10px;
}
.pressReleasesList .text {
    width: 470px;
    padding-right:25px;
}
.pressReleasesList .text h2 {
    font-size: 13px;
    margin-bottom: 10px;
    color: #007ac2;
}
.pressReleasesList .text p {
    font-size: 14px;
    color: #707070;
    margin-bottom: 10px;
}
.pressReleasesList .readMore a {
    color: #007ac2;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    text-decoration: none;
}
.pressReleasesList .more {
    width: 236px;
}
.pressReleasesList .date {    
    padding-left:8px;
    color:#007ac2;
}
.pressReleasesList .download {    
    padding-left:8px;
}
.pressReleasesList .download a {
    background: url(/templates/balay-resources/images/paper_icon.png) no-repeat 0 0;
    color: #007ac2;
    font-size: 13px;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    padding: 0 0 0 28px;
    display: block;
    text-decoration: none;
}
.pressReleasesList .img {
    padding-left:8px;
}
/* end of pressReleases */

/* pressReleasesDetail */
.pressReleasesDetail {
    font-size: 12px;
    color: #636363;
    margin-bottom: 30px;
}
.pressReleasesContent {
    margin-top: 20px;
}
.pressReleasesDetail h1 {
    color: #000;
    font-size: 16px;
    margin: 20px 0 10px;
}
.pressReleasesDetail .mod {
    padding: 10px 0 0;
}
.pressReleasesDetail .text {
    width: 476px;
}
.pressReleasesDetail .text h2 {
    font-size: 13px;
    margin-bottom: 10px;
    color: #007ac2;
}
.pressReleasesDetail .text p {
    font-size: 14px;
    color: #707070;
    margin-bottom: 10px;
}
.pressReleasesDetail .readMore a {
    color: #ed6e00;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    text-decoration: none;
}
.pressReleasesDetail .more {
    width: 236px;
}
.pressReleasesDetail .date {    
    padding-left: 8px;
    color:#007ac2;
}
.pressReleasesDetail .download {    
    padding-left: 8px;
}
.pressReleasesDetail .download a {
    background: url(/templates/balay-resources/images/paper_icon.png) no-repeat 0 0;
    color: #007ac2;
    font-size: 13px;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    padding: 0 0 0 28px;
    display: block;
    text-decoration: none;
}
.pressReleasesDetail .img {
    padding: 0;
}
.pressReleasesDetail .buttonWrap {
    margin-top: 10px;
}
.pressReleasesDetail .buttonWrap a 
{
    background:none !important;   
    width: 40px;
    height: 20px;
    padding: 6px 0 0;
    margin: 0 auto;    
    color: #007ac2;  
    display: block;
    text-decoration: none;
    text-align: center;
    border:none;
}
.pressReleasesDetail .text ul {
    margin-left: 1.2em;
    margin-top: 10px;
}
.pressReleasesDetail .text ul li {
    margin-bottom: 5px;
    list-style-image:  url(/templates/balay-resources/images/listView_icon.png);
}

/* sendToFriend */
.sendToFriend {
    width: 605px;
    background-color:#fff;
}

.sendToFriend h3
{
    height:34px;
    display:block;    
    background: url(/templates/balay-resources/images/title_bg.png) repeat-x;
    line-height: 34px;
    margin-bottom:25px;
}

.sendToFriend h3 > span
{
    color:#007ac2;
    font-size:20px;
    margin-left: 10px;
}

.sendToFriend p
{
    margin-left:14px;
}

.sendToFriend .input-wrap {
    margin: 10px 0 0 14px;
}
.sendToFriend .input-wrap label {
    font-size: 14px;
    color:#707070;
    width: 210px;    
    display: block;    
    float:left;
    vertical-align: top;
}
.sendToFriend .input-wrap input[type="text"], .sendToFriend .input-wrap textarea {
    width: 268px;
    border:1px solid #d0cccc;
    height:17px;
    padding:2px;
}
.sendToFriend .input-wrap textarea {
    width: 268px;
    height:122px;
    resize:none;
    padding:2px;
}
.sendToFriend .input-wrap.buttonWrap {
    margin-top: 7px;
    margin-bottom:21px;
    width: 561px;
    float: left;
}
.sendToFriend .input-wrap .button {
    background: url(/templates/balay-resources/images/sendFriend-Btn.png) no-repeat 0 2px;
    width: auto;
    height: auto;        
    color: #007ac2;
    margin-right:66px;
    display: inline-block;
    text-decoration: none;
    border:none;
    padding:0;
 
}
.sendToFriend .button input {
    background: none repeat scroll 0 0 transparent;
    border: medium none;
    color: #007ac2;
    width: auto;
    margin-left:15px;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
}
.sendToFriend .input-wrap .required {
    color: #007ac2;
}
.sendToFriend .buttonWrap .required {
    font-size: 12px;
    display: block;
    margin-left: 210px;
}
/* end of sendToFriend */

/* survey */
.survey {
    font-size: 12px;
    color: #636363;
    margin-bottom: 30px;
}
.survey h1 {
    color: #000;
    font-size: 16px;
    margin: 20px 0 10px;
}
.survey .sub {
    font-size: 11px;
    color: #636363;
    margin: 10px 0;
}
.survey .steps ul {
    padding: 15px 0 15px 60px;
    list-style: none outside none;
}
.survey .steps li {
    float: left;
    margin-right: 20px;
}
.survey .steps li.last {
    margin-right: 0;
}
.survey .steps li .no {
    background: url(/templates/balay-resources/images/steps_icon.png) no-repeat 0 -55px;
    font-size: 24px;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    height: 43px;
    padding-left: 20px;
    padding-top: 12px;
    width: 41px;
    display: block;
    color: #FFF;
    text-shadow: 0 -1px 1px #aa6440;
}
.survey .steps li.active .no {
    background-position: 0 0;
}
.survey .steps li .text {
    font-size: 18px;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    margin-top: 18px;
    color: #636363;
}
.survey .info {
    background-color: #f5f5f5;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    padding: 8px 20px;
    margin-top: 10px;
}
.survey .info p {
    margin: 15px 0;
}
.surveyList ul {
    margin: 10px 0 10px;
    list-style: none outside none;
}
.surveyList ul li {
    background-color: #f5f5f5;
    padding: 10px 0 10px;
    margin-bottom: 20px;
}
.surveyList ul li h2 {
    padding: 10px 20px;
    color: #000;
    border-bottom: 1px solid #595b5c;
}
.surveyList .input-wrap {
    padding: 15px 20px 0;
}
.surveyList .input-wrap input[type="radio"] {
    vertical-align: middle;
    margin-right: 5px;
}
.surveyList .input-wrap input[type="text"] {
    width: 300px;
}
.surveyList .input-wrap label {
    color: #010101;
}
.survey .buttonWrap a {
    background: url(/templates/balay-resources/images/button_bg.png) repeat-x 0 0;
    width: 140px;
    height: 20px;
    padding: 6px 0 0;
    margin: 20px auto 0;
    border: 1px solid #FFF;
    color: #FFF;
    -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
            -o-border-radius: 5px;
                border-radius: 5px;
    -moz-box-shadow: 0px 4px 1px #ccc;
        -webkit-box-shadow: 0px 4px 1px #ccc;
            -o-box-shadow: 0px 4px 1px #ccc;
                box-shadow: 0px 4px 1px #ccc;
                -pie-poll:true;
    behavior: url(/templates/balay-resources/scripts/PIE.htc);
    
    display: block;
    text-decoration: none;
    text-align: center;
}
/* end of survey */

/* newsletter */
.newsletter {
    font-size: 12px;
    color: #636363;
}
.newsletter h1 {
    color: #000;
    font-size: 16px;
    margin: 20px 0 10px;
}
.newsletter .sub {
    font-size: 11px;
    color: #636363;
}
.newsletter h2 {
    background: url("/templates/balay-resources/images/orange_link.png") no-repeat scroll 5px center #f5f5f5;
    border-bottom: 5px solid #FFF;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    font-size: 14px;
    padding: 15px 0 15px 25px;
    color: #ed6e00;
}
.newsletter .formWrap {
    background-color: #f5f5f5;
    padding-bottom: 30px;
}
.newsletter .input-wrap {
    margin: 10px auto;
}
.newsletter .input-wrap label {
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    color: #000;
    width: 120px;
    margin-right: 5px;
    display: inline-block;
    text-align: right;
    vertical-align: top;
}
.newsletter .input-wrap input[type="text"], .newsletter .input-wrap textarea {
    width: 455px;
}
.newsletter .input-wrap select {
    width: 459px;
}
.newsletter .input-wrap.birthday select, .newsletter .input-wrap.Calendar select {
    width: auto;
}
.newsletter .newsletterForm {
    width: 600px;
    padding: 20px 0; 
}
.newsletterForm .input-wrap .button img {
    margin-right: 10px;
    vertical-align: bottom;
}
.newsletterForm .input-wrap .contactSelect {
    width: 292px;
}
.newsletterForm .input-wrap.buttonWrap {
    margin-top: 30px;
}
.newsletterForm .input-wrap .button {
    background: url(/templates/balay-resources/images/send_button.png) no-repeat 0 0;
    width: 155px;
    height: 34px;
    padding: 6px 0 4px;
    margin: 20px auto 0;
    color: #FFF;
    
    display: block;
    text-decoration: none;
    text-align: center;
 
}
.newsletterForm .input-wrap .required {
    color: #ed6e00;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
}
.newsletterForm .input-wrap .subscribe {
    width: 450px;
}
.newsletterForm .subscribeWrap input[type="checkbox"] {
    margin-left: 125px;
}
.newsletterForm .buttonWrap .required {
    display: block;
    margin-left: 125px;
}
.extendedFormprValidationError {
    color: red;
}
.extendedFormprValidationError ul li {
    list-style-type: disc;
}    
/* end of newsletter */

/* login */
.login {
    font-size: 12px;
    color: #636363;
}
.login h1 {
    color: #000;
    font-size: 16px;
    margin: 20px 0 10px;
}
.login .sub {
    font-size: 11px;
    color: #636363;
    margin: 10px 0;
}
.login h2 {
    background: url("/templates/balay-resources/images/orange_link.png") no-repeat scroll 5px center #f5f5f5;
    border-bottom: 5px solid #FFF;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    font-size: 14px;
    padding: 15px 0 15px 25px;
    color: #ed6e00;
}
.login .formWrap {
    background-color: #f5f5f5;
    padding-bottom: 30px;
}
.login .input-wrap {
    margin: 10px auto;
}
.login .input-wrap label {
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    color: #000;
    width: 120px;
    margin-right: 5px;
    display: inline-block;
    text-align: right;
    vertical-align: top;
}
.login .input-wrap.img {
    margin: 40px 0;
}
.login .input-wrap.img img {
    margin: 0 auto;
    display: block;
}
.login .input-wrap input[type="text"], .login .input-wrap input[type="password"] {
    width: 460px;
}
.login .loginForm {
    width: 600px;
    padding: 20px 0; 
}
.login .links, .login .validationSummary2 {
    margin-left: 125px;
}
.login .links a {
    color: #636363;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
}
.login .buttonWrap {
    margin-top: 20px;
}
.login .button {
    background: url(/templates/balay-resources/images/send_button.png) repeat-x 0 0;
    width: 155px;
    height: 34px;
    padding: 6px 0 0;
    margin: 0 auto;
    color: #FFF;
    
    display: block;
    text-decoration: none;
    text-align: center;
}
.login .required {
    color: #ed6e00;
}
/* end of login */

/* registration */
.registration {
    font-size: 12px;
    color: #636363;
}
.registration h1 {
    color: #000;
    font-size: 16px;
    margin: 20px 0 10px;
}
.registration .sub {
    font-size: 11px;
    color: #636363;
}
.registration h2 {
    background: url("/templates/balay-resources/images/orange_link.png") no-repeat scroll 5px center #f5f5f5;
    border-bottom: 5px solid #FFF;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    font-size: 14px;
    padding: 15px 0 15px 25px;
    color: #ed6e00;
}
.registration .formWrap {
    background-color: #f5f5f5;
    padding-bottom: 30px;
}
.registration .input-wrap {
    margin: 10px auto;
}
.registration .input-wrap label {
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    color: #000;
    width: 120px;
    margin-right: 5px;
    display: inline-block;
    text-align: right;
    vertical-align: top;
    float:left;
}
.registration .input-wrap span.CheckBox label {
    float:left;
    font-weight:400;
    width:440px;
    text-align:left;
}

.registration .input-wrap span.CheckBox input[type="checkbox"] {
    float:left;
    margin-right:10px;
}
.registration .input-wrap input[type="text"], .registration .input-wrap input[type="password"], .registration .input-wrap textarea {
    width: 464px;
}
.registration .input-wrap select {
    width: 468px;
}
.registration .input-wrap.birthday select {
    width: auto;
}
.registration .registerForm {
    width: 600px;
    padding: 20px 0; 
}
.registration .input-wrap .button img {
    margin-right: 10px;
    vertical-align: bottom;
}
.registration .input-wrap .contactSelect {
    width: 290px;
}
.registration .input-wrap.buttonWrap {
    margin-top: 30px;
}
.registration .input-wrap .button {
    position:relative;
    z-index: 1;
    background: url(/templates/balay-resources/images/button_bg.png) repeat-x 0 0;
    width: 106px;
    height: 20px;
    padding: 6px 0 0;
    margin: 0 auto;
    border: 1px solid #FFF;
    color: #FFF;
    -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
            -o-border-radius: 5px;
                border-radius: 5px;
    -moz-box-shadow: 0px 4px 1px #ccc;
        -webkit-box-shadow: 0px 4px 1px #ccc;
            -o-box-shadow: 0px 4px 1px #ccc;
                box-shadow: 0px 4px 1px #ccc;
    
    behavior: url(/templates/balay-resources/scripts/PIE.htc);
    
    display: block;
    text-decoration: none;
    text-align: center;
}
.registration .required {
    color: #ed6e00;
}
.registration .input-wrap .subscribe {
    width: 450px;
}
.registration .subscribeWrap input[type="checkbox"] {
    margin-left: 125px;
}
.registration .buttonWrap .required {
    display: block;
    margin-left: 125px;
}
/* end of registration */

/* forgot */
.forgot {
    font-size: 12px;
    color: #636363;
}
.forgot h1 {
    color: #000;
    font-size: 16px;
    margin: 20px 0 10px;
}
.forgot .sub {
    font-size: 11px;
    color: #636363;
}
.forgot h2 {
    background: url("/templates/balay-resources/images/orange_link.png") no-repeat scroll 5px center #f5f5f5;
    border-bottom: 5px solid #FFF;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    font-size: 14px;
    padding: 15px 0 15px 25px;
    color: #ed6e00;
}
.forgot .formWrap {
    background-color: #f5f5f5;
    padding-bottom: 30px;
}
.forgot .input-wrap {
    margin: 10px auto;
}
.forgot .input-wrap.img {
    margin: 40px 0;
}
.forgot .input-wrap.img img {
    margin: 0 auto;
    display: block;
}
.forgot .input-wrap label {
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    color: #000;
    width: 120px;
    margin-right: 5px;
    display: inline-block;
    text-align: right;
    vertical-align: top;
}
.forgot .input-wrap input[type="text"], .forgot .input-wrap input[type="password"], .forgot .input-wrap textarea {
    width: 444px;
}
.forgot .input-wrap select {
    width: 448px;
}
.forgot .input-wrap.birthday select {
    width: auto;
}
.forgot .forgotForm {
    width: 730px;
    padding: 20px 0; 
}
.forgot .buttonWrap {
   margin-top: 5px;
}
.forgot .button {
    background: url(/templates/balay-resources/images/send_button_small.png) no-repeat 0 0;
    width: 119px;
    height: 34px;
    padding: 6px 0 4px;
    margin: 0 auto 0;
    color: #FFF;
    
    display: block;
    text-decoration: none;
    text-align: center;
}
.forgot .button input {
    background: none repeat scroll 0 0 transparent;
    border: medium none;
    color: #FFFFFF;
    width: 100%;
}
.forgot .required {
    color: #ed6e00;
}
/* end of forgot */

/* unsubscribe */

.unsubscribe {
    height: 150px;
}
.unsubscribe img {
    padding: 12px 0;
}
.unsubscribe .wrap {
    width: 480px;
    margin-top: 60px;
}
.unsubscribe h2 {
    font-size: 14px;
    color: #ed6e00;
}
.unsubscribe p {
    font-size: 14px;
    color: #000;
    margin: 5px 0;
}
.unsubscribe label {
    margin-right: 5px;
}
.unsubscribe .button {
    background: url(/templates/balay-resources/images/button_bg.png) repeat-x 0 0;
    width: 150px;
    height: 20px;
    padding: 3px 0 0;
    margin-right: 20px;
    border: 1px solid #FFF;
    color: #FFF;
    -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
            -o-border-radius: 5px;
                border-radius: 5px;
    -moz-box-shadow: 0px 4px 1px #ccc;
        -webkit-box-shadow: 0px 4px 1px #ccc;
            -o-box-shadow: 0px 4px 1px #ccc;
                box-shadow: 0px 4px 1px #ccc;
    
    behavior: url(/templates/balay-resources/scripts/PIE.htc);
    
    display: block;
    text-decoration: none;
    text-align: center;
}
.unsubscribe .newsletter 
{
    width: 230px;
}
/* end of unsubscribe */

/* genaral form styles */

.extendedForm .input-wrap label 
{
    float:left
}

.extendedForm .input-wrap span.mandatoryFields 
{
    float:left;
    max-width: 475px;
}

/* end of pressReleasesDetail */

/* error */
.errorPage {
    font-size: 12px;
    color: #636363;
}
.errorPage h1 {
    color: #000;
    font-size: 16px;
    margin: 20px 0 10px;
}
.errorPage .sub {
    font-size: 11px;
    color: #636363;
}
.errorBox {
    
    padding: 0;
}
.errorBox .greyBox {
    width: 460px;
    margin: 0;
}
.errorBox .searchboxWrap {
    padding-top: 0;
}
.errorBox .searchboxWrap input[type="text"] {
    width: 172px;
    height: 15px;
    border:1px solid #cdc9c9;
}
.errorBox .searchboxWrap label 
{       
    color: #007ac2;
    margin:4px 7px 3px 0;
}
.errorBox .buttonWrap .button {
    background: url(/templates/balay-resources/images/searchBtn-bg2.png) no-repeat 0 0;
    margin-top:4px;
    margin-left:4px;    
    width: 13px;
    height: 12px;     
    display: block;
    text-decoration: none;  
    text-indent:-9999px;
    border:none;  
}

/* popup */
.popupWrap {
    min-width: 300px;
}
.popupWrap #header 
{
    background: url(/templates/balay-resources/images/blue_dotted_border.png) repeat-x;
    height: 100px;
}
.popupWrap .logoWrap {
    margin-left: 10px;
}
.popupWrap #main {
    padding: 6px;
}
.popupWrap .topnav 
{
    background-color:#007ac2;
    font-size: 12px;
    width: auto;
    text-align: right;
    padding: 3px 20px 3px 10px;
    color: #FFF;
    text-decoration: none;
}
.popupWrap .close-button {
    background: url("/templates/balay-resources/images/close_btn.png") no-repeat scroll center center #007ac2;
    width: 20px;
    height: 20px;
    right: -1px;
    top: -1px;
    position: absolute;
    display: block;
    cursor: pointer;
    text-indent: -9999px;
}
/* end of popup */

/* 
 * print styles
 * inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/ 
 */
@media print {
  * { background: transparent !important; color: #444 !important; text-shadow: none !important; }

  a, a:visited { color: #444 !important; text-decoration: underline; }

  a:after { content: " (" attr(href) ")"; } 

  abbr:after { content: " (" attr(title) ")"; }
  
  .ir a:after { content: ""; }  /* Don't show links for images */
  
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */ 
  
  tr, img { page-break-inside: avoid; }

  @page { margin: 0.5cm; }

  p, h2, h3 { orphans: 3; widows: 3; }

  h2, h3{ page-break-after: avoid; }
}



/*
 * Media queries for responsive design
 */

@media all and (orientation:portrait) { 
  /* Style adjustments for portrait mode goes here */
  
}

@media all and (orientation:landscape) { 
  /* Style adjustments for landscape mode goes here */
  
}

/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  
  
  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
     j.mp/textsizeadjust 
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}

.content-3-style .freeContent .col-1 p{margin-left:1em;}



.atm-s a{ clear: both;width: 138px;}
.atm-s a, #at_hover.atm-s a span {float: left;display: block;overflow: hidden;}
 #at_hover.atm-s a i { font-style: normal;float: left;margin: 2px 0 0 5px;}
 












































.feature-label, .featureLabel {
    width: 230px;
    padding: 10px;
    background-color: #FFF;
    border: 3px solid #007ac2;
    position: absolute;
    zoom:1;
    display:inline;
    z-index: 10;
        -moz-box-shadow: 0px 0 10px #aaa;
        -webkit-box-shadow: 0px 0 10px #aaa;
            -o-box-shadow: 0px 0 10px #aaa;
                box-shadow: 0px 0 10px #aaa;
    
    behavior: url(/templates/balay-resources/scripts/PIE.htc);
}
.feature-label h1, .featureLabel h1 {
    font-size: 12px;
    color: #000;
    margin: 0;
}
.feature-label .closeButton,.featureLabel .closeButton, .feature-label .close,.featureLabel .close{
    background: url("/templates/balay-resources/images/close_btn.png") no-repeat scroll center center #007ac2;
    width: 20px;
    height: 20px;
    right: -1px;
    top: -1px;
    position: absolute;
    cursor: pointer;
    text-indent: -9999px;
}
.feature-label p, .featureLabel p {
    font-size: 12px;
    color: #636363;
    margin: 10px 0;
}
.feature-label .more, .featureLabel .more, .featureLabel .link,.feature-label .link{
    background: url("/templates/balay-resources/images/blue_link.png") no-repeat scroll 5px center;
    font-family: "opensans-regular-bold",Helvetica, sans-serif;
    font-size: 12px;
    padding: 15px 0 15px 25px;
    color: #636363;
}


.defaultTip{ cursor: default;}


#main{margin:0;padding:0;}


#mainNav{ clear: both;z-index: 5002;}
#mainNav .menuCol{width:200px !important}
#mainNav ul{margin:0;padding:0;position:relative;float: left;}
#mainNav ul.fr{float:right;}
#mainNav ul.show{overflow:visible;position:static}
#mainNav ul ul{height:auto}
#mainNav ul li{float:left;display:block;margin:0;position:relative;z-index:5001;}
#mainNav ul li.first a span{background:none !important;color:#003b6a;padding:0}
#mainNav ul li.first:hover a span{background:none !important}
#mainNav ul li.first:hover a { display: block;cursor: pointer;}
#mainNav ul li.noNav a span, #mainNav ul li.noNav a:hover span{background:none !important;padding:0 !important}
#mainNav ul li.over{overflow:visible;background:url("/templates/balay-resources/images/menu_up_icon.png") no-repeat center bottom ;}
#mainNav ul li.noNav.over{background:none;}
#mainNav ul li div.shadow{position:absolute;top:30px !important;visibility:hidden;left:-11px;z-index: 5000;overflow: hidden; margin-left:10px;}

#mainNav ul li .menuCol.f, #mainNav ul li .prodMenu .menuCol.f{margin:0 0 17px 0}
#mainNav ul li .prodMenu .imageDivVisible .menuCol.withBorder{padding-top:0;}
#mainNav ul li .prodMenu .imageDivVisible .menuCol ul li{background:none;}
#mainNav ul li .prodMenu .imageDivInVisible .menuCol ul li{background:none;}	
#mainNav ul li h3{text-align:left;}
#mainNav ul li .menuCol{float:left;width:154px !important;margin: 0 0 17px 10px;background-color:#F5F4F4;}
#mainNav ul li .prodMenu .imageDivVisible .menuCol{float:left;width:110px !important;margin:0 0 17px 10px;padding-top:66px;}
#mainNav ul li .prodMenu .imageDivInVisible .menuCol{float:left;width:110px !important;margin:0 0 17px 10px;padding-top:0;}
#mainNav ul li .menuCol ul{margin:0;padding:0;}
#mainNav ul li .menuCol ul li{height:auto;display:block;margin:0;padding:0;text-align:left;list-style: none outside none;width:154px;}
#mainNav ul li .prodMenu .menuCol ul li{width:110px;}
#mainNav ul li .prodMenu .menuCol ul li a{ text-align:center; }
#mainNav ul li .menuCol ul li a span{font-size:11px/15px !important;font-family: "opensans-regular", Helvetica, sans-serif !important;color:#77757a;height:auto;padding:2px 0 3px 9px;display: block;}
#mainNav ul li .prodMenu .menuCol ul li a span{ background: none no-repeat 0 0;padding: 2px 0 3px 0px;}
#mainNav ul li .menuCol ul li a span br{display:none;}
#mainNav ul li .menuCol ul li{padding-top:3px;background:url(/templates/balay-resources/images/list_image.png) no-repeat 3px 8px;border:1px solid #F5F4F4;float:none}
* + html #mainNav ul li .menuCol ul li {background-position: 3px 10px}
#mainNav ul li .menuCol ul li {background-position: 3px 10px\9}
#mainNav ul li .menuCol ul li.navTitle{background:url(/templates/balay-resources/images/menu-bg.png) no-repeat transparent !important;}
#mainNav ul li .menuCol ul li.navTitle a{margin-top:23px;}
#mainNav ul li .menuCol ul li a{margin-left:0; margin-right:0;}
#mainNav ul li .menuCol ul li a:hover,#mainNav ul li .menuCol ul li a:hover span{ text-decoration: underline;}
#mainNav ul li .menuCol ul li.active{background:url(/templates/balay-resources/images/menuover.png) no-repeat 0 0 #fff} 
#mainNav ul li .menuCol ul li.active a{background:#fff url(/templates/balay-resources/images/menuover.png) no-repeat 0 100%;}
#mainNav ul li .menuCol ul li.navTitle a span{font-size:12px/18px !important;font-family: "opensans-regular-bold", Helvetica, sans-serif !important;color:#449DD2;height:auto;background:none;padding:4px 0 5px 0;text-align:center}
#mainNav ul li .menuCol ul{overflow:visible;width:154px;}
#mainNav ul li .prodMenu .menuCol ul{width:110px;}
#mainNav ul li .withBorder ul{float:left;clear:both;padding:5px 0 0;overflow:visible;}
#mainNav ul li .menuCol a.navImage{width:100%;height:49px;display:block;background:none;padding:0;margin:7px 0 0 0;overflow:hidden;position:relative}
#mainNav ul li .menuCol a.navImage img{max-width:110px;max-height:49px}
#mainNav ul li .menuCol ul li.navTitle a:hover span, #mainNav ul li .menuCol ul li.navTitle.active a span{ text-decoration: underline;}
#mainNav ul li.noNav div.shadow{visibility:hidden !important;height:0 !important;}
#mainNav ul li.over div.shadow{visibility:visible;height:auto}
#mainNav .prodMenu { zoom: 1;background-color: #F5F4F4;}
#mainNav .searchList , #mainNav .searchList li { background:url(/templates/balay-resources/images/menu-bg.png) no-repeat transparent; }
.shadowLeft{zoom:1;}
.shadowRight{background:url(/templates/balay-resources/images/ShadowRight.png) 100% 0 repeat-y;padding:0 10px 0 0;zoom:1;}
.shadowContent{background:#f5f4f4;padding:18px 10px 0 10px;}

.shadowLeft{zoom:1;}
.shadowRight{background:url(/templates/balay-resources/images/ShadowRight.png) 100% 0 repeat-y;padding:0 10px 0 0}
.shadowContent{padding:18px 10px 0 10px;background:#f5f4f4 url(/templates/balay-resources/images/sub-menu-bg.gif) no-repeat;}

.shadowTop{background:url(/templates/balay-resources/images/shadowTop.png) 0 0 repeat-x;margin:0 10px;height:10px}
.shadowTopLeft{background:url(/templates/balay-resources/images/shadowTopLeft.png) 0 0 no-repeat;height:10px}
.shadowTopRight{background:url(/templates/balay-resources/images/shadowTopRight.png) 100% 0 no-repeat;height:10px}

.shadowSub{background:url(/templates/balay-resources/images/shadowSub.png) 0 0 repeat-x;margin:0 10px;height:10px}
.shadowSubLeft{background:url(/templates/balay-resources/images/shadowSubLeft.png) 0 0 no-repeat;height:10px}
.shadowSubRight{background:url(/templates/balay-resources/images/shadowSubRight.png) 100% 0 no-repeat;height:10px}

/* Zoom Layer */

/* Style of the small image link */
.MagicThumb, .MagicThumb:hover{cursor:url(/Templates/balay-resources/images/zoomin.cur), pointer;outline:0 !important;}

body:nth-of-type(1) .MagicThumb, .MagicThumb:hover{cursor:url(/Templates/balay-resources/images/zoomin.cur), move;}

.MagicThumb, .MagicThumb:hover, x:-moz-any-link, x:default{cursor:url(/Templates/balay-resources/images/zoomin.cur), move;}

/* Style of the small image when the large image is expanded */ 
.MagicThumb-expanded-thumbnail{cursor:default;}

/* Style of the span inside the small image link */
.MagicThumb span{display:none !important;}

/* Style of the small image */
.MagicThumb img{border:0;outline:0;height:auto !important;}

/* Style of the expanded image */
.MagicThumb-expanded{cursor:url(/Templates/balay-resources/images/zoomout.cur), pointer;outline:0;padding:25px;padding-top:55px;padding-bottom:30px;background:white;background-image:url(/Templates/balay-resources/images/zoom_bg.png);background-position:0 0;background-repeat:repeat-x;}

.MagicThumb-expanded, x:-moz-any-link, x:default{cursor:url(/Templates/balay-resources/images/zoomout.cur), move;}

body:nth-of-type(1) .MagicThumb-expanded{cursor:url(/Templates/balay-resources/images/zoomout.cur), move;}

/* Style of the caption for the expanded image */
.MagicThumb-caption{color:#333;font-size: 10pt;font-family: "opensans-regular", Helvetica, sans-serif;background:#ccc;text-align:left;padding:8px;border:0 !important;outline:0 !important;}

/* Style of the close/next/previous buttons */
/*.MagicThumb-buttons{background:url(/templates/balay-resources/images/jqueryui/ui-icons_ffffff_256x240.png) no-repeat -96px -128px !important;display:block;margin:9px 9px 5px 5px;}*/
.MagicThumb-buttons {background: url("/Templates/balay-resources/images/icon-zoom-close.png") no-repeat -20px 6px !important;display: block;padding: 7px 9px 5px 5px;}

.MagicThumb-buttons a{width:16px;height:16px;margin:0 !important;overflow:hidden;background:none !important;}

/* Style of the loading message box */
.MagicThumb-loader{font-size:12pt;font-family: "opensans-regular", Helvetica, sans-serif;border:1px solid #000;background:#fff url(/Templates/balay-resources/images/loader.gif) no-repeat 2px 50%;padding:2px 2px 2px 22px;margin:0;text-decoration:none;text-align:left;}

/* Style of the small images which swap the main image 
.MagicThumb-swap{} */

/* Style to hide caption on page. Only needed for #id method. */
.MagicThumb-external-caption{display:none;}

.MagicThumb-expanded a#image-print{position:absolute;top:10px;right:40px;background:transparent url(/templates/balay-resources/images/print_iconw.png) no-repeat scroll 0 0;line-height:16px;font-size:12px;padding-left:23px;color:#fff;font-weight:bold}


.MagicThumb-expanded  div.lcl-text{background:url(/Templates/balay-resources/images/icon-zoom-croped.png) no-repeat 0 0 #fff;height:20px;line-height:12px;padding-left:17px;}


.magnifyIcon{ cursor:url(/Templates/balay-resources/images/zoomin.cur), pointer;}

/*Cookie */
.cookieGrid { margin-top:20px; }
.cookieGrid .gridRow { padding: 0 0 30px 0;}
.cookieGrid .gridRow .leftContent.hideIndent { text-indent:-9999px; }
.cookieGrid .leftContent {
    width: 238px;
    padding: 6px 0 0 46px;
    float: left;
}
.cookieGrid .rightContent {
    width: 300px;
    float: left;
}

.cookieGrid h2 {
    font-size: 12px !important;
    font-weight: normal;
    line-height: 11px !important;
    padding: 0 0 10px 26px;
}

.cookieGrid .leftContent span {
    display: inline-block;
    padding: 0 15px 0 0;
}
.cookieGrid .leftContent span.SN {
    display: inline-block;
    padding: 0 0 0 15px;
}
.cookieGrid .leftContent label {
    display: inline-block;
    padding: 0 0 0 15px;
}




div#coockieAPContainer 
{
    /*border:2px solid #cecece;*/
    background-color:#d0d0d0;
    width:100%;
    min-height:94px;
    position:relative;
    right:0;
    z-index:15;
    }
    
    div#coockieAPContent 
{
    width:980px;
    min-height:65px;
    /*margin:15px 24px;*/
    font:400 11px/14px arial;
    padding:10px 8px 13px 14px;
    padding-top:8px\9;
    /*margin:14px 0 0 44px;*/
        margin: 0 auto;
    }
    div#coockieAPContent div.cookieRightLinks { float: right;display: inline-block; }
    div#coockieAPContent h2
{
        color:#000;
        font-size: 12px;
        font-family: arial;
        font-weight: bold;
        padding: 0px;
        margin:0;
        line-height:16px;
        
    }
    
    div#coockieAPContent a.coockieAPButton 
    {
        font-weight:700;
        float:left;
        background: url(../images/accep_btn.gif) 0 0 no-repeat;
        height: 18px;
        line-height: 0px;
        padding: 0 0 0 9px;
        margin: 8px 0 0 0;
        text-decoration: none;
        }
   div#coockieAPContent a.coockieAPButton span { background: none;padding: 0px;margin: 0px;font-size: 11px;color: #fff; }
   div#coockieAPContent a.coockieAPButton > span
    {
       background: url(../images/accep_btn.gif) right 0 no-repeat;
       height: 18px;
       display: block;
       line-height: 18px;
       padding: 0 9px 0 0;   
    }
        
    div#coockieAPContent a.coockieAPLink
    {
        margin-top:9px;
        color: #4b4b4b;
        font-size: 10px;
        line-height:14px;
        text-decoration: none;
        }
        
    div#coockieAPContent a.left
    {
        float:left;
        clear:left;
        width:125px;
        }
        
    div#coockieAPContent a.right
    {
        float:right;
        margin-right:16px;
        margin-bottom:4px;
        }
        
     .coockieSettingsButton 
{
    background: url("/templates/balay-resources/images/button_bg.png") repeat-x scroll 0 0 transparent;
    color:#ffffff;
    display:block;
    font:400 12px/26px Arial, Helvetica, sans-serif !important;
    height:31px;
    width:244px;
    text-align:center;
    text-decoration: none;
    margin:10px 0;
    }
.newcookies-subscription-style .coockieSettingsButton 
{
    float: left;
    margin-right: 20px;
    }
.coockieSettingsButton:hover {
    color:#ffffff;
}       

table.cookies-list{margin-top:10px;border-collapse:collapse}
table.cookies-list thead{background-color:#DCDCDC;font-size: 12px;font-family: "opensans-regular-bold",Helvetica, sans-serif;line-height: 16px;padding: 6px 0 6px 10px;}
table.cookies-list tr.head td{background-color:#D4D4D4;font-size: 12px;font-family: "opensans-regular-bold",Helvetica, sans-serif;line-height: 16px;padding: 6px 0 6px 10px;}
table.cookies-list tr td{border-bottom: 1px solid #828282;border-top: 1px solid #E0E0E0;padding: 3px 0 3px 10px;}

/* Cookie end */

#prices{clear:both;font-size:12px;font-famliy: "opensans-regular", Helvetica, sans-serif;}




#main .middle_nav.w1000.center.cb{
	padding-left:0 !important;
	position:relative;
}
.partnerSearch .searchWrap h2{
	margin-top:20px;
	padding:6px 0 0 13px;
}

.partnerSearch .bottomContent {
	margin: 5px 0 40px 5px;
}

.stageArea .sub {
	font-size: 12px !important;
}
.teaser4group ul{
	margin-left:0;
}
.teaser4{float:left;width:213px;}
.teaser4 .teaserImg{float:left;margin:0;margin:0 5px 10px 0;}
.teaser4 .teaserImg a{display:block;float:left;}
.teaserText h5{
    font-size: 12px;
	margin: 7px 0 0 0 !important;
	display:block;
}
.teaserText h3, .teaser4 h3{
	font-size: 14px;
	margin: 0 0 5px 0 !important;
	color:#007AC2;
}

.teaser4group .teaser4 h3 
{
    padding-left:10px;
    }
    
.teaser4group .teaser4 .teaserText
{
    padding-left:10px;
    }

.teaserText > h5 span a{
	float:right;
	color: #007AC2;
	text-decoration: none;
	font-family: "opensans-regular-bold",Helvetica, sans-serif;
}
.teaserText{
	margin:0;
}
.teaserText > span{
	color: #707070;
	font-size: 12px;
    margin-bottom: 20px;
}

.teaserImg{
	margin-top:7px;
	display:block;
	text-align:center;
}

.documents-style .content div:first-child{
	margin-left:0 !important;
}

.content-3-style .stageArea,
.documents-style .stageArea,
.content-2-style .stageArea,
.press-center-style .stageArea,
.alternative-partner-locator-search-style .stageArea,
.faq-after-sales-style .stageArea{
	padding-left:0 !important;
}

.teaser4group ul li{
	padding-bottom:10px;
}

.content-2-style .content .sub{
	 font-size: 12px;
}


.productCategory .stageArea{
	padding-left:0 !important;
}

.announcements-style .col-1 {
    margin: 0 0 0 -7px;
}
#main {
    min-height: 450px;
}

.content-1-style #main .stageArea{
	padding-left:0 !important;
}

.contentList ul li h2 {
    font-size: 12px;
}

.content-1-style .sub,
.content-2-style .contentList.w100 .text {
    font-size: 12px !important;
}

.submargin-10{margin-bottom:10px !important;}

.table table{width:100%;margin:0 0 10px 0}

.table table thead tr td, .table table thead tr th{font-size:14px/18px;font-family: "opensans-regular-bold", Helvetica, sans-serif;padding:7px 9px 7px 0;text-align:left; color:#007AC2}
.table table thead tr td.light, .table table thead tr th.light{width:199px}
.table table thead tr td.light, .table table thead tr th.white{background:#fff;width:199px}

.table table tbody tr td{font-size:12px/15px;font-family: "opensans-regular", Helvetica, sans-serif;padding:7px 9px; color:#727272;border-bottom:1px solid #c3c3c4;}

/*

.table table tbody tr td input{ position: relative !important;}
.table table tbody tr td label.tablelabel{ display: block;float: left;margin: 3px 0 0 0;width: 120px;}
*/

.table table tbody tr td.light{background:#fff;width:208px}

.MagicThumb-background{position:fixed !important;}

a.feature-link{border-bottom:1px dashed #007ac2 !important;color:#007ac2;text-decoration: none;}

/* slider */
li a.slideractive, ul.thumbnails li a.sliderinactive {
    background-color: transparent!important;
}

ul.thumbnails {
    top: auto!important;
    bottom: 10px;
}
.tlSymbol {
    font-family: 'AbakuTLSymSansRegular'; font-family: "opensans-regular-bold",Helvetica, sans-serif; display: inline !important;
}
#prices .tlSymbol { font-weight: normal; }
.itemSpec { min-height: 80px;}


/* product carousel */


#carouselBalay{width:100%;position:relative;height:140px}
#carouselBalay a, #carouselBalay a span{ cursor: pointer;}

#carouselBalayLeft{float:left;padding:57px 0 56px;position:absolute;left:0;top:0}
#carouselBalayLeft span{background:url(/templates/balay-resources/images/carousel-btn.png) no-repeat 0 0;width:15px;height:30px;display:block;text-indent:-9000pt;}

#carouselBalayRight{float:right;padding:57px 4px 56px;position:absolute;right:2px;top: 0;background: #fff;}
#carouselBalayRight span{background:url(/templates/balay-resources/images/carousel-btn.png) no-repeat -1px -30px;width:15px;height:30px;display:block;text-indent:-9000pt;}
#carouselBalay #carouselCenter {height: 120px;overflow: hidden;left: 15px;width: 952px;position: absolute;}
#carouselBalay #carouselOverflow { width: 100000pt;position: absolute;}
#carouselBalay #carouselCenter #carouselOverflow .teaser-type-2{width: 135px;max-width:135px;padding: 0;height: auto;float: left;padding: 4px 0 0 0;background:url(/templates/balay-resources/images/carousel-ln.png) no-repeat 100% 0;}
#carouselBalay #carouselCenter #carouselOverflow .teaser-type-2 a{ clear: both;display: block;text-align: center;text-decoration: none;color: #423f40;font-size: 14px;margin: 8px 0 0 0;}

/* product carousel */