/*

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 100%;
}

*+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> */


.RadTreeView_EPM,
.RadTreeView_EPM a.rtIn,
.RadTreeView_EPM .rtEdit .rtIn input
{
	color: #1e395b;
	font: 1.00em/18px "Segoe UI", Arial, sans-serif;
}

.RadTreeView_EPM .rtPlus, 
.RadTreeView_EPM .rtMinus
{
	background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/TreeView/PlusMinus.png');
}

.RadTreeView_EPM .rtChecked,
.RadTreeView_EPM .rtUnchecked,
.RadTreeView_EPM .rtIndeterminate
{
	background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/TreeView/TriState.png');
}

.RadTreeView_EPM .rtHover .rtIn
{
	border: 1px solid #bdd9fb;
}

.RadTreeView_EPM .rtSelected .rtIn
{
	border: 1px solid #8fb0d6;
}

.RadTreeView_EPM .rtHover .rtIn
{
	background-color: #edf5fd;
	background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/TreeView/ItemHoveredBg.png');
}

.RadTreeView_EPM .rtSelected .rtIn
{
	background-color: #c4ddfc;
	background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/TreeView/ItemSelectedBg.png');
}

.RadTreeView_EPM .rtSelected .rtLoadingBefore,
.RadTreeView_EPM .rtSelected .rtLoadingAfter,
.RadTreeView_EPM .rtSelected .rtLoadingBelow
{
	color: #1e395b;
}

.RadTreeView_EPM .rtLI .rtEdit .rtIn
{
	border-color: #99defd;
	background: #fff;
}

.RadTreeView_EPM_disabled .rtIn,
.RadTreeView_EPM .rtDisabled .rtIn
{
	color: #ccc;
}
/***** RadTreeView OverRides *****/
/*.RadTreeView_HrsaTheme,
.RadTreeView_HrsaTheme a.rtIn,
.RadTreeView_HrsaTheme .rtEdit .rtIn input
{
	color: #1e395b;
	font: 12px/18px "Segoe UI", Arial, sans-serif;
}

.RadTreeView_HrsaTheme .rtPlus, 
.RadTreeView_HrsaTheme .rtMinus
{
	background-image: url('./Platform/Include/Skins/EPM/TreeView/PlusMinus.png');
}

.RadTreeView_HrsaTheme .rtChecked,
.RadTreeView_HrsaTheme .rtUnchecked,
.RadTreeView_HrsaTheme .rtIndeterminate
{
	background-image: url('./Platform/Include/Skins/EPM/TreeView/TriState.png');
}

.RadTreeView_HrsaTheme .rtHover .rtIn
{
	border: 1px solid #bdd9fb;
}

.RadTreeView_HrsaTheme .rtSelected .rtIn
{
	border: 1px solid #8fb0d6;
}

.RadTreeView_HrsaTheme .rtHover .rtIn
{
	background-color: #edf5fd;
	background-image: url('./Platform/Include/Skins/EPM/TreeView/ItemHoveredBg.png');
}

.RadTreeView_HrsaTheme .rtSelected .rtIn
{
	background-color: #c4ddfc;
	background-image: url('./Platform/Include/Skins/EPM/TreeView/ItemSelectedBg.png');
}

.RadTreeView_HrsaTheme .rtSelected .rtLoadingBefore,
.RadTreeView_HrsaTheme .rtSelected .rtLoadingAfter,
.RadTreeView_HrsaTheme .rtSelected .rtLoadingBelow
{
	color: #1e395b;
}

.RadTreeView_HrsaTheme .rtLI .rtEdit .rtIn
{
	border-color: #99defd;
	background: #fff;
}

.RadTreeView_HrsaTheme_disabled .rtIn,
.RadTreeView_HrsaTheme .rtDisabled .rtIn
{
	color: #ccc;
}

/*** Custom ***/

/*.RadTreeView_HrsaTheme .rtTop
{
	background-position: 0 -3449px !important;
	background-image:url("./Platform/Include/Skins/EPM/Images/hrsa_theme_sprite_01.png");
	background-repeat:repeat-x !important;
	
}*/

/*.RadTreeView_HrsaTheme .MenuOption
{
	background-position: 0 -3449px !important;
	background-image:url("./Platform/Include/Skins/EPM/Images/hrsa_theme_sprite_01.png");
	background-repeat:repeat-x !important;
	border-bottom: 2px solid #D4D3BE;
	color: #3d3c21;
	font-weight:bold;
	padding: 6px 73% 6px 10px;
}

.RadTreeView_HrsaTheme .MenuOption:hover
{
	background-position: 0 -3449px !important;
	background-image:url("./Platform/Include/Skins/EPM/Images/hrsa_theme_sprite_01.png");
	background-repeat:repeat-x !important;
	border:0px;
	color: #3d3c21;
	font-weight:bold;
	padding: 6px 73% 8px 10px;
}

.RadTreeView_HrsaTheme .rtBot .rtMinus,
.RadTreeView_HrsaTheme .rtMid .rtMinus,
.RadTreeView_HrsaTheme .rtTop .rtMinus
{
	background-image:none;	
}

.RadTreeView_HrsaTheme .rtPlus,
.RadTreeView_HrsaTheme .rtMinus
{
	background-image:url("./Platform/Include/Skins/EPM/images/hrsa_theme_sprite_01.png") !important;
	
}
.RadTreeView_HrsaTheme .rtPlus
{
	background-position:99% -3199px !important;
	position:relative;
	left:170px !important;
}

.RadTreeView_HrsaTheme .rtMinus
{
	background-position:99% -3038px !important;
	position:relative;
	left:170px !important;
}

.RadTreeView_HrsaTheme .ListTitle
{
	color:#111111;
	font-weight:bold;	
	background-image: none;
}

.RadTreeView_HrsaTheme .rtLines .rtLI .rtUL .rtBot .rtMinus,
.RadTreeView_HrsaTheme .rtLines .rtLI .rtUL .rtTop .rtMinus
{
	background-image: none !important;	
}

.RadTreeView_HrsaTheme .rtUL .rtLI .rtUL
{
	padding-left:10px;	
	background-image:none;
}

.RadTreeView_HrsaTheme .rtSelected .rtIn
{
	/*background-position: 0 -3449px !important;
	/*background-image:url("./Platform/Include/Skins/EPM/Images/hrsa_theme_sprite_01.png");
	background-repeat:repeat-x !important;
	border-bottom: 2px solid #D4D3BE;
	color: #3d3c21;
	font-weight:bold;
	padding: 7px 73% 7px 10px;
	background-image: none;
	border:0px;
	background-color:inherit;
	border:1px solid #8fb0d6;
	border-left:3px solid #8fb0d6;
	background-color:#e2effd;
	padding:2px 0px 2px 7px;
	margin-top:-2px;
	margin-left:-10px;
	color:#660000;
	font-weight:bold;*/
/*}

.RadTreeView .rtSelected .rtIn
{

	
	color: #3d3c21;
	font-weight:bold;
	padding: 6px 73% 6px 10px;
	background-image: url("./Platform/Include/Skins/EPM/Images/hrsa_theme_sprite_01.png") !important;
	background-position:0 -3449px !important;
	background-repeat:repeat-x !important;
			
}
.RadTreeView_HrsaTheme .rtSelected .rtIn
{
	/*border:0px solid Transparent !important;*/
	/*border-right:0px solid Transparent !important;
	border-left:0px solid Transparent !important;
	border-top:0px solid Transparent !important;
}

.RadTreeView_HrsaTheme a.rtIn 
{
	color:#006699;
}

.RadTreeView_HrsaTheme .rtIn
{
	font-family: Arial !important;
}

.RadTreeView_HrsaTheme .rtTop,
.RadTreeView_HrsaTheme .rtMid, 
.RadTreeView_HrsaTheme .rtBot
{
	padding-left:0px;
	padding-top:4px;
}

.RadTreeView_HrsaTheme
{
	border:1px solid #d4d3be;
	border-bottom:3px solid #d4d3be;
	width:170px;
	overflow: hidden;
}
.RadTreeView_HrsaTheme .rtHover .rtIn
{
	background-color:#e2effd;
	padding-right:100%;	
}

.RadTreeView_HrsaTheme .rtSelectedLine, .RadTreeView_HrsaTheme .rtSelectedLine:hover
{
	border:1px solid #8fb0d6;
	border-left:3px solid #8fb0d6;
	background-color:#e2effd;
	padding:2px 100% 2px 7px;
	margin-top:-2px;
	margin-left:-10px;
	color:#660000 !important;
	font-weight:bold !important;
}

/*** Customized Solution Nav ***/

ul.customNav
{
	padding-left:0px;
	border:1px solid #d4d3be;
	border-bottom:3px solid #d4d3be;
	width:168px;
}

