/* START Telerik.Web.UI.Skins.PanelBar.css */
/*Base css*/
    
.RadPanelBar
{
	width:250px;
}

.RadPanelBar .rpRootGroup,
.RadPanelBar .rpGroup,
.RadPanelBar .rpItem
{
	margin:0;
	padding:0;
	list-style-image: none;
	list-style-position:outside;
	list-style:none;
}

.RadPanelBar .rpItem
{
	float:none;
	display:block;
	position:static;
}

.RadPanelBar .rpSlide
{
    position:static;
    float: none;
    height:auto;
}

.RadPanelBar .rpText:after,
.RadPanelBar .rpTemplate:after,
.RadPanelBar .rpItem:after
{
    content: ""; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.RadPanelBar .rpLink,
.RadPanelBar .rpText
{
	text-decoration:none;
	display:block;
}

.RadPanelBar .rpImage
{
	float:left;
	clear: left;
	border:0;
	vertical-align:middle;
}

.RadPanelBar .rpLevel1
{
	overflow:auto;
	overflow-x:hidden;
}

.RadPanelBar .rpLink
{
	width:100%;
	outline:none; /* Remove this for FF to put dotted border around the focused item */

}

.RadPanelBar .rpText
{
	cursor:pointer;
	_cursor:hand;
}

.RadPanelBar .rpSlide
{
	overflow:hidden;
	display:none;
	zoom: 1;
}

.rtl .rpImage
{
	border:0;
	float:right;
}

.rtl 
{
	text-align:right;
}
/* END Telerik.Web.UI.Skins.PanelBar.css */
/* START Telerik.Web.UI.Skins.Menu.css */
/* Common CSS */

.RadMenu
{
	white-space:nowrap;
	float:left;
	position:relative;
}

.RadMenu:after,
.RadMenu .rmRootGroup:after
{
    content:""; 
    display:block;
    height:0;
    line-height:1px;
    font-size:1px;
    clear:both;
    visibility:hidden;
}

.RadMenu ul.rmHorizontal,
.RadMenu ul.rmVertical
{
	margin:0;
	padding:0;
	display:none;
	position:relative;
	left:0;
	float:left;
}

.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;
}


.RadMenu ul.rmActive,
.RadMenu ul.rmRootGroup
{
	display:block;
}

.RadMenu .rmSlide, 
.rmContextMenu
{
	position:absolute;
	overflow:hidden;
	display:none;
	float:left;
}

* html .RadMenu .rmSlide, 
* html .rmContextMenu
{
	height:1px;
}

.rmContextMenu
{
	z-index:1000;
	overflow:visible;
}

.RadMenu .rmText
{
	display:block;
}

.RadMenu div.rmText /*templates*/
{
	white-space:normal;
}

.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;
	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;
}

.rmRtl
{
	float:right;
	text-align: right;
}

.rmRtl ul.rmHorizontal,
.rmRtl ul.rmVertical
{
	float:right;
}

.rmRtl .rmItem
{
	float:right;	
}

.rmRtl .rmLeftImage,
.rmRtlContext .rmLeftImage
{
	border:0;
	float:right;
}

.RadMenu .rmLink
{
	width:auto;
}

.RadMenu .rmSeparator,
.RadMenu .rmSeparator:after
{
    line-height: 0;
    font-size: 0;
    overflow: hidden;
}
/* END Telerik.Web.UI.Skins.Menu.css */
/* START Telerik.Web.UI.Skins.TreeView.css */
/*

RadTreeView base css

* Notes on some CSS class names *

class  --  HTML element  --  description 

rtUL  --  <ul>  --  multiple nodes container
rtLI  --  <li>  --  one node 
rtFirst  --  <li>  -- TreeView's first node
rtLast  --  <li>  -- last node in a given node group (<ul>)
rtTop,rtMid,rtBot  --  <div>  -- a wrapper (<div>) inside a node (<li>) - can be in a top, middle or bottom node in a given node group
rtIn  --  <span> or <div>  -- the inner container inside a node - contains text (<span> rendering) or template (<div> rendering)
rtSp  --  <span>  -- holds a dummy element for adjustment of node heights (should be an even number if the skin node lines are dotted)
rtChk  --  <input>  -- holds a node's checkbox
rtImg  --  <img>  -- holds a node's icon
rtPlus,rtMinus -- <span> -- holds a node's expand / collapse buttons (plus / minus signs)

*/

