/*
Copyright (c) 2009, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.8.0r4
*/
.yui-overlay,
.yui-panel-container {
    visibility:hidden;
    position:absolute;
    z-index: 2;
}

.yui-tt {
    visibility:hidden;
    position:absolute;
    color:#333;
    background-color:#FDFFB4;
    font-family:arial,helvetica,verdana,sans-serif;
    padding:2px;
    border:1px solid #FCC90D;
    font:100% sans-serif;
    width:auto;
}

/*
    PLEASE NOTE: The <DIV> element used for a Tooltip's shadow is appended 
    to its root element via JavaScript once it has been rendered.  The 
    code that creates the shadow lives in the Tooltip's public "onRender" 
    event handler that is a prototype method of YAHOO.widget.Tooltip.  
    Implementers wishing to remove a Tooltip's shadow or add any other markup
    required for a given skin for Tooltip should override the "onRender" method.
*/

.yui-tt-shadow {
    display: none;
}

* html body.masked select {
    visibility:hidden;
}

* html div.yui-panel-container select {
    visibility:inherit;
}

* html div.drag select {
    visibility:hidden;
}

* html div.hide-select select {
    visibility:hidden;
}

.mask {
    z-index: 1; 
    display:none;
    position:absolute;
    top:0;
    left:0;
    -moz-opacity: 0.5;
    opacity:.50;
    filter: alpha(opacity=50);
    background-color:#CCC;
}

/*

There are two known issues with YAHOO.widget.Overlay (and its subclasses) that 
manifest in Gecko-based browsers on Mac OS X:

    1) Elements with scrollbars will poke through Overlay instances floating 
       above them.
    
    2) An Overlay's scrollbars and the scrollbars of its child nodes remain  
       visible when the Overlay is hidden.

To fix these bugs:

    1) The "overflow" property of an Overlay instance's root element and child 
       nodes is toggled between "hidden" and "auto" (through the application  
       and removal of the "hide-scrollbars" and "show-scrollbars" CSS classes)
       as its "visibility" configuration property is toggled between 
       "false" and "true."
    
    2) The "display" property of <SELECT> elements that are child nodes of the 
       Overlay instance's root element is set to "none" when it is hidden.

PLEASE NOTE:  
  
    1) The "hide-scrollbars" and "show-scrollbars" CSS classes classes are 
       applied only for Gecko on Mac OS X and are added/removed to/from the 
       Overlay's root HTML element (DIV) via the "hideMacGeckoScrollbars" and 
       "showMacGeckoScrollbars" methods of YAHOO.widget.Overlay.
    
    2) There may be instances where the CSS for a web page or application 
       contains style rules whose specificity override the rules implemented by 
       the Container CSS files to fix this bug.  In such cases, is necessary to 
       leverage the provided "hide-scrollbars" and "show-scrollbars" classes to 
       write custom style rules to guard against this bug.

** For more information on this issue, see: 
   + https://bugzilla.mozilla.org/show_bug.cgi?id=187435
   + YUILibrary bug #1723530

*/

.hide-scrollbars,
.hide-scrollbars * {

    overflow: hidden;

}

.hide-scrollbars select {

    display: none;

}

.show-scrollbars {

    overflow: auto;

}

.yui-panel-container.show-scrollbars {

    overflow: visible;

}

.yui-panel-container.show-scrollbars .underlay {

    overflow: auto;

}

.yui-panel-container.focused {

}


/* Panel underlay styles */

.yui-panel-container .underlay {

    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

}

.yui-panel-container.matte {

    padding: 3px;
    background-color: #fff;

}

.yui-panel-container.shadow .underlay {

    top: 3px;
    bottom: -3px;
    right: -3px;
    left: 3px;
    background-color: #000;
    opacity: .12;
    filter: alpha(opacity=12);  /* For IE */

}

/* 
   Workaround for Safari 2.x - the yui-force-redraw class is applied, and then removed when
   the Panel's content changes, to force Safari 2.x to redraw the underlay.
   We attempt to choose a CSS property which has no visual impact when added,
   removed, but still causes Safari to redraw
*/
.yui-panel-container.shadow .underlay.yui-force-redraw {
    padding-bottom: 1px;
}

.yui-effect-fade .underlay {
    display:none;
}

.yui-panel {
    visibility:hidden;
    border-collapse:separate;
    position:relative;
    left:0;
    top:0;
    font:1em Arial;
    background-color:#FFF;
    border:1px solid #000;
    z-index:1;
    overflow:hidden;
}

.yui-panel .hd {
    background-color:#3d77cb;
    color:#FFF;
    font-size:100%;
    line-height:100%;
    border:1px solid #FFF;
    border-bottom:1px solid #000;
    font-weight:bold;
    padding:4px;
    white-space:nowrap;
}

.yui-panel .bd {
    overflow:hidden;
    padding:4px;
}

.yui-panel .bd p {
    margin:0 0 1em;
}

.yui-panel .container-close {
    position:absolute;
    top:5px;
    right:4px;
    z-index:6;
    height:12px;
    width:12px;
    margin:0px;
    padding:0px;
    background:url(../../template/v0/js/yui/2.8.0r4/container/assets/close12_1.gif) no-repeat;
    cursor:pointer;
    visibility:inherit;
    text-indent:-10000em;
    overflow:hidden;
    text-decoration:none;
}

.yui-panel .ft {
    padding:4px;
    overflow:hidden;
}

.yui-simple-dialog .bd .yui-icon {
    background-repeat:no-repeat;
    width:16px;
    height:16px;
    margin-right:10px;
    float:left;
}

.yui-simple-dialog .bd span.blckicon {
    background: url("../../template/v0/js/yui/2.8.0r4/container/assets/blck16_1.gif") no-repeat;
}

.yui-simple-dialog .bd span.alrticon {
    background: url("../../template/v0/js/yui/2.8.0r4/container/assets/alrt16_1.gif") no-repeat;
}

.yui-simple-dialog .bd span.hlpicon {
    background: url("../../template/v0/js/yui/2.8.0r4/container/assets/hlp16_1.gif") no-repeat;
}

.yui-simple-dialog .bd span.infoicon {
    background: url("../../template/v0/js/yui/2.8.0r4/container/assets/info16_1.gif") no-repeat;
}

.yui-simple-dialog .bd span.warnicon {
    background: url("../../template/v0/js/yui/2.8.0r4/container/assets/warn16_1.gif") no-repeat;
}

.yui-simple-dialog .bd span.tipicon {
    background: url("../../template/v0/js/yui/2.8.0r4/container/assets/tip16_1.gif") no-repeat;
}

.yui-dialog .ft, 
.yui-simple-dialog .ft {
    padding-bottom:5px;
    padding-right:5px;
    text-align:right;
}

.yui-dialog form, 
.yui-simple-dialog form {
    margin:0;
}

.button-group button {
    font:100 76% verdana;
    text-decoration:none;
    background-color: #E4E4E4;
    color: #333;
    cursor: hand;
    vertical-align: middle;
    border: 2px solid #797979;
    border-top-color:#FFF;
    border-left-color:#FFF;
    margin:2px;
    padding:2px;
}

.button-group button.default {
    font-weight:bold;
}

.button-group button:hover, 
.button-group button.hover {
    border:2px solid #90A029;
    background-color:#EBF09E;
    border-top-color:#FFF;
    border-left-color:#FFF;
}

.button-group button:active {
    border:2px solid #E4E4E4;
    background-color:#BBB;
    border-top-color:#333;
    border-left-color:#333;
}

.yui-override-padding {
    padding:0 !important;
}
/*
Copyright (c) 2009, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.8.0r4
*/
.yui-calcontainer {
	position:relative;
	padding:5px;
	background-color:#F7F9FB;
	border:1px solid #7B9EBD;
	float:left;
	_overflow:hidden; /* IE6 only, to clip iframe shim */
}

.yui-calcontainer iframe {
	position:absolute;
	border:none;
	margin:0;padding:0;
	z-index:0;
	width:100%;
	height:100%;
	left:0px;
	top:0px;
}

/* IE6 only */
.yui-calcontainer iframe.fixedsize {
	width:50em;
	height:50em;
	top:-1px;
	left:-1px;
}

.yui-calcontainer.multi {
	padding:0;
}

.yui-calcontainer.multi .groupcal {
	padding:5px;
	background-color:transparent;
	z-index:1;
	float:left;
	position:relative;
	border:none;
}