ul.customNav,
.customNav ul li
{
	list-style:none;
	padding-bottom:1px;
	padding-top:1px;
}
ul.customNav ul
{
	padding-left:25px;
	padding-bottom:2px;
	padding-top:2px;
}
.NavTitle
{
	
	line-height:24px;
	padding-left:10px;
	font-weight:bold;
	color:#3d3c21;
	margin-bottom:2px;
	border-bottom: 2px solid #d4d3be;
	background-image:url("./Platform/Include/Skins/EPM/images/hrsa_theme_sprite_01.png");
	background-position:0 -3449px;
	background-repeat: repeat-x;
	cursor: pointer;
}
.Expanded, Expanded:hover, a.Expanded, a.Expanded:hover
{
	color:#3d3c21;
	text-decoration:none;
}
.NavArrow 
{
	position:relative;
	float:right;
	right:-10px;
	top:8px;
}
a.NavArrow 
{
	background-image:url("./Platform/Include/Skins/EPM/images/hrsa_theme_sprite_01.png");
	background-position:99% -3035px;
	background-repeat:no-repeat;
}
a.NavArrow:hover, a.NavArrow:focus, a.Expanded:hover, a.Expanded:focus, NavTitle a:hover, NavTitle a:focus
{
	border:0px dotted #000000
}
.NavTop
{
	font-weight:bold;
	color:#3d3c21;
	margin-left:-10px;
}

.customNav ul a:hover
{
	padding-left:10px;
	margin-left:-10px;
	background-color:#e2effd;
	color:#660000;
	padding-top:1px;
	padding-bottom:1px;
}
.customNav ul a:focus
{
	border:0px solid Transparent;	
}

.customNav ul a.selected
{
	border:1px solid #8fb0d6;
	border-left:3px solid #8fb0d6;
	background-color:#e2effd;
	padding:1px 0px 1px 7px;
	margin-top:-2px;
	margin-left:-10px;
	color:#660000;
	font-weight:bold;
	
	width:100%;
}
.customNav a
{
	text-decoration:none;
	display:block;
	width:143px;
	padding: 1px 0 1px 0;
}
.customNav .NavIcon
{
	padding-right:5px;
	margin-top:-2px;
}

.customNav .NavArrowUp
{
	background-image:url("./Platform/Include/Skins/EPM/images/nav_arrow_up.png");
	background-position: 0 0;
	position:relative;
	left:5px;
	width:10px;
	height:10px;
	top:8px;
	float:right;
}
.customNav .NavArrowDown
{
	background-image:url("./Platform/Include/Skins/EPM/images/nav_arrow_down.png");
	background-position: 0 0;
	position:relative;
	left:5px;
	width:10px;
	height:10px;
	top:8px;
	display:inline-block;
	float:right;
}





/* RadEditor for ASP.NET AJAX Base Stylesheet */

/* MVC overrides */
.RadEditor table,
.RadEditor.reWrapper table td
{
	border:0;
	padding:0;
}

/* PFM-1971 : Fix by Jose Kurian to fix the styling issues of RichTextBox User control { */
.RadEditor table
{
    width:auto !important;  
}

.reToolZone table
{
    width:100% !important;  
}

/* } PFM-1971 */

/* RadFormDecorator integration */
* html .rfdTable .reWrapper table td
{
	padding: 0;
}

/* By default 'regular' background should be white*/
.reDropDownBody
{
    background-color: #fff;
}

/* In FireFox iframes have transparent background */
.reContentCell, .reContentCell iframe
{
    background-color: #fff;
}

/* Class for the toolbar holder */
.RadEditor.reWrapper .reToolCell
{
	vertical-align: top; /* Needed to position the toolbar wrapper at the top - and then set margin to it! */    
	padding-bottom: 1px;
}
/* this specifyes necessary padding for all browsers excepr IE6, IE7 */
*|html .RadEditor.reWrapper .reToolCell
{
	padding-bottom: 0;
}

/* Align the Bottom zone with the Statistics module to the right */
.reBottomZone
{     
    text-align: right;
    vertical-align: bottom;
}

.reToolbarWrapper
{
    margin-top: 0;
}

.reToolbar
{
	padding: 0 !important; /* Reset CSS */
	margin: 0 0 1px 0 !important; /* Reset CSS */
	list-style: none !important; /* Reset CSS */
	float: left;
}

.reToolbar li
{
    padding: 0 !important; /* Reset CSS */
	margin: 0 !important; /* Reset CSS */
	list-style: none !important; /* Reset CSS */
	float: left;
    background-repeat: repeat-x;
    height: 26px;
}

.reToolbar
{    
    margin-bottom: 2px;
}

.reToolbar a,
.reDropdown,
.reSpinBox input,
.RadEditor input,
.reModule,
.reModule td,
.reEditorModes a,
.reDropDownBody,
.reDropDownBody td,
.reAjaxspell_wrapper,
.reAjaxspell_button,
.reAjaxspell_addicon,
.reAjaxspell_ignoreicon,
.reAjaxspell_okicon,
.reInsertTable .reTlbVertical ul a.reTool_text span.reButton_text,
.reColorPicker .reCustomColor
{
    font: normal 1.00em "Segoe UI", Arial, Sans-serif;
    color: #000;
    text-decoration: none;
	cursor: default;
}

/* ajax spellcheck */
.reAjaxspell_button
{
    white-space: nowrap;
}

.reAjaxspell_addicon,
.reAjaxspell_ignoreicon,
.reAjaxspell_okicon
{
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 0;
    margin: 2px 4px 2px 2px;
    /* Cheap fix PFM-2838 background-image: url('WebResource.axd?d=WOdHnGFZIPdN_ufd311vz911J2yeO62bedcaKf-eoLGu4zuDzTbnXIQdtX3dgIDb-kKGpP3ZIR9U22bBDpumW5UDH3OWg8D4vPnRZ4V4yZyaxQWCbHbk_8PxhgTkSdUSnicBQ2EvO_PsW5CXQN-NLNilyx01&t=634145324660000000'); */
    background-image: url('Platform/Include/Skins/EPM/Images/Telerik/Editor/CommonIcons.gif');     
    background-repeat: no-repeat;
}

.reAjaxspell_ignoreicon
{
    background-position: center -103px;
}

.reAjaxspell_okicon
{
    background-position: center -134px;
}

.reAjaxspell_addicon
{
    background-position: center -166px;
}

.reAjaxSpellCheckSuggestions td
{
    width: 100%;
    padding-left: 4px;
}

.reAjaxSpellCheckSeparator
{
    font-size: 1px;
    height: 1px;
    margin: 2px 1px;
}

.reAjaxSpellCheck
{
    padding: 2px;
}
/* end of ajax spellcheck */

.RadEditor .reTextarea
{
    font-size: 0.92em;
}

/* separator */
.reToolbar .reSeparator
{
    width: 6px;
    height: 26px;
    font-size: 1px;
}
/* separator */

/* grip */
.reToolbar .reGrip
{
	height: 26px;
	width: 4px;
	font-size: 1px;
	background-repeat: no-repeat;
}

.reToolbar .grip_first
{
    background-position: 0 0;
}

.reToolbar .grip_last
{
    background-position: -4px 0;
}
/* end of grip grip */

.reAlignmentSelector div
{
    background-image: url('WebResource.axd?d=awAvEbHO3Dhzfa5OMdF7uGP-SdMOz2dg8Pma2JgYUahYzXLEJfhjVbmfmzLmjwnPoR4wVTv05NNRNCDXxlOS21LVDf6iWQzMS8PxlJWWUK3EfQla7f_LNGtoAflKZY5-ZwJdbjtTqFlDy5H-ahRVNKz74izUl89Q6cES9KT-C6BAvo5J0&t=634145324660000000');
    height: 20px;
}

/* reTool */
.reTool,
.reTool:link,
.reTool:visited
{
    display: block;
    width: 24px;
    height: 24px;
    margin: 1px 0; /* was: margin: 1px; */
    text-decoration: none !important;
    cursor: default;
}

.reTool span
{
    display: block;
    float: left;
    width: 18px;
    height: 18px;
    line-height: 18px;
    margin: 3px;
    cursor: default;
    _display: inline;
    background-repeat: no-repeat;
}
/* end of reTool */

/* reTool_text */
.reToolbar .reTool_text
{
    height: 24px;
    width: auto;
    display: block;
    margin: 1px;
    text-decoration: none;
    cursor: default;
    float: left;
    _display: inline;
}

.reToolbar .reTool_text span
{
    background-repeat: no-repeat;
    display: block;
    float: left;
    width: 18px;
    height: 18px;
    line-height: 18px;
    margin: 3px;
    cursor: default;
    _display: inline;
}