.RadTreeView
{
	white-space:nowrap;
	cursor: default;
}

.RadTreeView .rtUL
{
	margin:0;
	padding:0;
}

.RadTreeView .rtLI
{
	list-style-image: none;
	list-style-position:outside;
	list-style:none;
}

/* link with NavigateUrl*/

.RadTreeView a.rtIn
{
	text-decoration: none;
	cursor: pointer;
}

/* template container */
.RadTreeView div.rtIn
{
	display:-moz-inline-block;
	display:inline-block;
	vertical-align:top;
}

/* "massage" the template container to obtain inline-block display */

* 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;
}

/* end of "massage" */

.RadTreeView .rtSp
{
	display: -moz-inline-box;
	display: inline-block;
	width: 1px;
	vertical-align: middle;
}

.RadTreeView .rtUL .rtUL
{
	padding-left:20px;
}

.RadTreeView .rtPlus,
.RadTreeView .rtMinus
{
	font-size:0;
	padding:0;
	display: -moz-inline-box;
	display:inline-block;
	vertical-align:top;
	cursor: pointer;
}

.RadTreeView .rtTop,
.RadTreeView .rtMid,
.RadTreeView .rtBot,
.RadTreeView .rtUL
{
	zoom:1;
}

.RadTreeView .rtImg,
.RadTreeView .rtIn,
.RadTreeView .rtChk
{
	vertical-align:middle;
}

.RadTreeView .rtIn
{
	color: inherit;
	font: inherit;
}

.RadTreeView .rtLoadingBefore,
.RadTreeView .rtLoadingAfter
{
	display: -moz-inline-box;
	display: inline-block;
	vertical-align: middle;
}

.RadTreeView .rtLoadingBelow
{
	display:block;
}

.RadTreeView .rtEdit .rtIn
{
	cursor: text;
}
.RadTreeView .rtChecked, 
.RadTreeView .rtUnchecked, 
.RadTreeView .rtIndeterminate
{
    display:-moz-inline-box;
    display:inline-block;
    width: 13px;
    height: 13px;
	vertical-align:middle;
}

/*tri-state checkboxes*/


/* 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 input
{
	outline: 0; /* disable safari glow effect - RadTreeView look consistency */
	cursor: text;
}

/* enables positioning of plus / minus images under firefox in rtl mode */


.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;
}

/*
turn on hasLayout of LI elements & inner treeitem containers in rtl mode
necessary to enable proper display of inner treeitem containers
*/
.RadTreeView_rtl .rtLI,
.RadTreeView_rtl .rtIn
{
	zoom:1;
}

.RadTreeView_rtl .rtUL .rtUL
{
	padding-right:20px;
	padding-left: 0;
}

/* hacks for Opera */
@media screen and (min-width:550px)
{
	/* opera inverts the padding automatically in rtl mode, so restore the initial order */
	html:first-child .RadTreeView_rtl .rtUL .rtUL
	{
		padding-left:20px;
		padding-right: 0;
	}
	
	/* fix for opera's unclickable plus/minus signs */
	html:first-child .RadTreeView .rtPlus:hover, 
	html:first-child .RadTreeView .rtMinus:hover
	{
		position: relative;
	}
	
	html:first-child .RadTreeView .rtSp
	{
		display: none;
	}
}

/* END Telerik.Web.UI.Skins.TreeView.css */
/* START Telerik.Web.UI.Skins.Gray.TreeView.Gray.css */
/*

RadTreeView Telerik skin

* For notes on the CSS class names, please check RadTreeView common skin file *

*/

/* general styles */

.RadTreeView_Gray,
.RadTreeView_Gray .rtEdit .rtIn input
{
	font:11px tahoma,verdana,sans-serif;
	color:#000;
	line-height:1.273em;
}

.RadTreeView_Gray .rtTop, 
.RadTreeView_Gray .rtMid, 
.RadTreeView_Gray .rtBot
{
	padding: 0 0 0 20px;
}

.RadTreeView_Gray .rtPlus, 
.RadTreeView_Gray .rtMinus
{
	margin:4px 6px 0 -18px;
	width:11px;
	height:11px;
}

.RadTreeView_Gray .rtPlus
{
	background: transparent url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg0-dzSaq4l_N29TJEvkoCYr0aeqanY0Rw2-u6wct7q5fYhGWNTAcTtv5-HOh469rro1&t=633645880037968750') no-repeat 0 0;
}

