/* START Telerik.Web.UI.Skins.FormDecorator.css */
/* RadFormDecorator - common CSS settings */
.rfdSkinnedButton
{
    background-repeat: no-repeat;
}

.rfdSkinnedButton .rfdInner
{
    font: normal 12px "Segoe UI", Arial, Verdana !important;
    white-space: nowrap;
    background-repeat: repeat-x;
    width: auto !important;
	padding: 0 !important;
	display: block !important;
	line-height: 21px !important;
}

.rfdCheckboxChecked,
.rfdCheckboxUnchecked,
.rfdRadioUnchecked,
.rfdRadioChecked
{
    line-height: 20px !important;
	padding: 0;
	padding-left: 20px;
	zoom:1;/*Fixes IE issue with font-size set in percents */		
	display: inline-block !important;	
}

.rfdSkinnedButton .rfdOuter
{
	background-position: right 0;
	background-repeat: no-repeat;
	display: block;	
}

.rfdRealButton
{
	vertical-align: middle;
	display: none;
	min-width: 54px !important;
}

/* Internet Explorer */        
*+html .rfdRealButton,
*+html .rfdSkinnedButton
{		
	min-width: auto !important;
}

/* disabled inputs */
.rfdInputDisabled
{
    filter: alpha(opacity=50);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    -moz-opacity: .5;
    opacity: .5;
}

.input 
{
	position: absolute;/* Causes IE to jump when a textbox in a scrollable parent is clicked -however, setting position:relative has other side effects. This is why it will be left here as *absolute* and set to relative where needed */	
	left: -999999px;
}

/* FormDecorator + TreeView fix */
.RadTreeView .rfdCheckboxUnchecked,
.RadTreeView .rfdCheckboxChecked
{
    display: -moz-inline-box;
    display: inline-block;
    width: 0;
    vertical-align: middle;
    line-height: 21px;
    height: 21px;
}

/* FormDecorator + TreeView fix */
.RadGrid .rfdCheckboxUnchecked,
.RadGrid .rfdCheckboxChecked
{
    display: -moz-inline-block;
    display: inline-block;
}

a.rfdSkinnedButton:focus,
a.rfdSkinnedButton:active
{
	border: dotted 1px #131627;
}

/* =========================== TEXTAREA, INPUT, FIELDSET ============================= */
.rfdRoundedInner
{  
  width:1px;
  font-size:1px;      
  background-repeat:no-repeat;
}

.rfdRoundedOuter
{    
  width:1px;
  font-size:0px;  
}


table.rfdRoundedWrapper, table.rfdRoundedWrapper_fieldset
{
    display:-moz-inline-box;/*FF2*/
    display:inline-block;/*FF3,Opera,Safari*/
    _display:inline;/*IE6*/
                                   
    vertical-align:middle;           
    border-width:0px !important;    
}

/* do not merge these 2 rules, because of IE6 ! */
table.rfdRoundedWrapper td
{
	padding:0px !important;
	border:0px !important;
}
table.rfdRoundedWrapper_fieldset>tbody>tr>td
{
	padding:0px !important;
	border:0px !important;
}

/*IE7*/
*+html table.rfdRoundedWrapper, *+html table.rfdRoundedWrapper_fieldset
{
   display:inline;
}

table.rfdRoundedWrapper td, table.rfdRoundedWrapper_fieldset td
{
    vertical-align:middle;
}

/* Specific styling related to the elements that need to support rounded corners */
table.rfdRoundedWrapper textarea, textarea.rfdTextarea
{     
    /*overflow :hidden;// Prevent nasty flicker - no flicker anymore */     
    /* Safari - Do not allow textarea resize. Also - textarea in a table causes very a 4px bottom margin! Bug in Safari*/    
    /* This hack thing is parsed in IE as WELL!*/
    [hack:safari;    
        resize: none;        
    ]        
}


fieldset.rfdFieldset
{
         
}

input.rfdInput, textarea.rfdTextarea
{   
         
}

.rfdRtl
{
	direction: rtl;
}

.rfdRtl .input 
{
	position: absolute;/* Causes IE to jump when a textbox in a scrollable parent is clicked -however, setting position:relative has other side effects. This is why it will be left here as *absolute* and set to relative where needed */	
	left: 0;
	right: 0;
	top:-9999px;
}


/* checkboxes */
.rfdRtl .rfdCheckboxUnchecked,
.rfdRtl .rfdInputDisabled.rfdCheckboxUnchecked:hover
{
	padding: 0 20px 0 0;
	background-position: right 0 !important;
}

.rfdRtl .rfdCheckboxUnchecked:hover
{
	background-position: right -200px !important;
}

.rfdRtl .rfdCheckboxChecked,
.rfdRtl .rfdInputDisabled.rfdCheckboxChecked:hover 
{
	padding: 0 20px 0 0;
	background-position: right -420px !important;
}

.rfdRtl .rfdCheckboxChecked:hover
{
	background-position: right -640px !important;
}
/* end of checkboxes */

/* radiobuttons */
.rfdRtl .rfdRadioUnchecked,
.rfdRtl .rfdInputDisabled.rfdRadioUnchecked:hover 
{
	padding: 0 20px 0 0;
	background-position: right 0 !important;
}

.rfdRtl .rfdRadioUnchecked:hover
{
	background-position: right -220px !important;
}

.rfdRtl .rfdRadioChecked,
.rfdRtl .rfdInputDisabled.rfdRadioChecked:hover 
{
	padding: 0 20px 0 0;
	background-position: right -440px !important;
}

.rfdRtl .rfdRadioChecked:hover
{
	background-position: right -640px !important;
}
/* end of radiobuttons */
/* right to left support end */

/* common skinned combobox settings begin */