/* PFM- 1971 Fix by Jose Kurian. Removed text-indent:-9999px */
.reToolbar .reTool_text .reButton_text
{
    width: auto;
    background-image: none !important;
    color: black;
}
/* end of reTool_text */

/* reSplitButton */
.reSplitButton,
.reSplitButton:link,
.reSplitButton:visited
{
    width: 34px; /* was: 36px */
    height: 24px;
    text-decoration: none !important;
}

* html .RadEditor .reSplitButton
{
    _display: inline-block;
}

.reTool .split_arrow
{
    width: 5px;
    height: 18px;
    margin-left: 1px;
}

.reSplitButton.reTool_text .split_arrow
{
    width: 5px;
    height: 18px;
}

* html .reToolbar .reTool_text .split_arrow
{
    width: 5px;
    height: 18px;
}

.reDialog .reTool.reSplitButton,
.reModule .reTool.reSplitButton
{
    background-repeat: no-repeat;
}
/* end of reSplitButton */

/* reDropdown */
.reToolbar a
{
    text-decoration: none !important;
}

.reDropdown,
.reTool_disabled.reDropdown:hover
{
    display: block;
    float: left;
    cursor: default;
    background-repeat: no-repeat !important;
    padding-left: 4px;
    padding-right: 10px;
    margin: 0; /* was: margin: 2px 1px 0 1px; */
    margin: 2px 0;
}

.reDropdown span
{
    display: block;
    width: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 20px;
}
/* end of reDropdown */

/* vertical toolbar */
.reTlbVertical ul.reToolbar
{
    float: none;
    clear: both;
    width: 26px;
    height: auto;
}

/* PFM-1971  Commented font-size: 1px !important; to display text properly for Paste dropdown menu */
.reTlbVertical li
{
    clear: both;
    float: none;
    margin: 0 !important; /* Reset CSS */
    /*font-size: 1px !important;  Reset CSS */
    padding: 0 !important; /* Reset CSS */
    line-height: 1px !important; /* Reset CSS */
}

.reTlbVertical .reGrip
{
    width: 26px;
    height: 4px;
    font-size: 1px !important; /* Reset CSS */
    line-height: 1px !important; /* Reset CSS */
    background-repeat: no-repeat;
}

.reTlbVertical .reTool
{
    margin-top: 0;
    margin-bottom: 0;
}

.reTlbVertical .reSeparator
{
    width: 26px;
    height: 4px;
    line-height: 1px;
    font-size: 1px;
}

.reTlbVertical .reTool:hover,
.reTlbVertical .reTool_text.reSplitButton:hover,
.reTlbVertical .reTool_text:hover
{
    background-repeat: no-repeat;
}

.reTlbVertical .reTool.reTool_selected,
.reTlbVertical .reTool_text.reTool_selected,
.reTlbVertical .reTool_text.reTool_selected:hover
{
    background-repeat: no-repeat;
}

.reTlbVertical .reTool_text,
.reTlbVertical .reSplitButton
{
    width: 24px;
    height: 24px;
}

.reTlbVertical .reTool_text .reButton_text
{
	display: none;
}

.reTlbVertical .split_arrow,
.reTlbVertical .reDropdown span,
.reTlbVertical .reTool_text.reSplitButton .reButton_text,
.reTlbVertical .reTool_text.reSplitButton .split_arrow
{
    display: none;
}

/* add weight to the selector for IE6 so it is applied */
*html .reToolbar .reSplitButton.reTool_disabled:hover
{
    background-position: -999px 0;
}

.reTlbVertical .reDropdown,
.reTlbVertical .reDropdown:hover
{
    height: 20px;
    width: 22px;
    padding-right: 0;
    padding-left: 0;
    margin-right: 0;
}

* html .reTlbVertical .reDropdown,
* html .reTlbVertical .reDropdown:hover
{
    width: 21px;
}

.reTlbVertical .reTool,
.reTlbVertical .reDropdown
{
    margin-left: 1px;
}
/* end of vertical toolbar */

/* context menu and toolstrip */
.reDropDownBody
{
    float: left;
    /*_background: none;/* IE6 does not support transparent png and it looks ugly */
}

.reDropDownBody .reTlbVertical ul li
{
    clear: both;
    float: none;
    background: none !important;
}

/* reDropDownBody */
.reDropDownBody .reTlbVertical ul li a,
.reDropDownBody .reTlbVertical ul li .reTool_disabled:hover
{
    clear: both;
    float: none;
    width: 100%;
    display: block;
    border: 0;
    background: none;
}

.reDropDownBody .reTlbVertical ul li a:hover
{
    background-repeat: no-repeat;
    border: 0;
    margin-left: 1px;
    margin-right: 1px;
}

/* IE6 float and double margins fix */
* html .reDropDownBody .reTlbVertical ul li .reTool_disabled:hover
{
    margin-left: 0;
}

div.RadEditor td.reTlbVertical ul.reToolbar
{
    width: 26px !important;
}

.reDropDownBody .reTlbVertical ul li .reButton_text
{
    width: 156px !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 8px;
    _zoom: 1;
	display: block;
}

.reDropDownBody div.reTlbVertical
{
    float: left;
    height: auto;
}

.reDropDownBody .reTlbVertical .reToolbar
{
    width: 206px;
    background-repeat: repeat-y;
}
/* reDropDownBody */

/* custom links */
.reCustomLinks,
.reCustomLinks ul,
.reCustomLinks li
{
	list-style: none !important; /* Reset CSS */
	padding: 0 !important; /* Reset CSS */
	margin: 0 !important; /* Reset CSS */
	cursor: default !important; /* Reset CSS */
}

ul.reCustomLinks
{
    margin-left: 3px !important; /* Reset CSS */
}

ul.reCustomLinks li ul
{
	margin-left: 12px !important; /* Reset CSS */
}

ul.reCustomLinks a
{
    text-decoration: undeline !important; /* Reset CSS */
}

ul.reCustomLinks a:hover
{
    cursor: pointer !important; /* Reset CSS */
}

ul.reCustomLinks li
{
	clear: both;
	float: none;
}

ul.reCustomLinks span,
ul.reCustomLinks a
{
	display: block;
	float: left;
	cursor: default;
	zoom: 1;
}

ul.reCustomLinks .reCustomLinksIcon
{
	font-size: 1px !important; /* Reset CSS */
}

ul.reCustomLinks .reCustomLinksIcon.reIcon_empty
{
	cursor: default;
}

ul.reCustomLinks li
{
	padding: 1px 0 !important; /* Reset CSS */
}

ul.reCustomLinks span,
ul.reCustomLinks a
{
	padding-left: 1px !important; /* Reset CSS */
	padding-right: 1px !important; /* Reset CSS */
	cursor: default;
}

ul.reCustomLinks .reCustomLinksIcon
{
	width: 9px;
	height: 9px;
	padding: 0 !important; /* Reset CSS */
	background-image: url('WebResource.axd?d=Dbk0YnsgR-hJIpcIJpQhzgClZdZFQYOtO3eEpynRTHajKQRXTjItuMONtT9OyFUqa2j5f9cPMPiuJXtA2toZtBRDiHOjiY4bR7b7VZXt64UK6A03jgvLQUcojDxZA_BnXNk32jptZhSBhESMVvteOlZh2rRe5Q6ndgINLC11Dmsdceqs0&t=634145324660000000');
	background-repeat: no-repeat;
	margin: 2px 4px 0 0 !important; /* Reset CSS */
}

ul.reCustomLinks span
{
    margin-top: 0;
}

ul.reCustomLinks .reCustomLinksIcon.reIcon_plus
{
	background-position: 0 0;
}

ul.reCustomLinks .reCustomLinksIcon.reIcon_minus
{
	background-position: -9px 0;
}

ul.reCustomLinks .reCustomLinksIcon.reIcon_empty
{
	background: none;
}
/* end of custom links */

/* spinbox */
table.reSpinBox
{
	border-collapse: collapse;
	cursor: text;
}

table.reSpinBox td
{
	padding: 0 !important; /* Reset CSS */
}

.reSpinBox input
{
	border: 0 !important;
	background: none transparent;
	width: 30px;
	height: 16px;
	text-align: right;
	cursor: text;
	padding: 0;
}

* html .reSpinBox input,
*+html .reSpinBox input
{
    width: 30px;
}

.reSpinBox a
{
	display: block;
	font-size: 1px !important; /* Reset CSS */
	text-indent: -9999px;
	width: 11px;
	height: 10px;
	cursor: default;
	background-repeat: no-repeat;
}
/* end of spinbox */

/* editor input elements */
.RadEditor input
{
	cursor: text;
}
/* editor input elements */

/* module */
.reModule
{
	border-collapse: collapse !important; /* Reset CSS */
}