.RadTreeView_Gray .rtMinus
{
	background: transparent url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg0-dzSaq4l_N29TJEvkoCYr0aeqanY0Rw2-u6wct7q5fYhGWNTAcTtv5-HOh469rro1&t=633645880037968750') no-repeat 0 -11px;
}

.RadTreeView_Gray .rtSp
{
	height:18px;
}

.RadTreeView_Gray .rtChk
{
	margin: 0 2px;
	padding:0;
	width:13px;
	height:13px;
}

.RadTreeView_Gray .rtIn
{
	margin-left:3px;
	padding: 2px;
}

/* endof general styles */


/*Three state checkboxes*/

.RadTreeView_Gray .rtIndeterminate
{
    background: transparent url(/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg0-dzSaq4l_N29TJEvkoCYrpbFVlrNOI9EJgBahLg1usQ2&t=633645880037968750) no-repeat 0 -26px;
}

.RadTreeView_Gray .rtChecked
{
    background: transparent url(/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg0-dzSaq4l_N29TJEvkoCYrpbFVlrNOI9EJgBahLg1usQ2&t=633645880037968750) no-repeat 0 0;
}

.RadTreeView_Gray .rtUnchecked
{
    background: transparent url(/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg0-dzSaq4l_N29TJEvkoCYrpbFVlrNOI9EJgBahLg1usQ2&t=633645880037968750) no-repeat 0 -13px ;
}


/* node states */

.RadTreeView_Gray .rtHover .rtIn
{
	color:#6b6b6b;
	background-color:#dfdfdf;
	border: 1px solid #a5a5a5;
	padding: 1px;
}

.RadTreeView_Gray .rtSelected .rtIn
{
	color: #fff;
	background: #9C9C9C url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg0-dzSaq4l_N29TJEvkoCYrLDC_rsR_tAF58fvydHFDMngr5oAyMM4eVAOLidgR6NU1&t=633645880037968750') repeat-x 0 0;
	border: 1px solid #747474;
	padding: 1px;
}

.RadTreeView_Gray_disabled .rtIn,
.RadTreeView_Gray .rtDisabled .rtIn
{
	color:#ccc;
}

.RadTreeView_Gray .rtSelected .rtLoadingBelow
{
	color: #000;
}

/* endof node states */


/* in-line editing */

.RadTreeView_Gray .rtLI .rtEdit .rtIn
{
	border:1px solid black;
	padding: 1px;
	height:1.2em;
	background: #fff;
	text-decoration:none;
}

.RadTreeView_Gray .rtEdit .rtIn input
{
	height:1em;
	line-height:1em;
	border:0;
	margin:0;
	padding:0;
	background:transparent;
}

/* endof in-line editing */


/* drop targets */

.rtDropAbove_Gray,
.rtDropBelow_Gray
{
    border: 1px dotted black;
    font-size: 3px;
    line-height: 3px;
    height: 3px;
}

.rtDropAbove_Gray
{
    border-bottom: 0;
}

.rtDropBelow_Gray
{
    border-top: 0;
}

/* endof drop targets */


/* node lines */

.RadTreeView_Gray .rtLines .rtLI,
.RadTreeView_Gray .rtLines .rtFirst .rtUL
{
	background:url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg0-dzSaq4l_N29TJEvkoCYrhtkWu2kH9il6RH1uechBEw2&t=633645880037968750') repeat-y 0 0;
}
.RadTreeView_Gray_rtl .rtLines .rtLI,
.RadTreeView_Gray_rtl .rtLines .rtFirst .rtUL
{
	background:url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg0-dzSaq4l_N29TJEvkoCYrXaO2cAWS2O80VM9cX-Sw2jgZZcNpXNTug5ENgC5S6L81&t=633645880037968750') repeat-y 100% 0;
}

.RadTreeView_Gray .rtLines .rtFirst
{
    background:url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg0-dzSaq4l_N29TJEvkoCYrX5fYabjvoW6DsSie0M0hkgP0DpzpTiztN90tq2Hg3TM1&t=633645880037968750') no-repeat 0 1.273em;
}
.RadTreeView_Gray_rtl .rtLines .rtFirst
{
    background:url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg0-dzSaq4l_N29TJEvkoCYrX5fYabjvoW6DsSie0M0hkjrEJc57e61FKVg7-a6s4Zc1&t=633645880037968750') no-repeat 100% 1.273em;
}