.yui-calcontainer .title {
	font:100% sans-serif;
	color:#000;
	font-weight:bold;
	margin-bottom:5px;
	height:25px;
	position:absolute;
	top:3px;left:5px;
	z-index:1;
}

.yui-calcontainer .close-icon {
	position:absolute;
	overflow:hidden;
	text-indent:-10000em;
	right:3px;
	top:3px;
	border:none;
	z-index:1;
}

.yui-calcontainer .calclose {
	background: url("../../template/v0/js/yui/2.8.0r4/calendar/assets/calx.gif") no-repeat;
	width:17px;
	height:13px;
	cursor:pointer;	
}

/* Calendar element styles */

.yui-calendar {
	font:100% sans-serif;
	text-align:center;
	border-spacing:0;
	border-collapse:separate;
	position:relative;
}

.yui-calcontainer.withtitle {
	padding-top:1.5em;
}

.yui-calendar .calnavleft {
	position:absolute;
	overflow:hidden;
	text-indent:-10000em;
	cursor:pointer;
	top:2px;
	bottom:0;
	width:9px;
	height:12px;
	left:2px;
	z-index:1;
	background: url("../../template/v0/js/yui/2.8.0r4/calendar/assets/callt.gif") no-repeat;
}

.yui-calendar .calnavright {
	position:absolute;
	overflow:hidden;
	text-indent:-10000em;
	cursor:pointer;
	top:2px;
	bottom:0;
	width:9px;
	height:12px;
	right:2px;
	z-index:1;
	background: url("../../template/v0/js/yui/2.8.0r4/calendar/assets/calrt.gif") no-repeat;
}

.yui-calendar td.calcell {
	padding:.1em .2em;
	border:1px solid #E0E0E0;
	text-align:center;
}

.yui-calendar td.calcell a {
	color:#003DB8;
	text-decoration:none;
}

.yui-calendar td.calcell.today {
	border:1px solid #000;
}

.yui-calendar td.calcell.oom {
	cursor:default;
	color:#999;
	background-color:#EEE;
	border:1px solid #E0E0E0;
}

.yui-calendar td.calcell.selected {
	color:#003DB8;
	background-color:#FFF19F;
	border:1px solid #FF9900;
}

.yui-calendar td.calcell.calcellhover {
	cursor:pointer;
	color:#FFF;
	background-color:#FF9900;
	border:1px solid #FF9900;
}

.yui-calendar td.calcell.calcellhover a {
	color:#FFF;
}

.yui-calendar td.calcell.restricted {
	text-decoration:line-through;
}

.yui-calendar td.calcell.previous {
	color:#CCC;
}

