/* START Telerik.Web.UI.Skins.TreeView.css */
/*

RadTreeView base css

* Notes on some CSS class names *

class  --  HTML element  --  description 

rtUL  --  <ul>  --  multiple nodes container
rtLI  --  <li>  --  one node 
rtFirst  --  <li>  -- TreeView's first node
rtLast  --  <li>  -- last node in a given node group (<ul>)
rtTop,rtMid,rtBot  --  <div>  -- a wrapper (<div>) inside a node (<li>) - can be in a top, middle or bottom node in a given node group
rtIn  --  <span> or <div>  -- the inner container inside a node - contains text (<span> rendering) or template (<div> rendering)
rtSp  --  <span>  -- holds a dummy element for adjustment of node heights (should be an even number if the skin node lines are dotted)
rtChk  --  <input>  -- holds a node's checkbox
rtImg  --  <img>  -- holds a node's icon
rtPlus,rtMinus -- <span> -- holds a node's expand / collapse buttons (plus / minus signs)

*/

/* <general styles> */

.RadTreeView
{
	white-space:nowrap;
	cursor: default;
}

.RadTreeView .rtTop,
.RadTreeView .rtMid,
.RadTreeView .rtBot,
.RadTreeView .rtUL
{
	zoom:1;
}

.RadTreeView .rtSp,
.RadTreeView .rtImg,
.RadTreeView .rtIn,
.RadTreeView .rtChk
{
	vertical-align:middle;
}

.RadTreeView .rtUL
{
	margin: 0;
	padding: 0;
	-moz-user-select: -moz-none;
}

.RadTreeView .rtLI
{
	list-style-image: none;
	list-style-position: outside;
	list-style: none;
}

.RadTreeView .rtUL .rtLI .rtUL
{
	padding-left: 20px;
}

.RadTreeView .rtTop, 
.RadTreeView .rtMid, 
.RadTreeView .rtBot
{
	padding: 1px 0 1px 20px;
}

/* <expand/collapse images> */

.RadTreeView .rtPlus, 
.RadTreeView .rtMinus
{
	font-size: 0;
	padding: 0;
	display: -moz-inline-box;
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
	margin: 6px 7px 0 -18px;
	width: 11px;
	height: 11px;
	background-repeat: no-repeat;
}

* html .RadTreeView .rtPlus, 
* html .RadTreeView .rtMinus { margin-right: 1px; }
*+html .RadTreeView .rtPlus, 
*+html .RadTreeView .rtMinus { margin-right: 1px; }

.RadTreeView .rtPlus { background-position: 0 0; }
.RadTreeView .rtPlusHover { background-position: 0 -22px; }
.RadTreeView .rtMinus { background-position: 0 -11px; }
.RadTreeView .rtMinusHover { background-position: 0 -33px; }

/* </expand/collapse images> */

/* <tristate checkboxes> */

.RadTreeView .rtChecked,
.RadTreeView .rtUnchecked,
.RadTreeView .rtIndeterminate
{
	display: -moz-inline-box;
	display: inline-block;
	width: 13px;
	height: 13px;
	vertical-align: middle;
	margin: 0 3px 0 0;
	line-height: 0;
	font-size: 0;
}

.RadTreeView .rtChecked { background-position: 0 0; }
.RadTreeView .rtUnchecked { background-position: 0 -13px; }
.RadTreeView .rtIndeterminate { background-position: 0 -26px; }

/* </tristate checkboxes> */

.RadTreeView .rtSp
{
	display: -moz-inline-box;
	display: inline-block;
	width: 1px;
	margin-left: -1px;
	height: 22px;
}

.RadTreeView .rtChk
{
	margin: 0 2px;
	padding: 0;
	width: 12px;
	height: 12px;
}

.RadTreeView .rtIn
{
	margin-left: 1px;
	padding: 4px 3px 3px;
	text-decoration:none;
}

/* <navigation link> */
.RadTreeView a.rtIn
{
	cursor: pointer;
}
/* </navigation link> */

/* <templates> */

.RadTreeView div.rtIn
{
	display: -moz-inline-block;
	display: inline-block;
	vertical-align: top;
}

/* <massage> */
*+html .RadTreeView_rtl .rtIn { padding: 2px 3px; }
* html .RadTreeView_rtl .rtIn { padding: 2px 3px; }

* html .RadTreeView div.rtIn { display:inline-block; }
* html .RadTreeView div.rtIn { display:inline; }
*+html .RadTreeView div.rtIn { display:inline-block; }
*+html .RadTreeView div.rtIn { display:inline; }
/* </massage> */

.RadTreeView .rtTemplate,
.RadTreeView input
{ 
	-moz-user-select: text;
}

/* </templates> */

/* <loading messages> */
.RadTreeView .rtLoadingIcon
{
	display: -moz-inline-box;
	display: inline-block;
	vertical-align: text-top;
	width: 21px;
	height: 16px;
	margin-top: -1px;
	overflow: hidden;
	text-indent: -9999px;
	font-size: 0;
	background-repeat: no-repeat;
	background-position: 2px 0;
}
*+html .RadTreeView .rtLoadingIcon { margin: 0; }
* html .RadTreeView .rtLoadingIcon { margin: 0; }

.RadTreeView .rtLoadingBelow
{
	display: block;
}

*+html .RadTreeView_rtl .rtLoadingIcon { text-indent: 0; }
* html .RadTreeView_rtl .rtLoadingIcon { text-indent: 0; }

/* </loading messages> */

/* </general styles> */

/* <node states> */

.RadTreeView .rtHover .rtIn,
.RadTreeView .rtSelected .rtIn
{
	padding: 3px 2px 2px;
	border-width: 1px;
	border-style: solid;
	background-repeat: repeat-x;
	background-position: 0 0;
}

*+html .RadTreeView_rtl .rtHover .rtIn,
*+html .RadTreeView_rtl .rtSelected .rtIn { padding: 1px 2px; }
* html .RadTreeView_rtl .rtHover .rtIn,
* html .RadTreeView_rtl .rtSelected .rtIn { padding: 1px 2px; }

/* <in-line editing> */

/* editing of wrapped nodes should add white-space nowrap to make the input box stay on the same line;
   if the white-space: normal is added through inline styles (on a per-node basis), it can be overriden only by using !important */
.RadTreeView .rtEdit *
{
	white-space: nowrap !important;
}

.RadTreeView .rtEdit .rtIn,
.RadTreeView .rtEdit .rtIn input
{
	outline: 0; /* disable safari glow effect - RadTreeView look consistency */
	cursor: text;
}


.RadTreeView .rtLI .rtEdit .rtIn
{
	border-width: 1px;
	border-style: solid;
	padding: 2px 1px 1px;
	height: 1.4em;
	text-decoration: none;
	vertical-align: middle;
}

* html .RadTreeView .rtLI .rtEdit .rtIn { padding/* */: 0 1px; }

.RadTreeView .rtEdit .rtIn input
{
	height: 1.4em;
	line-height: 1.4em;
	border: 0;
	margin: 0;
	padding: 0;
	background: transparent;
}

/* </in-line editing> */

/* </node states> */

/* <node lines> */

.RadTreeView .rtLines .rtLI,
.RadTreeView .rtLines .rtFirst .rtUL
{
	background-repeat: repeat-y;
	background-position: 0 0;
}

.RadTreeView_rtl .rtLines .rtLI,
.RadTreeView_rtl .rtLines .rtFirst .rtUL
{
	background-repeat: repeat-y;
	background-position: 100% 0;
}

.RadTreeView .rtLines .rtFirst
{
    background-repeat: no-repeat;
    background-position: 0 1.273em;
}

.RadTreeView_rtl .rtLines .rtFirst
{
    background-repeat: no-repeat;
    background-position: 100% 1.273em;
}

.RadTreeView .rtLines .rtFirst .rtUL
{
    background-repeat: repeat-y;
    background-position: 0 1.273em;
}

.RadTreeView_rtl .rtLines .rtFirst .rtUL
{
    background-repeat: repeat-y;
    background-position: 100% 1.273em;
}

.RadTreeView .rtLines .rtLast,
.RadTreeView .rtLines .rtLast .rtUL
{
	background: none;
}

.RadTreeView .rtLines .rtTop,
.RadTreeView .rtLines .rtMid,
.RadTreeView .rtLines .rtBot
{
    background-repeat: no-repeat;
    background-position: 0 0;
}

.RadTreeView_rtl .rtLines .rtTop,
.RadTreeView_rtl .rtLines .rtMid,
.RadTreeView_rtl .rtLines .rtBot
{
    background-repeat: no-repeat;
    background-position: 100% 0;
}

/* </node lines> */

/* <drop targets> */

.rtDropAbove,
.rtDropBelow
{
    border: 1px dotted black;
    font-size: 3px;
    line-height: 3px;
    height: 3px;
	margin-top: -1px;
}

.rtDropAbove
{
    border-bottom: 0;
}

.rtDropBelow
{
    border-top: 0;
}

/* </drop targets> */