.RadTreeView_Gray .rtLines .rtFirst .rtUL
{
	background:url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg0-dzSaq4l_N29TJEvkoCYrX5fYabjvoW6DsSie0M0hkgP0DpzpTiztN90tq2Hg3TM1&t=633645880037968750') repeat-y 0 1.273em;
}

.RadTreeView_Gray_rtl .rtLines .rtFirst .rtUL
{
	background:url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg0-dzSaq4l_N29TJEvkoCYrX5fYabjvoW6DsSie0M0hkjrEJc57e61FKVg7-a6s4Zc1&t=633645880037968750') repeat-y 100% 1.273em;
}

.RadTreeView_Gray .rtLines .rtLast,
.RadTreeView_Gray .rtLines .rtLast .rtUL
{
	background:none;
}

.RadTreeView_Gray .rtLines .rtTop
{
	background:url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg0-dzSaq4l_N29TJEvkoCYrAwgxEIjOFpuVL76xKPvp5w2&t=633645880037968750') 0 0 no-repeat;
}
.RadTreeView_Gray_rtl .rtLines .rtTop
{
	background:url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg0-dzSaq4l_N29TJEvkoCYr9Qs2jc5Br9i80a0SMX2NyW6tGesyaGfLzmCPLujXh8M1&t=633645880037968750') 100% 0 no-repeat;
}

.RadTreeView_Gray .rtLines .rtLast .rtTop
{
	background:url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg0-dzSaq4l_N29TJEvkoCYrUyD2ZCHSfWDJXfrfSNnIZ9Hvm7gjcOmK3z-dEfcQsts1&t=633645880037968750') 0 0 no-repeat;
}

.RadTreeView_Gray_rtl .rtLines .rtLast .rtTop
{
	background:url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg0-dzSaq4l_N29TJEvkoCYrDdjrucgggNKfzAEyM2q26AQQOZGUp1unPsEOT4xYyCg1&t=633645880037968750') 100% 0 no-repeat;
}

.RadTreeView_Gray .rtLines .rtMid
{
	background:url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg0-dzSaq4l_N29TJEvkoCYrf-26fQJF4x0rlvxcHZYAXE8BpBLQO7oGcP4Wwz-Aytw1&t=633645880037968750') 0 0 no-repeat;
}
.RadTreeView_Gray_rtl .rtLines .rtMid
{
	background:url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg0-dzSaq4l_N29TJEvkoCYrAiYh12T-NJLJX0l1Tl0RkpbIqgARFgScglb3H6iNCXc1&t=633645880037968750') 100% 0 no-repeat;
}

.RadTreeView_Gray .rtLines .rtBot
{
	background:url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg0-dzSaq4l_N29TJEvkoCYr8eGjmD0cWmu4Xe6tZV5fzpxGXHLhFS4GiC5sh9lSt801&t=633645880037968750') 0 0 no-repeat;
}
.RadTreeView_Gray_rtl .rtLines .rtBot
{
	background:url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg0-dzSaq4l_N29TJEvkoCYr0ECHpp4NMJdQlXTzeWlNwz_PcRCxrusVRvktdRHh2k01&t=633645880037968750') 100% 0 no-repeat;
}

/* endof node lines */


/* rtl-specific styles */

/* firefox */
.RadTreeView_Gray_rtl .rtPlus,
.RadTreeView_Gray_rtl .rtMinus
{
	margin-right:-11px;
	right:-13px;
}

* html .RadTreeView_Gray_rtl .rtPlus,
* html .RadTreeView_Gray_rtl .rtMinus
{
	margin-right:-18px;
	right:0;
}

*+html .RadTreeView_Gray_rtl .rtPlus,
*+html .RadTreeView_Gray_rtl .rtMinus
{
	margin-right:-18px;
	right:0;
}

.RadTreeView_Gray_rtl .rtTop,
.RadTreeView_Gray_rtl .rtMid, 
.RadTreeView_Gray_rtl .rtBot
{
	padding: 0 20px 2px 0;
	margin:0;
}

/* endof rtl-specific styles */