td.reModuleLabel
{
    vertical-align: middle !important; /* Reset CSS */
    text-align: right !important; /* Reset CSS */
    padding-left: 6px !important; /* Reset CSS */
    padding-right: 3px !important; /* Reset CSS */
}

td.reModuleText .reEllipsisText
{
	max-width: 110px;
	_width: 110px;
	text-overflow: ellipsis;
	overflow: hidden;
	display: block;
	white-space: nowrap;
	float: right;
}

.reModule .reDropdown,
.reModule .reTool, 
.reModule .reSplitButton
{
    margin: 1px 0 0 0 !important; /* Reset CSS */
}
/* end of module */

/* editing modes */
.reEditorModes
{
    float: left;
    padding: 1px 0 1px 0 !important; /* Reset CSS */
}

.reEditorModes ul,
.reEditorModes li
{
    padding: 0 !important; /* Reset CSS */
    margin: 0 !important; /* Reset CSS */
    list-style: none !important; /* Reset CSS */
}

.reEditorModes li
{
    float: left !important; /* Reset CSS */
}

.reEditorModes a,
.reEditorModes span
{
    display: block;
    cursor: hand;
}

.reEditorModes a
{
    width: 76px;
}

.reEditorModes span
{
    line-height: 22px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 22px;
    margin: 0 3px;
    /* Cheap fix PFM-2838 background-image: url('WebResource.axd?d=WOdHnGFZIPdN_ufd311vz911J2yeO62bedcaKf-eoLGu4zuDzTbnXIQdtX3dgIDb-kKGpP3ZIR9U22bBDpumW5UDH3OWg8D4vPnRZ4V4yZyaxQWCbHbk_8PxhgTkSdUSnicBQ2EvO_PsW5CXQN-NLNilyx01&t=634145324660000000'); */
    background-image: url('Platform/Include/Skins/EPM/Images/Telerik/Editor/CommonIcons.gif');     
    background-repeat: no-repeat;
}

.reMode_selected
{
    background-repeat: no-repeat;
}

.reMode_design span,
.reMode_selected.reMode_design span
{
	background-position: -6px -5px;
}

.reMode_html span,
.reMode_selected.reMode_html span
{
	background-position: -6px -36px;
}

.reMode_preview span,
.reMode_selected.reMode_preview span
{
	background-position: -6px -69px;
}
/* end of editing modes */

/* reWrapper */
.reWrapper_corner,
.reWrapper_center,
.reLeftVerticalSide,
.reRightVerticalSide
{
    font-size: 1px;
    line-height: 1px;
}

/*.reWrapper_corner,-> do not set it, because this requires the layout paddings to be further adjusted in other elements*/
.reLeftVerticalSide,
.reRightVerticalSide
{
     padding: 1px; 
}

/* end of reWrapper */

/* DOM inspector */
.reModule_domlink
{
    text-decoration: none;
    font-size: 0.92em;
}
/* end of DOM inspector */

/* color picker */
.reColorPicker
{
	-moz-user-select: none;
	padding: 4px;
}

.reColorPicker table
{
	border-collapse: collapse;
	border: 0 !important;
	background: transparent !important;
}

.reColorPicker table td
{
	border: 0;
}

.reColorPicker .reColorPickerFooter
{
	overflow: hidden;
}

.reColorPicker span
{
	display: block;
	text-align: center;
	float: left;
	cursor: default;
}

.reColorPicker table div
{
	width: 11px; 
	height: 11px; 
	line-height: 11px; 
	font-size: 1px;
}

.reColorPicker table td
{
	padding: 2px;
	padding-bottom: 0;
	padding-top: 0;
}

.reDropDownBody.reColorPicker table td.reItemOver
{
	border: 0 !important;
	background: transparent !important;
}

.reColorPicker .reColorPickerFooter
{
	margin:0 auto;
	height: 22px;
	height: 18px;
	width: 166px;
	padding:4px 0;
}

.reColorPicker span
{
	width: 82px;
	height: 20px;
	line-height: 18px;
}

.reColorPicker .reColorPickerFooter .reDarkColor
{
	background: black;
	color: white;
	border-right:0;
}

.reColorPicker .reColorPickerFooter .reLightColor
{
	background: white;
	color: black;
	border-left:0;
}

.reColorPicker .reCustomColor:hover
{
    text-decoration: underline;
}
/* end of color picker */

/* insert symbol */
.reInsertSymbol td
{
    text-align: center;
    vertical-align: middle;
}
/* insert symbol */

/* insert table dropdown */
.reInsertTable
{
    padding: 1px !important; /* Reset CSS */
}

.reInsertTable table
{
    width: 120px;
    border: 0 !important;
    margin-left: 2px;
}

.reInsertTable table a span
{
    text-decoration: none;
}

.reInsertTable table td
{
   font-size: 1px;
}

.reInsertTable table td div
{
    height: 13px;
    width: 13px;
}

.reInsertTable .reTlbVertical
{
    border-width: 0 !important;
}

.reInsertTable .reTlbVertical ul
{
    padding: 0 !important; /* Reset CSS */
    margin: 0 !important; /* Reset CSS */
    list-style: none !important; /* Reset CSS */
    background-image: none !important; /* Reset CSS */
}

.reInsertTable div.reTlbVertical ul li a.reTool_text,
.reInsertTable div.reTlbVertical ul li a.reTool_text:hover
{
    background-image: url('WebResource.axd?d=awAvEbHO3Dhzfa5OMdF7uGP-SdMOz2dg8Pma2JgYUahYzXLEJfhjVbmfmzLmjwnPoR4wVTv05NNRNCDXxlOS21LVDf6iWQzMS8PxlJWWUK3EfQla7f_LNGtoAflKZY5-ZwJdbjtTqFlDy5H-ahRVNKz74izUl89Q6cES9KT-C6BAvo5J0&t=634145324660000000');
    background-position: -3575 center;
    margin-top: 1px;  
    margin-left: 3px;  
}

.reInsertTable .reTlbVertical ul .reTool_text
{
    text-decoration: none;
    margin: 1px;
}

.reInsertTable .reTlbVertical ul .reTool_text:hover
{
    text-decoration: underline;
}

.reInsertTable .reTlbVertical ul .reTool_text span
{
    height: 18px !important;
    width: 18px !important;
    display: block;
    float: left;
    margin-top: 1px; 
}

.reInsertTable .reTlbVertical ul a.reTool_text span.reButton_text
{
    height: 18px;
    line-height: 18px;
    display: block;
    float: left;
    width: 100px !important;
    background-image: none;
    text-align: center;
}

.reInsertTable .reToolbar
{
    background-image: none !important;
}

.reInsertTable .reToolbar li
{
    clear: none !important;
    float: left !important;
    width: 24px;
}

.reInsertTable .reToolbar li .reTool
{
    width: 24px !important;
    height: 24px;
    margin: 0 !important;
}
/* end of insert table dropdown */

.reDropDownBody
{
    overflow-y: auto;
    overflow-x: hidden;
}

/* resize cell */
.reResizeCell div
{
    background-repeat: no-repeat;
    height: 17px;/*Helps align it with the statistics module*/
    width: 16px;
}

.reAccessibleTool
{
    background-image: url('WebResource.axd?d=awAvEbHO3Dhzfa5OMdF7uGP-SdMOz2dg8Pma2JgYUahYzXLEJfhjVbmfmzLmjwnPoR4wVTv05NNRNCDXxlOS21LVDf6iWQzMS8PxlJWWUK3EfQla7f_LNGtoAflKZY5-ZwJdbjtTqFlDy5H-ahRVNKz74izUl89Q6cES9KT-C6BAvo5J0&t=634145324660000000');
    background-repeat: no-repeat;
    background-color: transparent !important;
    width: 22px;
    height: 22px;
    margin-top: 2px !important;
    margin: 1px;
    cursor:pointer !important;
    cursor:default !important;
}

/* editor commands begin */
.CustomDialog
{
	background-position: -1448px center;
}

.FormatCodeBlock
{
	background-position: -305px center;
}

.PageProperties
{
	background-position: -756px center;
}

.SetImageProperties
{
	background-position: -1116px center;
}

.BringToFront
{
	background-position: -1606px center;
}

.AlignmentSelector
{	
	background-position: -1647px center;
}

.Cancel
{
	background-position: -1265px center;
}

.Custom,
.ViewHtml
{
	background-position: -1296px center;
}

.DecreaseSize
{
	background-position: -1886px center;
}

.DeleteTable
{
	background-position: -1445px center;
}

.FileOpen
{
	background-position: -1967px center;
}

.IncreaseSize
{
	background-position: -2046px center;
}

.InsertAnchor
{
	background-position: -2086px center;
}

.InsertEmailLink
{
	background-position: -2246px center;
}