/* <RTL support> */
.RadTreeView_rtl .rtPlus, 
.RadTreeView_rtl .rtMinus
{
	position: relative;
}

/* reverts the above rule to fix the position:relative + overflow:auto bug under IE6&7 */
* html .RadTreeView_rtl .rtPlus, 
* html .RadTreeView_rtl .rtMinus { position:static; }

*+html .RadTreeView_rtl .rtPlus, 
*+html .RadTreeView_rtl .rtMinus { position:static; }

/* fixes IE6/7 "disappearing content" bug */
*+html .RadTreeView_rtl .rtLI,
*+html .RadTreeView_rtl .rtIn
{
	zoom: 1;
}
* html .RadTreeView_rtl .rtLI,
* html .RadTreeView_rtl .rtIn
{
	zoom: 1;
}
* html .RadTreeView_rtl .rtIn
{
	margin-top: -1px;
}

.RadTreeView_rtl .rtUL .rtLI .rtUL
{
	padding-right: 15px;
	padding-left: 0;
}

.RadTreeView_rtl .rtTop,
.RadTreeView_rtl .rtMid, 
.RadTreeView_rtl .rtBot
{
	padding: 0 15px 0 0;
	margin: 0;
}

.RadTreeView_rtl .rtPlus { background-position: -11px 0; }
.RadTreeView_rtl .rtPlusHover { background-position: -11px -22px; }
.RadTreeView_rtl .rtMinus { background-position: -11px -11px; }
.RadTreeView_rtl .rtMinusHover { background-position: -11px -33px; }

.RadTreeView_rtl .rtPlus,
.RadTreeView_rtl .rtMinus
{
	margin-right:7px;
	right:-20px;
}

/* firefox 2 */
.RadTreeView_rtl .rtPlus,
.RadTreeView_rtl .rtMinus,
x:-moz-any-link
{
	margin-right:-11px;
	right:-8px;
}

/* firefox 3 */
.RadTreeView_rtl .rtPlus,
.RadTreeView_rtl .rtMinus,
x:-moz-any-link, x:default
{
	margin-right:7px;
	right:-20px;
}

/* ie 6 */
* html .RadTreeView_rtl .rtPlus,
* html .RadTreeView_rtl .rtMinus
{
	margin-right:-13px;
	right:0;
}

/* ie 7 */
*+html .RadTreeView_rtl .rtPlus,
*+html .RadTreeView_rtl .rtMinus
{
	margin-right: -13px;
	right: 0;
	width: 0;
	padding-left: 11px;
}

/* safari & opera */
@media screen and (min-width:50px)
{
	.RadTreeView .rtPlus,
	.RadTreeView .rtMinus
	{
		margin-right: 7px;
		margin-left: -18px;
	}
	
	/* fix for safari bug (inline-block positioned elements in rtl mode get no width) */
	:root .RadTreeView_rtl .rtPlus,
	:root .RadTreeView_rtl .rtMinus
	{
		right: 0;
		margin-right: -13px;
		margin-left: 2px;
	}
}

/* opera */
@media all and(-webkit-max-device-pixel-ratio:10000),
   not all and(-webkit-min-device-pixel-ratio:0) {

	:root .RadTreeView_rtl .rtPlus,
	:root .RadTreeView_rtl .rtMinus
	{
		position: relative;
		margin-left: 2px;
		margin-right: -13px;
		right: -15px;
	}
}

/* </RTL support> */

/* <design-time support> */
div.RadTreeView_designtime .rtTop, 
div.RadTreeView_designtime .rtMid, 
div.RadTreeView_designtime .rtBot
{
	position: relative;
}

div.RadTreeView_designtime .rtPlus, 
div.RadTreeView_designtime .rtMinus
{
	margin: 0;
	position: absolute;
	left: 3px;
	top: 4px;
}
/* </design-time support> */

/* END Telerik.Web.UI.Skins.TreeView.css */
/* START Telerik.Web.UI.Skins.Sitefinity.TreeView.Sitefinity.css */
.RadTreeView_Sitefinity,
.RadTreeView_Sitefinity a.rtIn,
.RadTreeView_Sitefinity .rtEdit .rtIn input
{
	color: #105cb6;
	font: 12px/18px Arial, Helvetica, sans-serif;
}

.RadTreeView_Sitefinity .rtPlus, 
.RadTreeView_Sitefinity .rtMinus
{
	background-image: url(WebResource1.png);
	background-color: #FFF;
}

.RadTreeView_Sitefinity .rtLI .rtPlus, 
.RadTreeView_Sitefinity .rtLI .rtPlus:hover
{ background-position: 0 0; }

.RadTreeView_Sitefinity .rtLI .rtMinus, 
.RadTreeView_Sitefinity .rtLI .rtMinus:hover
{ background-position: 0 -11px; }

.RadTreeView_Sitefinity .rtChecked,
.RadTreeView_Sitefinity .rtUnchecked,
.RadTreeView_Sitefinity .rtIndeterminate
{
	background-image: url(WebResource2.png);
}

div.RadTreeView_Sitefinity .rtIn
{
	padding: 4px 5px 3px;
}

div.RadTreeView_Sitefinity .rtLI .rtHover .rtIn
{
	border: 0;
	text-decoration: underline;
	padding: 4px 5px 3px;
}

div.RadTreeView_Sitefinity .rtLI .rtSelected .rtIn
{
	color: #FFF;
	border: 0;
	background: #999;
	padding: 4px 5px 3px;
}

.RadTreeView_Sitefinity .rtSelected .rtLoadingBefore,
.RadTreeView_Sitefinity .rtSelected .rtLoadingAfter,
.RadTreeView_Sitefinity .rtSelected .rtLoadingBelow
{
	color: #333;
}

.RadTreeView_Sitefinity .rtLoadingIcon
{
	
}

.RadTreeView_Sitefinity .rtLI .rtEdit .rtIn
{
	border-color: #6c6c6c;
	background: #fff;
}

.RadTreeView_Sitefinity_disabled .rtIn,
.RadTreeView_Sitefinity .rtDisabled .rtIn
{
	color: #ccc;
}


/* <node lines> */

.RadTreeView_Sitefinity .rtLines .rtLI,
.RadTreeView_Sitefinity .rtLines .rtFirst .rtUL { background-image: url(WebResource5.png); }
.RadTreeView_Sitefinity_rtl .rtLines .rtLI,
.RadTreeView_Sitefinity_rtl .rtLines .rtFirst .rtUL { background-image:url(WebResource3.png); }

.RadTreeView_Sitefinity .rtLines .rtFirst,
.RadTreeView_Sitefinity .rtLines .rtFirst .rtUL { background-image: url(WebResource3.png); }
.RadTreeView_Sitefinity_rtl .rtLines .rtFirst,

.RadTreeView_Sitefinity .rtLines .rtLast,
.RadTreeView_Sitefinity .rtLines .rtLast .rtUL { background-image: none; }

.RadTreeView_Sitefinity .rtLines .rtTop { background-image:url(WebResource6.png); }
.RadTreeView_Sitefinity_rtl .rtLines .rtTop { background-image:url(WebResource7.png); }
.RadTreeView_Sitefinity .rtLines .rtMid { background-image:url(WebResource4.png); }
.RadTreeView_Sitefinity_rtl .rtLines .rtMid { background-image:url(WebResource4.png); }
.RadTreeView_Sitefinity .rtLines .rtBot { background-image:url(WebResource4.png); }
.RadTreeView_Sitefinity_rtl .rtLines .rtBot { background-image: url(WebResource4.png); }
.RadTreeView_Sitefinity .rtLines .rtLast .rtTop { background-image:url(WebResource4.png); }
.RadTreeView_Sitefinity_rtl .rtLines .rtLast .rtTop { background-image:url(WebResource4.png); }

/* </node lines> */


body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,fieldset,p,blockquote,th{margin:0;padding:0;}

fieldset,img{border:0;}address,caption,cite,code,dfn,th,var{font-style:normal;font-weight:normal;}ol,ul{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;}a{outline:none;}body:focus,div:focus,fieldset:focus,span:focus,li:focus,p:focus{outline:0;}