/* hacks for Opera & Safari */
@media screen and (min-width:550px)
{
	/* fixes for opera (changes the paddings/margins automatically in rtl mode) */

	html:first-child .RadTreeView_Gray_rtl .rtPlus,
	html:first-child .RadTreeView_Gray_rtl .rtMinus,
	html:first-child .RadTreeView_Gray_rtl .rtFirst .rtLI .rtPlus,
	html:first-child .RadTreeView_Gray_rtl .rtFirst .rtLI .rtMinus
	{
		margin:4px 6px 0 -18px;
		right:0;
	}
	
	/* fix for safari bug (inline-block positioned elements in rtl mode get no width) */
	:root .RadTreeView_Gray_rtl .rtPlus,
	:root .RadTreeView_Gray_rtl .rtMinus
	{
		right: 0;
		margin-right: -18px;
		margin-left: 7px;
	}
}

/* endof hacks */
/* END Telerik.Web.UI.Skins.Gray.TreeView.Gray.css */
/* START Telerik.Web.UI.Skins.Window.css */
/* RadWindow 2 Common Css */

div.radwindow
{
	float: left; position: absolute;
}

div.radwindow a
{
    outline: none;
}

div.radwindow table
{
    width: 100%;
    height: 100%;
}

div.radwindow div.min
{
	display: none;
}

div.radwindow table td
{
	padding: 0; margin: 0;
	border-collapse: collapse;
	vertical-align: top;
	font-size: 1px;
}

.radwindow .corner,
.radwindow .footercenter
{
    line-height:1;
}

div.radwindow table td.titlebar
{
	-moz-user-select: none;
	/*cursor: move;*/
}

div.radwindow td.titlebar div.topresize
{
	font-size: 1px;
	height: 4px !important;
	line-height: 4px !important;
	width: 100%;
}

div.radwindow td.statusbar input
{
	border: 0px;		
	background: transparent; background-repeat: no-repeat;		
	width: 100%;	
	cursor: default;
	-moz-user-select: none;
	overflow: hidden; text-overflow: ellipsis;
	display: block; float: left;
}

div.radwindow td.statusbar div
{		
	width: 18px; height: 18px;	
}

div.radwindow td.statusbar .loading
{
	padding-left:30px;
}

div.radwindow td.statusbar span.statustext
{
	cursor: default; -moz-user-select: none;
}

div.radwindow.nostatusbar tr.statusbarrow
{
	display: none;
}

div.radwindow table.titlebarcontrols ul.controlbuttons
{
	padding: 0; margin: 0;
	list-style: none; white-space:nowrap;	
	float: right; 
}

div.radwindow table.titlebarcontrols ul.controlbuttons li
{
	float: left;
}

div.radwindow table.titlebarcontrols ul.controlbuttons li a
{
	display: block; text-decoration: none;
}

div.radwindow table.titlebarcontrol ul.controlbuttons li a span
{
	text-indent: -9999px; display: block;	
}

div.radwindow table.titlebarcontrols a.windowicon
{
	display: block; margin-right: 3px;	
}

div.radwindow table.titlebarcontrols em
{	
	overflow: hidden; text-overflow: ellipsis; white-space: nowrap; float: left;	
}

div.radwindow.minimizedwindow
{
	overflow: hidden;
}

div.radwindow div.iconmenu
{
	float: left; position: absolute; z-index: 56000000;
}

div.radwindow div.iconmenu a
{
	cursor: default;
}

div.radwindow.inactivewindow table.titlebarcontrols
{
	position: static;
}
/* end of inactive window settings */

/* popup windows */
.radwindow .windowpopup a.radwindowbutton
{
    margin-top: 24px !important;
}

.radwindow .windowpopup a.radwindowbutton:focus,
.radwindow .windowpopup a.radwindowbutton:active
{
    border: 1px dotted #999999;                        
}

.radwindow .windowpopup a.radwindowbutton,
.radwindow .windowpopup a.radwindowbutton span
{
	display: block; float: left;
}

div.radwindow table.titlebarcontrols ul.controlbuttons li a
{
    text-indent: -9999px;
}

/* opera fix */
html:first-child div.radwindow ul
{
    float: right; 
    border: solid 1px transparent;
}

.radwindow .dialogtext
{
    text-align: left;
}

div.radwindow.minimizedwindow .pinbutton,
div.radwindow.minimizedwindow .reloadbutton,
div.radwindow.minimizedwindow .maximizebutton
{
    display: none !important;
}