.InsertFormImageButton
{
	background-position: -2486px center;
}

.ModuleManager
{
	background-position: -2376px center;
}

.RepeatLastCommand
{
	background-position: -3248px center;
}

.SendToBack
{
	background-position: -3326px center;
}

.FormatStripper
{
	background-position: -2586px center;
}

.StyleBuilder
{
	background-position: -2946px center;
}

.ToggleFloatingToolbar
{
	background-position: -2974px center;
}

.XhtmlValidator
{
	background-position: -2526px center;
}

.TrackChangesDialog
{
	background-position: -2555px center;
}

.InsertSymbol
{
	background-position: -2196px center;
}

.InsertFormHidden
{
	background-position: -1836px center;
}

.InsertFormButton,
.InsertFormReset,
.InsertFormSubmit
{
	background-position: -1716px center;
}

.InsertFormCheckbox
{
	background-position: -1745px center;
}

.InsertFormPassword
{
	background-position: -1896px center;
}

.InsertFormRadio
{
	background-position: -1926px center;
}

.InsertFormSelect
{
	background-position: -3546px center;
}

.InsertFormTextarea
{
	background-position: -1986px center;
}

.InsertFormText
{
	background-position: -1956px center;
}

.StripAll
{
	background-position: -2585px center;
}

.StripCss
{
	background-position: -2644px center;
}

.StripFont
{
	background-position: -2675px center;
}

.StripSpan
{
	background-position: -2705px center;
}

.StripWord
{
	background-position: -2736px center;
}

.AjaxSpellCheck
{
	background-position: -66px center;
}

.Italic
{
	background-position: -486px center;
}

.ImageManager
{
	background-position: -366px center;
}

.ImageMapDialog
{
	background-position: -396px center;
}

.FlashManager,
.InsertFlash
{
	background-position: -246px center;
}

.MediaManager,
.InsertMedia
{
	background-position:  -696px center;
}

.DocumentManager,
.InsertDocument
{
	background-position: -185px center;
}

.TemplateManager
{
	background-position: -2765px center;
}

.InsertTable,
.TableWizard
{
	background-position: -3575px -5px;
}

.InsertRowAbove
{
	background-position: -1355px -7px;
}

.InsertRowBelow
{
	background-position: -1385px -4px;
}

.DeleteRow
{
	background-position: -3425px center;
}

.InsertColumnLeft
{
	background-position: -1626px center;
}

.InsertColumnRight
{
	background-position: -1592px center;
}

.DeleteColumn
{
	background-position: -3392px center;
}

.MergeColumns
{
	background-position: -2315px center;
}

.MergeRows
{
	background-position: -2345px center;
}

.SplitCell
{
	background-position: -3335px center;
}

.SplitCell
{
	background-position: -3335px center;
}

.SplitCellHorizontal
{
	background-position: -3606px center;
}

.DeleteCell
{
	background-position: -1325px center;
}

.SetCellProperties
{
	background-position: -2495px center;
}

.SetTableProperties
{
	background-position: -3365px center;
}

.Help
{
	background-position: -336px center;
}

.Undo
{
	background-position: -996px center;
}

.Redo
{
	background-position: -967px center;
}

.Cut
{
	background-position: -155px center;
}

.Copy
{
	background-position: -125px center;
}

.Paste,
.PasteStrip
{
	background-position: -785px center;    
}

.PasteAsHtml
{
	background-position: -815px center;
}

.PasteHtml
{
	background-position: -3757px -6px;
}

.PasteFromWord
{
	background-position: -845px center;
}

.PasteFromWordNoFontsNoSizes
{
	background-position: -875px center;
}

.PastePlainText
{
	background-position: -905px center;
}

.Print
{
	background-position: -936px center;
}

.FindAndReplace
{
	background-position: -215px center;
}

.SelectAll
{
	background-position: -2435px center;
}

.InsertGroupbox
{
	background-position: -2015px -7px;
}

.InsertCodeSnippet,
.InsertSnippet
{
	background-position: -2164px center;
}

.InsertDate
{
	background-position: -1655px center;
}

.InsertTime
{
	background-position: -2256px center;
}

.AboutDialog
{
	background-position: -6px center;
}

.Bold
{
	background-position: -95px center;
}

.Underline
{
	background-position: -3275px center;
}

.StrikeThrough
{
	background-position: -3306px center;
}

.JustifyLeft
{
	background-position: -576px center;
}

.JustifyCenter
{
	background-position: -516px center;
}

.JustifyFull
{
	background-position: -546px center;
}

.JustifyNone
{
	background-position: -606px center;
}

.JustifyRight
{
	background-position: -636px center;
}

.InsertParagraph
{
	background-position: -454px center;
}

.InsertHorizontalRule
{
	background-position: -2045px center;
}

.Superscript
{
	background-position: -2796px center;
}

.Subscript
{
	background-position: -2826px center;
}

.ConvertToLower
{
	background-position: -1144px center;
}

.ConvertToUpper
{
	background-position: -1174px center;
}

.Indent
{
	background-position: -426px center;
}

.Outdent
{
	background-position: -726px center;
}

.InsertOrderedList
{
	background-position: -2076px center;
}

.InsertUnorderedList
{
	background-position: -2286px center;
}

.AbsolutePosition
{
	background-position: -36px center;
}

.Save,
.SaveAndClose,
.FileSave, 
.FileSaveAs,
.SaveLocal
{
    background-position: -1056px center;
}

.LinkManager,
.CreateLink,
.CustomLinkTool,
.SetLinkProperties
{
	background-position: -665px center;
}

.Unlink
{
	background-position: -2855px center;
}

.ToggleTableBorder
{
	background-position: -2885px center;
}

.ToggleScreenMode
{
	background-position: -2915px center;
}

.ForeColor
{
	background-position: -276px center;
}

.BackColor,
.borderColor,
.bgColor
{
	background-position: -1026px center;
}

.InsertFormElement
{
	background-position: -1774px center;
}

.InsertFormForm
{
	background-position: -1805px center;
}

.reTopCenter
{
    background-position: -3036px -6px;
}

.reMiddleLeft
{
    background-position: -3096px -6px;
}

.reMiddleCenter
{
    background-position: -1236px -6px;
}

.reMiddleRight
{
    background-position: -3155px -6px;
}

.reBottomCenter
{
    background-position: -3216px -6px;
}

.reNoAlignment
{
    background-position: -1266px -6px;
}

.reTopLeft
{
    background-position: -3006px -6px;
}

.reTopRight
{
    background-position: -3155px -6px;
}

.reBottomLeft
{
    background-position: -3186px -6px;
}

.reBottomRight
{
    background-position: -3245px -6px;
}

.SilverlightManager
{
    background-position: -3636px -6px;
}

.ExportToPdf
{
    background-position: -3666px -6px;
}

.InsertLink
{
    background-position: -3697px -6px;
}

.InsertImage
{
    background-position: -3727px -6px;
}

.InsertTableLight
{
    background-position: -3791px -5px;
}

/* alignment settings within the alignment dropdown */
.reAlignmentSelector .reTopRight
{
    background-position: -3062px -5px;
}

.reAlignmentSelector .reTopLeft
{
    background-position: -3004px -5px;
}

.reAlignmentSelector .reTopCenter
{
    background-position: -3033px -5px;
}

.reAlignmentSelector .reNoAlignment
{
    background-position: -1263px -5px;
}

.reAlignmentSelector .reMiddleLeft
{
    background-position: -3094px -5px;
}

.reAlignmentSelector .reMiddleCenter
{
    background-position: -1233px -5px;
}

.reAlignmentSelector .reMiddleRight
{
    background-position: -3151px -5px;
}

.reAlignmentSelector .reBottomCenter
{
    background-position: -3213px -5px;
}

.reAlignmentSelector .reBottomRight
{
    background-position: -3241px -5px;
}

.reAlignmentSelector .reBottomLeft
{
    background-position: -3184px -5px;
}
/* editor commands end */

/* apply css class dropdown */
.reApplyClass td
{
    vertical-align: middle;
    height: 22px;
    padding-left: 3px;
}

.reApplyClass span
{
	width: 14px;
	height: 14px; 
	line-height: 13px;
	background-image: url('WebResource.axd?d=TM9foG7Q2kNQq7J0vp3aiKLlMZVtnCd_85E0WcUZQevP9L3KNCpDZfNgDrWNR0Z3qpNvYnj42q9CRVS-sFV0YUyouDwdLyJVggDDr1XzWO-S8aSlbik4YPQmZ4PtkFfDRHrsgH0M4NxUnbhZutBddNxYEpZ55ktNNjmAoyK9Jqq7ztPz0&t=634145324660000000');
	background-repeat: no-repeat;
	display: block;
	float: left;
	margin-right: 4px;
	text-indent: -9999px;
}