.rfdSelect
{
	display: inline-block;
	text-decoration: none;
	font: normal 10pt Arial, Verdana, Sans-serif;
	cursor: default;
	outline: none;
	-moz-user-select: none;
	max-width: 1024px;
	overflow: hidden;
	/*padding: 0;*/
}

.rfdSelectDisabled
{
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=40); /* IE 6/7 */
    opacity: .4; /* Gecko, Opera */
    -moz-opacity: .4; /* Old Gecko */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=40)"; /* IE8 */
}

.rfdSelect span
{
	display: block;
}

.rfdSelect .rfdSelectOuter
{
	float: left;
}

.rfdSelect .rfdSelectText
{
	line-height: 18px;
	padding: 0 3px;
	float: left;
	white-space: nowrap;
	overflow: hidden;
	margin-left: 2px;
	text-overflow: ellipsis;
}

.rfdSelect .rfdSelectArrow
{
	float: right;
	_display: inline;
}

.rfdSelect .rfdSelectArrow span
{
    background-color: transparent !important;
	text-indent: -9999px;
	width: 14px;
	height: 16px;
}

/* dropdown settings */
.rfdSelectBox
{
    font: normal 10pt Arial, Verdana, Sans-serif;
    display: inline-block;
}

.rfdSelectBox ul,
.rfdSelectBox li
{
    padding: 0;
    margin: 0;
    list-style: none;
}