.radwindow .contentrow .windowcontent
{
    font-size: 11px;
}

/* inactive window settings */
div.radwindow.inactivewindow td.corner,
div.radwindow.inactivewindow td.titlebar,
div.radwindow.inactivewindow td.footercenter
{
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=40) !important;
	opacity: .4 !important; -moz-opacity: .4 !important;
}
/* END Telerik.Web.UI.Skins.Window.css */
/* START Telerik.Web.UI.Skins.Outlook.Window.Outlook.css */
/* RADWINDOW PROMETHEUS "OUTLOOK" SKIN */

div.radwindow_Outlook table
{
    t/able-layout: fixed;
}

div.radwindow_Outlook table td.corner
{
	width: 4px;
}

div.radwindow_Outlook table td.topleft
{
	background: transparent url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg2e8b0Ajng3oUHBh53vNMh76YtSvGtZg6bh1LwpDXC6TnniH135fDzkCqUezjnRC-g1&t=633645880037968750') no-repeat left top;
	height: 8px;
}

div.radwindow_Outlook table td.topright
{
	background: transparent url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg2e8b0Ajng3oUHBh53vNMh7kvuj9LBhGitPbhZq5Wr6mJno5aiY1MMbUc7sZe6-EvU1&t=633645880037968750') no-repeat right top;
	height: 8px;
}

div.radwindow_Outlook table td.bodyleft
{
	background: transparent url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg2e8b0Ajng3oUHBh53vNMh74jfa11ZdsLw8q2ANZjryjEdqtsryKKhHLZhYwkauaCg1&t=633645880037968750') repeat-y left top;
}

div.radwindow_Outlook .windowcontent
{
	height: 100%;
	border: solid 1px black;
	border-bottom: 0;
	background: white;
}

div.radwindow_Outlook table td.bodyright
{
	background: transparent url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg2e8b0Ajng3oUHBh53vNMh7MyEbfcXqkNWWmwn6mgAbyMC1AWENMjH-h_FVE3Olxk41&t=633645880037968750') repeat-y right top;
}

div.radwindow_Outlook table td.footerleft
{
	background: transparent url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg2e8b0Ajng3oUHBh53vNMh7ced6lUD2zZMZJ6HQ626AEr8RavuzgtEqeOU03W_1L-I1&t=633645880037968750') no-repeat left bottom;
	height: 8px;
}

div.radwindow_Outlook table td.footerright
{
	background: transparent url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg2e8b0Ajng3oUHBh53vNMh7inCLbCZ0MVYovHWkRCEPdNEWTGjxaXgN3H2Yp2rurZI1&t=633645880037968750') no-repeat right bottom;
	height: 8px;
}

div.radwindow_Outlook table td.footercenter
{
	background: transparent url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg2e8b0Ajng3oUHBh53vNMh7zcnbHsFhaySgA_hQsJThUTGbei-B5hlAQOYqY1uCMR81&t=633645880037968750') repeat-x bottom;
	height: 8px;
}

div.radwindow_Outlook table td.titlebar
{
	background: transparent url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg2e8b0Ajng3oUHBh53vNMh7lnTTwjposOP8TFPhALPtxOmGIk8wm8JcKM0ETjYLdhM1&t=633645880037968750') repeat-x left top;
}

div.radwindow_Outlook td.statusbar
{
	height: 23px; line-height: 23px;
	background: #f7f3e9;
	border-top: solid 1px #6788be;
}

div.radwindow_Outlook td.statusbar input
{
    background-repeat: no-repeat;
    background: transparent;
    color: #6788be;
    padding-top: 6px;
    height: 17px;
    font: normal 11px Verdana, Arial, Sans-serif;
}

div.radwindow_Outlook td.statusbar div
{
      background: url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg2iUR4rNg6pm6makznRf5aBYq-yABmZbhX-Hx_gpzhh3sTAU2USz-txEqjlq9H5VZs1&t=633645880037968750') no-repeat -40px 4px;
}

div.radwindow_Outlook td.statusbar .loading
{	
	background-image: url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg2iUR4rNg6pm6makznRf5aByLHELtDF5nWOaC8DgkmUsw2&t=633645880037968750');	
}

div.radwindow_Outlook td.statusbar span.statustext
{
	font: normal 11px Verdana, Arial, Sans-serif;
	color: black;
}

div.radwindow_Outlook td.statusbar input
{
    background-color: #f7f3e9;
    background-repeat: no-repeat;
}