.reApplyClass .reClass_all
{
	background-position: 0 0;
}

.reApplyClass .reClass_img
{
	background-position: 0 -20px;
}

.reApplyClass .reClass_table
{
	background-position: 0 -40px;
}

.reApplyClass .reClass_ul
{
	background-position: 0 -60px;
}

.reApplyClass .reClass_ol
{
	background-position: 0 -80px;
}

.reApplyClass .reClass_p
{
	background-position: 0 -100px;
}

.reApplyClass .reClass_span
{
	background-position: 0 -120px;
}

.reApplyClass .reClass_a
{
	background-position: 0 -140px;
}

.reApplyClass .reClass_div
{
	background-position: 0 -160px;
}

.reApplyClass .reClass_h1
{
	background-position: 0 -180px;
}

.reApplyClass .reClass_h2
{
	background-position: 0 -200px;
}

.reApplyClass .reClass_h3
{
	background-position: 0 -220px;
}

.reApplyClass .reClass_h4
{
	background-position: 0 -240px;
}

.reApplyClass .reClass_h5
{
	background-position: 0 -260px;
}

.reApplyClass .reClass_h6
{
	background-position: 0 -280px;
}

.reApplyClass .reClass_td
{
	background-position: 0 -300px;
}
/* end of apply css class dropdown */

td.reTlbVertical
{
    vertical-align: top;
}

.reToolCell .reTool_text span
{
    text-indent: -9999px;    
}

.reToolCell .reTool_text.reSplitButton
{    
    width: auto;
}

.reToolCell .reTool_text.reSplitButton .reButton_text
{
   
}

.reTlbVertical li
{
    vertical-align: top;
}

.reTool_text span.reButton_text
{
    text-indent: 0;
}

/* this sets the correct background image to the selected items in the toolstrips */
.reTlbVertical .reTool_text.reTool_selected
{
    background-position: -602px 0 !important;
    border-color: transparent !important; 
}

.reTableWizardSelectAllBtn
{
	
}

/*Light dialogs CSS */
.reInsertImageWrapper, .reInsertLinkWrapper, .reInsertTableLightWrapper
{
    padding: 20px 0 0 0;
    font: 1.00em "segoe ui" ,arial,sans-serif;
}

.reControlsLayout
{
    width: 100%;
    height: 100%;
}
.reInsertLinkWrapper .reControlsLayout td
{
    padding: 3px 0 3px 3px;
}
.reInsertLinkWrapper .reControlsLayout td, .reInsertImageWrapper .reControlsLayout td, .reInsertTableLightWrapper .reControlsLayout td, .reControlsLayout .reImgPropertyControlCell td, .reImgPropertyControlCell span, .reImgPropertyControlCell input
{
    vertical-align: middle;
}
.reInsertImageWrapper .reControlsLayout td
{
    padding: 3px 0;
}
.reDialogLabelLight span
{
    width: 80px;
    display: block;
    text-overflow: ellipsis;
}
.reDialogLabelLight span, .reImgPropertyControlCell span, .reImgPropertyControlCell input
{
    text-align: right;
}
.reConfirmCancelButtonsTblLight button
{
    width: 75px;
}
.reConfirmCancelButtonsTblLight .reAllPropertiesLight button
{
    width: 126px;
}
.reControlsLayout
{
    width: 100%;
    height: 100%;
}
.reControlsLayout .reControlCellLight input
{
    width: 215px;
}
.reControlsLayout .reControlCellLight select
{
    width: 220px;
}
.reControlsLayout .reConfirmCancelButtonsTblLight
{
    height: auto;
    margin: 12px 0;
    text-align: center;
    width: 100%;
}
.reControlsLayout .reImgPropertyControlCell td, .reControlsLayout .reTablePropertyControlCell td
{
    padding: 3px 3px 3px 4px;
}
.reImgPropertyControlCell span, .reImgPropertyControlCell input, .reTablePropertyControlCell input
{
    width: 40px;
}
.reImgPropertyControlCell table
{
    width: 100%;
    height: 100%;
}
.reControlsLayout td.reImgPropertyControlCell
{
    padding: 0 22px 0 38px;
}
.reInsertImageWrapper .reControlsLayout .reControlCellLight input
{
    width: 190px;
}
.reTablePropertyControlCell .short
{
    width: 80px;
}
.reTablePropertyControlCell .lightTable
{
    margin: -10px 4px 0 4px;
}
* + html .reTablePropertyControlCell .lightTable
{
    margin-top: -3px;
}
*html .reTablePropertyControlCell .lightTable
{
    margin-top: -3px;
}

/* editor content area as div */
.RadEditor .reContentArea
{
	position:relative;
	overflow:auto;
	height: 100%;
	margin: 0px;
	padding:3px;
}

.RadEditor .reContentArea .RadEWrongWord
{
	background-color: yellow;
}
.RadEditor .reContentArea .RadEDomMouseOver
{
	background-color:#ffffcc;
}

.RadEditor .reContentArea body
{
	padding:3px;
	background-image: none;
	margin: 0px;
	text-align: left;
	word-wrap: break-word;
}
.RadEditor .reContentArea form
{
	background-color:#efefef;
	border:1px dashed #555555;
}
.RadEditor .reContentAreaToggle table
{
	BORDER-RIGHT: #999999 1px dashed;
	BORDER-BOTTOM: #999999 1px dashed;
}
.RadEditor .reContentAreaToggle table td
{
	PADDING: 1px;
	BORDER-TOP: #999999 1px dashed;
	BORDER-LEFT: #999999 1px dashed;
}
.RadEditor .reContentAreaToggle table th
{
	PADDING: 1px;
	BORDER-TOP: #000000 1px dashed;
	BORDER-LEFT: #000000 1px dashed;
}
/* RadEditor for ASP.NET AJAX EHB Skin */

.EPM.RadEditor
{
    background-color: #f1f5fb;
    min-width:580px !important; 
}

/* reWrapper */
.EPM.reWrapper
{
    border: solid 1px #a5b3c5;
}

.EPM.RadEditor .reContentCell
{
    border: solid 1px #a5b3c5;
}

/* common settings for .reModule, .reEditorModes and .reWrapper */
.EPM.reColorPicker,
.EPM.reInsertTable,
.EPM.reDropDownBody,
.EPM.reCustomLinks a:hover
{
	border: solid 1px #a5b3c5;
}

.EPM.reDropDownBody table
{
    background: transparent;
}

.EPM.RadEditor .reModule,
.EPM.RadEditor .reEditorModes,
.EPM.RadEditor .reWrapper
{
	background-color: #f1f5fb;
}

/*NEW: Only in the Bottom zone - where the Statistics module is commonly set, remove uppper border, because it looks ugly*/
.EPM.RadEditor .reBottomZone .reModule
{
    border-top: 0;
}

.EPM.RadEditor .reModule
{
    border-top: solid 1px #d4dbe5;  
}

.EPM.reCustomLinks a,
.EPM.reCustomLinks a:link,
.EPM.reCustomLinks a:visited
{
    border: solid 1px #fff; /* should be the same as the background of the dropdown */
    color: black !important;
}

.EPM.reCustomLinks a:hover
{
    background-color: #c3dcfc;
    border-top: solid 1px #8d8d8d;
    border-right: solid 1px #717171;
    border-bottom: solid 1px #6c6c6c;
    border-left: solid 1px #7a7a7a;
}
/* end of module */

.reToolbar li
{
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/ToolbarSprites.gif') !important;
    background-position: 0 -26px;
    color: #000;
}

.EPM .reSpinBox a
{
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/ToolbarSprites.gif');
    -moz-user-select: none;
    outline: none;
}

/* separator */
.reToolbar.EPM .reSeparator
{
    background-position: center -148px;
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/ToolbarSprites.gif');
}

/* common settings for left and right grip */
.reToolbar.EPM .reGrip
{
	background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/ToolbarSprites.gif');
}

/* reTool */
.reTool span
{
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/CommandSpritesLight.png');
}

/* IE6 does not support PNG alpha channel, so we use gifs for the command sprites instead */
* html .reTool span,
* html .reTool_text span,
* html .reTlbVertical .reTool_text span,
* html .reToolbar .reSplitButton.reTool_text span
{
    _background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/CommandSpritesLightIE6.gif');
}
.reTool span, .reTool_text span, .EPM .reTlbVertical .reTool_text span, .reToolbar .reSplitButton.reTool_text span
{
	font-size:12px;
}

.reDialog .reTool,
.reModule .reTool
{
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/ToolbarSprites.gif');
    background-position: 0 -242px;
}

.reDialog .reTool:hover,
.reToolbar .reTool:hover,
.reModule .reTool:hover
{
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/ToolbarSprites.gif');
    background-position: 0 -52px;
}