body{font-family:Arial,Verdana,Sans-serif;font-size:12px;line-height:1.5;min-width:985px;}a:link,a:visited,a:hover,a:active{color:#105CB6;text-decoration:none;}a:hover,a:active,a:focus{text-decoration:none;color:#00f;}.sfPublicWrapper{margin:20px auto;padding:0;width:900px;}#wrapper{margin:0 auto;width:900px;}#header,#main,#footer{width:100%;float:left;clear:both;}#left-sidebar,#content,#right-sidebar{float:left;}#left-sidebar{width:18%;margin-right:2%;}#content{width:60%;}#right-sidebar{width:18%;float:right;}#content h1,#content h2,#content h3,#content h4,#content h5,.sfContentBlock h1,.sfContentBlock h2,.sfContentBlock h3,.sfContentBlock h4,.sfContentBlock h5{line-height:1.2;}#content h1,.sfContentBlock h1{margin-bottom:20px;font-size:24px;font-weight:bold;}#content h1 ~ h1,.sfContentBlock h1 ~ h1{margin-top:40px;}#content h2,.sfContentBlock h2{margin-top:35px;margin-bottom:20px;font-size:18px;font-weight:bold;}#content h3,.sfContentBlock h3{margin-top:30px;margin-bottom:10px;font-size:14px;font-weight:bold;}#content h4,.sfContentBlock h4{margin-top:25px;font-size:13px;font-weight:bold;}#content h5,.sfContentBlock h5{margin-top:18px;font-size:13px;font-weight:normal;font-style:italic;}#content p,.sfContentBlock p{margin-bottom:18px;}#content ul,.sfContentBlock ul{padding-left:20px;list-style:disc;margin-bottom:18px;}#content ol,.sfContentBlock ol{padding-left:20px;list-style-type:decimal;margin-bottom:18px;}.sf_pagerNumeric{margin-top:15px;font-size:13px;}.sf_pagerNumeric a:link,.sf_pagerNumeric a:visited,.sf_pagerNumeric a:hover,.sf_pagerNumeric a:active{padding:1px 6px;color:#105CB6;border:1px solid #fff;}.sf_pagerNumeric a:hover{border-color:#105CB6;}.sf_pagerNumeric a.sf_PagerCurrent:link,.sf_pagerNumeric a.sf_PagerCurrent:visited,.sf_pagerNumeric a.sf_PagerCurrent:hover,.sf_pagerNumeric a.sf_PagerCurrent:active{background-color:#105CB6;border-color:#105CB6;color:#fff;cursor:default;}.sfpostListTitleDateContent .sfpostListItem{padding-bottom:65px;}.sfpostListTitleDateContent h2.sfpostTitle{margin-bottom:3px;font-size:19px;font-weight:bold;}.sfpostListTitleDateContent .sfpostAuthorAndDate{font-size:12px;}.sfpostListTitleDateContent .sfpostContent{margin:20px 0 10px;line-height:18px;}.sfpostListTitleDateContent .sfpostCommentsCount a{padding-left:22px;background:transparent url(/WebResource.axd?d=QS7qIP3tragLDd5V6_eL1378NqMoKMOYfCjX-tO2hFAieHX4L_ue7XLNO9d4qcMRZi4jFeeiIzsj3ZGz8u1dPu0nul44VooKF498j67kzWBrnIRiZhwZhga9ehBZWIMUAY8YSciK5_PBeAPflSyqXbCdbi3f8NQIBGAsLp4Jz5ottiuyHq8-wlw3KXzy9OnLYViKBj5Sq6sntnq2eevL8Q2&t=634324380937883499) no-repeat 2px 0;}.sfpostListTitleDate .sfpostListItem{padding-bottom:15px;}.sfpostListTitleDate h2.sfpostTitle{font-size:13px;font-weight:bold;}.sfpostListTitleDate .sfpostDate{font-size:11px;color:#666;}.sfpostListTitleDateSummary .sfpostListItem{padding-bottom:45px;}.sfpostListTitleDateSummary h2.sfpostTitle{font-size:16px;font-weight:bold;}.sfpostListTitleDateSummary .sfpostAuthorAndDate{margin-bottom:13px;font-size:11px;}.sfpostListTitleDateSummary .sfpostSummary{line-height:1.2;font-size:13px;}.sfpostDetails{padding-bottom:20px;clear:both;}.sfpostBack{*display:block;margin-left:-14px;_margin-left:0;padding-left:14px;background:transparent url(/WebResource.axd?d=QS7qIP3tragLDd5V6_eL1378NqMoKMOYfCjX-tO2hFAieHX4L_ue7XLNO9d4qcMRZi4jFeeiIzsj3ZGz8u1dPu0nul44VooKF498j67kzWBrnIRiZhwZhga9ehBZWIMUAY8YSciK5_PBeAPflSyqXbCdbi3f8NQIBGAsLp4Jz5ottiuyHq8-wlw3KXzy9OnLYViKBj5Sq6sntnq2eevL8Q2&t=634324380937883499) no-repeat 0 -48px;}.sfpostDetails .sfpostTitle{margin:0;padding:35px 0 0;color:#000;font-size:24px;line-height:1.2;}.sfpostDetails .sfpostAuthorAndDate{margin:0;padding:0;font-size:12px;}.sfpostDetails .sfpostContent{margin:0;padding:20px 0;line-height:18px;}.sfpostsList .sfpostContent h1,.sfpostDetails .sfpostContent h1{font-size:24px;}.sfpostsList .sfpostContent h2,.sfpostDetails .sfpostContent h2{margin-bottom:18px;margin-top:18px;font-size:18px;font-weight:normal;}.sfpostsList .sfpostContent h3,.sfpostDetails .sfpostContent h3{margin-bottom:18px;margin-top:18px;font-size:14px;font-weight:bold;}.sfpostsList .sfpostContent h4,.sfpostDetails .sfpostContent h4{margin-top:18px;font-size:13px;font-weight:bold;}.sfpostsList .sfpostContent h5,.sfpostDetails .sfpostContent h5{margin-top:18px;font-size:13px;font-weight:normal;font-style:italic;}.sfpostsList .sfpostContent p,.sfpostDetails .sfpostContent p{margin-bottom:18px;}.sfpostsList .sfpostContent ul,.sfpostDetails .sfpostContent ul{padding-left:20px;list-style:disc;margin-bottom:18px;}.sfpostsList .sfpostContent ol,.sfpostDetails .sfpostContent ol{padding-left:20px;list-style-type:decimal;margin-bottom:18px;}.sfeventsListTitleCityDate .sfeventListItem{padding-bottom:20px;}.sfeventsListTitleCityDate h2.sfeventTitle{font-size:13px;font-weight:bold;}.sfeventsListTitleCityDate .sfeventMetaInfo{font-size:11px;color:#666;}.sfeventsListTitleCityDate .sfeventMetaInfo div{display:inline;}.sfeventsListTitleCityDate .sfeventCommentsCount{padding-left:27px;background:transparent url(/WebResource.axd?d=QS7qIP3tragLDd5V6_eL1378NqMoKMOYfCjX-tO2hFAieHX4L_ue7XLNO9d4qcMRZi4jFeeiIzsj3ZGz8u1dPu0nul44VooKF498j67kzWBrnIRiZhwZhga9ehBZWIMUAY8YSciK5_PBeAPflSyqXbCdbi3f8NQIBGAsLp4Jz5ottiuyHq8-wlw3KXzy9OnLYViKBj5Sq6sntnq2eevL8Q2&t=634324380937883499) no-repeat 6px 0;}.sfeventsListTitleCityDateContent .sfeventListItem{padding-bottom:67px;}.sfeventsListTitleCityDateContent h2.sfeventTitle{margin-bottom:3px;font-size:19px;font-weight:bold;}.sfeventsListTitleCityDateContent .sfeventMetaInfo{margin:0;padding:0;font-size:12px;}.sfeventsListTitleCityDateContent .sfeventContent{margin:0;padding:25px 0 0;line-height:18px;}.sfeventDetails{padding-bottom:20px;clear:both;}.sfeventBack{*display:block;margin-left:-14px;_margin-left:0;padding-left:14px;background:transparent url(/WebResource.axd?d=QS7qIP3tragLDd5V6_eL1378NqMoKMOYfCjX-tO2hFAieHX4L_ue7XLNO9d4qcMRZi4jFeeiIzsj3ZGz8u1dPu0nul44VooKF498j67kzWBrnIRiZhwZhga9ehBZWIMUAY8YSciK5_PBeAPflSyqXbCdbi3f8NQIBGAsLp4Jz5ottiuyHq8-wlw3KXzy9OnLYViKBj5Sq6sntnq2eevL8Q2&t=634324380937883499) no-repeat 0 -48px;}.sfeventDetails .sfeventTitle{margin:0;padding:35px 0 0;color:#000;font-size:24px;line-height:1.2;}.sfeventDatesLocationContacts{padding:25px 0 5px;}.sfeventDatesLocationContacts li{padding-top:2px;}.sfeventDetails .sfeventContent{margin:0;padding:20px 0;line-height:18px;}.sfeventDetails .sfeventContent h1,.sfeventsListTitleCityDateContent .sfeventContent h1{font-size:24px;}.sfeventDetails .sfeventContent h2,.sfeventsListTitleCityDateContent .sfeventContent h2{margin-bottom:18px;margin-top:18px;font-size:18px;font-weight:normal;}.sfeventDetails .sfeventContent h3,.sfeventsListTitleCityDateContent .sfeventContent h3{margin-bottom:18px;margin-top:18px;font-size:14px;font-weight:bold;}.sfeventDetails .sfeventContent h4,.sfeventsListTitleCityDateContent .sfeventContent h4{margin-top:18px;font-size:13px;font-weight:bold;}.sfeventDetails .sfeventContent h5,.sfeventsListTitleCityDateContent .sfeventContent h5{margin-top:18px;font-size:13px;font-weight:normal;font-style:italic;}.sfeventDetails .sfeventContent p,.sfeventsListTitleCityDateContent. sfeventContent p{margin-bottom:18px;}.sfeventDetails .sfeventContent ul,.sfeventsListTitleCityDateContent .sfeventContent ul{padding-left:20px;list-style:disc;margin-bottom:18px;}.sfeventDetails .sfeventContent ol,.sfeventsListTitleCityDateContent .sfeventContent ol{padding-left:20px;list-style-type:decimal;margin-bottom:18px;}.sfnewsListTitlesOnly .sfnewsListItem{margin-bottom:2px;padding-bottom:0;font-size:13px;}.sfnewsListTitleDate .sfnewsListItem{padding-bottom:15px;}.sfnewsListTitleDate h2.sfnewsTitle{font-size:13px;font-weight:bold;}.sfnewsListTitleDate .sfnewsMetaInfo{font-size:11px;color:#666;}.sfnewsListTitleDate .sfnewsMetaInfo div{display:inline;}.sfnewsListTitleDate .sfnewsCommentsCount{padding-left:27px;background:transparent url(/WebResource.axd?d=QS7qIP3tragLDd5V6_eL1378NqMoKMOYfCjX-tO2hFAieHX4L_ue7XLNO9d4qcMRZi4jFeeiIzsj3ZGz8u1dPu0nul44VooKF498j67kzWBrnIRiZhwZhga9ehBZWIMUAY8YSciK5_PBeAPflSyqXbCdbi3f8NQIBGAsLp4Jz5ottiuyHq8-wlw3KXzy9OnLYViKBj5Sq6sntnq2eevL8Q2&t=634324380937883499) no-repeat 6px 0;}.sfnewsListTitleDateSummary .sfnewsListItem{padding-bottom:45px;}.sfnewsListTitleDateSummary h2.sfnewsTitle{font-size:16px;font-weight:bold;}.sfnewsListTitleDateSummary .sfnewsMetaInfo{margin-bottom:13px;font-size:11px;}.sfnewsListTitleDateSummary .sfnewsSummary{line-height:1.2;font-size:13px;}.sfnewsListTitleDateContent .sfnewsListItem{padding-bottom:67px;}.sfnewsListTitleDateContent h2.sfnewsTitle{margin-bottom:3px;font-size:19px;font-weight:bold;}.sfnewsListTitleDateContent .sfnewsAuthorAndDate{margin:0;padding:0;font-size:12px;}.sfnewsListTitleDateContent .sfnewsContent{margin:0;padding:25px 0 0;line-height:18px;}.sfnewsListTitleDateContent .sfnewsMetaInfo{font-size:11px;color:#666;}.sfnewsListTitleDateContent .sfnewsMetaInfo div{display:inline;}.sfnewsListTitleDateContent .sfnewsCommentsCount{padding-left:27px;background:transparent url(/WebResource.axd?d=QS7qIP3tragLDd5V6_eL1378NqMoKMOYfCjX-tO2hFAieHX4L_ue7XLNO9d4qcMRZi4jFeeiIzsj3ZGz8u1dPu0nul44VooKF498j67kzWBrnIRiZhwZhga9ehBZWIMUAY8YSciK5_PBeAPflSyqXbCdbi3f8NQIBGAsLp4Jz5ottiuyHq8-wlw3KXzy9OnLYViKBj5Sq6sntnq2eevL8Q2&t=634324380937883499) no-repeat 6px 0;}.sfnewsDetails{padding-bottom:20px;clear:both;}.sfnewsBack{*display:block;margin-left:-14px;_margin-left:0;padding-left:14px;background:transparent url(/WebResource.axd?d=QS7qIP3tragLDd5V6_eL1378NqMoKMOYfCjX-tO2hFAieHX4L_ue7XLNO9d4qcMRZi4jFeeiIzsj3ZGz8u1dPu0nul44VooKF498j67kzWBrnIRiZhwZhga9ehBZWIMUAY8YSciK5_PBeAPflSyqXbCdbi3f8NQIBGAsLp4Jz5ottiuyHq8-wlw3KXzy9OnLYViKBj5Sq6sntnq2eevL8Q2&t=634324380937883499) no-repeat 0 -48px;}.sfnewsDetails .sfnewsTitle{margin:0;padding:35px 0 0;color:#000;font-size:24px;line-height:1.2;}.sfnewsDetails .sfnewsAuthorAndDate{margin:0;padding:0;font-size:12px;}.sfnewsDetails .sfnewsSummary{margin:0;padding:30px 0 0;color:#666;font-size:15px;font-style:italic;}.sfnewsDetails .sfnewsContent{margin:0;padding:20px 0;line-height:18px;}.sfnewsDetails .sfnewsContent h1,.sfnewsListTitleDateContent .sfnewsContent h1{font-size:24px;}.sfnewsDetails .sfnewsContent h2,.sfnewsListTitleDateContent .sfnewsContent h2{margin-bottom:18px;margin-top:18px;font-size:18px;font-weight:normal;}.sfnewsDetails .sfnewsContent h3,.sfnewsListTitleDateContent .sfnewsContent h3{margin-bottom:18px;margin-top:18px;font-size:14px;font-weight:bold;}.sfnewsDetails .sfnewsContent h4,.sfnewsListTitleDateContent .sfnewsContent h4{margin-top:18px;font-size:13px;font-weight:bold;}.sfnewsDetails .sfnewsContent h5,.sfnewsListTitleDateContent .sfnewsContent h5{margin-top:18px;font-size:13px;font-weight:normal;font-style:italic;}.sfnewsDetails .sfnewsContent p,.sfnewsListTitleDateContent .sfnewsContent p{margin-bottom:18px;}.sfnewsDetails .sfnewsContent ul,.sfnewsListTitleDateContent .sfnewsContent ul{padding-left:20px;list-style:disc;margin-bottom:18px;}.sfnewsDetails .sfnewsContent ol,.sfnewsListTitleDateContent .sfnewsContent ol{padding-left:20px;list-style-type:decimal;margin-bottom:18px;}.sfgenericList .sfgenericListItem{padding-bottom:20px;}.sfgenericList h2.sfgenericTitle{display:block;color:#0E50B1;font-size:13px;font-weight:bold;}.sfgenericList .sfgenericMetaInfo{font-size:11px;color:#666;}.sfgenericList .sfgenericCommentsCount{padding-left:27px;background:transparent url(/WebResource.axd?d=QS7qIP3tragLDd5V6_eL1378NqMoKMOYfCjX-tO2hFAieHX4L_ue7XLNO9d4qcMRZi4jFeeiIzsj3ZGz8u1dPu0nul44VooKF498j67kzWBrnIRiZhwZhga9ehBZWIMUAY8YSciK5_PBeAPflSyqXbCdbi3f8NQIBGAsLp4Jz5ottiuyHq8-wlw3KXzy9OnLYViKBj5Sq6sntnq2eevL8Q2&t=634324380937883499) no-repeat 6px 0;}.sfgenericDetails{padding-bottom:20px;clear:both;}.sfgenericBack{*display:block;margin-left:-14px;_margin-left:0;padding-left:14px;background:transparent url(/WebResource.axd?d=QS7qIP3tragLDd5V6_eL1378NqMoKMOYfCjX-tO2hFAieHX4L_ue7XLNO9d4qcMRZi4jFeeiIzsj3ZGz8u1dPu0nul44VooKF498j67kzWBrnIRiZhwZhga9ehBZWIMUAY8YSciK5_PBeAPflSyqXbCdbi3f8NQIBGAsLp4Jz5ottiuyHq8-wlw3KXzy9OnLYViKBj5Sq6sntnq2eevL8Q2&t=634324380937883499) no-repeat 0 -48px;}.sfgenericDetails .sfgenericTitle{margin:0;padding:35px 0 0;color:#000;font-size:24px;line-height:1.2;}.sfgenericDetails .sfgenericAuthorAndDate{margin:0;padding:0;font-size:12px;}.sfgenericDetails .sfgenericContent{margin:0;padding:20px 0;line-height:18px;}.sfgenericDetails .sfgenericContent h1{font-size:24px;}.sfgenericDetails .sfgenericContent h2{margin-bottom:18px;margin-top:18px;font-size:18px;font-weight:normal;}.sfgenericDetails .sfgenericContent h3{margin-bottom:18px;margin-top:18px;font-size:14px;font-weight:bold;}.sfgenericDetails .sfgenericContent h4{margin-top:18px;font-size:13px;font-weight:bold;}.sfgenericDetails .sfgenericContent h5{margin-top:18px;font-size:13px;font-weight:normal;font-style:italic;}.sfgenericDetails .sfgenericContent p{margin-bottom:18px;}.sfgenericDetails .sfgenericContent ul{padding-left:20px;list-style:disc;margin-bottom:18px;}.sfgenericDetails .sfgenericContent ol{padding-left:20px;list-style-type:decimal;margin-bottom:18px;}.sfcommentsTitle{margin-bottom:7px;font-size:15px;font-weight:bold;}.sfcommentsList{margin-bottom:30px;list-style-position:outside;}.sfcommentsList .sfcommentDetails{margin-bottom:10px;padding:5px 15px 10px 56px;position:relative;z-index:2;}.sfcommentsList .sfcommentDetails.sfcommentOfTheAuthor{background-color:#f5f5f5;}.sfcommentsList .sfcommentNumber{display:block;color:#989898;font-size:12px;line-height:1.8;font-weight:bold;text-align:center;position:absolute;top:5px;left:6px;_left:-50px;width:32px;height:28px;background:transparent url(/WebResource.axd?d=QS7qIP3tragLDd5V6_eL1378NqMoKMOYfCjX-tO2hFAieHX4L_ue7XLNO9d4qcMRZi4jFeeiIzsj3ZGz8u1dPu0nul44VooKF498j67kzWBrnIRiZhwZhga9ehBZWIMUAY8YSciK5_PBeAPflSyqXbCdbi3f8NQIBGAsLp4Jz5ottiuyHq8-wlw3KXzy9OnLYViKBj5Sq6sntnq2eevL8Q2&t=634324380937883499) no-repeat 0 -100px;background-position:0 -100px;}.sfcommentsList .sfcommentDate{color:#666;}.sfcommentsList .sfcommentText{line-height:1.2;}.sfcommentsForm{padding:0 0 30px;}.sfcommentsForm .sfcommentsFieldsList{padding-bottom:15px;}.sfcommentsForm .sfcommentsField{margin-bottom:5px;}.sfcommentsForm .sfcommentEditor{width:400px;}.sfcommentsForm .sfEditorWrp{position:relative;}.sfcommentsForm .sfEditorWrp .reToolbarWrapper .reToolbar{width:auto!important;}.sfEditorWrp .reToolbarWrapper .grip_first,.sfEditorWrp .reToolbarWrapper .grip_last{display:none;}.sfEditorWrp .reToolbarWrapper .sfChange{position:absolute;top:10px;right:5px;font-size:11px;color:#666;text-decoration:underline!important;_width:115px;_text-align:right;}.sfEditorWrp .reToolbarWrapper .sfChange:hover{color:#555;text-decoration:none!important;}.sfEditorWrp .reToolbar .reSeparator{margin:6px 3px 0!important;height:15px;width:0;border-left:1px solid #ccc;border-right:1px solid #fff;color:#ccc;}.sfcommentsForm .sfTxt{width:200px;padding:3px;vertical-align:middle;font-family:Arial,Verdana,Sans-serif;font-size:12px;}.sfcommentsForm .sfNote{font-size:11px;line-height:1.2;color:#666;}.sfcommentsForm .sfcommentCaptcha{margin-top:15px;}.sfcommentsForm .sfcommentCaptcha span{display:block;padding-left:20px;font-size:11px;font-weight:bold;color:#f30;background:transparent url(/WebResource.axd?d=oomtt0gIZRzsVhfxqjiODhLlzFyiv6VOhoxrbv-ARdVUBnB-CqbXcM0AA1l4AXrspJfIRs0JAHRwIPoG12dYrPAYk5OfuHDcI7WsrI8G1RK5AudU7QHWj6sfNW592qvl-DcD72WOkJ0f3E0TuBZk8kXgCZl0Q9BbLiYtrAYCCfGfmjgyUfdgbZ8GHGqNi8Yjl0GpYEWEDxeR9AsUo-EUHA2&t=634324380937883499) no-repeat 0 -499px;}.sfcommentsForm .sfcommentCaptcha div div{margin-top:10px;}.sfcommentsForm .sfcommentCaptcha div div input{width:200px;padding:3px;vertical-align:middle;font-family:Arial,Verdana,Sans-serif;font-size:12px;}.sfcommentsForm .sfcommentCaptcha div div label{padding-left:5px;}.sfcommentsForm .sfcommentsSubmitBtn{font-family:Arial,Verdana,Sans-serif;font-size:15px;font-weight:bold;width:80px;text-align:center;}.sfimagesTmbList .sfimagesTmb{display:-moz-inline-stack;display:inline-block;zoom:1;*display:inline;padding:10px;width:120px;height:120px;overflow:hidden;}.sfimagesTmbList a{display:block;width:120px;height:120px;overflow:hidden;text-align:center;}.sfimagesTmbList img{vertical-align:middle;_vertical-align:top;*vertical-align:top;}.sfimagesList .sfimageListItem{padding-bottom:20px;}.sfimageDetails{margin:35px 0;}.sfimageBack{*display:block;margin-left:-14px;_margin-left:0;padding-left:14px;background:transparent url(/WebResource.axd?d=QS7qIP3tragLDd5V6_eL1378NqMoKMOYfCjX-tO2hFAieHX4L_ue7XLNO9d4qcMRZi4jFeeiIzsj3ZGz8u1dPu0nul44VooKF498j67kzWBrnIRiZhwZhga9ehBZWIMUAY8YSciK5_PBeAPflSyqXbCdbi3f8NQIBGAsLp4Jz5ottiuyHq8-wlw3KXzy9OnLYViKBj5Sq6sntnq2eevL8Q2&t=634324380937883499) no-repeat 0 -48px;}.sfimagePrev,.sfimageNext{float:right;background-image:url(/WebResource.axd?d=QS7qIP3tragLDd5V6_eL1378NqMoKMOYfCjX-tO2hFAieHX4L_ue7XLNO9d4qcMRZi4jFeeiIzsj3ZGz8u1dPu0nul44VooKF498j67kzWBrnIRiZhwZhga9ehBZWIMUAY8YSciK5_PBeAPflSyqXbCdbi3f8NQIBGAsLp4Jz5ottiuyHq8-wlw3KXzy9OnLYViKBj5Sq6sntnq2eevL8Q2&t=634324380937883499);background-color:transparent;background-repeat:no-repeat;background-position:-1000px -1000px;}.sfimagePrev{padding-left:14px;padding-right:5px;background-position:0 -143px;}.sfimageNext{padding-right:14px;padding-left:5px;background-position:100% -393px;}.sfimageDetails .sfimageWrp{margin-top:35px;}.sfimageDetails .sfimageTitle{padding-top:15px;font-size:16px;}.sfimageDetails .sfimageDescription{font-size:12px;padding-top:5px;line-height:1.4;font-style:italic;color:#666;}.sfvideoWrp{margin-top:35px;}.sfvideoWrp object{margin:0;padding:0;border:0;}.sfvideoWrp object:focus{outline:0;}.sfvideosTmbList .sfvideoTmb{display:-moz-inline-stack;display:inline-block;zoom:1;*display:inline;padding:10px;width:120px;height:120px;overflow:hidden;}.sfvideosTmbList a{display:block;width:120px;height:120px;overflow:hidden;text-align:center;}.sfvideosTmbList img{vertical-align:middle;_vertical-align:top;*vertical-align:top;}.sfvideosTmbList a.sfNoTmb{background:#f1f1f1 url(/WebResource.axd?d=QS7qIP3tragLDd5V6_eL1378NqMoKMOYfCjX-tO2hFAieHX4L_ue7XLNO9d4qcMRZi4jFeeiIzsj3ZGz8u1dPu0nul44VooKF498j67kzWBrnIRiZhwZhga9ehBZWIMUAY8YSciK5_PBeAPflSyqXbCdbi3f8NQIBGAsLp4Jz5ottiuyHq8-wlw3KXzy9OnLYViKBj5Sq6sntnq2eevL8Q2&t=634324380937883499) no-repeat 50% -675px;}.sfvideosTmbList a.sfNoTmb img{display:none;}.sfvideoDetails{margin:35px 0;}.sfvideoBack{*display:block;margin-left:-14px;_margin-left:0;padding-left:14px;background:transparent url(/WebResource.axd?d=QS7qIP3tragLDd5V6_eL1378NqMoKMOYfCjX-tO2hFAieHX4L_ue7XLNO9d4qcMRZi4jFeeiIzsj3ZGz8u1dPu0nul44VooKF498j67kzWBrnIRiZhwZhga9ehBZWIMUAY8YSciK5_PBeAPflSyqXbCdbi3f8NQIBGAsLp4Jz5ottiuyHq8-wlw3KXzy9OnLYViKBj5Sq6sntnq2eevL8Q2&t=634324380937883499) no-repeat 0 -48px;}.sfvideoDetails .sfvideoWrp{margin-top:35px;height:440px;}.sfvideoDetails .sfvideoWrp object{margin:0;padding:0;border:0;width:540px;height:440px;}.sfvideoDetails .sfvideoWrp object:focus{outline:0;}.sfvideoDetails .sfvideoTitle{padding-top:15px;font-size:16px;}.sfvideoDetails .sfvideoDescription{font-size:12px;padding-top:5px;line-height:1.4;font-style:italic;color:#666;}.sfdownloadFileWrp a{padding:3px 0 3px 25px;background:transparent url(/WebResource.axd?d=GzWGXcRksM_VVJ4Axlb4-1lOxioHnQsRp99CgeFZENHypGodesgt6knnPyCMzYrvTENiabWTzeFvbBQJmlMaJhlXT4Wvb-wt_n1geX0FvdzPXGuFSMkNKDozE43Lmbgwdxzy1OoeriGk-BmGhW1k7ESANlUbty5QIlPBzJKLH6ZzTvMLFargIU5XGjNUgpXOEkoy2ic_OKIZ3A3IbLkzZ7cmxub01o0QjUPkJNOrHBA1&t=634324380937883499) no-repeat 0 0;*line-height:21px;}.sfdownloadFileWrp .sfpdf{background-position:0 -100px;}.sfdownloadFileWrp .sfdoc,.sfdownloadFileWrp .sfdocx{background-position:0 -200px;}.sfdownloadFileWrp .sfrtf{background-position:0 -300px;}.sfdownloadFileWrp .sftxt{background-position:0 -400px;}.sfdownloadFileWrp .sfxls,.sfdownloadFileWrp .sfxlsx{background-position:0 -500px;}.sfdownloadFileWrp .sfzip{background-position:0 -600px;}.sfdownloadFileWrp .sfjpg,.sfdownloadFileWrp .sfjpeg{background-position:0 -700px;}.sfdownloadFileWrp .sfgif{background-position:0 -800px;}.sfdownloadFileWrp .sfpng{background-position:0 -900px;}.sfdownloadFileWrp .sfppt,.sfdownloadFileWrp .sfpps,.sfdownloadFileWrp .sfpptx{background-position:0 -1000px;}.sfdownloadFileWrp .sfhtml,.sfdownloadFileWrp .sfhtm{background-position:0 -1100px;}.sfdownloadList .sfdownloadFile{padding-bottom:5px;list-style-type:disc;margin-left:25px;}.sfSmallIcns .sfdownloadList .sfdownloadFile,.sfLargeIcns .sfdownloadList .sfdownloadFile{list-style-type:none;margin-left:0;padding-bottom:20px;}.sfSmallIcns .sfdownloadList .sfdownloadFile{padding-left:25px;background:transparent url(/WebResource.axd?d=GzWGXcRksM_VVJ4Axlb4-1lOxioHnQsRp99CgeFZENHypGodesgt6knnPyCMzYrvTENiabWTzeFvbBQJmlMaJhlXT4Wvb-wt_n1geX0FvdzPXGuFSMkNKDozE43Lmbgwdxzy1OoeriGk-BmGhW1k7ESANlUbty5QIlPBzJKLH6ZzTvMLFargIU5XGjNUgpXOEkoy2ic_OKIZ3A3IbLkzZ7cmxub01o0QjUPkJNOrHBA1&t=634324380937883499) no-repeat 0 0;}.sfLargeIcns .sfdownloadList .sfdownloadFile{padding-left:43px;background:transparent url(/WebResource.axd?d=qGAoC_KhftlBlUIOSzkCPTysNbDyLQXybkLoC6ZpSBrCSsTDxLT9qyb-3OtpyYecdwK2fug5RWLXffliVX58EEXN1MFqtwfgXDnSWqgTWzIsHUJmj92moml1yEXThQYyLV61E9MCMzeFE-QiryLsruvCothGebi_PbMJHLq8lCYx-vkb2piU4q6yoOn5o8HRlWnAWiRyVZD59KU6ayqJiQ2&t=634324380937883499) no-repeat 0 0;}.sfdownloadList .sfdownloadTitle{font-weight:bold;font-size:13px;}.sfLargeIcns .sfdownloadList .sfdownloadTitle{font-size:15px;}.sfdownloadList .sfdownloadFile .sfInfo{font-size:11px;color:#666;}.RadGrid.sfdownloadTable{color:#666;}.sfdownloadTable .sfdownloadTitle{width:100%;padding-left:0;padding-right:0;}.sfdownloadTable .sfdownloadType,.sfdownloadTable .sfdownloadSize,.sfdownloadTable .sfdownloadDate,.sfdownloadTable .sfdownloadCell{white-space:nowrap;}.sfdownloadTable .sfdownloadSize,.sfdownloadTable .sfdownloadCell{text-align:right;}.sfdownloadTable .sfdownloadCell{padding-right:0;}.sfdownloadTable thead th{padding:10px 10px 5px;text-align:left;}.sfdownloadTable tbody td{padding:10px 10px 14px;color:#666;vertical-align:top;border-top:1px solid #e4e4e4;}.sfdownloadTable tbody .sfdownloadTitle{font-weight:bold;font-size:13px;color:#333;}.sfdownloadTable tbody .sfdownloadType{text-transform:uppercase;}.sfdownloadTable.sfHasIcons .sfdownloadLink{padding:3px 0 3px 25px;background:transparent url(/WebResource.axd?d=GzWGXcRksM_VVJ4Axlb4-1lOxioHnQsRp99CgeFZENHypGodesgt6knnPyCMzYrvTENiabWTzeFvbBQJmlMaJhlXT4Wvb-wt_n1geX0FvdzPXGuFSMkNKDozE43Lmbgwdxzy1OoeriGk-BmGhW1k7ESANlUbty5QIlPBzJKLH6ZzTvMLFargIU5XGjNUgpXOEkoy2ic_OKIZ3A3IbLkzZ7cmxub01o0QjUPkJNOrHBA1&t=634324380937883499) no-repeat 0 0;}.sfdownloadDetails{padding-bottom:20px;clear:both;}.sfdownloadBack{*display:block;margin-left:-14px;_margin-left:0;padding-left:14px;background:transparent url(/WebResource.axd?d=QS7qIP3tragLDd5V6_eL1378NqMoKMOYfCjX-tO2hFAieHX4L_ue7XLNO9d4qcMRZi4jFeeiIzsj3ZGz8u1dPu0nul44VooKF498j67kzWBrnIRiZhwZhga9ehBZWIMUAY8YSciK5_PBeAPflSyqXbCdbi3f8NQIBGAsLp4Jz5ottiuyHq8-wlw3KXzy9OnLYViKBj5Sq6sntnq2eevL8Q2&t=634324380937883499) no-repeat 0 -48px;}.sfdownloadDetails .sfdownloadTitle{margin:0;padding:35px 0 20px;color:#000;font-size:24px;line-height:1.2;font-weight:bold;}.sfdownloadDetails .sfdownloadSummary{margin:0;padding:20px 0;line-height:18px;}.sfdownloadDetails .sfdownloadLinkWrp{margin-bottom:15px;padding:12px 15px 15px;background-color:#f2f2f2;}.sfdownloadDetails .sfdownloadLinkWrp .sfdownloadLink{font-weight:bold;font-size:15px;padding:3px 0 15px 50px;background:transparent url(/WebResource.axd?d=qGAoC_KhftlBlUIOSzkCPTysNbDyLQXybkLoC6ZpSBrCSsTDxLT9qyb-3OtpyYecdwK2fug5RWLXffliVX58EEXN1MFqtwfgXDnSWqgTWzIsHUJmj92moml1yEXThQYyLV61E9MCMzeFE-QiryLsruvCothGebi_PbMJHLq8lCYx-vkb2piU4q6yoOn5o8HRlWnAWiRyVZD59KU6ayqJiQ2&t=634324380937883499) no-repeat 0 0;}.sfdownloadDetails .sfdownloadLinkWrp .sfInfo{color:#666;font-size:11px;line-height:1;padding-left:50px;}.sfSmallIcns .sfdownloadList .sfpdf,.sfLargeIcns .sfdownloadList .sfpdf,.sfdownloadTable.sfHasIcons .sfpdf .sfdownloadLink,.sfdownloadDetails .sfdownloadLinkWrp.sfpdf .sfdownloadLink{background-position:0 -100px;}.sfSmallIcns .sfdownloadList .sfdoc,.sfSmallIcns .sfdownloadList .sfdocx,.sfLargeIcns .sfdownloadList .sfdoc,.sfLargeIcns .sfdownloadList .sfdocx,.sfdownloadTable.sfHasIcons .sfdoc .sfdownloadLink,.sfdownloadTable.sfHasIcons .sfdocx .sfdownloadLink,.sfdownloadDetails .sfdownloadLinkWrp.sfdoc .sfdownloadLink,.sfdownloadDetails .sfdownloadLinkWrp.sfdocx .sfdownloadLink{background-position:0 -200px;}.sfSmallIcns .sfdownloadList .sfrtf,.sfLargeIcns .sfdownloadList .sfrtf,.sfdownloadTable.sfHasIcons .sfrtf .sfdownloadLink,.sfdownloadDetails .sfdownloadLinkWrp.sfrtf .sfdownloadLink{background-position:0 -300px;}.sfSmallIcns .sfdownloadList .sftxt,.sfLargeIcns .sfdownloadList .sftxt,.sfdownloadTable.sfHasIcons .sftxt .sfdownloadLink,.sfdownloadDetails .sfdownloadLinkWrp.sftxt .sfdownloadLink{background-position:0 -400px;}.sfSmallIcns .sfdownloadList .sfxls,.sfSmallIcns .sfdownloadList .sfxlsx,.sfLargeIcns .sfdownloadList .sfxls,.sfLargeIcns .sfdownloadList .sfxlsx,.sfdownloadTable.sfHasIcons .sfxls .sfdownloadLink,.sfdownloadTable.sfHasIcons .sfxlsx .sfdownloadLink,.sfdownloadDetails .sfdownloadLinkWrp.sfxls .sfdownloadLink,.sfdownloadDetails .sfdownloadLinkWrp.sfxlsx .sfdownloadLink{background-position:0 -500px;}.sfSmallIcns .sfdownloadList .sfzip,.sfLargeIcns .sfdownloadList .sfzip,.sfdownloadTable.sfHasIcons .sfzip .sfdownloadLink,.sfdownloadDetails .sfdownloadLinkWrp.sfzip .sfdownloadLink{background-position:0 -600px;}.sfSmallIcns .sfdownloadList .sfjpg,.sfSmallIcns .sfdownloadList .sfjpeg,.sfLargeIcns .sfdownloadList .sfjpg,.sfLargeIcns .sfdownloadList .sfjpeg,.sfdownloadTable.sfHasIcons .sfjpg .sfdownloadLink,.sfdownloadTable.sfHasIcons .sfjpeg .sfdownloadLink,.sfdownloadDetails .sfdownloadLinkWrp.sfjpg .sfdownloadLink,.sfdownloadDetails .sfdownloadLinkWrp.sfjpeg .sfdownloadLink{background-position:0 -700px;}.sfSmallIcns .sfdownloadList .sfgif,.sfLargeIcns .sfdownloadList .sfgif,.sfdownloadTable.sfHasIcons .sfgif .sfdownloadLink,.sfdownloadDetails .sfdownloadLinkWrp.sfgif .sfdownloadLink{background-position:0 -800px;}.sfSmallIcns .sfdownloadList .sfpng,.sfLargeIcns .sfdownloadList .sfpng,.sfdownloadTable.sfHasIcons .sfpng .sfdownloadLink,.sfdownloadDetails .sfdownloadLinkWrp.sfpng .sfdownloadLink{background-position:0 -900px;}.sfSmallIcns .sfdownloadList .sfppt,.sfSmallIcns .sfdownloadList .sfpps,.sfSmallIcns .sfdownloadList .sfpptx,.sfLargeIcns .sfdownloadList .sfppt,.sfLargeIcns .sfdownloadList .sfpps,.sfLargeIcns .sfdownloadList .sfpptx,.sfdownloadTable.sfHasIcons .sfppt .sfdownloadLink,.sfdownloadTable.sfHasIcons .sfpps .sfdownloadLink,.sfdownloadTable.sfHasIcons .sfpptx .sfdownloadLink,.sfdownloadDetails .sfdownloadLinkWrp.sfppt .sfdownloadLink,.sfdownloadDetails .sfdownloadLinkWrp.sfpps .sfdownloadLink,.sfdownloadDetails .sfdownloadLinkWrp.sfpptx .sfdownloadLink{background-position:0 -1000px;}.sfSmallIcns .sfdownloadList .sfhtml,.sfSmallIcns .sfdownloadList .sfhtm,.sfLargeIcns .sfdownloadList .sfhtml,.sfLargeIcns .sfdownloadList .sfhtm,.sfdownloadTable.sfHasIcons .sfhtml .sfdownloadLink,.sfdownloadTable.sfHasIcons .sfhtm .sfdownloadLink,.sfdownloadDetails .sfdownloadLinkWrp.sfhtml .sfdownloadLink,.sfdownloadDetails .sfdownloadLinkWrp.sfhtm .sfdownloadLink{background-position:0 -1100px;}.sftaxonTitle{display:block;color:#666;font-size:15px;font-weight:bold;}.sftaxonHorizontalList{margin:0 0 10px;padding:0;list-style-type:none;}.sftaxonHorizontalList .sftaxonItem{margin:0;padding:0 10px 0 0;display:inline;white-space:nowrap;}.sftaxonHorizontalList .sfCount{cursor:default;color:#333;font-size:11px;font-weight:normal;}.sftaxonVerticalList{margin:0 0 10px 25px;padding:0;list-style-type:disc;}.sftaxonVerticalList .sftaxonItem{margin:0 0 5px;padding:0;}.sftaxonVerticalList .sfCount{cursor:default;color:#333;font-size:11px;font-weight:normal;}.sftaxonCloud{margin:0 0 10px;padding:0;list-style-type:none;line-height:30px;}.sftaxonCloud .sftaxonItem{margin:0;padding:0 10px 0 0;display:inline;vertical-align:bottom;white-space:nowrap;}.sftaxonCloud .sftaxonItem .sfCloudSize6{font-size:36px;}.sftaxonCloud .sftaxonItem .sfCloudSize5{font-size:30px;}.sftaxonCloud .sftaxonItem .sfCloudSize4{font-size:24px;}.sftaxonCloud .sftaxonItem .sfCloudSize3{font-size:18px;}.sftaxonCloud .sftaxonItem .sfCloudSize2{font-size:13px;}.sftaxonCloud .sftaxonItem .sfCloudSize1{font-size:11px;}.sftaxonCloud .sfCount{cursor:default;font-weight:normal;}.sftaxonsAll{font-size:11px;}.sfarchiveTitle{display:block;color:#666;font-size:15px;font-weight:bold;}.sfarchiveList{margin-left:25px;list-style-type:disc;}.sfarchiveList .sfSel{font-weight:bold;color:#333;}.sfarchiveList .sfCount{cursor:default;color:#333;font-size:11px;font-weight:normal;}.sfFeedBigIcn{padding:5px 0 13px 45px;background:transparent url(/WebResource.axd?d=qGAoC_KhftlBlUIOSzkCPTysNbDyLQXybkLoC6ZpSBrCSsTDxLT9qyb-3OtpyYecdwK2fug5RWLXffliVX58EEXN1MFqtwfgXDnSWqgTWzIsHUJmj92moml1yEXThQYyLV61E9MCMzeFE-QiryLsruvCothGebi_PbMJHLq8lCYx-vkb2piU4q6yoOn5o8HRlWnAWiRyVZD59KU6ayqJiQ2&t=634324380937883499) no-repeat 0 -1200px;*line-height:38px;}.sfFeedSmallIcn{padding:2px 0 1px 22px;background:transparent url(/WebResource.axd?d=GzWGXcRksM_VVJ4Axlb4-1lOxioHnQsRp99CgeFZENHypGodesgt6knnPyCMzYrvTENiabWTzeFvbBQJmlMaJhlXT4Wvb-wt_n1geX0FvdzPXGuFSMkNKDozE43Lmbgwdxzy1OoeriGk-BmGhW1k7ESANlUbty5QIlPBzJKLH6ZzTvMLFargIU5XGjNUgpXOEkoy2ic_OKIZ3A3IbLkzZ7cmxub01o0QjUPkJNOrHBA1&t=634324380937883499) no-repeat 0 -1198px;}.sfTxtLbl{cursor:default;}.sfExample{font-size:11px;color:#666;}.sfError{color:#f00;padding-left:20px;background:transparent url(/WebResource.axd?d=oomtt0gIZRzsVhfxqjiODhLlzFyiv6VOhoxrbv-ARdVUBnB-CqbXcM0AA1l4AXrspJfIRs0JAHRwIPoG12dYrPAYk5OfuHDcI7WsrI8G1RK5AudU7QHWj6sfNW592qvl-DcD72WOkJ0f3E0TuBZk8kXgCZl0Q9BbLiYtrAYCCfGfmjgyUfdgbZ8GHGqNi8Yjl0GpYEWEDxeR9AsUo-EUHA2&t=634324380937883499) no-repeat 0 -497px;}.sfLeftLbls .sfError,.sfRightLbls .sfError{margin-left:164px;}.sfSuccess{margin-top:50px;font-size:18px;text-align:center;color:#690;}.sfErrorSummary{background-color:#ffb9b9;}.sfFormBox{margin-bottom:20px;}.sfFormBox .sfTxt{padding:3px;font-size:12px;font-family:inherit;}.sfFormBox.sfTxtBoxSmall .sfTxt{width:120px;}.sfFormBox.sfTxtBoxMedium .sfTxt{width:300px;}.sfFormBox.sfTxtBoxLarge .sfTxt{width:400px;}.sfFormRadiolist{margin-bottom:20px;}.sfFormRadiolist .sfRadioList{display:block;line-height:18px;}.sfFormRadiolist .sfRadioList label,.sfFormRadiolist .sfRadioList input{vertical-align:middle;}.sfFormRadiolist .sfRadioList label{margin-left:3px;}.sfFormCheckboxlist{margin-bottom:20px;}.sfFormCheckboxlist .sfCheckListBox{display:block;line-height:20px;}.sfFormCheckboxlist .sfCheckListBox label,.sfFormCheckboxlist .sfCheckListBox input{vertical-align:middle;}.sfFormCheckboxlist .sfCheckListBox label{margin-left:3px;}.sfFormBlock{margin-bottom:20px;}.sfFormBlock .sfTxt{padding:3px;font-size:12px;font-family:inherit;}.sfFormBlock.sfTxtBlockSmall .sfTxt{width:300px;height:60px;}.sfFormBlock.sfTxtBlockMedium .sfTxt{width:300px;height:100px;}.sfFormBlock.sfTxtBlockLarge .sfTxt{width:420px;height:260px;}.sfFormDropdown{margin-bottom:20px;}.sfFormDropdown select{padding:1px;font-size:12px;font-family:inherit;}.sfFormDropdown.sfDdlSmall select{width:120px;}.sfFormDropdown.sfDdlMedium select{width:300px;}.sfFormDropdown.sfDdlLarge select{width:420px;}.sfFormTitle{margin:50px 0 20px;}.sfFormTitle:first-child{margin:20px 0;}.sfFormTitle.sfTitleSmall{font-size:14px;font-weight:bold;}.sfFormTitle.sfTitleMedium{font-size:18px;font-weight:normal;}.sfFormTitle.sfTitleLarge{font-size:24px;font-weight:normal;}.sfFormInstructions{margin-bottom:20px;}.sfFormSubmit{margin-bottom:20px;}.sfLeftLbls .sfFormSubmit,.sfRightLbls .sfFormSubmit{margin-left:164px;}.sfFormSubmit.sfSubmitBtnSmall input{font-size:13px;}.sfFormSubmit.sfSubmitBtnMedium input{font-size:14px;font-weight:bold;}.sfFormSubmit.sfSubmitBtnLarge input{font-size:18px;}.sfTopLbls .sfTxtLbl{font-weight:bold;display:block;}.sfLeftLbls .sfTxtLbl,.sfLeftLbls .sfFieldWrp{display:-moz-inline-stack;display:inline-block;zoom:1;*display:inline;vertical-align:top;}.sfLeftLbls .sfTxtLbl{margin-top:2px;margin-right:10px;width:150px;line-height:1.1;}.sfRightLbls .sfTxtLbl,.sfRightLbls .sfFieldWrp{display:-moz-inline-stack;display:inline-block;zoom:1;*display:inline;vertical-align:top;}.sfRightLbls .sfTxtLbl{margin-top:2px;margin-right:10px;width:150px;line-height:1.1;text-align:right;}.sflanguagesHorizontalList{margin:0;padding:0;list-style-type:none;}.sflanguagesHorizontalList .sflanguageItem{margin:0;padding:0;display:inline;white-space:nowrap;}.sflanguagesHorizontalList .sflanguageItem a:link,.sflanguagesHorizontalList .sflanguageItem a:visited,.sflanguagesHorizontalList .sflanguageItem a:hover,.sflanguagesHorizontalList .sflanguageItem a:active{padding:1px 5px 2px;}.sflanguagesHorizontalList .sflangSelected a:link,.sflanguagesHorizontalList .sflangSelected a:visited,.sflanguagesHorizontalList .sflangSelected a:hover,.sflanguagesHorizontalList .sflangSelected a:active{background-color:#425ccf;color:#fff;cursor:default;}.sflanguagesVerticalList{margin:0;padding:0;list-style-type:disc;}.sflanguagesVerticalList .sflanguageItem{margin:0 0 5px;padding:0;}.sflanguagesVerticalList .sflanguageItem a:link,.sflanguagesVerticalList .sflanguageItem a:visited,.sflanguagesVerticalList .sflanguageItem a:hover,.sflanguagesVerticalList .sflanguageItem a:active{padding:1px 5px 2px;}.sflanguagesVerticalList .sflangSelected a:link,.sflanguagesVerticalList .sflangSelected a:visited,.sflanguagesVerticalList .sflangSelected a:hover,.sflanguagesVerticalList .sflangSelected a:active{background-color:#425ccf;color:#fff;cursor:default;}.sflanguagesDropDown select{font-family:Arial,Verdana,Sans-serif;font-size:12px;}.sfLoginFieldsWrp .sfLoginField{margin-bottom:10px;}.sfLoginFieldsWrp .sfTxtLbl{display:block;}.sfLoginFieldsWrp .sfTxt{font-family:Arial,Verdana,Sans-serif;font-size:12px;padding:2px;width:200px;height:18px;}.sfLoginFieldsWrp .sfCheckBoxWrapper .sfTxtLbl{padding-left:5px;display:inline;}.sfLoginFieldsWrp .sfCheckBoxWrapper .sfTxtLbl,.sfLoginFieldsWrp .sfCheckBoxWrapper input{vertical-align:middle;}.sfLoginFieldsWrp .sfValidator strong{display:block;padding-left:20px;font-size:11px;font-weight:bold;color:#f30;background:transparent url(/WebResource.axd?d=oomtt0gIZRzsVhfxqjiODhLlzFyiv6VOhoxrbv-ARdVUBnB-CqbXcM0AA1l4AXrspJfIRs0JAHRwIPoG12dYrPAYk5OfuHDcI7WsrI8G1RK5AudU7QHWj6sfNW592qvl-DcD72WOkJ0f3E0TuBZk8kXgCZl0Q9BbLiYtrAYCCfGfmjgyUfdgbZ8GHGqNi8Yjl0GpYEWEDxeR9AsUo-EUHA2&t=634324380937883499) no-repeat 0 -499px;}.sfSubmitBtn{margin:20px 0 30px;}.sfSubmitBtn a.sfSave:link,.sfSubmitBtn a.sfSave:visited,.sfSubmitBtn a.sfSave:hover,.sfSubmitBtn a.sfSave:active{background-color:#105CB6;color:#fff;font-size:13px;padding:4px 10px;}.sfSubmitBtn a.sfSave:hover,.sfSubmitBtn a.sfSave:active,.sfSubmitBtn a.sfSave:focus{background-color:#00f;}.sfLoginWrp .sfLoginHelp{font-size:11px;}.sfLoginWrp .sfNeutral{background-color:#ffc;padding:5px 15px;}.sfLoginWrp .sfDetailedInfo ul li{margin-left:25px;list-style-type:disc;}.sfLoginWrp .sfDetailedInfo ol li{margin-left:25px;list-style-type:decimal;}.sfLoginWrp .sfDetailedHowTo{background-color:#fff;margin:10px 5px;padding:13px 18px 18px;}.sfsearchBox{margin:0;padding:0;border:0;}.sfsearchBox .sfsearchTxt{width:200px;padding:3px;vertical-align:middle;font-family:Arial,Verdana,Sans-serif;font-size:12px;}.sfsearchBox .sfsearchSubmit{padding:1px 3px;font-family:Arial,Verdana,Sans-serif;font-size:12px;font-weight:bold;text-align:center;}.sfsearchResultStatistics{margin-top:15px;font-size:19px;}.sfsearchReultTitleSnippetUrl{line-height:1.2;}.sfsearchReultTitleSnippetUrl .sfsearchResultTitle{margin-top:30px;font-size:13px;font-weight:bold;}.sfsearchReultTitleSnippetUrl .sfsearchResultUrl a:link,.sfsearchReultTitleSnippetUrl .sfsearchResultUrl a:visited,.sfsearchReultTitleSnippetUrl .sfsearchResultUrl a:hover,.sfsearchReultTitleSnippetUrl .sfsearchResultUrl a:active{color:#999;}.sfsearchReultTitleSnippetUrl .sfsearchResultUrl a:hover,.sfsearchReultTitleSnippetUrl .sfsearchResultUrl a:active,.sfsearchReultTitleSnippetUrl .sfsearchResultUrl a:focus{color:#666;}.sfsearchReultTitlesOnly{line-height:1.2;font-size:13px;}.sfsearchReultTitlesOnly .sfsearchResultTitle{margin-top:14px;}.sfnewsletterForm{padding:0 0 30px;}.sfnewsletterForm .sfnewsletterTitle{font-size:15px;font-weight:bold;margin-bottom:7px;}.sfnewsletterForm .sfnewsletterDescription{color:#666;padding-bottom:15px;}.sfnewsletterForm .sfnewsletterFieldsList{padding-bottom:15px;}.sfnewsletterForm .sfnewsletterField{margin-bottom:5px;}.sfnewsletterForm .sfTxt{width:200px;padding:3px;vertical-align:middle;font-family:Arial,Verdana,Sans-serif;font-size:12px;}.sfnewsletterForm .sfNote{font-size:11px;line-height:1.2;color:#666;}.sfnewsletterForm .sfError{display:block;}.sfnewsletterForm .sfnewsletterSubmitBtn{font-family:Arial,Verdana,Sans-serif;font-size:15px;font-weight:bold;width:160px;text-align:center;}