div.radwindow_Outlook table.titlebarcontrols ul.controlbuttons li a
{
	width: 13px; height: 13px; line-height: 13px; font-size: 1px;
	cursor: default;
	margin: 4px 0 0 2px;
}

/* reload button */
div.radwindow_Outlook a.reloadbutton
{
	background: transparent url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg2e8b0Ajng3oUHBh53vNMh7F6vM2CuCNnrQ_GKLScv3LBQgmn4T4adTTMXbMLMTPWM1&t=633645880037968750') no-repeat -50px top;
}

/* unpin button */
div.radwindow_Outlook a.pinbutton
{
	background: transparent url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg2e8b0Ajng3oUHBh53vNMh7F6vM2CuCNnrQ_GKLScv3LBQgmn4T4adTTMXbMLMTPWM1&t=633645880037968750') no-repeat 0 0;	
}

/* pin button */
div.radwindow_Outlook a.pinbutton.on
{
	background-position: -17px 0 !important;
}

/* minimize button */
div.radwindow_Outlook a.minimizebutton
{
	background: transparent url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg2e8b0Ajng3oUHBh53vNMh7F6vM2CuCNnrQ_GKLScv3LBQgmn4T4adTTMXbMLMTPWM1&t=633645880037968750') no-repeat -65px 0;
}

/* maximize button */
div.radwindow_Outlook a.maximizebutton
{
	background: transparent url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg2e8b0Ajng3oUHBh53vNMh7F6vM2CuCNnrQ_GKLScv3LBQgmn4T4adTTMXbMLMTPWM1&t=633645880037968750') no-repeat -80px 0;
}

/* close button */
div.radwindow_Outlook table.titlebarcontrols ul.controlbuttons li a.closebutton
{
	background: transparent url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg2e8b0Ajng3oUHBh53vNMh7F6vM2CuCNnrQ_GKLScv3LBQgmn4T4adTTMXbMLMTPWM1&t=633645880037968750') no-repeat 100% 0;
}

/* restore button */
div.radwindow_Outlook.maximizedwindow a.maximizebutton,
div.radwindow_Outlook.minimizedwindow a.minimizebutton
{
	background: transparent url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg2e8b0Ajng3oUHBh53vNMh7F6vM2CuCNnrQ_GKLScv3LBQgmn4T4adTTMXbMLMTPWM1&t=633645880037968750') no-repeat -34px 0 !important;
}

div.radwindow_Outlook table.titlebarcontrols a.windowicon
{
	background: transparent url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg2e8b0Ajng3oUHBh53vNMh7rIWvgNsUAv6vwJRjFtcuqg2&t=633645880037968750') no-repeat left top;
	width: 16px; height: 16px;
	cursor: default;
	margin: 6px 0 0 2px;
}

div.radwindow_Outlook table.titlebarcontrols em
{
	font-style: normal;
	font: normal 12px Verdana, Arial, sans-serif;
	color: black;	
	padding: 6px 0 0 4px;
}

div.radwindow_Outlook.minimizedwindow
{
	width: 140px !important; height: 30px !important;
	background: #abc1de;
	border: solid 1px #5d6f88;
}

/* overlay element should be minimized when the window is minimized */
iframe.minimizedwindowoverlay_Outlook
{
	/* take into account the borders of the main DIV of the window when setting width/height */
	width: 142px !important; height: 32px !important;
}

div.radwindow.radwindow_Outlook.minimizedwindow table.titlebarcontrols 
{
	width: 150px !important;
    position: relative; top: -4px;
}

div.radwindow_Outlook.minimizedwindow em
{
	color: white !important;
	width: 55px !important;
}

div.radwindow_Outlook.minimizedwindow td.corner
{
	cursor: default;
}

div.radwindow_Outlook.minimizedwindow td.corner.topleft,
div.radwindow_Outlook.minimizedwindow td.corner.topright
{
	background: none;
	width: 10px !important;
}

div.radwindow_Outlook.minimizedwindow td.titlebar
{
	background: none;
	cursor: default !important;
}

div.radwindow_Outlook .windowcontent .windowpopup
{
	margin:16px;
	font:normal 11px Arial;
	color:black;	
	padding:0px 0px 16px 50px;
}