.reToolbar .reTool.reTool_selected,
.reToolbar .reTool.reTool_selected:hover
{
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/ToolbarSprites.gif');
    background-position: 0 -124px;
    background-repeat: no-repeat;
}

/* .reTool_text */
.reToolbar .reTool_text span
{
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/CommandSpritesLight.png');
}

.reToolbar .reTool_text:hover
{
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/ToolbarSprites.gif');
    background-repeat: repeat-x;
    background-position: 0 -100px;
    margin-left: 0;
    margin-right: 0;
    border-left: solid 1px #bbcadb;
    border-right: solid 1px #bbcadb;
}

.reToolbar .reTool_text.reTool_selected,
.reToolbar .reTool_text.reTool_selected:hover
{
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/ToolbarSprites.gif');
    background-repeat: repeat-x;
    background-position: 0 -174px;
    margin-left: 0;
    margin-right: 0;
    border-left: solid 1px #bbcadb;
    border-right: solid 1px #bbcadb;
}

/* these settings will not be included in the common CSS file of RadEditor */
.reToolbar .reTool_text.reTool_disabled,
.reToolbar .reTool_text.reTool_disabled:hover
{
    margin-left: 0;
    margin-right: 0;
    border: 0;
}
/* end of reTool_text */

.reTool.reSplitButton:hover
{
    background: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/ToolbarSprites.gif') no-repeat 0 -76px;
}

/* add weight to the selector for IE6 so it is applied */
* html .reToolbar .reTool.reSplitButton:hover
{
    background: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/ToolbarSprites.gif') no-repeat 0 -76px;
}

.EPM .reTool .split_arrow
{
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/ToolbarSprites.gif');
    background-position: -28px -362px;
}

.EPM .reSplitButton.reTool_text .split_arrow
{
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/ToolbarSprites.gif');
    background-position: -28px -362px;
}

/* add weight to the selector for IE6 so it is applied */
* html .EPM .reToolbar .reTool_text .split_arrow
{
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/ToolbarSprites.gif');
    background-position: -28px -362px;
}

/* add weight to the selector for IE6 so it is applied */
* html .reToolbar .reTool_text:hover
{
    background: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/ToolbarSprites.gif');
    background-position: 0 -100px;
}

.reDialog .reTool.reSplitButton,
.reModule .reTool.reSplitButton
{
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/ToolbarSprites.gif');
    background-position: 0 -218px;
}

.reDialog .reTool.reSplitButton:hover,
.reModule .reTool.reSplitButton:hover
{
    background-position: 0 -76px;
}

/* add weight to the selector for IE6 so it is applied */
* html .reToolbar .reTool.reSplitButton.reTool_disabled:hover
{
    background: none;
}
/* end of reSplitButton */

/* reDropdown */
.reDropdown:link,
.reDropdown:visited
{
    color: black !important;
}

.reDropdown,
.reTool_disabled.reDropdown:hover
{
    border: solid 1px #b8cbde;
    background-color: #fff;
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/ToolbarSprites.gif') !important;
    background-position: right -360px !important;
}

.reDropdown:hover
{
    border: solid 1px #c2dbfb;
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/ToolbarVerticalSprites.gif') !important;
    background-position: right 0 !important;
}

/* add weight to the selector for IE6 so it is applied */
* html .reTool_disabled.reDropdown
{
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/ToolbarSprites.gif')t;
    background-position: right -380px;
    background-repeat: no-repeat;
}
/* end of reDropdown */

/* vertical toolbar */
.RadEditor.EPM .reTlbVertical li
{
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/ToolbarVerticalSprites.gif');
    background-repeat: repeat-y;
    background-position: -26px 0;
}

.RadEditor.EPM .reTlbVertical .reToolbar.EPM .reGrip
{
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/ToolbarVerticalSprites.gif');
}

.RadEditor.EPM .reTlbVertical .reToolbar.EPM .grip_first
{
    background-position: 0 0;
}

.RadEditor.EPM .reTlbVertical .reToolbar.EPM .grip_last
{
    background-position: 0 -4px;
}

.RadEditor.EPM .reTlbVertical .reToolbar.EPM .reSeparator
{
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/ToolbarVerticalSprites.gif');
    background-position: -100px -12px;
}

.reTlbVertical .reTool:hover,
.reTlbVertical .reTool_text.reSplitButton:hover,
.reTlbVertical .reTool_text:hover
{
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/ToolbarVerticalSprites.gif');
    background-position: -76px 0;
}

/* add weight to the selector for IE6 so it is applied */
* html .reTlbVertical .reTool_text:hover
{
	background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/ToolbarVerticalSprites.gif');
    background-repeat: no-repeat;
    background-position: -76px 0;
}

.reTlbVertical .reTool.reTool_selected,
.reTlbVertical .reTool_text.reTool_selected,
.reTlbVertical .reTool_text.reTool_selected:hover
{
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/ToolbarVerticalSprites.gif');
    background-position: -52px 0;
}

/* add weight to the selector for IE6 so it is applied */
* html .reTlbVertical .reSplitButton:hover
{
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/ToolbarVerticalSprites.gif');
    background-position: -76px 0;
    background-repeat: no-repeat;
}
/* end of vertical toolbar */

.reDropDownBody .reTlbVertical ul li a:hover
{
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/ToolbarVerticalSprites.gif') !important;
    background-position: -602px 0 !important;
}

/* InsertTable itself is a kind of tool strip, so it must be styled as a toolstrip */
.EPM.reInsertTable
{
    background-color: #ffffff;
}

.reDropDownBody .reTlbVertical .reToolbar
{
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/ToolbarVerticalSprites.gif') !important;
    background-color: #ffffff;
    background-position: -126px 0;
}


/* end of context menu and toolstrip */

/* spinbox */
.EPM table.reSpinBox
{
	border-top: solid 1px #8e8e8e;
	border-right: solid 1px #b8b8b8;
	border-bottom: solid 1px #b8b8b8;
	border-left: solid 1px #8e8e8e;
	background: white;
}

.EPM table.reSpinBox:hover
{
    border: solid 1px #515151;
}

.EPM .reSpinBoxIncrease
{
	background-position: 0 -198px;
}

.EPM .reSpinBoxIncrease:hover
{
	background-position: 0 -208px;
}

.EPM .reSpinBoxDecrease
{
	background-position: -11px -198px;
}

.EPM .reSpinBoxDecrease:hover
{
	background-position: -11px -208px;
}
/* end of spinbox */

/* editor input elements */
.EPM.RadEditor input
{
	border-top: solid 1px #8e8e8e;
	border-right: solid 1px #b8b8b8;
	border-bottom: solid 1px #b8b8b8;
	border-left: solid 1px #8e8e8e;
	background-color: white;
}

.EPM.RadEditor input:hover
{
    border: solid 1px #515151;
}
/* editor input elements */

/* editing modes */
.EPM .reMode_selected
{
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/ToolbarVerticalSprites.gif');
    background-position: -948px 0;
}
/* end of editing modes */

/* DOM inspector */
.EPM .reModule_domlink_selected,
.EPM .reModule_domlink
{
    color: black;
}
/* end of DOM inspector */

.EPM.reDropDownBody .reItemOver
{
	background: #cfdbec;
	color: #000;
}
/* end of expanded dropdowns */

* html .reTool_selected.reTool
{
    border-left-width: 0 !important;
    border-right-width: 0 !important;
}

/* color picker */
.EPM.reColorPicker table div
{
	border: solid 1px #c5c5c5;
}

.EPM.reColorPicker table td.reItemOver div
{
	border-color: #000;
}

.EPM.reColorPicker span
{
	border: solid 1px #c5c5c5;
}
/* end of color picker */

/* ajax spellchecker */
.reAjaxspell_button
{
    border: solid 1px #afc0d7;
    background: #ececec;
    color: #afc0d7;
}

.EPM .reAjaxSpellCheckSuggestions table
{
    border-width: 0;
    width: 100%;
}

.EPM .reAjaxSpellCheckSeparator
{
    background-color: #979797;
}
/* ajax spellchecker */

/* custom links */
.EPM.reCustomLinks,
.EPM.reCustomLinks ul
{
	color: #000;
}

.EPM.reCustomLinks a
{
    background: none transparent;
    color: black;
	cursor: default !important;
}

.EPM.reCustomLinks a:hover
{
    color: white;
}
/* end of custom links */

/* insert table dropdown */
.reInsertTable table
{
    background: #ffffff;
}

.reInsertTable table td
{
    border: solid 1px #afc0d7;
    background: white;
}

.reInsertTable .reTlbVertical ul
{
    background-color: #ffffff;
}