.yui-calendar td.calcell.highlight1 { background-color:#CCFF99; }
.yui-calendar td.calcell.highlight2 { background-color:#99CCFF; }
.yui-calendar td.calcell.highlight3 { background-color:#FFCCCC; }
.yui-calendar td.calcell.highlight4 { background-color:#CCFF99; }

.yui-calendar .calhead {
	border:1px solid #E0E0E0;
	vertical-align:middle;
	background-color:#FFF;
}

.yui-calendar .calheader {
	position:relative;
	width:100%;
	text-align:center;
}

.yui-calendar .calheader img {
	border:none;
}

.yui-calendar .calweekdaycell {
	color:#666;
	font-weight:normal;
	text-align:center;
	width:1.5em;
}

.yui-calendar .calfoot {
	background-color:#EEE;
}

.yui-calendar .calrowhead, .yui-calendar .calrowfoot {
	color:#666;
	font-size:9px;
	font-style:italic;
	font-weight:normal;
	width:15px;
}

.yui-calendar .calrowhead {
	border-right-width:2px;
}

/* CalendarNavigator */
.yui-calendar a.calnav {
	_position:relative;
	padding-left:2px;
	padding-right:2px;
	text-decoration:none;
	color:#000;
}

.yui-calendar a.calnav:hover {
	border:1px solid #003366;
	background-color:#6699cc;
	background: url(../../template/v0/js/yui/2.8.0r4/calendar/assets/calgrad.png) repeat-x;
	color:#fff;
	cursor:pointer;
}

.yui-calcontainer .yui-cal-nav-mask {
	position:absolute;
	z-index:2;
	display:none;

	margin:0;
	padding:0;

	left:0;
	top:0;
	width:100%;
	height:100%;
	_width:0;    /* IE6, IE7 Quirks - width/height set programmatically to match container */
	_height:0;

	background-color:#000;
	opacity:0.25;
	*filter:alpha(opacity=25);
}

.yui-calcontainer .yui-cal-nav {
	position:absolute;
	z-index:3;
	display:none;

	padding:0;
	top:1.5em;
	left:50%;
	width:12em;
	margin-left:-6em;

	border:1px solid #7B9EBD;
	background-color:#F7F9FB;
	font-size:93%;
}

.yui-calcontainer.withtitle .yui-cal-nav {
	top:3.5em;
}

.yui-calcontainer .yui-cal-nav-y,
.yui-calcontainer .yui-cal-nav-m,
.yui-calcontainer .yui-cal-nav-b {
	padding:2px 5px 2px 5px;
}

.yui-calcontainer .yui-cal-nav-b {
	text-align:center;
}

.yui-calcontainer .yui-cal-nav-e {
	margin-top:2px;
	padding:2px;
	background-color:#EDF5FF;
	border-top:1px solid black;
	display:none;
}

.yui-calcontainer .yui-cal-nav label {
	display:block;
	font-weight:bold;
}

.yui-calcontainer .yui-cal-nav-mc {
	width:100%;
	_width:auto; /* IE6 doesn't like width 100% */
}

.yui-calcontainer .yui-cal-nav-y input.yui-invalid {
	background-color:#FFEE69;
	border: 1px solid #000;
}

.yui-calcontainer .yui-cal-nav-yc {
	width:3em;
}

.yui-calcontainer .yui-cal-nav-b button {
	font-size:93%;
	text-decoration:none;
	cursor: pointer;
	background-color: #79b2ea;
	border: 1px solid #003366;
	border-top-color:#FFF;
	border-left-color:#FFF;
	margin:1px;
}

.yui-calcontainer .yui-cal-nav-b .yui-default button {
	/* not implemented */
}

/* Specific changes for calendar running under fonts/reset */
.yui-calendar .calbody a:hover {background:inherit;}
p#clear {clear:left; padding-top:10px;}
.carousel-component{position:relative;overflow:hidden;visibility:hidden;}.carousel-component ul.carousel-list{width:10000000px;position:relative;z-index:1;}.carousel-component .carousel-list li{float:left;list-style:none;overflow:hidden;}.carousel-component .carousel-vertical li{margin-bottom:0px;float:left;clear:left;overflow:hidden;display:block;}.carousel-component ul.carousel-vertical{}.carousel-component .carousel-clip-region{overflow:hidden;margin:0px auto;position:relative;}.carousel-component{background:#e2edfa;padding:0px;-moz-border-radius:6px;color:#618cbe;}.carousel-component ul.carousel-list{margin:0px;padding:0px;line-height:0px;}.carousel-component .carousel-list li{text-align:center;margin:0px;padding:0px;font:10px verdana,arial,sans-serif;color:#666;}.carousel-component .carousel-vertical li{}.carousel-component ul.carousel-vertical{}.carousel-component{padding:8px 14px;margin:0px;}.carousel-component .carousel-list li{margin:4px;width:79px;height:86px;}.carousel-component .carousel-list li a{display:block;border:1px solid #e2edfa;outline:none;}.carousel-component .carousel-list li a:hover{border:1px solid #aaaaaa;}.carousel-component .carousel-list li img{border:1px solid #999;display:block;}.carousel-component .carousel-prev{position:absolute;top:13px;z-index:1;cursor:pointer;left:8px;}.carousel-component .carousel-next{position:absolute;top:13px;z-index:1;cursor:pointer;right:8px;}.star-rating{list-style:none;margin:0px;padding:0px;width:125px;height:25px;position:relative;background:url(../../template/v0/gfx/alt_star.gif) top left repeat-x;}.star-rating li{padding:0px;margin:0px;float:left;}.star-rating li a{display:block;width:25px;height:25px;text-decoration:none;text-indent:-9000px;z-index:20;position:absolute;padding:0px;}.star-rating li a:hover{background:url(../../template/v0/gfx/alt_star.gif) left bottom;z-index:2;left:0px;}.star-rating a.one-star{left:0px;}.star-rating a.one-star:hover{width:25px;}.star-rating a.two-stars{left:25px;}.star-rating a.two-stars:hover{width:50px;}.star-rating a.three-stars{left:50px;}.star-rating a.three-stars:hover{width:75px;}.star-rating a.four-stars{left:75px;}.star-rating a.four-stars:hover{width:100px;}.star-rating a.five-stars{left:100px;}.star-rating a.five-stars:hover{width:125px;}.star-rating li.current-rating{background:url(../../template/v0/gfx/alt_star.gif) left center;position:absolute;height:25px;display:block;text-indent:-9000px;z-index:1;}.clearfix{width:100%;overflow:hidden;}div.container{margin:0 auto;width:960px;}body{text-align:left;font-size:13px;}div.logo,h1,h2,h3,h4,h5,h6{font-family:Arial, sans-serif;font-weight:bold;line-height:1em;margin-bottom:0.3em;}h1{margin-bottom:10px;}div.logo a,h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{line-height:1.2em;}div.logo{height:100px;width:260px;}h1{font-size:1.3em;}div#content div#left h1{font-size:1.7em;}h2{font-size:1.2em;}h3{font-size:1em;}h4,h5,h6{font-size:.9em;}strong{font-weight:bold;}em{font-style:italic;}a{outline:none;text-decoration:none;color:#C00;}a:hover{text-decoration:underline;}div.logo a{display:block;height:100px;}div.logo a span{display:none;}div.logo a img{margin-top:35px;}a.skip{display:none;}.shade{background:#EEE;border:1px solid #DDD;border-width:1px 0;padding:10px;margin-bottom:1.5em;}div#right div.shade{padding:6px 12px 2px 0px;margin-bottom:1em;}ol{margin-left:1.6em;}ol li{list-style:decimal outside none;margin-bottom:0.6em;}ol li a{font-weight:normal;}img.thumb{float:left;margin:4px 5px 4px 0;border:1px solid #DADADA;padding:1px;background:#FFF;}img.stats{display:none;}ul#addTag{clear:both;}div.container div#content form .fadeAlert{background-color:#CC0000;padding:4px 6px;margin-top:1em;font-weight:bold;visibility:hidden;color:#FFF;clear:both;}div.flashFrame{width:270px;height:200px;}.mask{-moz-opacity:0.75;opacity:.75;filter:alpha(opacity = 75);background-color:#000;}div#lightboxPanel_c{background:#fff url(../../template/v0/gfx/ajax-loader.gif) center center no-repeat;}div#lightboxPanel.yui-panel{border:1px solid #fff;}.yui-panel .container-close{position:absolute;right:16px;top:23px;height:15px;width:14px;cursor:pointer;background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat -360px -510px;}div#lightboxPanel{background:#F8F8F8;padding:16px;}iframe{z-index:10;}div#overlayPanel_c{}div#lightboxPanel .lightboxScrollableContent{overflow:auto;height:420px;padding:10px;}.yui-panel .bd{padding:0px;}.yui-panel .hd{border:none;color:#fff;font-size:1.5em;}.standardForm{margin-bottom:1em;}div#content form div.top{border:none;}.standardForm h1,.standardForm legend{padding:8px 22px;margin:0px;}.standardForm legend{display:none;}#content .standardForm input.textinput,#content .standardForm textarea.textinput{width:184px;border:1px solid #BBB;padding:5px 2px;}#content .standardForm textarea.textinput{width:344px;}.standardForm label{font-weight:bold;width:150px;}div#articleForm form,form#articleForm{background:#F8F8F8 none repeat scroll 0% 0%;border-color:#E7E7E7;border-style:solid;border-width:1px 0pt;}div#articleForm form fieldset{padding:22px;}div#articleForm form fieldset input{width:260px;}div#articleForm form fieldset label{display:block;float:left;width:140px;margin-right:12px;font-weight:bold;}div#articleForm form div.radioGroup label{display:inline;float:none;}div#articleForm form div.radioGroup input{width:auto;}div#articleForm form fieldset span.mceEditorContainer{display:block;margin-top:8px;}div#articleForm form div{border-top:1px solid #E7E7E7;padding:10px 6px;width:90%;}div#articleForm form div.calContainer{border:none;padding:0px;}div#articleForm form#articleEditForm div.top{border:none;}div#articleForm form div div{border:none;}form#articleEditForm input.button,form#eventForm input.button,a#articleBack{background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat scroll 0 -716px;border:none;color:#B20000;cursor:pointer;float:right;font-size:0;height:31px;padding:0;text-align:right;text-indent:-9999px;}form#articleEditForm input.submit{background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat scroll -0px -750px;width:240px;}form#articleEditForm input.save{background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat scroll -101px -860px;width:95px;}form#articleEditForm input#cancelArticle{background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat scroll 0 -712px;margin-right:4px;width:90px;}a#articleBack{background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat scroll -97px -716px;margin-right:6px;width:145px;}form#articleEditForm input#saveConcept{background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat scroll -170px -786px;margin-right:6px;width:131px;}form#articleEditForm input#saveArticle{background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat scroll -247px -751px;width:133px;}div#profileForm div#signupBox{float:right;clear:both;width:50%;margin-bottom:1.5em;padding:8px;top:0px;right:0px;background:#F8F8F8;margin-top:-52px;border:1px solid #e7e7e7;}div#profileForm div#signupBox p{margin:8px 0;}div#content span.fieldComment{width:140px;}div#content span.fieldComment p{padding:0 6px;display:block;margin:0;width:128px;}div#content span.fieldComment p.fieldError{padding:6px 6px 6px 16px;width:126px;color:#FFF;background:transparent url(../../template/v0/gfx/errorBackground.gif) no-repeat;margin:0px 0px 6px 0px;}div#profileForm label.fieldLabel,div#profileForm p.fieldLabel{padding:17px 0px;font-weight:normal;}div#profileForm fieldset.noShade{display:block;background:#FFF;}div#profileForm form div,form#mailArticleForm div,.standardForm div{width:100%;padding:10px 0;border-top:1px solid #E7E7E7;overflow:hidden;}form#mailArticleForm p,form#mailArticleForm label,form#mailArticleForm input,form#mailArticleForm textarea,div#profileForm form p,div#profileForm form label,div#profileForm form input,div#profileForm form textarea,.standardForm p,.standardForm label,.standardForm input,.standardForm textarea{float:left;margin:0 22px;}input[type=hidden],div#profileForm input[type=hidden]{display:none;}div#profileForm div span.formComment,form#mailArticleForm div span{display:block;width:150px;font-size:0.85em;float:right;}form#mailArticleForm label,form#mailArticleForm input,form#mailArticleForm div span,div#profileForm label,div#profileForm input,div#profileForm div span{float:left;padding:7px 0;margin-right:12px;}body div#profileForm div span,body form#mailArticleForm div span{padding:0px;}div#profileForm div p,form#mailArticleForm div p{clear:both;}div#profileForm form p,form#mailArticleForm p{margin-bottom:0px;}div#profileForm input,div#articleForm input,form#mailArticleForm input{border:1px solid #BBB;padding:5px 2px;}div#profileForm input.submitButton{background:url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat scroll 0 -1372px;display:block;height:32px;margin-bottom:8px;margin-right:8px;width:78px;cursor:pointer;border:none;color:#cc0000;text-indent:-999px;font-size:0px;line-height:0px;float:right;}form input.changeProfile{background:url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat scroll -4px -1409px;display:block;height:28px;margin:0px;margin-right:4px;width:114px;cursor:pointer;border:none;color:#cc0000;text-indent:-999px;font-size:0px;line-height:0px;}a.changePassword{background:url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat scroll -178px -1374px;display:block;height:28px;margin:0;width:148px;text-indent:-9999px;}div#profileForm input.submitResetPassword{background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat scroll -78px -1336px;display:block;height:30px;float:right;margin:0 1em 1em 0;padding:0;border:none;cursor:pointer;text-indent:-9999px;width:188px;font-size:0px;line-height:0px;}div#profileForm form input.submitChange{background:url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat scroll -179px -1374px;display:block;height:30px;margin:0 8px 8px 0;width:148px;font-size:0px;line-height:0px;text-indent:-9999px;float:right;}div#profileForm label,form#mailArticleForm label{width:150px;font-weight:bold;}div.columnForm{margin-top:1.5em;}div.columnForm form{border:none;}div.columnForm label{width:150px;float:left;}div.columnForm input,div.columnForm select{float:left;}div.columnForm div{float:left;overflow:hidden;}div.editProfile{float:left;padding:8px;background:#F8F8F8;border-color:#E7E7E7;border-style:solid;border-width:1px;width:98%;margin:.5em -8px 1.5em -8px;display:block;}div.editProfile ul li{float:left;display:inline;}div.editProfile ul li form fieldset{width:auto;}ul.profileImages{border-top:1px solid #BBBBBB;margin-top:1em;padding-top:0.8em;}div#profileForm input{width:184px;display:inline;}div#profileForm input#terms{width:auto;padding:0;border:none;}div#profileForm div.inputField{width:190px;display:block;float:left;margin:0 22px;border:none;}div#profileForm div.inputField input{float:left;margin:0 4px 0 0;}div#profileForm div.inputGroup div{width:190px;border:0;margin:0 12px 0 0;padding:8px 0 0;}div#profileForm div.radioGroup div input,div#profileForm div.radioGroup div label,div#profileForm fieldset.save input{border:0;padding:0;width:auto;}div#profileForm div.radioGroup div input{margin-right:2px;}div#profileForm div.radioGroup div label{margin-right:11px;margin-left:4px;}div#profileForm form div.error{border:0 solid #C00 !important;border-width:1px 0 !important;background-color:#FCEFEF;}form#loginForm div.error,form#passwordForm div.error{padding-left:22px;}div#profileForm div.error p.fieldError{}div#profileForm div.error input{border-color:#CD0707;}div#profileForm div.error a{text-decoration:underline;}#BlogPhotoUpload div#uploadProgressBar,#BlogPhotoUpload div#uploadProgressBarBlogFoto{margin-left:22px;}div#profileForm div#uploadProgressBar,div#profileForm div#uploadProgressBarBlogFoto, div#profileForm div#uploadProgressBar div,div#profileForm div#uploadProgressBarBlogFoto div{width:auto;border:none;}div#profileForm div#uploadProgressBarBox,div#uploadProgressBarBlogFoto{background:#CD0707;margin:8px 0;}div#body div.profileBox{margin-top:1.5em;padding-top:0px;width:100%;float:left;}div#body div.profileBox ul{padding-top:1em;}div#profileForm.login h1{background:url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat left -1120px;text-indent:-9999px;}div#profileForm.signup input.submit{padding:0;border:0;height:33px;width:97px;background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat -100px -860px;text-indent:-9999px;cursor:pointer;color:#B20000;float:right;text-align:right;font-size:0pt;margin-bottom:8px;}div#profileForm.signup h1{background:url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat 20px -1146px;text-indent:-9999px;}div#profileForm.signup2 form{border:0;}div#profileForm.signup2 form div{border-top:0px;border-bottom:1px solid #E7E7E7;}div#profileForm.signup2 div.agreements{border:0;}div#profileForm.signup2 div.agreements input,div#profileForm.signup2 div.agreements label{margin:0.5em;width:auto;padding:0;font-weight:normal;}div#profileForm.signup2 form div.agreements input{margin-left:162px;border:0;}div#profileForm.signup2 fieldset.buttons{height:64px;border-top:5px solid #C00;}div#profileForm.signup2 fieldset.buttons button{float:right;margin:16px 20px;padding:0;border:0;height:31px;width:127px;background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat -220px -860px;text-indent:-9999px;cursor:pointer;}div#profileForm form,.standardForm{border:1px solid #E7E7E7;border-width:1px 0;background:#F8F8F8;clear:both;}div#profileForm h1{margin:0;height:24px;margin:14px 0;}div#profileForm.myProfile h1{background:#F8F8F8 url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat 20px -896px;}div#profileForm h1.aanmelden{background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat scroll left -999px;height:30px;}div#profileForm.myProfile form.avatar{margin:2em 0;}div#profileForm.myProfile form.avatar h1{background:#F8F8F8 url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat 20px -1236px;}div#profileForm.myProfile form.blogPhoto h1{background:#F8F8F8 url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat 20px -1266px;}form#AvatarUpload fieldset{}div#avatar a.delete{float:left;}div#profileForm.myProfile form.avatar label{width:auto;}div#profileForm.myProfile form.avatar button,div#profileForm.myProfile form.blogPhoto button{float:right;width:116px;height:32px;margin-right:30px;text-indent:-9999px;background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat scroll -125px -1407px;}div#profileForm form input#selectPhoto{margin-top:1em;clear:both;}div#profileForm.myProfile fieldset.save{border-top:1px solid #E7E7E7;}div#profileForm.myProfile fieldset.save input,div#profileForm.myProfile fieldset.save label{margin:0.5em;}div#profileForm.myProfile fieldset.save label{width:auto;padding:0;font-weight:normal;}div#profileForm.myProfile fieldset.save button,div#profileForm.myProfile fieldset.save input.submit{float:right;margin-right:30px;}div#profileForm.myProfile button,div#profileForm.myProfile input.submit{margin:0px 22px;padding:0;border:0;height:33px;width:97px;background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat -100px -860px;text-indent:-9999px;cursor:pointer;float:right;color:#B20000;padding-top:14px;font-size:0pt;}ul.profileImages li{display:block;float:left;margin-right:5px;}div#body{position:relative;padding-top:120px;}div#logo{width:460px;}ul#metaNav{float:right;width:230px;}div#left,div#right{float:left;overflow:hidden;}div#left{width:590px;padding-left:20px;}div#right{width:318px;padding:0 16px;}div#specialEvent p img,div#right div .thumbs img{height:52px;width:52px;}ul.hotLinks li{display:block;margin:0 0 0.6em 0;width:100%;overflow:hidden;}ul.hotLinks li span,ul.hotLinks li a{float:left;display:block;width:79%;}#agenda ul.hotLinks li a{width:75%;}ul.hotLinks li span{width:15%;margin-right:3%;background:#C00;text-align:center;padding:0.1em 0;font-size:0.92em;color:#FFF;}div#nav{position:relative;}form#searchbox{top:0;right:0;}form#searchbox input{padding:5px;height:16px;width:222px;border:2px solid #CCC;margin-bottom:8px;}form#searchbox button{margin:0 0 8px 3px;padding:0;border:0;height:31px;width:75px;background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat left -861px;text-indent:-9999px;cursor:pointer;}form#searchbox input,form#searchbox button{vertical-align:top;}ul#mainNav{padding-top:0.5em;border-bottom:5px solid #CD0707;}ul#mainNav li,ul#subNav li{float:left;display:inline;font-size:1.1em;}ul#mainNav li{margin-right:0.5em;}ul#mainNav li.first{margin-left:22px;}ul#mainNav li a{display:block;background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat right -147px;padding-right:4px;font-weight:bold;color:#FFF;}ul#mainNav li a:hover{text-decoration:none;}ul#mainNav li a span{display:block;background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat left -147px;padding:0.7em 1.5em 0.4em;}ul#mainNav li:hover a,ul#mainNav li.sfHover a,ul#mainNav li:focus a{background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat right 3px;}ul#mainNav li:hover a span,ul#mainNav li.sfHover a span,ul#mainNav li:focus a span{background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat left 3px;}ul#mainNav li.selected a{background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat right top;}ul#mainNav li.selected a span{background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat left top;}ul#subNav{margin:1em 0;}ul#subNav li{margin-right:0.3em;}ul#subNav li.first{margin-left:20px;}ul#subNav li a{color:#C00;}ul#subNav li a:hover{color:#000;}ul#metaNav li{float:right;padding:0 1em;}ul#metaNav li a{color:#C00;}ul#metaNav li a:hover{color:#000;}a.rss{display:block;background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat -360px -440px;width:24px;height:24px;}h1 span{}h1 a.rss{float:right;}h1 a.rss span{display:none;}h1 a.more,div#left a.completeList{float:right;padding-left:8px;background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat -397px -572px;font-weight:normal;color:#C00;text-decoration:underline;}div#right h1 span{display:inline;font-size:14px;}div#right h1 a.more{background-position:-397px -575px;}h1 a.more span{color:#000;display:inline !important;}div#right h1{height:16px;}div#content{margin:2em 0 1em;}div#content p{line-height:1.5em;margin-bottom:1em;overflow:hidden;}div.frontpage-box{margin:20px 0;width:570px;border-bottom:2px solid #DDD;padding:20px 10px 10px;background-color:#EEE;}div.top-story,div.more-articles{float:left;width:270px;}div#ourNews div.box img{margin-bottom:10px;}div.more-articles{margin-left:30px;}div.more-articles div.yui-navset li.delayed{visibility:hidden;}div.more-articles div.yui-navset-top li.delayed{visibility:visible;}div#ourNews div.more-articles{margin-left:0;}div.more-articles{margin-left:30px;}div.more-articles ul.yui-nav{border-bottom:1px solid #DDD;margin-bottom:8px;}div.more-articles div.yui-content,div.more-articles ul.yui-nav li{padding:3px 8px;}div.more-articles ul.yui-nav li.selected{background-color:#DDD;}div.more-articles ul.yui-nav a{color:#000;}div.more-articles ul.yui-nav li a em{text-transform:uppercase;font-size:11px;}div.top-story p.intro img{float:left;margin:4px 4px 6px 0;}div#ourNews{width:590px;margin-bottom:1.5em;background-color:#EEE;}div#ourNews div.box{float:left;width:270px;padding:10px;}div#ourNews div.left{border-right:10px solid #FFF;}div#ourNews div.right{border-left:10px solid #FFF;margin-left:-10px;}div#article span.ad, div#ourNews div.ad span, div#advertorials span{float:right;display:block;margin-top:14px;height:14px;padding:2px 4px;background-color:#000;color:#FFF;font-size:11px;font-style:italic;}div#article span.ad{float:none;margin:0 0 8px;width:63px;font-size:12px;height:16px;}div#advertorials span{margin-top:0;}div#ourNews h1 a.rss{margin-left:120px;}div#ourNews h2{font-size:1.0em;line-height:1.7em;}div#ourNews h2 a,div#ourNews p a{color:#000;}div#ourNews p a.more{color:#C00;}div#ourNews div#teaser,div#ourNews div#teaser2,div#ourNews div#newsList{float:left;}div#teaser,div#teaser2{margin-bottom:1em;}div#teaser{width:269px;}div#teaser h2,div#teaser2 h2{margin-top:0.3em;overflow:hidden;width:269px;}div#teaser2{width:269px;padding:0;margin-left:10px;}div#teaser img,div#teaser2 img{width:270px;height:200px;}div#hotLinksSingle{width:270px;}div.source{clear:both;margin-top:1em;padding:0.5em 1em;background:#D9D9D9;font-size:11px;}div#left ul#blogList div.source{margin-bottom:0px;margin-top:1em;}div#newsList{padding-left:10px;}div#newsList h1{margin-top:1em;background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat left -520px;height:20px;}div#hotLinksLeft,div#hotLinksRight{width:265px;float:left;margin-bottom:1em;}div#hotLinksRight{padding-left:6px;}div#topArticles{width:265px;padding-left:6px;float:left;}div#topArticles h1{margin-top:0px;}div#ourNews.abonneekrant{}div#ourNews.abonneekrant div.leftCol h1{height:24px;}div#ourNews.abonneekrant div#teaser2{float:none;}div#ourNews.abonneekrant div.rightCol{background:#06364c;margin-bottom:1.5em;padding:10px;color:#fff;width:255px;float:right;}div#ourNews.abonneekrant div.rightCol a,div#ourNews.abonneekrant div.rightCol h2 a{color:#fff;}div#ourNews.abonneekrant div.rightCol a{text-decoration:underline;}div#ourNews.abonneekrant div.rightCol p.intro a{text-decoration:none;}div#ourNews.abonneekrant div.rightCol h1{font-size:1em;}div#ourNews.abonneekrant div.rightCol div#teaser2{margin:0 0 1em 0;padding:0;width:auto ! impoprtant;}div#ourNews.abonneekrant div.rightCol div#teaser2 div.source{background:transparent;clear:both;margin-top:1em;padding:0.5em 0;color:#ccc;}div#ourNews.abonneekrant div.rightCol div#teaser2 div.source a{color:#ccc;}div#ourNews.abonneekrant div.rightCol ul.hotLinks li span{background:#fff;color:#004E94;font-size:0.92em;margin-right:3%;padding:0.1em 0;text-align:center;width:15%;}div#ourNews.abonneekrant div.rightCol div.flashFrame{width:auto !important;}div#ourNews.abonneekrant div.rightCol h1{height:24px;background:none;}div#ourNews.abonneekrant div#teaser,div#ourNews.abonneekrant div#newsList div#ourNews.abonneekrant div#abonneekrantList{float:none;}div#ourNews div.leftCol,div#ourNews div.rightCol{float:left;width:265px;}div#ourNews div.leftCol{}div#ourNews div.rightCol{}div#banners div{float:left;width:159px;text-align:center;}div#ads div{float:left;width:275px;margin-right:20px;padding-right:19px;}div#ads div p{line-height:1em;margin:0px;}div#ads div.last{margin:0;padding:0;border:0;}div#ads h3,div#ads h4{font-size:1em;}div#ads h4{margin:0;font-weight:normal;color:#C00;margin-bottom:0.5em;}div.bigTextAd{background:#F8F8F8;padding:8px;margin-top:1em;}div#signin{background:#C00;color:#FFF;margin-bottom:1em;padding-bottom:1em;}div#signin h1{background-color:#B20000;padding:7px;}div#signin div{text-align:center;}div#signin p{margin:1em 0;padding:0 14px;}div#signin a{text-decoration:underline;color:#FFF;}div#signin div.notSignedIn a{float:left;display:block;height:34px;width:113px;margin:4px 4px 0;}div#signin div.notSignedIn a.login{margin-left:40px;background:#C00 url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat left -1920px;}div#signin div.notSignedIn a.help{background:#C00 url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat -121px -1920px;}div#signin a.button{width:auto;display:block;margin:1em 0 0;height:33px;background:#C00 url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat center -640px;}div#signin a.button span{display:none;}div#body div#signin a.signup{background-position:center -1881px;}div#body div#signin a.newArticle{background-position:center -1441px;}div#body div#signin a.editArticle{background-position:center -1481px;}div#body div#signin a.deleteArticle{background-position:center -1521px;}div#body div#signin a.newEvent{background-position:center -1561px;}div#body div#signin a.editEvent{background-position:center -1601px;}div#body div#signin a.deleteEvent{background-position:center -1641px;}div#body div#signin a.editProfile{background-position:center -1681px;}div#body div#signin a.addVacancy{background-position:center -1721px;}div#body div#signin a.editVacancy{background-position:center -1761px;}div#body div#signin a.deleteVacancy{background-position:center -1801px;}div#body div#signin a.admin{background-position:center -1961px;}div#articleForm table.eventDate input{width:auto;}div#articleForm form#eventForm input.submit{background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat scroll 0 -786px;width:153px;}table.eventDate{margin-bottom:1em;}table.eventDate td{padding-right:6px;}div#specialEvent{}div#specialEvent h1{}div#specialEvent p{}div#specialEvent p img{float:left;margin:0.3em 0.5em 0.3em 0;}div#specialEvent a{text-decoration:underline;}div#right div.box{margin-bottom:1em;border:1px solid #EEE;padding:1em 8px;background:#F9F9F9;}div#right div.box h1{font-size:1.2em;font-weight:bold;}div#right div.box p{padding-bottom:1em;width:95%;}div#right div.spotlight p img{float:left;margin:0.3em 0.5em 0.3em 0;}div#right div.spotlight a{text-decoration:underline;}div#blogs h1{}div#blogs h1 span{}div#blogs h1 a.rss{margin-left:132px;background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat -360px -440px;}div#blogs li img,div#inThePicture li img{float:left;margin:4px 1em 0.5em 0;}div#blogs p{line-height:1.5em;}div.blogOverview h2 a{float:left;margin-right:4px;}div.blogOverview p{clear:both;}div#latestBlogPosts{padding:10px;}div#latestBlogPosts h1{background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat left -396px;}div#latestBlogPosts h1 span{display:none;}div#latestBlogPosts h1 a.rss{margin-left:166px;background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat -360px -480px;}div#latestBlogPosts ul.hotLinks li span{width:6%;margin-right:1.3%;background:#C00;text-align:center;padding:0.1em 0;font-size:0.92em;color:#FFF;}div#latestBlogPosts ul.hotLinks li a{width:90%;}div.blogOverview li{margin-bottom:1em;width:100%;overflow:hidden;}div#photoContestTeaser{}div#photoContestTeaser div.thumbs a{display:block;float:left;}div#photoContestTeaser div.thumbs a.last img{margin-right:0;}div#photoContestTeaser img{margin-right:10px;width:106px;height:106px;}div#recentPhotos{}div#recentPhotos div.thumbs a{display:block;float:left;}div#recentPhotos img{margin-right:10px;width:106px;height:106px;}div#recentPhotos div.thumbs a img.last{margin-right:0;}div#content div.categories{clear:both;padding:3px 0px 3px 12px;border:1px solid #EEE;width:auto;}div#content div.top-story div.source{padding:0;border:1px solid #D9D9D9;}div#content div.top-story div.source div{margin:3px 6px;}div#content div.top-story div.source div.categories{margin:0;padding:3px 5px;background-color:#F9F9F9;}div.stepHeader{margin-bottom:1em;}div.stepHeader p{float:left;display:block;margin-right:6px;padding:4px 4px 4px 24px;margin:0px;border:1px solid #EEE;background-color:#F8F8F8;}div.stepHeader p.step1{background:transparent url(../../template/v0/gfx/step1AddNewArticle.gif) no-repeat 6px;}div.stepHeader p.step2{background:transparent url(../../template/v0/gfx/step2AddExtras.gif) no-repeat 6px;}div.stepHeader p.active{font-weight:bold;background-color:#777;color:#FFF;border:none;}div#photos,div#myBlogPosts,div#agenda,div#specialEvent{margin-bottom:1em;}div#photos h1{}div#photos.myPhotos h1{background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat left -947px;}div#photos div.images a{display:block;float:left;}div#photos div.images a:hover{text-decoration:none;}div#photos img{margin:0 5px 5px 0;border:1px solid #EEE;padding:1px;background:#FFF;width:51px;}div#photos img.last{margin-right:0;}div#myBlogPosts h1{background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat left -927px;}div#agenda{border-bottom:1px solid #EEE;}div#agenda h1{}div#agenda ul.hotLinks span{width:14%;background:#EEE;color:#000;}div.date{display:block;float:left;margin:0 12px 12px 0;width:47px;height:48px;background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat -300px -580px;color:#FFF;text-align:center;font-weight:bold;}div.date div.month{padding-top:2px;}div.date div.day{font-size:24px;padding-top:2px;}div#sbLeft,div#sbRight{float:left;}div#sbLeft{width:178px;padding-right:10px;}div#recentReactions,div#advertisements,div.pollContainer{margin-bottom:1.5em;padding-bottom:1em;border-bottom:1px solid #EEE;}div#recentReactions h1{}div#recentReactions div{font-size:0.93em;color:#BBB;}div#recentReactions h4{margin:0.6em 0 0;font-size:1em;font-weight:bold;}div#advertisements h1{}div#advertisements li{margin-top:0.8em;}div#right div#advertisements li p{margin:0;padding:0;}div#advertorials{width:300px;}div#advertorials h1{display:none;}div#advertorials h2{font-size:1em;}div#advertorials div.caption p{margin-bottom:0;padding-bottom:0;}div#right div.pollContainer form{margin:0 2px;}div#right div.pollContainer div.formRow label{float:left;margin:0.2em 0.7em 0.3em 0;}div.pollContainer form legend{display:none;}div.pollContainer form p{margin-bottom:0.7em;}div.pollContainer div.formRow{width:100%;overflow:hidden;}div.pollContainer div.formRow input,div.pollContainer div.formRow label{float:left;margin:0.5em 0.7em 0.3em 0;}div.pollContainer div.formRow label{color:#C00;}div.pollContainer div.notVoted{display:none;}div.pollContainer div.scoreBar{margin:2px 0 10px 0;background-color:#E6E6E6;}div.pollContainer div.scoreBar div{height:12px;background-color:#C00;}div.votingInProgress{display:none;height:30px;background:transparent url(../../template/v0/gfx/wait_spinning.gif) center center no-repeat;}form#PollForm div.inputGroup div{float:none;clear:none;width:auto;}div#sbRight{border-left:1px solid #EEE;padding-left:9px;width:120px;}div#sbRight img,div#sbRight div{width:120px;margin-bottom:1em;}div#googleAds{position:relative;text-align:center;margin:1.5em 0;width:100%;overflow:hidden;}div#footer{margin-top:2em;margin-bottom:2em;border-top:1px solid #CD0707;background:#F0F0F0;}div#footer h1{margin:1em 20px 0 20px;height:20px;}div#footer dl{float:left;display:inline;width:200px;margin:0 20px;}div#footer dt{color:#C00;font-weight:bold;margin-top:1em;margin-bottom:0.2em;}div#footer dd{margin-bottom:1em;}div#footer dd,div#footer dd a{color:#000;}div#footer a{text-decoration:underline;}div#footer dd a:hover{text-decoration:underline;}div#catFooter{float:left;clear:both;padding-bottom:1em;}div#subFooter{background:#CC0000;color:#f1d7d7;padding:12px;clear:both;}div#subFooter ul{text-align:center;}div#subFooter ul li{display:inline;margin:0px 4px;}div#subFooter ul li a{color:#FFF;}div#bannerTop,div#bannerMiddle{position:absolute;}div#bannerTop div.admflash{padding-top:1em;}div#bannerMiddle{top:144px;right:0px;}div#bannerTop{top:0;left:0;margin-bottom:2em;height:110px;width:100%;background:#F8F8F8;border-bottom:1px solid #E9E9E9;text-align:center;}div#bannerTop img{margin:1em;}div#left div.overview h1{text-indent:-9999px;font-size:1.4em;}div#left div.overview li.editor{background-image:url(../../template/v0/gfx/bg_editor.gif);background-repeat:no-repeat;background-position:right bottom;}p.description{background:#F8F8F8;clear:both;padding:4px;}div#left div.blogArticleOverview h1,div#left div.tagOverview h1,div#left div.photoContest h1,div#left div.photoContestOverview h1,div#left div.vacancyOverview h1,div#left div.agencyProfile h1,div#left div.searchResults h1{text-indent:0;}div#left ul.blogOverview{margin-top:1.5em;}div#left ul.blogOverview h2{float:left;margin-bottom:0.2em;display:inline;}div#left ul.blogOverview p{margin-bottom:0;}div#left div.blogOverview h1{background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat left -1060px;padding-bottom:2px;}div#left div.photoAlbumOverview h1{background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat left -1177px;padding-bottom:2px;}div#left h1.categoryOverview{background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat scroll left -1206px;padding-bottom:2px;text-indent:-9999px;}div#left div.newsOverview h1{background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat left -1087px;padding-bottom:2px;}div#content div.overview div.categories{padding:4px 0px 0px 0px;border:none;}div#left div.taggedArticleOverview h1{background:none;text-indent:0;}div#left div.taggedArticleOverview h1 a img{vertical-align:bottom;}div#left div.overview div.source{clear:both;padding:0;background:none;}div#body ul.pageNav{float:left;clear:both;margin:8px 0;text-align:center;font-weight:bold;}div#body ul.pageNav li{display:block;float:left;margin:0 4px 0 0 !important;width:auto !important;}div#body ul.pageNav li a{display:block;border:1px solid #DDD;padding:4px 8px;background:#F8F8F8;}div#body ul.pageNav li span{display:block;border:1px solid #CC0000;padding:4px 8px;color:#FFF;background:#CC0000;}div#body ul.pageNav li.first{}div#article h2{margin-top:1.5em;}div#article div.source,div#vacancy div.source{margin:0 0 1em;padding:0;background:none;font-size:0.9em;color:#999999;}ul#tags,div#articleLinks,div#rating{margin:1em 0;font-size:0.9em;}div#rating{margin-bottom:2em;}div#article ul#tags li{display:inline;}div#article ul#tags li{padding-right:0.3em;}div#articleLinks a{margin-right:1em;}div#articleLinks a span{padding-left:4px;background-color:#FFF;}div#articleLinks span.socialMedia{float:right;margin-right:8px;}div#articleLinks a.smLink{position:relative;float:right;padding:0;}div#articleLinks a.smLink span{width:20px;display:block;float:right;}div#articleLinks a{margin:0;padding-left:18px;}div.textContent div#articleLinks ul, div#content div.textContent div.categories{list-style:none;display:block;width:328px;overflow:hidden;background:#F9F9F9;border:1px solid #EEEEEE;padding:3px 0 3px 12px;margin-bottom:1em;}div#content ul#blogList div.categories{background:none;border:none;}div#articleLinks ul li{float:left;padding-right:12px;}div#articleLinks a span{padding:0;}div#articleLinks a.smLink{float:none;}div#articleLinks a.smLink span{float:none;margin:0;}div#article div.textContent{float:left;width:342px;}div#article div.sideContent{float:left;margin-left:10px;width:236px;}div#article div.sideContent h2{font-size:1em;}div#article div.sideContent li a{padding-left:14px;background:transparent url(/template/v0/js/topstory/assets/bg.gif) scroll no-repeat left -15px;}div#article div.sideContent , div#article div.textContent{overflow:hidden;}a.comment{background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat -380px -599px;}div#articleLinks a.mail{background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat -380px -638px;}div#articleLinks a.print{background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat -380px -619px;}div#article div.photoFrame{float:left;margin:1em 0 0 0;padding:0 0 2em 0;font-size:0.9em;}div#article div.photoFrame p,div#photoFrame p{margin:1em 0 0;color:#888;}div#article div.photoFrame img{display:block;}div#rating span{float:left;color:#999;}div#rating span.rating{padding-right:0.4em;}div#rating span.voteCount,div#rating span.userId{width:0;visibility:hidden;padding:0px;margin:0px;font-size:0px;line-height:0px;}ul.starRating{float:left;height:15px;list-style-image:none;list-style-position:outside;list-style-type:none;margin:0;padding:0;position:relative;width:75px;background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat left -1300px;}ul.starRating li,div#left div.photoContest ul.starRating li{float:left;margin:0;height:15px;width:auto;padding:0;}div#rating span{float:left;}ul.starRating li a{display:block;height:15px;padding:0;position:absolute;text-decoration:none;text-indent:-9000px;width:15px;z-index:20;cursor:pointer;}ul.starRating li a:hover{z-index:2;left:0px;background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat left -1315px;}ul.starRating a.one-star{left:0;}ul.starRating a.one-star:hover{width:15px;}ul.starRating a.two-stars{left:15px;}ul.starRating a.two-stars:hover{width:30px;}ul.starRating a.three-stars{left:30px;}ul.starRating a.three-stars:hover{width:45px;}ul.starRating a.four-stars{left:45px;}ul.starRating a.four-stars:hover{width:60px;}ul.starRating a.five-stars{left:60px;}ul.starRating a.five-stars:hover{width:75px;}ul.starRating li.currentRating{display:block;font-size:10px;height:15px;position:absolute;text-indent:-9000px;z-index:1;background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat left -1330px;}div#rating a.blockComment{float:left;margin:0 3px 0 0;width:15px;height:15px;padding:0;background:transparent url(../../template/v0/gfx/rating_blockdisabled.gif) no-repeat left top;text-decoration:none;text-indent:-9999px;}div#rating a.blockComment:hover{background:transparent url(../../template/v0/gfx/rating_block.gif) no-repeat left top;}div#comments{margin-top:1em;}#comments form,#comments div#anonymousDisabled{margin-top:1em;border:1px solid #DADADA;padding:20px;background-color:#F6F6F6;}#comments input,#comments textarea{border:1px solid #BBB;font-size:1em;padding:3px 4px;}div#content #comments textarea, #comments input#comment_captcha{width:290px;overflow:hidden;}#comments button{height:26px;width:112px;border:0;padding:0 0 3px;background-image:url(../../template/v0/gfx/bg_button.gif);color:#FFF;font-weight:bold;}#comments button#btn_publicate{background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat scroll -85px -1372px;border:none;cursor:pointer;display:block;float:right;font-size:0;height:31px;margin-bottom:8px;width:82px;text-indent:-9999px;}#comments form#commentForm input.submit{background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat scroll -246px -1409px;border:medium none;color:#CC0000;cursor:pointer;display:block;font-size:0;height:28px;float:right;margin:8px 4px 0 0;text-align:right;text-indent:-999px;width:114px;}form#commentForm div.error{color:#CC0000;margin-bottom:1em;font-weight:bold;}#comments img.captcha{display:block;margin:1em 0;border:1px solid #DADADA;}#comments div.formRow{margin:1em 0;}div#content div#comments p{margin:0.3em;}div#content div#comments p.source{margin-bottom:1.3em;font-size:0.85em;color:#999;}div#commentForm h2{margin-top:0;}#content textarea.singleField{width:380px;height:200px;font-size:0.9em;}#content textarea.singleFieldTinyMce{width:330px;height:200px;}#content textarea.singleFieldLarge{width:438px;height:300px;}#content textarea.singleFieldMedium{width:438px;height:80px;}#content textarea.singleFieldSmall{width:454px;height:100px;}div#vacancy dl{margin-bottom:2em;}div#vacancy dt{float:left;font-weight:bold;padding-right:0.6em;}div#vacancy dd{margin-bottom:0.5em;}div#left div.overview div.source{margin:0.5em 0;}div#left div.overview div.source span{float:left;}div#left div.overview div.source a.comment span{float:none;padding-left:4px;}div#left div.overview div.source,div#left div.overview div.categories{clear:both;margin:0.5em 0;font-size:0.85em;color:#999;}div#left div.overview a.comment{margin:0 1em;padding-left:14px;}div#helpContainer div,div#helpContainer ul.panel{float:left;}div#helpContainer div{width:360px;}div#helpContainer ul.panel{width:210px;margin:32px 0 0 20px;}div#photoFrame{position:relative;margin:1.5em 0;width:590px;text-align:center;z-index:0;}div#photoFrame img{position:relative;border:1px solid #CCC;padding:4px;background:#FFF;z-index:100;}div#photoFrame img.loader{position:absolute;top:20px;left:279px;border:none;padding:0;background:transparent;z-index:10;}div#photoPreloadFrame{display:none;}.carousel-component{background:#EEE;color:#000;}div#left ul.adminMenu{margin:1.5em 0;width:100%;overflow:hidden;}div#left ul.adminMenu li{margin:0px 8px 8px 0px;display:block;float:left;padding:4px 0px;border:1px solid #cc0000;}div#left ul.adminMenu li span{background-color:#CC0000;color:#FFF;padding:4px;font-weight:bold;}div#left ul.adminMenu li a{background-color:#FFF;padding:0px 4px;display:block;text-decoration:underline;font-weight:normal;}div#left ul.adminMenu li a:hover{text-decoration:underline;}div#left div.admin h2{margin-bottom:1em;}div#left div.admin .activeArticle,div#left div.admin .activeArticle li{background-color:#555;color:#FFF;}div#left div.admin .activeArticle a{color:#FFF;text-decoration:underline;}div#left div.admin .activeArticle h1{background-color:#444;color:#FFF;}div#currentTopStory{}div.topStoryTitle{height:48px;overflow:hidden;}a.addTopStory,a.removeFromGrid,a.addToGrid{float:left;margin-right:3px;}div#tagAdmin{}div#tagAdmin ul ul{margin-left:2em;}div.addTag,div.tagOverview{background:#F8F8F8 none repeat scroll 0 0;border-color:#E7E7E7;border-style:solid;border-width:1px 0;margin-bottom:1.5em;}form#tagAdminForm button#saveTag{background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat scroll -100px -860px;border:0 none;color:#B20000;cursor:pointer;float:right;font-size:0;height:33px;padding:0;text-align:right;text-indent:-9999px;width:97px;}form#tagAdminForm label{width:200px;float:left;}form#tagAdminForm fieldset{padding:22px;}form#tagAdminForm fieldset h2{margin-bottom:1em;}form#tagAdminForm div{border-top:1px solid #E7E7E7;padding:10px 6px;}div#tagAdmin div.tagOverview ul li{line-height:1.6em;}div.tagOverview{padding:22px;clear:both;}div.tagOverview ul li{margin-bottom:1em;font-weight:bold;line-height:1.2em;}div.tagOverview ul li a{font-weight:normal;}div.tagOverview ul li ul{margin-top:0.2em;}div.tagOverview ul li ul li{margin:0px;font-weight:normal;}div.vacancyOverview li.agency{float:left;margin-bottom:1.5em;width:265px;padding:10px;border:1px solid #CCC;}div.vacancyOverview li.agency.left{clear:left;}div.vacancyOverview li.agency.right{float:right;}div.vacancyOverview li h2 a{margin-bottom:0.5em;}div.vacancyOverview li a{display:block;margin:0.2em 0;}div.agencyProfile div#agencyInfo{margin-bottom:1.5em;border:1px solid #DDD;padding:1em 1em 0;background:#F8F8F8;}li.adminNews{line-height:2em;padding:4px 8px;background-color:#EEE;border-bottom:8px solid #FFF;}a.deflagArticle{margin-left:4px;}div#adminForm{margin:1.5em 0;}div#adminForm form,div#tagAdmin div.tagOverview{padding:16px;background-color:#EEE;border:none;}div#adminForm form div{margin-bottom:6px;clear:both;width:100%;}div#adminForm form input,div#adminForm form textarea,form#mailArticleForm input,form#mailArticleForm textarea{border:1px solid #CCC;padding:2px;}div#adminForm form input.adminSubmit{background:#CCC;color:#000;padding:2px 4px;cursor:pointer;}div#adminForm form p.fieldError,form#mailArticleForm p.fieldError{background-color:#444;color:#FFF;float:left;margin-top:4px;padding:2px 8px;clear:both;}div.admin a.newAgency,div.admin a.newPhotoContest{display:block;margin:1em 0;width:210px;padding:0.3em 1em;background:#C00;color:#FFF;font-weight:bold;}div#adminForm.addAgency input,div#adminForm.editAgency input{width:260px;}div#adminForm.addAgency input.button,div#adminForm.editAgency input.button{width:auto;}div#adminForm.editAgency label{display:block;float:left;width:130px;}ul.ipBans li{border-bottom:8px solid #FFFFFF;line-height:2em;padding:4px 8px;}#pubDateContainer{font-weight:bold;}#pubDateSelection div{float:left;}#pubDelayPanel,#pubDateNow{display:none;}#pubDelayPanel.visible,#pubDateNow.visible{display:block;}form#ImageUpload,form#relatedTags,fieldset#pubDate{background:#F8F8F8;padding:16px;border-color:#E7E7E7;border-style:solid;border-width:1px 0;margin-bottom:1.5em;}form#ImageUpload legend,form#relatedTags legend,fieldset#pubDate legend{font-size:1.4em;font-family:Arial, sans-serif;font-weight:bold;line-height:1em;margin-bottom:1em;}fieldset#pubDate legend{margin-bottom:0;}form#ImageUpload label{width:150px;display:block;float:left;}form#ImageUpload div#relatedImages{margin-top:1em;padding-top:1em;border-top:1px solid #ddd;}form#ImageUpload div#relatedImages div.photoFrame{float:left;margin-bottom:1em;}form#ImageUpload div#relatedImages div.photoFrame a{float:left;}div#uploadProgressBar,div#uploadProgressBarBlogFoto{font-size:1.3em;font-weight:bold;margin:0 0 1em 0;}form input#uploadButton{background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat scroll -125px -1407px;color:#CC0000;cursor:pointer;display:block;font-size:0;height:32px;margin-bottom:8px;margin-right:8px;text-align:right;text-indent:-999px;width:118px;border:none;}div#adminForm form input#uploadButton{border:medium none;}ul.Ads{padding:8px;margin-bottom:1em;}div#tagAdmin form#tagAdminForm{padding:0px;}div#adminContent .pageNav{margin-bottom:1em;}div#adminContent li{line-height:2em;padding:4px;background-color:#EEE;border-bottom:8px solid #FFF;border-top:none;}div#adminContent ul.shade,div#adminContent ul.shade li,div#adminContent ul.pageNav{border:none;}div#adminContent ul.shade{background:#EEE;}div#adminContent h3{margin-bottom:0.5em;}ul#addTag li.mainTag{float:left;clear:both;padding:4px;width:100%;background:none;}ul#addTag li.mainTag input{float:left;}ul#addTag li.mainTag p{width:152px;display:block;float:left;background:transparent url(../../template/v0/gfx/addTagBackground.gif) no-repeat left top;padding:4px;margin-bottom:0px;border-top:1px solid #F8F8F8;}ul#addTag li.mainTag.enabled p{background:transparent url(../../template/v0/gfx/addTagBackgroundSelected.gif) no-repeat left top;color:#FFF;}ul#addTag li.mainTag.enabled li p{background:#DDD url(../../template/v0/gfx/addTagBackground.gif) no-repeat left top;color:#000;}ul#addTag li.mainTag.enabled li.enabled p{background:#C00 url(../../template/v0/gfx/addTagBackgroundSelected.gif) no-repeat left top;color:#FFF;}ul#addTag li.mainTag ul{float:left;background:#DDD;margin-left:4px;}ul#addTag li.mainTag ul.disabled{display:none;overflow:hidden;line-height:0px;padding:0px;margin:0px;}ul#addTag li.mainTag ul li{clear:both;}ul#addTag li.mainTag input,ul li.mainTag ul li input{margin:4px 6px 0 0;}div#categoryTree{margin-right:-18px;margin-bottom:1em;}div#categoryTree a{text-decoration:underline;}div#categoryTree dl{padding:8px;background:#F8F8F8;border:1px solid #E7E7E7;width:269px;float:left;margin-right:16px;}div#categoryTree dd{line-height:1.5em;margin:0 0 1em 1em;}div#categoryTree dd a{color:#000;}div#categoryTree dt{margin-bottom:0.5em;}div#categoryTree dt a{font-weight:bold;}ul.categoryOverview{margin:1em 0px;}ul.categoryOverview li{line-height:1.5em;background-color:#F8F8F8;border:1px solid #E7E7E7;display:inline;padding:4px 6px;margin-right:3px;}a.top{background:transparent url(../../template/v0/gfx/lns_bg_sprite.gif) no-repeat -383px -511px;margin:10px 0;padding-left:9px;float:left;}a.top span{padding-left:4px;background-color:#FFF;}form#mailArticleForm div{padding:4px;}div#mailArticleFeedback{margin:1em 0;font-style:italic;}div#content span.mceEditor{width:auto;padding:0px 12px;overflow:hidden;}.yui-calendar td.calcell.selected{background-color:#C00;border:1px solid #300;color:white !important;}.yui-calendar td.calcell.selected a,.yui-calendar td.calcell.calcellhover a{color:white !important;}.yui-calendar td.calcell a{color:black;}.yui-calendar td.calcell.calcellhover{background-color:#F00;border:0px;}.yui-calcontainer{width:153px;height:100%;top:0;left:0;}#pubTime-h{text-align:right;}div.eventBar{background:#EEEEEE;color:#FFFFFF;padding:1em 8px;margin-bottom:1em;}div.eventBar a.photoEvent{background:transparent url(../../template/v0/gfx/icon_photoEvent.gif) no-repeat 0 2px;padding:0 0 0 20px;}div#left div.photoContest li{float:left;display:block;overflow:hidden;margin:0 16px 16px 0;width:264px;}div#left div.photoContest li.right{margin-right:0;}div#left div.photoContest div.sortLinks{margin:1em 0;border:0 solid #BBB;border-top-width:1px;padding:1.5em 0;text-align:right;font-size:0.92em;}div#left div.photoContest li.left{clear:left;}div#left div.photoContest .picture{width:264px;}div#left div.photoContest img{width:266px;}div#left div.photoContest .description{padding:4px;}div#photoContestPhotoContainer{padding:0px 10px;}div#left div.photoContest .shade{border:1px solid #DDD;}div#left div.photoContest h2{margin-bottom:6px;}div.dateContainer span,div.dateContainer input{float:left;margin-right:3px;}div.dateContainer input{width:17px;}div.dateContainer input.year{width:30px;margin-right:24px;}div.dateContainer input.dateField{width:135px;}div.admin form button.delete{border:none;background-color:#C00;color:#FFF;margin:0.2em;padding:3px 6px;}div.admin a.newPhotoContest{width:180px;}div#googleSearchControl .gsc-control{width:590px;}.gsc-results-selector{display:none !important;}.gsc-expansionArea{display:block !important;}div#container.error{padding:24px;}div#container.error p{margin:1em 0;}div.richTopStory{float:left;position:relative;width:300px;padding:0;}div.richTopStory div.rtsSlides{height:280px;width:300px;}div.richTopStory div.rtsThumbs{border-top:1px solid #CCC;margin-top:10px;padding-top:10px;}div.rtsThumbs .fixedThumb{margin-bottom:5px;}div.rtsThumbs li a{padding-left:14px;background:transparent url(/template/v0/js/topstory/assets/bg.gif) scroll no-repeat left 9px;}div.rtsThumbs li a:hover, div.rtsThumbs li a.active{background-position:left -15px;font-weight:bold;}div.rtsSlides .rtsSlide{display:none;height:270px;width:300px;background-position:0 0;background-repeat:no-repeat;}div.rtsSlides .active{display:block;}.rtsSlide .image, .rtsSlide .flashFrame, .rtsSlide .caption{width:300px;margin-bottom:8px;}.rtsSlide .image, .rtsSlide .flashFrame{height:170px;}.rtsSlide .caption, .rtsThumbs li a{line-height:1.5em;}.rtsSlide .caption a{text-decoration:none;}.rtsSlide .caption a:hover{text-decoration:underline;}