.rfdSelectBox li
{
    cursor: default;
    line-height: 16px;
    height: 16px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.rfdSelectBox_optgroup li
{
    padding-left: 20px !important;
    height: 18px !important;
    line-height: 18px !important;
}

.rfdSelectBox_optgroup .rfdSelectBox_optgroup_label
{
    font-style: italic;
    font-weight: bold;
    padding-left: 0 !important;
}

/* common skinned combobox settings begin */

/* rfdRoundedCorners */
.rfdRoundedCorners
{
    -webkit-border-radius:4px;
    -moz-border-radius:4px;   
}
/* END Telerik.Web.UI.Skins.FormDecorator.css */
/* START Telerik.Web.UI.Skins.Forest.FormDecorator.Forest.css */
/* RadFormDecorator for ASP.NET Forest Skin */

/* this gives a background color to the page*/
.rfdZone
{
    background-color: #d3e0c2;
}

.RadForm_Forest.rfdScrollBars
{
	scrollbar-3dlight-color: #959695; 
	scrollbar-arrow-color: #3e3e3e;
	scrollbar-base-color: #f5f5f5; 
	scrollbar-darkshadow-color: #5f6e93; 
	scrollbar-face-color: #d1d1d4;
	scrollbar-highlight-color: #fff; 
	scrollbar-shadow-color: #a0ad8a;
	scrollbar-track-color: #f0f0f0;
}

/* label settings */
.RadForm_Forest label.Forest
{
    color: #626262;
}

/* checkbox settings */
.RadForm_Forest .rfdCheckboxUnchecked,
.RadForm_Forest .rfdInputDisabled.rfdCheckboxUnchecked:hover
{
	background: transparent url('/WebResource.axd?d=xnUSvyCm21vmRZgqzNfe-07HgCdskRKqvx_GEk3cVH1Sk0Kl4BbPxp5e4nijGmOEP5nVzQF3jZOGzv1oxgEbFvI83HbgtgVL5m3CW-_e_vM1&t=633789558000000000') no-repeat 0 0;
}

.RadForm_Forest .rfdCheckboxUnchecked:hover
{
	background: transparent url('/WebResource.axd?d=xnUSvyCm21vmRZgqzNfe-07HgCdskRKqvx_GEk3cVH1Sk0Kl4BbPxp5e4nijGmOEP5nVzQF3jZOGzv1oxgEbFvI83HbgtgVL5m3CW-_e_vM1&t=633789558000000000') no-repeat 0 -200px;
}

.RadForm_Forest .rfdCheckboxChecked,
.RadForm_Forest .rfdInputDisabled.rfdCheckboxChecked:hover
{
	background: transparent url('/WebResource.axd?d=xnUSvyCm21vmRZgqzNfe-07HgCdskRKqvx_GEk3cVH1Sk0Kl4BbPxp5e4nijGmOEP5nVzQF3jZOGzv1oxgEbFvI83HbgtgVL5m3CW-_e_vM1&t=633789558000000000') no-repeat 0 -420px;
}

.RadForm_Forest .rfdCheckboxChecked:hover
{
	background: transparent url('/WebResource.axd?d=xnUSvyCm21vmRZgqzNfe-07HgCdskRKqvx_GEk3cVH1Sk0Kl4BbPxp5e4nijGmOEP5nVzQF3jZOGzv1oxgEbFvI83HbgtgVL5m3CW-_e_vM1&t=633789558000000000') no-repeat 0 -640px;
}
/* end of checkbox settings */

/* radiobutton settings */
.RadForm_Forest .rfdRadioUnchecked,
.RadForm_Forest .rfdInputDisabled.rfdRadioUnchecked:hover
{
	background: transparent url('/WebResource.axd?d=xnUSvyCm21vmRZgqzNfe-07HgCdskRKqvx_GEk3cVH1Sk0Kl4BbPxp5e4nijGmOE1Ux0Zt0jPKisDcSHpYWrwwlXcobDeEhJXAaFOeeZXvSYUf5WC_woreYdKCIRImdA0&t=633789558000000000') no-repeat 1px 0;
}

.RadForm_Forest .rfdRadioUnchecked:hover
{
	background: transparent url('/WebResource.axd?d=xnUSvyCm21vmRZgqzNfe-07HgCdskRKqvx_GEk3cVH1Sk0Kl4BbPxp5e4nijGmOE1Ux0Zt0jPKisDcSHpYWrwwlXcobDeEhJXAaFOeeZXvSYUf5WC_woreYdKCIRImdA0&t=633789558000000000') no-repeat 1px -220px;
}

.RadForm_Forest .rfdRadioChecked,
.RadForm_Forest .rfdInputDisabled.rfdRadioChecked:hover 
{
	background: transparent url('/WebResource.axd?d=xnUSvyCm21vmRZgqzNfe-07HgCdskRKqvx_GEk3cVH1Sk0Kl4BbPxp5e4nijGmOE1Ux0Zt0jPKisDcSHpYWrwwlXcobDeEhJXAaFOeeZXvSYUf5WC_woreYdKCIRImdA0&t=633789558000000000') no-repeat 1px -440px;
}

.RadForm_Forest .rfdRadioChecked:hover
{
	background: transparent url('/WebResource.axd?d=xnUSvyCm21vmRZgqzNfe-07HgCdskRKqvx_GEk3cVH1Sk0Kl4BbPxp5e4nijGmOE1Ux0Zt0jPKisDcSHpYWrwwlXcobDeEhJXAaFOeeZXvSYUf5WC_woreYdKCIRImdA0&t=633789558000000000') no-repeat 1px -640px;
}

.RadForm_Forest .rfdRadioUnchecked,
.RadForm_Forest .rfdInputDisabled.rfdRadioUnchecked:hover,
.RadForm_Forest .rfdRadioUnchecked:hover,
.RadForm_Forest .rfdRadioChecked,
.RadForm_Forest .rfdInputDisabled.rfdRadioChecked:hover,
.RadForm_Forest .rfdRadioChecked:hover
{
    _background-image: url('/WebResource.axd?d=xnUSvyCm21vmRZgqzNfe-07HgCdskRKqvx_GEk3cVH1Sk0Kl4BbPxp5e4nijGmOE1Ux0Zt0jPKisDcSHpYWrw0wOyE03fGedg8151s4rbnk8CqShUY1wDOTTIXw_lAst0&t=633789558000000000');
}
/* end of radiobutton settings */

/* button settings */
a.RadForm_Forest, a.RadForm_Forest span
{
	background-image: url('/WebResource.axd?d=xnUSvyCm21vmRZgqzNfe-07HgCdskRKqvx_GEk3cVH1Sk0Kl4BbPxp5e4nijGmOEp8oq6G0RK9JOUMDpAGi9mZsh_9KoUbm_SRlGeX2blUk1&t=633789558000000000');
	color: #e7f1d7;
}

a.RadForm_Forest.rfdInputDisabled:hover
{
    background-position: 0 0;
}

a.RadForm_Forest .rfdInner,
a.RadForm_Forest.rfdInputDisabled:hover .rfdInner
{
    margin-left: 4px;
	margin-right: 4px;
	background-position: 0 -21px;
	color: #e7f1d7;
}

a.RadForm_Forest.rfdInputDisabled:hover .rfdOuter
{
	background-position: right 0;
}

a.RadForm_Forest:hover
{
	background-position: 0 -42px;
}

a.RadForm_Forest:hover .rfdInner
{
	background-position: 0 -63px;
	color: white;
}

a.RadForm_Forest:hover .rfdOuter
{
	background-position: right -42px;
}
/* end of button settings */

/* clicked button styles */
a.RadForm_Forest.rfdClicked
{
    background-image: url('/WebResource.axd?d=xnUSvyCm21vmRZgqzNfe-07HgCdskRKqvx_GEk3cVH1Sk0Kl4BbPxp5e4nijGmOEp8oq6G0RK9JOUMDpAGi9mZsh_9KoUbm_SRlGeX2blUk1&t=633789558000000000');
    background-position: 0 -84px;
    background-repeat: no-repeat;
}

a.RadForm_Forest.rfdClicked span
{
    background-image: url('/WebResource.axd?d=xnUSvyCm21vmRZgqzNfe-07HgCdskRKqvx_GEk3cVH1Sk0Kl4BbPxp5e4nijGmOEp8oq6G0RK9JOUMDpAGi9mZsh_9KoUbm_SRlGeX2blUk1&t=633789558000000000');
    color: #000;
}

a.RadForm_Forest.rfdClicked .rfdInner
{
    background-position: 0 -105px;
    background-repeat: repeat-x;
}

a.RadForm_Forest.rfdClicked .rfdOuter
{
    background-position: right -84px;
    background-repeat: no-repeat;
}
/* end of clicked button styles */

/* do NOT change these settings, otherwise the skinned buttons will be broken when used within a decoration zone */
a.rfdSkinnedButton.RadForm_Forest
{
    -moz-user-select: none !important;
	outline: none !important;
	text-decoration: none !important;
	cursor: default !important;
	text-align: center !important;
	background-color: transparent !important;
	border: 0 !important;
    display: inline-block !important;
}

/* Headings 4-6 */
.RadForm_Forest h4.rfdH4
{
	color: #3c4c30;	
	border-bottom: solid 1px #3c6716;	
}

.RadForm_Forest h5.rfdH5
{
	color: #3c4c30;	
	border-bottom: solid 1px #3c6716;	
}

.RadForm_Forest h6.rfdH6
{
	color: #3c4c30;	
}

/* <label> */
.RadForm_Forest label.rfdLabel
{	
	color: #000000;
}

/* <fieldset> and <legend> */
.RadForm_Forest table.rfdRoundedWrapper_fieldset legend,
.RadForm_Forest fieldset.rfdFieldset legend
{
	/*Mandatory to set the height of the legend, so as to be able to calculate the rounded corners in IE properly*/
	/*font-size: 12px;*/
	/*height: 30px;*/
	/*line-height: 30px;*/
	color: #3c4c30;
}

.RadForm_Forest table.rfdRoundedWrapper_fieldset fieldset,
.RadForm_Forest fieldset.rfdFieldset
{	
	border: solid 1px #588a4d;
	background-image: url('/WebResource.axd?d=xnUSvyCm21vmRZgqzNfe-07HgCdskRKqvx_GEk3cVH1Sk0Kl4BbPxp5e4nijGmOE0yYGvpdBbudFksOOcFa6vEF-KWRNVXNYu9hXG1FN4bU1&t=633789558000000000'); /* having a background image on a fieldset is not okay with IE */	
	background-repeat: no-repeat;/*Mandatory to use because of incorrect IE positioning of the image*/		
}


/* Due to a glitch in IE the following 2 classes must be declared separately for correct parsing of the textarea class in IE6*/
.RadForm_Forest table.rfdRoundedWrapper input,
.RadForm_Forest table.rfdRoundedWrapper textarea,
.RadForm_Forest input.rfdInput, 
.RadForm_Forest textarea.rfdTextarea
{
	border: solid 1px #618740;
	background: #e7f1d7;	
	color: #000000;
}

.RadForm_Forest textarea.rfdTextarea,
.RadForm_Forest table.rfdRoundedWrapper textarea
{
    overflow: auto;
}

.RadForm_Forest  table.rfdRoundedWrapper input[disabled="disabled"]:hover,
.RadForm_Forest  table.rfdRoundedWrapper textarea[disabled="disabled"]:hover
{
	border: solid 1px #618740;
	background: #e7f1d7;	
	color: #000000;
	filter: alpha(opacity=30);
	-moz-opacity: .3;
	opacity: .3;
}

/* add classes for HOVER effect */
.RadForm_Forest  table.rfdRoundedWrapper input:hover,
.RadForm_Forest  table.rfdRoundedWrapper textarea:hover,
.RadForm_Forest table.rfdRoundedWrapper:hover .rfdRoundedInner,
.RadForm_Forest input.rfdInput:hover, 
.RadForm_Forest textarea.rfdTextarea:hover
{
	border-color: #3c4c30 !important;
	background: #e7f1d7;
	color: #000000;
}

.RadForm_Forest table.rfdRoundedWrapper:hover .rfdRoundedOuter
{	
	background-color: #3c4c30 !important;
}

/* <select> */
.rfdSelect_Forest,
.rfdSelect_Forest:hover,
.rfdSelect_Forest .rfdSelectOuter,
.rfdSelect_Forest:hover .rfdSelectOuter,
.rfdSelect_Forest .rfdSelectArrow span,
.rfdSelectBox_Forest .rfdSelect_selected,
.rfdSelectBox_Forest li:hover,
.rfdSelect_Forest.rfdSelectDisabled:hover
{
    background-image: url('/WebResource.axd?d=xnUSvyCm21vmRZgqzNfe-07HgCdskRKqvx_GEk3cVH1Sk0Kl4BbPxp5e4nijGmOE-xlsHeTqZd0ZyNvl9dktiEO_XhCmnudk_8vVMNOnS541&t=633789558000000000');
    background-repeat: no-repeat;
}

.rfdSelect_Forest.rfdSelectDisabled:hover
{
    background-position: 0 0;
}

.rfdSelect_Forest
{
	padding-left: 3px !important;
}

.rfdSelect_Forest:hover
{
	background-position: 0 -44px;
}

.rfdSelect_Forest .rfdSelectOuter,
.rfdSelect_Forest.rfdSelectDisabled:hover .rfdSelectOuter
{
    background-position: right -22px;
    padding: 2px 0;
}

.rfdSelect_Forest:hover .rfdSelectOuter
{
    background-position: right -66px;
}

.rfdSelect_Forest .rfdSelectText,
.rfdSelect_Forest.rfdSelectDisabled:hover .rfdSelectText
{
    color: #3c6716;
}

.rfdSelect_Forest:hover .rfdSelectText
{
    color: #7a1b05;
}

.rfdSelect_Forest .rfdSelectArrow
{
	margin: 1px 2px 0 0;
}

.rfdSelect_Forest .rfdSelectArrow span,
.rfdSelect_Forest.rfdSelectDisabled:hover .rfdSelectArrow span
{
	background-position: 0 -88px;
}

.rfdSelect_Forest:hover .rfdSelectArrow span
{
    background-position: -14px -88px;
}

/* dropdown settings */
.rfdSelectBox_Forest
{
    background: #c2d197;
    border: solid 1px #588a4d;
    color: #2b2c20;
}

.rfdSelectBox_Forest li
{
    padding-left: 3px !important;
    line-height: 16px;
    height: 16px;
    background-image: none !important;
}

.rfdSelectBox_Forest .rfdSelect_selected,
.rfdSelectBox_Forest li:hover
{
    color: #ffffff;
    background-color: #cf4900;
}

.rfdSelectBox_Forest .rfdSelectBox_optgroup_label:hover
{
    background: none;
    color: black;
}

/* skinned combobox end */
/* END Telerik.Web.UI.Skins.Forest.FormDecorator.Forest.css */
/* START Telerik.Web.UI.Skins.Menu.css */
/* Common CSS */

.RadMenu
{
	white-space:nowrap;
	float:left;
	position:relative;
}

.RadMenu .rmRootGroup
{
	margin:0;
	padding:0;
	position:relative;
	left:0;
	display: inline-block;
}

* html .RadMenu .rmRootGroup { float: left; }

.RadMenu:after,
.RadMenu .rmRootGroup:after
{
    content:""; 
    display:block;
    height:0;
    overflow: hidden;
    line-height:0;
    font-size:0;
    clear:both;
    visibility:hidden;
}

.RadMenu ul.rmVertical,
.rmRootGroup ul.rmHorizontal,
.RadMenu_Context ul.rmHorizontal
{
	margin:0;
	padding:0;
	display:none;
	position:relative;
	left:0;
	float:left;
}

.rmSized ul.rmVertical
{
	width: 100%;
}

.rmSized ul.rmRootGroup
{
	float: none;
}

.rmSized .rmRootGroup .rmVertical
{
	width: auto;
}

.RadMenu .rmItem
{
	float:left;
	position:relative;
	list-style-image: none;
	list-style-position:outside;
	list-style:none;	
}

* html .RadMenu .rmItem
{
	display:inline;
}

.RadMenu .rmHorizontal .rmItem
{
	clear:none;
}

.RadMenu .rmVertical .rmItem
{
	clear:both;
}

.rmSized .rmVertical .rmItem
{
	width: 100%;
}

.rmSized .rmHorizontal .rmItem,
.rmSized .rmRootGroup .rmVertical .rmItem
{
	width: auto;
}

.RadMenu ul.rmActive,
.RadMenu ul.rmRootGroup
{
	display:block;
}

.RadMenu .rmSlide, 
.RadMenu_Context
{
	position:absolute;
	overflow:hidden;
	display:none;
	float:left;
}

* html .RadMenu .rmSlide, 
* html .RadMenu_Context
{
	height:1px;
}

.RadMenu_Context
{
	z-index:1000;
	overflow:visible;
}

.RadMenu .rmText
{
	display:block;
}

.RadMenu div.rmText /*templates*/
{
	white-space:normal;
	background: transparent;
}

.RadMenu a.rmLink
{
	cursor:default;
	display:block;
}

.rmScrollWrap
{
	position:absolute;
	float:left;
	overflow:hidden;
	left:0;
}

.RadMenu .rmLeftArrow,
.RadMenu .rmTopArrow,
.RadMenu .rmBottomArrow,
.RadMenu .rmRightArrow
{
	position:absolute;
	z-index:2000;
	text-indent:-1000em;
	font-size: 0;
	line-height: 0;
	outline: 0;
	overflow: hidden;
}

.RadMenu .rmLeftArrowDisabled,
.RadMenu .rmTopArrowDisabled,
.RadMenu .rmBottomArrowDisabled,
.RadMenu .rmRightArrowDisabled
{
	display:none;
	text-indent:-1000em;
	font-size: 0;
	line-height: 0;
}

.RadMenu .rmBottomArrow,
.RadMenu .rmBottomArrowDisabled
{
	margin-bottom: -1px;
}

.RadMenu .rmLeftImage
{
	border:0;
	float:left;
}

.RadMenu_rtl
{
	float:right;
	text-align: right;
}

.RadMenu_rtl ul.rmHorizontal,
.RadMenu_rtl ul.rmVertical
{
	float:right;
}

.RadMenu_rtl .rmItem
{
	float:right;	
}

.RadMenu_rtl .rmLeftImage,
.RadMenu_Context_rtl .rmLeftImage
{
	border:0;
	float:right;
}

.RadMenu_rtl .rmLeftArrow,
.RadMenu_rtl .rmTopArrow,
.RadMenu_rtl .rmBottomArrow,
.RadMenu_rtl .rmRightArrow,
.RadMenu_rtl .rmLeftArrowDisabled,
.RadMenu_rtl .rmTopArrowDisabled,
.RadMenu_rtl .rmBottomArrowDisabled,
.RadMenu_rtl .rmRightArrowDisabled
{
	text-indent:1000em !important;
}

.RadMenu .rmLink
{
	width:auto;
}

.RadMenu .rmSeparator,
.RadMenu .rmSeparator:after
{
    line-height: 0;
    font-size: 0;
    overflow: hidden;
}

.RadMenu div.rmRootGroup
{
    position: relative;
}
/* <base styles> */

.RadMenu .rmItem
{
	padding: 0;
}

.RadMenu .rmLink
{
	padding: 0 0 0 12px;
	outline: 0;
	float: left;
}

.RadMenu .rmText
{
	padding-bottom: 1px;
	float: left;
}

/* optimized for 16x16 */
.RadMenu .rmLeftImage
{
	margin: 4px 2px 0 0;
	padding-bottom: 4px;
}

.RadMenu .rmVertical .rmLeftImage+.rmText
{
	padding: 0 8px 1px 24px;
}

.RadMenu .rmVertical .rmText
{
	padding: 0 15px 1px 0;
}

.RadMenu .rmHorizontal .rmText
{
	padding: 0 12px 1px 0;
}

.RadMenu_rtl .rmVertical .rmText
{
	padding: 0 15px 1px 0;
}

.RadMenu .rmVertical .rmText,
.RadMenu .rmHorizontal .rmVertical .rmText
{
	display: block;
	float: none;
}

.RadMenu .rmVertical .rmLink,
.RadMenu .rmHorizontal .rmVertical .rmLink
{
	float: none;
}

* html .RadMenu .rmGroup .rmVertical .rmLink,
* html .RadMenu .rmGroup .rmHorizontal .rmLink
{
	float: left;
}

.RadMenu .rmRootGroup .rmItem .rmGroup
{
	padding-bottom: 1px;
}

.RadMenu .rmGroup .rmItem
{
	padding: 0;
}

.RadMenu .rmGroup .rmLink,
.RadMenu .rmSlide .rmGroup .rmTemplate
{
	padding: 0;
}

.RadMenu_rtl .rmGroup .rmLink,
.RadMenu_rtl .rmSlide .rmGroup .rmTemplate
{
	padding: 0;
}

.RadMenu .rmGroup .rmText
{
	padding: 0 54px 0 28px;
	margin: 0 0 0 4px;
}

.RadMenu_rtl .rmGroup .rmText
{
	padding: 0 28px 0 54px;
	margin: 0 4px 0 0;
}

.RadMenu .rmSlide .rmVertical .rmLeftImage+.rmText,
.RadMenu_Context .rmGroup .rmLeftImage+.rmText
{
	padding: 0 54px 0 28px;
}

.RadMenu_rtl .rmSlide .rmVertical .rmLeftImage+.rmText,
.RadMenu_Context_rtl .rmGroup .rmLeftImage+.rmText
{
	padding: 0 28px 0 54px;
}

.RadMenu .rmSlide .rmHorizontal .rmText
{
	padding: 0 11px 0 10px;
}

.RadMenu .rmGroup .rmLeftImage
{
	margin: 4px 0 0 6px;
}

* html .RadMenu .rmGroup .rmLeftImage { margin-left: 4px; }
*+html .RadMenu .rmGroup .rmLeftImage { margin-left: 4px; }

.RadMenu_rtl .rmGroup .rmLeftImage
{
	margin: 4px 6px 0 0;
}

* html .RadMenu .rmGroup .rmLeftImage { position: absolute; }
*+html .RadMenu .rmGroup .rmLeftImage { position: absolute; }

* html .RadMenu_rtl .rmGroup .rmLeftImage { right: 0; }
*+html .RadMenu_rtl .rmGroup .rmLeftImage { right: 0; }


/* <separators> */

.RadMenu .rmSeparator .rmText
{
	line-height: 0;
	font-size: 0;
	padding: 0;
	background-repeat: repeat-x;
	overflow: hidden;
}

.RadMenu .rmVertical .rmSeparator .rmText,
.RadMenu .rmHorizontal .rmVertical .rmSeparator .rmText
{
	height: auto;
	width: auto;
	padding-bottom: 2px;
}

*+html .RadMenu .rmSeparator .rmText,   /* IE7 separator height problem */
*+html .RadMenu .rmVertical .rmSeparator .rmText,
*+html .RadMenu .rmHorizontal .rmVertical .rmSeparator .rmText
{
	height: 2px;
	padding: 0;
}

* html .RadMenu .rmVertical .rmSeparator .rmText { height: auto; padding: 2px 0 0; }
* html .RadMenu .rmHorizontal .rmSeparator .rmText { padding: 0; }

.RadMenu .rmRootGroup .rmSeparator .rmText
{
	margin: 1px 12px;
}

.RadMenu .rmRootGroup .rmVertical .rmSeparator .rmText,
.RadMenu_Context .rmVertical .rmSeparator .rmText
{
	margin: 1px 2px 1px 31px;
}

.RadMenu_rtl .rmRootGroup .rmVertical .rmSeparator .rmText,
.RadMenu_Context_rtl .rmVertical .rmSeparator .rmText
{
	margin: 1px 31px 1px 2px;
}

.RadMenu .rmHorizontal .rmSeparator .rmText,
.RadMenu .rmVertical .rmHorizontal .rmSeparator .rmText
{
	margin: 2px 0 0;
	height: 20px;
	width: 2px;
}

/* </separators> */

/* <scroll arrows> */

.RadMenu .rmLeftArrow,
.RadMenu .rmRightArrow
{
	width: 10px;
	height: 24px;
}

.RadMenu .rmTopArrow,
.RadMenu .rmBottomArrow
{
	height: 10px;
	width: 100%;
}

/* </scroll arrows> */

/* </base styles> */
/* END Telerik.Web.UI.Skins.Menu.css */
/* START Telerik.Web.UI.Skins.Forest.Menu.Forest.css */
/* <RadMenu / Forest> */

.RadMenu_Forest .rmRootGroup,
.RadMenu_Forest .rmLink,
.RadMenu_Forest .rmText,
.RadMenu_Forest .rmLeftArrow,
.RadMenu_Forest .rmRightArrow,
.RadMenu_Forest .rmTopArrow,
.RadMenu_Forest .rmBottomArrow
{
	background-image: url('/WebResource.axd?d=xnUSvyCm21vmRZgqzNfe-07HgCdskRKqvx_GEk3cVH0qzDbHf4WK-rd0J05IPNkOKgXn5pswlBMZht6BMn9-oA2&t=633789558000000000');
	background-color: transparent;
}

.RadMenu_Forest .rmRootGroup
{
	border: 1px solid #588a4d;
	background-repeat: repeat-x;
	background-position: 0 0;
	background-color: #749f57;
}

.RadMenu_Forest .rmVertical
{
	background-position: 0 -408px;
}

/* <Root items> */

.RadMenu_Forest,
.RadMenu_Forest .rmLink
{
	font: normal 12px/23px "Segoe UI", Arial, sans-serif;
	color: #2b2c20;
	text-decoration: none;
}

.RadMenu_Forest .rmLink,
.RadMenu_Forest .rmText
{
	background-position: 0 1050px;
	background-repeat: no-repeat;
}

.RadMenu_Forest .rmLink:hover,
.RadMenu_Forest .rmFocused
{
	color: #7a1b05;
	background-position: 0 -72px;
}

.RadMenu_Forest .rmLink:hover .rmText,
.RadMenu_Forest .rmFocused .rmText
{
	background-position: 100% -96px;
}

.RadMenu_Forest .rmExpanded,
.RadMenu_Forest .rmExpanded:hover
{
	color: #fff;
	background-position: 0 -120px;
}

.RadMenu_Forest .rmExpanded .rmText,
.RadMenu_Forest .rmExpanded:hover .rmText
{
	background-position: 100% -144px;
}

.RadMenu_Forest .rmDisabled,
.RadMenu_Forest .rmDisabled:hover
{
	color: #b1c67f;
}  

.RadMenu_Forest .rmDisabled:hover,
.RadMenu_Forest .rmDisabled:hover .rmText
{
	background: none;
}

/* </Root items> */


/* <Submenu items> */

.RadMenu_Forest .rmGroup,
.RadMenu_Forest .rmGroup .rmVertical
{
	border: 1px solid #588a4d;
	background: #c7d6a7 url('/WebResource.axd?d=xnUSvyCm21vmRZgqzNfe-07HgCdskRKqvx_GEk3cVH0qzDbHf4WK-rd0J05IPNkOa67nFkr8tnpYE5DT8VzYzA2&t=633789558000000000') repeat-y 0 0;
}

.RadMenu_Forest .rmSlide .rmScrollWrap
{
	background-image: none;
}

.RadMenu_Forest_rtl .rmGroup,
.RadMenu_Forest_rtl .rmGroup .rmVertical
{
	background-position: 100% 0;
}

.RadMenu_Forest .rmRootGroup .rmHorizontal
{
	background-image: none;
}

.RadMenu_Forest .rmScrollWrap .rmVertical
{
	border: 0;
}

.RadMenu_Forest .rmGroup .rmFirst,
.RadMenu_Forest .rmGroup .rmLast
{
	background: none;
}

.RadMenu_Forest .rmGroup .rmLast
{
	padding-bottom: 1px;
}

.RadMenu_Forest .rmGroup .rmLink:hover,
.RadMenu_Forest .rmGroup .rmFocused,
.RadMenu_Forest .rmGroup .rmExpanded
{
	background-position: 0 -168px;
}

.RadMenu_Forest .rmGroup .rmLink:hover .rmText,
.RadMenu_Forest .rmGroup .rmFocused .rmText,
.RadMenu_Forest .rmGroup .rmExpanded .rmText
{
	background-position: 100% -192px;
}

.RadMenu_Forest .rmGroup .rmExpanded,
.RadMenu_Forest .rmGroup .rmExpanded:hover
{
	color: #7a1b05;
}

.RadMenu_Forest .rmGroup .rmDisabled,
.RadMenu_Forest .rmGroup .rmDisabled:hover
{
	color: #8c9f5f;
}

/* <expand arrows> */

.RadMenu_Forest .rmGroup .rmExpandRight,
.RadMenu_Forest .rmGroup .rmExpandDown
{
	background-position: 100% -216px;
}

.RadMenu_Forest .rmGroup .rmLink:hover .rmExpandRight,
.RadMenu_Forest .rmGroup .rmFocused .rmExpandRight,
.RadMenu_Forest .rmGroup .rmExpanded .rmExpandRight,
.RadMenu_Forest .rmGroup .rmLink:hover .rmExpandDown,
.RadMenu_Forest .rmGroup .rmFocused .rmExpandDown,
.RadMenu_Forest .rmGroup .rmExpanded .rmExpandDown
{
	background-position: 100% -240px;
}

.RadMenu_Forest .rmGroup .rmDisabled:hover .rmExpandRight,
.RadMenu_Forest .rmGroup .rmDisabled:hover .rmExpandDown
{
	background-image: url('/WebResource.axd?d=xnUSvyCm21vmRZgqzNfe-07HgCdskRKqvx_GEk3cVH0qzDbHf4WK-rd0J05IPNkOKgXn5pswlBMZht6BMn9-oA2&t=633789558000000000');
	background-position: 100% -216px;
}

/* </expand arrows> */

/* <rtl> */

.RadMenu_Forest_rtl .rmGroup .rmLink:hover,
.RadMenu_Forest_rtl .rmGroup .rmFocused,
.RadMenu_Forest_rtl .rmGroup .rmExpanded
{
	background-position: 100% -264px;
}

.RadMenu_Forest_rtl .rmGroup .rmLink:hover .rmText,
.RadMenu_Forest_rtl .rmGroup .rmFocused .rmText,
.RadMenu_Forest_rtl .rmGroup .rmExpanded .rmText
{
	background-position: 0 -288px;
}

.RadMenu_Forest_rtl .rmGroup .rmExpandLeft
{
	background-position: 0 -312px;
}

.RadMenu_Forest_rtl .rmGroup .rmLink:hover .rmExpandLeft,
.RadMenu_Forest_rtl .rmGroup .rmFocused .rmExpandLeft,
.RadMenu_Forest_rtl .rmGroup .rmExpanded .rmExpandLeft
{
	background-position: 0 -336px;
}

/* </rtl> */

/* </Submenu items> */

/* <Submenu offsets (Forest - specific, overlapping submenus)> */

.RadMenu_Forest .rmSlide
{
	margin: -3px 0 0 3px;
}

.RadMenu_Forest .rmVertical .rmSlide,
.RadMenu_Forest .rmSlide .rmSlide,
.RadMenu_Forest_Context .rmGroup .rmSlide
{
	margin: 0 0 0 -5px;
}

.RadMenu_Forest_rtl .rmSlide
{
	margin: -3px 0 0 -3px;
}

.RadMenu_Forest_rtl .rmVertical .rmSlide,
.RadMenu_Forest_rtl .rmSlide .rmSlide,
.RadMenu_Forest_Context_rtl .rmGroup .rmSlide
{
	margin: 0 0 0 5px;
}

/* </Submenu offsets> */

/* <Scrolling arrows> */

.RadMenu_Forest .rmLeftArrow,
.RadMenu_Forest .rmRightArrow
{
	background-color: #c7d6a7;
}

.RadMenu_Forest .rmLeftArrow { background-position: -8px -312px; border-right: 1px solid #588a4d; }
.RadMenu_Forest .rmRightArrow { background-position: -482px -216px; border-left: 1px solid #588a4d; }

.RadMenu_Forest .rmTopArrow,
.RadMenu_Forest .rmBottomArrow,
.RadMenu_Forest .rmGroup .rmLeftArrow,
.RadMenu_Forest .rmGroup .rmRightArrow
{
	background-color: #c7d6a7;
}

.RadMenu_Forest .rmTopArrow { background-position: 50% -367px; border-bottom: 1px solid #588a4d; }
.RadMenu_Forest .rmBottomArrow { background-position: 50% -391px; border-top: 1px solid #588a4d; }

/* </Scrolling arrows> */

/* <Separators> */

.RadMenu_Forest .rmVertical .rmSeparator .rmText,
.RadMenu_Forest .rmHorizontal .rmVertical .rmSeparator .rmText
{
	background-position: 0 -406px;
}

.RadMenu_Forest .rmHorizontal .rmSeparator .rmText,
.RadMenu_Forest .rmVertical .rmHorizontal .rmSeparator .rmText
{
	background-position: 0 -386px;
}

/* </Separators> */

/* </RadMenu / Forest> */
/* END Telerik.Web.UI.Skins.Forest.Menu.Forest.css */
/* START Telerik.Web.UI.Skins.Rotator.css */
/* new styles */
.RadRotator
{
	visibility:hidden; 	
}

.rrRelativeWrapper
{
	position: relative;
	margin:0 !important;/*MUST BE 0 for proper rendering*/
}

.rrClipRegion
{
	width: 100%;
	height: 100%;
	/* We change the width and height from the code, and then this setting becomes active! */
	overflow: hidden;
	position: absolute;
}

/*================== The list ========================*/

.rrClipRegion  .rrItemsList 
{
	float: left;
	padding: 0;
	margin: 0;
	list-style: none !important;          
}

.rrClipRegion  .rrItemsList li 
{ 
	float: left;
}

/* For vertical carousel, not set, width defaults to auto */
/* Note if you explicitly set width to auto, this might cause */
/* problems with Safari */

.RadRotator ul.rrVerticalList 
{
	padding: 0;
	margin: 0;
	list-style: none !important;
}

.RadRotator .rrVerticalList li
{ 
	float: none;
	margin-bottom: 0px;
	/* Force the LI to respect the HEIGHT specified */
	overflow: hidden;
	display: block;
}

.rrButton
{
	font-size: 1px;
	text-indent: -9999px;
	display: block;
	position: absolute;
	/*Button size is defined here, we use margins to position them too */
	height: 15px;
	width: 15px;
	line-height: 15px;
	/* Very important for the layout!*/	
	display: none; 
	outline: none;
}

.rrButton:hover
{
	filter: alpha(opacity=100);
	opacity: 1;
	-moz-opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.rrButton.rrButtonUp
{
	background-position: 0 0;
	top: -15px;
	left: 50%;
	margin-left: -8px;
}

.rrButton.rrButtonRight
{
	background-position: 0 -15px;
	margin-top: -8px;
	right: -16px;
	top: 50%;   
}

.rrButton.rrButtonDown
{
	background-position: 0 -30px;
	top:100%;
	left: 50%;
	margin-left: -8px;
	margin-top: 1px;
}

.rrButton.rrButtonLeft
{
	background-position: 0 -45px;
	margin-top: -7px;
	left: -15px;
	top: 50%;
}

.rrButton.rrButtonDisabled
{
	filter: alpha(opacity=20);
	opacity: .2;
	-moz-opacity: .2;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
}

.rrNoBorder .rrClipRegion
{
	border-width: 0px !important;
}

/* Needed because IE cannot position vertical LI items properly. In addition to this css, the UL's width needs to be EXPLICITLY set from code if IE or Safari */
html* .rrVerticalList li
{
	float: left !important;
}	
/* END Telerik.Web.UI.Skins.Rotator.css */
/* START Telerik.Web.UI.Skins.Default.Rotator.Default.css */
/* new styles */
.RadRotator_Default .rrClipRegion
{
	border: solid 1px #a7bac5;
}

/*================== The list ========================*/

.RadRotator_Default .rrClipRegion  .rrItemsList 
{
	float: left;
	padding: 0;
	margin: 0;
	list-style: none;          
}

/* For vertical carousel, not set, width defaults to auto */
/* Note if you explicitly set width to auto, this might cause */
/* problems with Safari */

.RadRotator_Default .rrButton
{
	background-image: url('/WebResource.axd?d=xnUSvyCm21vmRZgqzNfe-07HgCdskRKqvx_GEk3cVH3Nb1lIBHb3un0IJxitfB4auAmInVpZBPDJ8i7EDKIGoZF9upadlgfxJgbGlmAwji81&t=633789558000000000');
	background-repeat: no-repeat;
	/*Button size is defined here, we use margins to position them too */
	height: 20px;
	width: 20px;
	line-height: 20px;
	/* Very important for the layout!*/	
}

.RadRotator_Default .rrButton.rrButtonUp
{
	background-position: 0 0;
	top: -20px;
	left: 50%;
	margin-left: -10px;
}

.RadRotator_Default .rrButton.rrButtonUp:hover
{
	background-position: -20px 0;
}

.RadRotator_Default .rrButton.rrButtonRight
{
	background-position: 0 -20px;
	margin-top: -10px;
	right: -20px;
	top: 50%;   
}

.RadRotator_Default .rrButton.rrButtonRight:hover
{
	background-position: -20px -20px;
}

.RadRotator_Default .rrButton.rrButtonDown
{
	background-position: 0 -40px;
	top:100%;
	left: 50%;
	margin-left: -10px;
}

.RadRotator_Default .rrButton.rrButtonDown:hover
{
	background-position: -20px -40px;
}

.RadRotator_Default .rrButton.rrButtonLeft
{
	background-position: 0 -60px;
	margin-top: -7px;
	left: -15px;
	top: 50%;
}

.RadRotator_Default .rrButton.rrButtonLeft:hover
{
	background-position: -20px -60px;
}

.RadRotator_Default .rrButton.rrButtonDisabled
{
	filter: alpha(opacity=20);
	opacity: .2;
	-moz-opacity: .2;
}
/* END Telerik.Web.UI.Skins.Default.Rotator.Default.css */