.EPM.reDropDownBody.reInsertTable div.reTlbVertical a.reTool_text,
.EPM.reDropDownBody.reInsertTable div.reTlbVertical a.reTool_text:link,
.EPM.reDropDownBody.reInsertTable div.reTlbVertical a.reTool_text:visited
{
    color: black !important;
    background: transparent none;
    _background: none !important;
}

.EPM.reDropDownBody.reInsertTable div.reTlbVertical a.reTool_text:hover
{
    background: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/ToolbarVerticalSprites.gif');
    background-position: -1403px 0;
}

.reInsertTable .reTlbVertical ul .reTool_text span
{
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/CommandSpritesLight.png');
    background-position: -3575 center;
}

.reInsertTable .reToolbar li .reTool:hover
{
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/ToolbarSprites.gif');
    background-position: 0 -52px;
}
/* end of insert table dropdown */

/* modules selector */
.reModule_visible_icon,
.reModule_hidden_icon
{
	display: block;
	float: left;
	height: 18px;
	width: 18px;
	background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/CommonIcons.gif');
	background-repeat: no-repeat;
}

.reModule_visible_icon
{
	background-position: -8px -199px;
}

.reModule_hidden_icon
{
	background-position: -8px -103px;
	
}
/* end of modules selector */

/* resize cell */
.reResizeCell div
{
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Editor/ToolbarSprites.gif');
    background-position: center -301px;
}

/* reTool_disabled */
.reDialog .reTool_disabled,
.reDialog .reTool_disabled:hover,
.reToolbar .reTool_disabled,
.reToolbar .reTool_disabled:hover,
.reModule .reTool_disabled,
.reModule .reTool_disabled:hover
{
    filter: alpha(opacity=40);
    opacity: .4;
    -moz-opacity: .4;
    background-image: none;
}
/* reTool_disabled */

/* the rule below styles RadWindow's content cell, which is used in the floating and show on focus toolbar modes */
.RadWindow.RadWindow_EPM.reToolbarWindow td.rwWindowContent
{
    background-color: #ececec;
}  
.RadWindow_EPM .rwTopLeft, .RadWindow_EPM .rwTopRight, .RadWindow_EPM .rwTitlebar, .RadWindow_EPM .rwFooterLeft, .RadWindow_EPM .rwFooterRight, .RadWindow_EPM .rwFooterCenter, .RadWindow_EPM .rwTopResize, .RadWindow_EPM .rwStatusbar div, .RadWindow_EPM .rwStatusbar, .RadWindow_EPM .rwPopupButton, .RadWindow_EPM .rwPopupButton span, .RadWindow_EPM.rwMinimizedWindow .rwCorner
{
	background-image:url("./Platform/Include/Skins/EPM/Window/WindowHorizontalSprites.gif") !important;
}
.RadWindow_EPM .rwTopLeft, .RadWindow_EPM .rwTopRight, .RadWindow_EPM .rwTitlebar, .RadWindow_EPM .rwFooterLeft, .RadWindow_EPM .rwFooterRight, .RadWindow_EPM .rwFooterCenter, .RadWindow_EPM .rwTopResize, .RadWindow_EPM .rwStatusbar div, .RadWindow_EPM .rwStatusbar, .RadWindow_EPM .rwPopupButton, .RadWindow_EPM .rwPopupButton span, .RadWindow_EPM.rwMinimizedWindow .rwCorner
{
	background-image:url("./Platform/Include/Skins/EPM/Window/WindowHorizontalSprites.gif") !important;
}
.RadWindow_EPM a.rwIcon
{
	background-image:url("./Platform/Include/Skins/EPM/Window/WindowHorizontalSprites.gif") !important;
}
.RadWindow_EPM .rwControlButtons a {background-image:url("./Platform/Include/Skins/EPM/Window/CommandButtonSprites.gif") !important;}
.RadWindow_EPM .rwBodyLeft, .RadWindow_EPM .rwBodyRight, .RadWindow_EPM .rwStatusbarRow .rwCorner {background-image:url("./Platform/Include/Skins/EPM/Window/WindowVerticalSprites.gif") !important;}

/* Telerik RadAjaxLoadingPanel Common CSS */

.RadAjax .raDiv,
.RadAjax .raColor
{
	width:100%;
	height:100%;
	margin:0;
	padding:0;
}

.RadAjax .raDiv
{
	position:relative;
	z-index:2;
	background-color:transparent;
	background-position:center 95px;
	background-repeat:no-repeat;
}

.RadAjax .raColor
{
	position:absolute;
	top:0;
	left:0;
	z-index:1;
	background-image:none;
}

.RadAjax .raTransp
{
	zoom:1;
}

.RadAjax .raTop
{
	background-position:center top;
}

.RadAjax .raTopLeft
{
	background-position:left top;
}

.RadAjax .raTopRight
{
	background-position:right top;
}

.RadAjax .raLeft
{
	background-position:left center;
}

.RadAjax .raRight
{
	background-position:right center;
}

.RadAjax .raBottom
{
	background-position:center bottom;
}

.RadAjax .raBottomLeft
{
	background-position:left bottom;
}

.RadAjax .raBottomRight
{
	background-position:right bottom;
}

.RadAjax div.raNone
{
	background-image:none;
}

* html .RadAjaxUpdatedElement select
{
	visibility:hidden !important;
}

/*RadAjaxLoadingPanel EHB Skin*/

/*loading image - do not specify background-position or background-repeat*/
.RadAjax_EPM .raDiv
{
	background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Ajax/raLoad.gif');
}

/*loading panel background color*/
/*
.RadAjax_EPM .raColor
{
    background-color:#fb5;
}
*/
/*skin transparency level - the smaller the number, the more the transparency*/
.RadAjax_EPM .raTransp
{
    opacity:0.3; /*non-IE browsers, 0-1*/
    -moz-opacity:0.3; /*old Mozilla browsers, 0-1*/
    filter:alpha(opacity=30); /*IE, 0-100*/
}


/********* RadTagCloud **************/

 .RadTagCloud_EPM.rtcLoading {
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Common/loading_small.gif'); }
    
/*************** RadSocialShare *************/

.sshIcon {
  width: 16px;
  height: 16px;
  margin: 0 3px 0 0;
  display: inline-block;
  *display: inline;
  zoom: 1;
  background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Common/SocialShare/SocialShareSprite.png');
  background-repeat: no-repeat; }
  
  * html .sshIcon {
  background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Common/SocialShare/SocialShareSpriteIE6.png'); }
  
  .sshFormSuccess,
.sshFormError {
  padding: 10px 0 10px 50px;
  background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Common/SocialShare/sshFormIcons.png');
  background-repeat: no-repeat;
  font-family: "Segoe UI" , Arial, Helvetica, sans-serif;
  font-size: 18px; }


/*********** RadNotification ***********/
 .RadNotification_EPM .rnCommands a {
    background-image: url('./Platform/Include/Skins/EPM/Notification/NotificationSprite.png'); }


/************** RadFileExplorer ************/

  .RadFileExplorer .rfeFileExtension {
    height: 18px;
    line-height: 18px;
    background: transparent url('./Platform/Include/Skins/EPM/Images/Telerik/Common/FileExtensionSprites.png') no-repeat -7px -681px;
    _background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Common/FileExtensionSpritesIE6.gif') !important;
    padding: 0 0 0 20px !important;
    white-space: nowrap; }
    
      .RadFileExplorer .rfeThumbnailView .rfeFile .rfeFileIcon {
    display: block;
    margin: auto;
    width: 32px;
    height: 32px;
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Common/FileExplorer/rfeThumbnailView.png') !important;
    background-repeat: no-repeat; }
    
    .RadFileExplorer_EPM {
  /* Overwrites padding for better presentation and space saving */
  /* Thumbnail view */
  /* Thumbnail filter */ }
  .RadFileExplorer_EPM .RadToolBar .rtbText {
    background-image: url('./Platform/Include/Skins/EPM/FileExplorer/FileExplorerToolbarSprites.png');
    _background-image: url('./Platform/Include/Skins/EPM/FileExplorer/FileExplorerToolbarSpritesIE6.gif') !important;
    background-repeat: no-repeat; }
    
      .RadFileExplorer_EPM .rfeThumbList a:hover,
  .RadFileExplorer_EPM .rfeThumbList .rfeHoveredLink,
  .RadFileExplorer_EPM .rfeThumbList .rfeSelectedLink,
  .RadFileExplorer_EPM .rfeThumbList .rfeSelectedLink:hover {
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Common/Gradients/EPM_smoothSprite_20.png');
    background-color: #edf5fd;
    border-color: #f6f9fe; }
    
      .RadFileExplorer_EPM .rfeFilterContainer {
    background-image: url('./Platform/Include/Skins/EPM/Images/Telerik/Common/Gradients/EPM_smoothSprite_20.png');
    background-color: #f1f5fb; }