div.radwindow_Outlook .windowcontent .windowpopup.radalert
{
	background: transparent url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg05y2ToJZo07gVQqL06XaB_xrrUnME9328jF4gVeHfekbMi2JHk97E-xbiMDAyHRvE1&t=633645880037968750') no-repeat 8px center;
}

div.radwindow_Outlook .windowcontent .windowpopup.radprompt
{
	padding: 0;
}

div.radwindow_Outlook .windowcontent .windowpopup.radconfirm
{
	background: transparent url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg05y2ToJZo07gVQqL06XaB_4o8tCiyoIPkzF-E0As1Y9HVLMGXyLdjIR87IPD_dEkw1&t=633645880037968750') no-repeat 8px center;	
}

div.radwindow_Outlook .windowcontent input.dialoginput
{
	border: solid 1px #666;
	padding: 3px 4px 0 4px;
	height: 17px;
	background: transparent url('<%=WebResource("Telerik.Web.UI.Skins.Office2007.Window.ModalDialogButtonSprites.gif') repeat-x 0 -44px;
	width: 100%;
	font: normal 11px Verdana, Arial, Sans-serif;
}

div.radwindow_Outlook .windowcontent a,
div.radwindow_Outlook .windowcontent a span
{
	text-decoration: none;
	color: black;
	line-height: 22px;
	cursor: default;
}

div.radwindow_Outlook .windowcontent a.radwindowbutton
{
	background: transparent url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg05y2ToJZo07gVQqL06XaB_g40_glMu2xosmbiV4es9L0O0uDqYUveO5ppWQSnW1lQ1&t=633645880037968750') no-repeat 0 0; 
	padding: 0 0 0 3px;
	margin: 8px 8px 8px 0;
}

div.radwindow_Outlook .windowcontent a.radwindowbutton span.outerspan
{
	background: transparent url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg05y2ToJZo07gVQqL06XaB_g40_glMu2xosmbiV4es9L0O0uDqYUveO5ppWQSnW1lQ1&t=633645880037968750') no-repeat 100% 0;
	padding: 0 3px 0 0;
}

div.radwindow_Outlook .windowcontent a.radwindowbutton span.innerspan
{
	background: white url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg05y2ToJZo07gVQqL06XaB_g40_glMu2xosmbiV4es9L0O0uDqYUveO5ppWQSnW1lQ1&t=633645880037968750') repeat-x 0 -22px;
	padding: 0 12px;
}

div.radwindow_Outlook .windowcontent a.radwindowbutton:hover
{
	background: transparent url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg05y2ToJZo07gVQqL06XaB_g40_glMu2xosmbiV4es9L0O0uDqYUveO5ppWQSnW1lQ1&t=633645880037968750') no-repeat 0 -64px; 
	padding: 0 0 0 3px;
	margin: 8px 8px 8px 0;
}

div.radwindow_Outlook .windowcontent a.radwindowbutton:hover span.outerspan
{
	background: transparent url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg05y2ToJZo07gVQqL06XaB_g40_glMu2xosmbiV4es9L0O0uDqYUveO5ppWQSnW1lQ1&t=633645880037968750') no-repeat right -64px;
	padding: 0 3px 0 0;
}

div.radwindow_Outlook .windowcontent a.radwindowbutton:hover span.innerspan
{
	background: white url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg05y2ToJZo07gVQqL06XaB_g40_glMu2xosmbiV4es9L0O0uDqYUveO5ppWQSnW1lQ1&t=633645880037968750') repeat-x 0 -86px;
	padding: 0 12px;
}

div.modaldialogbacgkround
{
	background: black;
}

/* set window transparency */
div.radwindow.radwindow_Outlook.normalwindow.transparentwindow td.corner,
div.radwindow.radwindow_Outlook.normalwindow.transparentwindow td.titlebar,
div.radwindow.radwindow_Outlook.transparentwindow td.footercenter
{
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=80);
	opacity: .8; -moz-opacity: .8;
}

div.radwindow_Outlook .topresize
{
    background: transparent url('/WebResource.axd?d=5tDsusWfil_fQD4mO8hHhLADY33nIErH_PZFPeNIQg2e8b0Ajng3oUHBh53vNMh7lnTTwjposOP8TFPhALPtxOmGIk8wm8JcKM0ETjYLdhM1&t=633645880037968750') repeat-x;
}
/* END Telerik.Web.UI.Skins.Outlook.Window.Outlook.css */
