/* START Telerik.Web.UI.Skins.TreeView.css */
/*

RadTreeView base css

* Notes on some CSS class names *

class  --  HTML element  --  description 

rtUL  --  <ul>  --  multiple nodes container
rtLI  --  <li>  --  one node 
rtFirst  --  <li>  -- TreeView's first node
rtLast  --  <li>  -- last node in a given node group (<ul>)
rtTop,rtMid,rtBot  --  <div>  -- a wrapper (<div>) inside a node (<li>) - can be in a top, middle or bottom node in a given node group
rtIn  --  <span> or <div>  -- the inner container inside a node - contains text (<span> rendering) or template (<div> rendering)
rtSp  --  <span>  -- holds a dummy element for adjustment of node heights (should be an even number if the skin node lines are dotted)
rtChk  --  <input>  -- holds a node's checkbox
rtImg  --  <img>  -- holds a node's icon
rtPlus,rtMinus -- <span> -- holds a node's expand / collapse buttons (plus / minus signs)

*/

/* <general styles> */

.RadTreeView
{
	white-space:nowrap;
	cursor: default;
}

.RadTreeView .rtTop,
.RadTreeView .rtMid,
.RadTreeView .rtBot,
.RadTreeView .rtUL
{
	zoom:1;
}

.RadTreeView .rtSp,
.RadTreeView .rtImg,
.RadTreeView .rtIn,
.RadTreeView .rtChk
{
	vertical-align:middle;
}

.RadTreeView .rtUL
{
	margin: 0;
	padding: 0;
	-moz-user-select: -moz-none;
}

.RadTreeView .rtLI
{
	list-style-image: none;
	list-style-position: outside;
	list-style: none;
}

.RadTreeView .rtUL .rtLI .rtUL
{
	padding-left: 20px;
}

.RadTreeView .rtTop, 
.RadTreeView .rtMid, 
.RadTreeView .rtBot
{
	padding: 1px 0 1px 20px;
}

/* <expand/collapse images> */

.RadTreeView .rtPlus, 
.RadTreeView .rtMinus
{
	font-size: 0;
	padding: 0;
	display: -moz-inline-box;
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
	margin: 6px 7px 0 -18px;
	width: 11px;
	height: 11px;
	background-repeat: no-repeat;
}

* html .RadTreeView .rtPlus, 
* html .RadTreeView .rtMinus { margin-right: 1px; }
*+html .RadTreeView .rtPlus, 
*+html .RadTreeView .rtMinus { margin-right: 1px; }

.RadTreeView .rtPlus { background-position: 0 0; }
.RadTreeView .rtPlus:hover { background-position: 0 -22px; }
.RadTreeView .rtMinus { background-position: 0 -11px; }
.RadTreeView .rtMinus:hover { 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 .rtPlus:hover { background-position: -11px -22px; }
.RadTreeView_rtl .rtMinus { background-position: -11px -11px; }
.RadTreeView_rtl .rtMinus:hover { background-position: -11px -33px; }

.RadTreeView_rtl .rtPlus,
.RadTreeView_rtl .rtMinus
{
	margin-right:7px;
	right:-20px;
}

/* firefox 2 */
.RadTreeView_rtl .rtPlus,
.RadTreeView_rtl .rtMinus,
x:-moz-any-link
{
	margin-right:-11px;
	right:-8px;
}

/* firefox 3 */
.RadTreeView_rtl .rtPlus,
.RadTreeView_rtl .rtMinus,
x:-moz-any-link, x:default
{
	margin-right:7px;
	right:-20px;
}

/* ie 6 */
* html .RadTreeView_rtl .rtPlus,
* html .RadTreeView_rtl .rtMinus
{
	margin-right:-13px;
	right:0;
}

/* ie 7 */
*+html .RadTreeView_rtl .rtPlus,
*+html .RadTreeView_rtl .rtMinus
{
	margin-right: -13px;
	right: 0;
	width: 0;
	padding-left: 11px;
}

/* safari & opera */
@media screen and (min-width:50px)
{
	.RadTreeView .rtPlus,
	.RadTreeView .rtMinus
	{
		margin-right: 7px;
		margin-left: -18px;
	}
	
	/* fix for safari bug (inline-block positioned elements in rtl mode get no width) */
	:root .RadTreeView_rtl .rtPlus,
	:root .RadTreeView_rtl .rtMinus
	{
		right: 0;
		margin-right: -13px;
		margin-left: 2px;
	}
}

/* opera */
@media all and(-webkit-max-device-pixel-ratio:10000),
   not all and(-webkit-min-device-pixel-ratio:0) {

	:root .RadTreeView_rtl .rtPlus,
	:root .RadTreeView_rtl .rtMinus
	{
		position: relative;
		margin-left: 2px;
		margin-right: -13px;
		right: -15px;
	}
}

/* </RTL support> */

/* <design-time support> */
div.RadTreeView_designtime .rtTop, 
div.RadTreeView_designtime .rtMid, 
div.RadTreeView_designtime .rtBot
{
	position: relative;
}

div.RadTreeView_designtime .rtPlus, 
div.RadTreeView_designtime .rtMinus
{
	margin: 0;
	position: absolute;
	left: 3px;
	top: 4px;
}
/* </design-time support> */

/* END Telerik.Web.UI.Skins.TreeView.css */
/* START Telerik.Web.UI.Skins.Window.css */
/* RadWindow for ASP.NET AJAX Base Stylesheet */

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

.RadWindow .rwTopResize
{
	font-size: 1px;
	line-height: 4px;
	width: 100%;
	height: 4px;
	background-position: 0 -31px;
	background-repeat: repeat-x;
}

.RadWindow .rwStatusbarRow .rwCorner
{
    background-repeat: no-repeat;
}

.RadWindow .rwStatusbarRow .rwBodyLeft
{
    background-position: -16px 0;
}

.RadWindow .rwStatusbarRow .rwBodyRight
{
    background-position: -24px 0;
}

.RadWindow .rwStatusbar
{
	height: 22px;
	background-position: 0 -114px;
	background-repeat: repeat-x;
}

.RadWindow .rwStatusbar div
{
    width: 18px; 
	height: 18px;
	background-position: 0 -94px;
	background-repeat: no-repeat;
}

.RadWindow table
{
    width: 100%;
    height: 100%;
    table-layout: auto; /* fixes the dimensions under IE */
}

.RadWindow table td
{
	padding: 0; 
	margin: 0;
	border-collapse: collapse;
	vertical-align: top;
}

.RadWindow .rwCorner
{
    width: 8px;
}

.RadWindow .rwTopLeft,
.RadWindow .rwTopRight,
.RadWindow .rwTitlebar,
.RadWindow .rwFooterLeft,
.RadWindow .rwFooterRight,
.RadWindow .rwFooterCenter
{
    height: 8px;
	font-size: 1px;
    background-repeat: no-repeat;
    line-height: 1px;
}

.RadWindow .rwBodyLeft,
.RadWindow .rwBodyRight
{
	background-repeat: repeat-y;
}

.RadWindow .rwBodyRight
{
    background-position: -8px 0;
}

.RadWindow .rwTopLeft
{
    background-position: 0 0;
}

.RadWindow .rwTopRight
{
    background-position: -8px 0;
}

.RadWindow table .rwTitlebar
{
	background-repeat: repeat-x;
	background-position: 0 -31px;
	-moz-user-select: none;
}

.RadWindow .rwFooterLeft
{
	background-position: 0 -62px;
}

.RadWindow .rwFooterRight
{
	background-position: -8px -62px;
}

.RadWindow .rwFooterCenter
{
	background-repeat: repeat-x;
	background-position: 0 -70px;
}

.RadWindow .rwTitlebarControls
{
    height: 27px;
}

.RadWindow .rwWindowContent
{
	height: 100% !important; /* very important property, especially for opera */
	background: white;
}

/* Support for displayng the rwLoading image in the iframe's parent TD */
.RadWindow td.rwLoading
{
    background-repeat: no-repeat;
    background-position: center;
}

/* Support for displaying rwLoading image in the status bar  */
.RadWindow .rwStatusbar .rwLoading
{	
	background-repeat: no-repeat;
}

.RadWindow .rwStatusbar .rwLoading
{
	padding-left: 30px;
}

.RadWindow td.rwStatusbar input
{
    font: normal 12px "Segoe UI", Arial, Verdana, Sans-serif;
    padding: 4px 0 0 7px;
    margin: 0;
    border: 0 !important;
    width: 100%;	
    height: 18px;
	background-color: transparent !important; 
	background-repeat: no-repeat !important;
	background-position: left center !important;
	cursor: default;
	-moz-user-select: none;
	overflow: hidden; 
	text-overflow: ellipsis;
	display: block; 
	float: left;
	vertical-align: middle;
}

.RadWindow .rwControlButtons
{
	padding: 0; 
	margin: 2px 0 0 0;
	list-style: none; 
	white-space: nowrap;	
	float: right; 
}

.RadWindow .rwControlButtons li
{
	float: left;
	padding: 0 1px 0 0;
}

.RadWindow .rwControlButtons a
{
	width: 30px; 
	height: 21px; 
	line-height: 1px; 
	font-size: 1px;
	cursor: default;
	background-repeat: no-repeat;
	display: block; 
	text-decoration: none;
	outline: none;
}

.RadWindow .rwControlButtons span
{
	display: block;	
}

/* reload button */
.RadWindow  .rwReloadButton
{
	background-position: -120px 0;
}

.RadWindow .rwReloadButton:hover
{
	background-position: -120px -21px;
}

/* unpin button */
.RadWindow .rwPinButton
{
	background-position: -180px 0;
}

.RadWindow .rwPinButton:hover
{
	background-position: -180px -21px;
}

/* pin button */
.RadWindow .rwPinButton.on
{
	background-position: -150px 0;
}

.RadWindow .rwPinButton.on:hover
{
	background-position: -150px -21px;
}

/* minimize button */
.RadWindow .rwMinimizeButton
{
	background-position: 0 0;
}

.RadWindow .rwMinimizeButton:hover
{
	background-position: 0 -21px;
}

/* maximize button */
.RadWindow .rwMaximizeButton
{
	background-position: -60px 0;
}

.RadWindow .rwMaximizeButton:hover
{
	background-position: -60px -21px;
}

/* close button */
.RadWindow .rwCloseButton
{
	background-position: -90px 0;
}

.RadWindow .rwCloseButton:hover
{
	background-position: -90px -21px;
}

/* restore button */
.RadWindow.rwMaximizedWindow .rwMaximizeButton,
.RadWindow.rwMinimizedWindow .rwMinimizeButton
{
	background-position: -30px 0;
}

.RadWindow.rwMaximizedWindow .rwMaximizeButton:hover,
.RadWindow.rwMinimizedWindow .rwMinimizeButton:hover
{	
	background-position: -30px -21px;
}

.RadWindow .rwIcon
{
    display: block;
	background-repeat: no-repeat;
	background-position: 0 -78px;
	width: 16px; 
	height: 16px;
	cursor: default;
	margin: 4px 5px 0 0;
}

.RadWindow em
{
	font: normal bold 12px "Segoe UI", Arial;
	color: black;
	padding: 3px 0 0 4px;	
	overflow: hidden; 
	text-overflow: ellipsis; 
	white-space: nowrap; 
	float: left;	
}

.RadWindow_rtl .rwControlButtons
{
	float: left; 
}

div.RadWindow_rtl .rwControlButtons li
{
	float: right;
}

.RadWindow.rwInactiveWindow .rwTitlebarControls
{
	position: static;
}

.RadWindow .rwDialogPopup
{
	margin: 16px;
	color: black;	
	padding: 0px 0px 16px 50px;
	font: normal 12px "Segoe UI", Arial, Verdana;
	cursor: default;
}

.rwDialogPopup .rwPopupButton
{
    margin: 0;
}

.rwDialogPopup .rwPopupButton:focus,
.rwDialogPopup .rwPopupButton:active
{
    border: dotted 1px #999;                        
}

.rwDialogPopup .rwPopupButton,
.rwDialogPopup .rwPopupButton span
{
	display: block; 
	float: left;
}

.RadWindow .rwControlButtons a
{
    text-indent: -3333px;
    overflow: hidden;
    text-align:center;
}

html:first-child .RadWindow ul
{
    float: right; 
    border: solid 1px transparent;
}

.RadWindow .rwDialogText
{
    text-align: left;
}

.RadWindow.rwMinimizedWindow .rwPinButton,
.RadWindow.rwMinimizedWindow .rwReloadButton,
.RadWindow.rwMinimizedWindow .rwMaximizeButton,
.RadWindow.rwMinimizedWindow .rwTopResize
{
    display: none !important;
}

.RadWindow .rwDialogInput
{
	font: normal 12px "Segoe UI", Arial, Verdana;
	color: black;
	width: 100%;
	display: block;
	margin: 8px 0;
}

.RadWindow .rwWindowContent .radconfirm,
.RadWindow .rwWindowContent .radalert
{
    background-color: transparent;
	background-position: left center;
	background-repeat: no-repeat;
}

.RadWindow .rwWindowContent .radconfirm
{
    background-image: url('http://apps.americanpainsociety.org/WebResource.axd?d=xFjvaFxVPiUNum_33C1wa5pEFMJM113a_uurqrkQgZmeEJEe_0RSV1xcH0wai6nBoQvXbXce_iuttcOU9SJpv1_CWG8fW20maoToYKMXQkzIozWotbmUJSB2ReCAg7mu7-F4IXHPoU-Vad424HPx6O_Ursg1&t=634921088700000000');	
}

.RadWindow .rwWindowContent .radalert
{
    background-image: url('http://apps.americanpainsociety.org/WebResource.axd?d=K6v-TN04fbzGuCTIDwKbEKZYrWSHnOHhJaF35Y89uIyVtVOCdfptQHj6FlEmceCGN1QYF718-9oSFxgL2G6MJpTppdtEFl5JXUiZaNLUNjXt1ZxxG4UolMFthAxiB-Cue3IPTGz3rsJwmN0YJ8-UEjSYD3Q1&t=634921088700000000');	
}

.RadWindow .rwWindowContent .radprompt
{
	padding: 0;
}

.RadWindow .rwPopupButton,
.RadWindow .rwPopupButton span
{
	text-decoration: none;
	color: black;
	line-height: 21px;
	height: 21px;
	cursor: default;
}

.RadWindow .rwPopupButton
{
	background-repeat: no-repeat;
	background-position: 0 -136px; 
	padding: 0 0 0 3px;
	margin: 8px 8px 8px 0;
}

.RadWindow .rwWindowContent .rwPopupButton .rwOuterSpan
{
    background-repeat: no-repeat;
	background-position: right -136px; 
	padding: 0 3px 0 0;
}

.RadWindow .rwWindowContent .rwPopupButton .rwInnerSpan
{
	background-repeat: repeat-x;
	background-position: 0 -157px; 
	padding: 0 12px;
}

.RadWindow .rwWindowContent .rwPopupButton:hover
{
	background-position: 0 -178px; 
	padding: 0 0 0 3px;
	margin: 8px 8px 8px 0;
}

.RadWindow .rwWindowContent .rwPopupButton:hover .rwOuterSpan
{
	background-position: right -178px; 
	padding: 0 3px 0 0;
}

.RadWindow .rwWindowContent .rwPopupButton:hover .rwInnerSpan
{
	background-position: 0 -199px; 
	padding: 0 12px;
}

.RadWindow .rwStatusbarRow .rwBodyLeft
{
    background-position: -16px 0;
}

.RadWindow .rwStatusbarRow .rwBodyRight
{
    background-position: -24px 0;
}

.RadWindow.rwMinimizedWindow .rwContentRow,
.RadWindow.rwMinimizedWindow .rwStatusbarRow
{
	display: none;
}

.RadWindow.rwMinimizedWindow table.rwTitlebarControls 
{
	margin-top: 4px;
}

.RadWindow.rwMinimizedWindow .rwControlButtons
{
    width: 66px !important;
}

.RadWindow.rwMinimizedWindow em
{
	width: 90px;
}

.RadWindow.rwMinimizedWindow
{
    width: 200px !important;
    height: 30px !important;
    overflow: hidden !important;
    float: left !important;
}

.RadWindow.rwMinimizedWindow .rwCorner.rwTopLeft
{
	background-position: 0 -220px;
	background-repeat: no-repeat; 
}

.RadWindow.rwMinimizedWindow .rwCorner.rwTopRight
{
	background-position: -8px -220px;
	background-repeat: no-repeat; 
}

.RadWindow.rwMinimizedWindow .rwTitlebar
{
    background-position: 0 -250px !important; /* Should be !important because of IE6 */
    background-repeat: repeat-x;
}

.RadWindow.rwInactiveWindow .rwCorner,
.RadWindow.rwInactiveWindow .rwTitlebar,
.RadWindow.rwInactiveWindow .rwFooterCenter
{
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=65) !important;
	opacity: .65 !important; 
	-moz-opacity: .65 !important;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=65)";
}

/* stop the control buttons from stretching in IE8 */
.RadWindow ul.rwControlButtons span
{
    display /*\**/: none\9
}

/* css for window's top corners when visibletitlebar is set to false */
div.RadWindow.rwNoTitleBar tr.rwTitleRow td.rwTopLeft
{
    background-position: 0 -280px;
}

div.RadWindow.rwNoTitleBar tr.rwTitleRow td.rwTitlebar
{
    background-position: 0 -288px;
    background-repeat: repeat-x;
}

div.RadWindow.rwNoTitleBar tr.rwTitleRow td.rwTopRight
{
    background-position: -8px -280px;
}

div.RadWindow.rwNoTitleBar div.rwTopResize
{
    background: none;
}
/* END Telerik.Web.UI.Skins.Window.css */
/* START Telerik.Web.UI.Skins.Input.css */
/*Telerik RadInput Common CSS*/

/*global*/

.RadInput,
.RadInputMgr
{
	vertical-align:middle;
}

.RadInput table
{
	border:0;
	vertical-align:bottom;
}

.RadInput table.riTable td
{
	border:0;
	padding:0;
	vertical-align:middle;
	overflow:visible;/*RadGrid*/
}

.RadInput table td.riCell
{
	padding-right:4px;
}

.RadInput textarea
{
	vertical-align:bottom;
	overflow:auto;
}

/*textbox states*/

html body .RadInput .riTextBox,
html body .RadInputMgr
{
	border-width:1px;
	border-style:solid;
	padding:2px 1px 3px;
}

textarea.RadInputMgr
{
	overflow:auto;
}

/*buttons*/

.RadInput a
{
	display:block;
	overflow:hidden;
	position:relative;/*FF*/
	outline:none;/*FF*/
	z-index:2;/*Opera*/
	text-indent:-2222px;
	text-align:center;
	text-decoration:none;
}
* html .RadInput a{position:static}/*IE6*/
*+html .RadInput a{position:static}/*IE7*/

.RadInput .riSpin a
{
	margin:0 1px;
}

.RadInput a.riDown
{
	margin-top:3px;
}

* html .RadInput a.riDown
{
	margin-top /**/:0;
}

/*label*/

.RadInput .riLabel
{
	margin:0 4px 0 0;
	white-space:nowrap;
}
/* END Telerik.Web.UI.Skins.Input.css */
/* START Telerik.Web.UI.Skins.WebBlue.Input.WebBlue.css */
/*Telerik RadInput WebBlue Skin*/

/*global*/

.RadInput_WebBlue,
.RadInputMgr_WebBlue
{
	font:12px "segoe ui",arial,sans-serif;
}

/*textbox states*/

html body .RadInput_WebBlue .riTextBox,
html body .RadInputMgr_WebBlue
{
	border-color:#768ca5;
	background:#fff;
	color:#000;
	font:12px "segoe ui",arial,sans-serif;
}

html body .RadInput_WebBlue .riEmpty,
html body .RadInput_Empty_WebBlue
{
	color:#777;
}

html body .RadInput_WebBlue .riHover,
html body .RadInput_Hover_WebBlue,
html body .RadInput_WebBlue .riFocused,
html body .RadInput_Focused_WebBlue
{
	border-color:#133c44;
}

html body .RadInput_WebBlue .riRead,
html body .RadInput_Read_WebBlue
{
	border-color:#b0b0b0;
}

html body .RadInput_WebBlue .riDisabled,
html body .RadInput_Disabled_WebBlue
{
	border-color:#b0b0b0;
	color:#777;
	cursor:default;
}

html body .RadInput_WebBlue .riError,
html body .RadInput_Error_WebBlue
{
	border-color:#d24000;
	background:#fff 100% -298px no-repeat url('http://apps.americanpainsociety.org/WebResource.axd?d=wvKb5odZ6AEFhRWqvAjqLchldDVEfUdwYSNf8i0L-G6djYaLDduGlGSS1C-H_46M5oAU_doVPyKHuiJCv7upEGcsoCn0MXt6F9fU2bY_4rH6ozZyhM0guDSrjZBO6ldNimWdVSmtnDVwUlVO0&t=634921088700000000');
	color:#b32d34;
}

.RadForm.rfdTextbox .RadInput_WebBlue .riError[type="text"],
.RadForm.rfdTextbox .RadInput_Error_WebBlue[type="text"]
{
	border-color:#d24000;
	background:#fff 100% -298px no-repeat url('http://apps.americanpainsociety.org/WebResource.axd?d=wvKb5odZ6AEFhRWqvAjqLchldDVEfUdwYSNf8i0L-G6djYaLDduGlGSS1C-H_46M5oAU_doVPyKHuiJCv7upEGcsoCn0MXt6F9fU2bY_4rH6ozZyhM0guDSrjZBO6ldNimWdVSmtnDVwUlVO0&t=634921088700000000');
	color:#b32d34;
}

html body .RadInput_WebBlue .riNegative,
html body .RadInput_Negative_WebBlue
{
	color:#444;
}

/*buttons*/

.RadInput_WebBlue a
{
	background:transparent no-repeat url('http://apps.americanpainsociety.org/WebResource.axd?d=wvKb5odZ6AEFhRWqvAjqLchldDVEfUdwYSNf8i0L-G6djYaLDduGlGSS1C-H_46M5oAU_doVPyKHuiJCv7upEGcsoCn0MXt6F9fU2bY_4rH6ozZyhM0guDSrjZBO6ldNimWdVSmtnDVwUlVO0&t=634921088700000000');
}

/*go*/

.RadInput_WebBlue .riBtn a
{
	width:20px;
	height:18px;
	line-height:18px;
	background-position:3px 5px;
}

.RadInput_WebBlue .riBtn a:hover
{
	background-position:3px -45px;
}

/*spin*/

.RadInput_WebBlue .riSpin a
{
	width:15px;
	height:7px;
	line-height:7px;
}

.RadInput_WebBlue .riUp
{
	background-position:4px -98px;
}

.RadInput_WebBlue .riUp:hover
{
	background-position:4px -148px;
}

.RadInput_WebBlue a.riDown
{
	background-position:4px -199px;
}

.RadInput_WebBlue a.riDown:hover
{
	background-position:4px -249px;
}

/*label*/

.RadInput_WebBlue .riLabel
{
	color:#000;
}
/* END Telerik.Web.UI.Skins.WebBlue.Input.WebBlue.css */
/* START Telerik.Web.UI.Skins.ComboBox.css */
/* RadComboBox base skin */

/*global*/

.RadComboBox *
{
	margin: 0;
	padding: 0;
}

.RadComboBox,
.RadComboBox .rcbInput,
.RadComboBoxDropDown
{
	text-align: left;
}

.RadComboBox_rtl,
.RadComboBox_rtl .rcbInput,
.RadComboBoxDropDown_rtl
{
	text-align: right;
}

/* combobox */

.RadComboBox
{
	vertical-align: middle;
}

* html .RadComboBox { vertical-align: top; }

.RadComboBox table
{
	border: 0;
	border-collapse: collapse;
}

.RadComboBox table td.rcbInputCell
{
	width: 100%;
	height: 20px;
	line-height: 20px;
	vertical-align: middle;
	padding: 0;
	border: 0;
}

* html .RadComboBox td.rcbInputCell
{
	height /**/: 22px;
	line-height /**/: 22px;
}

/* combobox */

.RadComboBox .rcbInputCellLeft,
.RadComboBox .rcbInputCellRight,
.RadComboBox .rcbArrowCellLeft,
.RadComboBox .rcbArrowCellRight
{
	background-color: transparent;
	background-repeat: no-repeat;
}

.RadComboBox .rcbInputCell .rcbInput
{
	width: 100%;
	background: transparent;
	border: 0;
	vertical-align: middle;
	padding: 2px 0 1px;
	outline: 0;
}

* html .RadComboBox .rcbInputCell .rcbInput
{
	height /**/: 18px;
	padding /**/: 2px 0 0; /* This should fix the ajax introduced height in IE6 */
}

.RadComboBox .rcbInputCell .rcbEmptyMessage
{
	font-style: italic;
}

.RadComboBox .rcbReadOnly .rcbInput
{
	cursor: default;
}

.RadComboBox table td.rcbInputCell,
.RadComboBox .rcbInputCell .rcbInput
{
	padding-left: 2px;
}

.RadComboBox_rtl table td.rcbInputCell,
.RadComboBox_rtl .rcbInputCell .rcbInput
{
	padding-right: 2px;
	padding-left: 0;
}

.RadComboBox table td.rcbArrowCell
{
	width: 18px;
	padding: 0;
	border: 0;
}

.RadComboBox .rcbArrowCell a
{
	position: relative;
	outline: 0;
	overflow: hidden;
	display: block;
	width: 18px;
	height: 22px;
	text-decoration: none;
	text-indent: 9999px;
	font-size: 0;
	line-height: 1px;
}

div.RadComboBox td.rcbArrowCellHidden,
div.RadComboBox .rcbArrowCellHidden a
{
	width: 3px;
}

/* Read-only styles */

.RadComboBox .rcbReadOnly td.rcbArrowCell { width: 16px; }
.RadComboBox .rcbReadOnly td.rcbArrowCell a { width: 16px; }

.RadComboBox .rcbReadOnly td.rcbArrowCellHidden,
.RadComboBox .rcbReadOnly td.rcbArrowCellHidden a { width: 3px; } 

/* dropdown */

.rcbSlide
{
	position: absolute;
	overflow: hidden;
	display: none;
	_height: 1px;
	float: left;
}

.RadComboBoxDropDown .rcbHeader,
.RadComboBoxDropDown .rcbFooter,
.RadComboBoxDropDown .rcbMoreResults,
.RadComboBoxDropDown .rcbMoreResults a
{
	background-repeat: no-repeat;
}

.RadComboBoxDropDown
{
	position: absolute;
	cursor: default;
	font-size: 11px;
	border-width: 1px;
	border-style: solid;
}

.RadComboBoxDropDown_rtl
{
	text-align: right;
	direction: rtl;
}

.RadComboBoxDropDown .rcbScroll
{
	overflow: auto;
	position: relative;
}

.RadComboBoxDropDown .rcbList
{
	list-style: none outside;
	position: relative;
	margin: 0;
	padding: 0;
}

.RadComboBoxDropDown .rcbHeader,
.RadComboBoxDropDown .rcbFooter
{
	background-repeat: repeat-x;
	padding: 5px 7px 4px;
}

.RadComboBoxDropDown .rcbHeader
{
	border-bottom-width: 1px;
	border-bottom-style: solid;
	margin-bottom: 1px;
}

.RadComboBoxDropDown .rcbFooter
{
	border-top-width: 1px;
	border-top-style: solid;
	margin-top: 1px;
}

.RadComboBoxDropDown .rcbNoWrap .rcbItem,
.RadComboBoxDropDown .rcbNoWrap .rcbHovered,
.RadComboBoxDropDown .rcbNoWrap .rcbDisabled,
.RadComboBoxDropDown .rcbNoWrap .rcbLoading
{
	white-space: nowrap;
}

.RadComboBoxDropDown .rcbItem,
.RadComboBoxDropDown .rcbHovered,
.RadComboBoxDropDown .rcbDisabled,
.RadComboBoxDropDown .rcbLoading
{
	padding: 2px 6px;
	margin: 0 1px;
}

html>/**/body .RadComboBoxDropDown .rcbItem,
html>/**/body .RadComboBoxDropDown .rcbHovered,
html>/**/body .RadComboBoxDropDown .rcbDisabled,
html>/**/body .RadComboBoxDropDown .rcbLoading
{
	min-height: 13px;
}

*+html .RadComboBoxDropDown .rcbItem,
*+html .RadComboBoxDropDown .rcbHovered,
*+html .RadComboBoxDropDown .rcbDisabled,
*+html .RadComboBoxDropDown .rcbLoading
{
	height: auto;
}

.RadComboBoxDropDown_rtl .rcbItem,
.RadComboBoxDropDown_rtl .rcbHovered,
.RadComboBoxDropDown_rtl .rcbDisabled,
.RadComboBoxDropDown_rtl .rcbLoading
{
	padding: 2px 6px;
}

.RadComboBoxDropDown .rcbImage
{
	vertical-align: middle;
	margin: 0 6px 2px 0;
}

.RadComboBoxDropDown_rtl .rcbImage
{
	margin: 0 0 2px 6px;
}

.RadComboBoxDropDown .rcbHovered
{
	background-repeat: repeat-x;
}

.RadComboBoxDropDown em
{
	font-style: normal;
	font-weight: bold;
}

*+html div.RadComboBoxDropDown .rcbList { zoom: 1; } /* IE7 item width fix */
* html div.RadComboBoxDropDown .rcbItem,
* html div.RadComboBoxDropDown .rcbHovered { zoom: 1; } /* IE6 item width fix */

.RadComboBox .rcbDisabled .rcbInputCell .rcbInput,
.RadComboBoxDropDown .rcbDisabled
{
	cursor: default;
}

.RadComboBoxDropDown .rcbLoading
{
	text-align: center;
}

.RadComboBoxDropDown .rcbMoreResults
{
	clear: both;
	border-top-width: 1px;
	border-top-style: solid;
	background-repeat: repeat-x;
	position: relative;
	padding: 0 6px 0;
	text-align: center;
	margin-top: 1px;
}

.RadComboBoxDropDown .rcbMoreResults a
{
	display: inline-block;
	width: 15px;
	height: 9px;
	text-indent: -9999px;
	overflow: hidden;
	text-decoration: none;
	cursor: pointer;
	vertical-align: middle;
}

* html .RadComboBoxDropDown .rcbMoreResults a
{
	font-size: 0;
	line-height: 0;
	text-indent: 0;
}

*+html .RadComboBoxDropDown .rcbMoreResults a
{
	font-size: 0;
	line-height: 0;
	text-indent: 0;
}

.RadComboBoxDropDown .rcbMoreResults span
{
	vertical-align: middle;
	height: 19px;
	line-height: 19px;
	display: inline-block;
}

.RadComboBoxDropDown .rcbSeparatedList .rcbItem,
.RadComboBoxDropDown .rcbSeparatedList .rcbHovered,
.RadComboBoxDropDown .rcbSeparatedList .rcbDisabled,
.RadComboBoxDropDown .rcbSeparatedList .rcbLoading
{
	padding-left: 12px;
}

.RadComboBoxDropDown .rcbSeparatedList .rcbSeparator
{
	padding-left: 6px;
}

/*<ComboBox with Label>*/

.RadComboBoxWithLabel .rcbLabel
{
	vertical-align: top;
	padding-right: 10px;
	line-height: 22px;
	zoom: 1;
}

.RadComboBox_rtl .rcbLabel
{
	text-align: right;
	padding: 0 0 0 10px;
}
*+html .RadComboBox_rtl .rcbLabel { margin-right: 5px; }
* html .RadComboBox_rtl .rcbLabel { margin-right: 5px; }

.RadComboBoxWithLabel table
{
	vertical-align: top;
	float: none;
	display: inline-block;
	zoom: 1;
}
*+html .RadComboBoxWithLabel table { display: inline; margin-right: 5px; }
* html .RadComboBoxWithLabel table { display: inline; margin-right: 5px; }

.RadComboBoxWithLabel
{
	white-space: nowrap;
	zoom: normal;
}

/*</ComboBox with Label>*/

/*hacks*/

/*Opera start*/
@media screen and (min-width: 550px)
{
	.RadComboBoxDropDown_rtl .rcbItem,
	.RadComboBoxDropDown_rtl .rcbHovered,
	.RadComboBoxDropDown_rtl .rcbDisabled,
	.RadComboBoxDropDown_rtl .rcbLoading
	{
		padding: 2px 6px 2px 19px;
	}
} /*Opera end*/

/* END Telerik.Web.UI.Skins.ComboBox.css */
/* START Telerik.Web.UI.Skins.WebBlue.ComboBox.WebBlue.css */
/* RadComboBox WebBlue skin */

/*global*/

.RadComboBox_WebBlue,
.RadComboBox_WebBlue .rcbInput,
.RadComboBoxDropDown_WebBlue
{
	font: 12px "Segoe UI", Arial, sans-serif;
	color: #000;
}

/* combobox */

.RadComboBox_WebBlue .rcbInputCellLeft,
.RadComboBox_WebBlue .rcbInputCellRight,
.RadComboBox_WebBlue .rcbArrowCellLeft,
.RadComboBox_WebBlue .rcbArrowCellRight
{
	background-image: url('http://apps.americanpainsociety.org/WebResource.axd?d=mOsVi2CJZuvgFmBRk05G5ViLOL_2-JGcEk_VGDwNihcNzv9719TOuF_AWNTFq_2e6xP16RApJ6G2f42FlZEDQ5h3Sm4n5nooUkvF0izTFiTTxrXt5NCKoZlYtODCUnBVgrAhwYBsxTgMbVnwe6hhInCFvjY1&t=634921088700000000');
}

.RadComboBox_WebBlue td.rcbInputCellLeft { background-position: 0 -110px; }
.RadComboBox_WebBlue td.rcbInputCellRight { background-position: 100% -110px; }

.RadComboBox_WebBlue .rcbHovered td.rcbInputCellLeft { background-position: 0 -132px; }
.RadComboBox_WebBlue .rcbHovered td.rcbInputCellRight { background-position: 100% -132px; }

.RadComboBox_WebBlue .rcbFocused td.rcbInputCellLeft { background-position: 0 -154px; }
.RadComboBox_WebBlue .rcbFocused td.rcbInputCellRight { background-position: 100% -154px; }

.RadComboBox_WebBlue .rcbDisabled td.rcbInputCellLeft { background-position: 0 -154px; }
.RadComboBox_WebBlue .rcbDisabled td.rcbInputCellRight { background-position: 100% -154px; }

.RadComboBox_WebBlue .rcbReadOnly .rcbInputCellLeft { background-position: 0 0; }
.RadComboBox_WebBlue .rcbReadOnly .rcbInputCellRight { background-position: 100% 0; }

.RadComboBox_WebBlue .rcbHovered .rcbReadOnly td.rcbInputCellLeft { background-position: 0 -22px; }
.RadComboBox_WebBlue .rcbHovered .rcbReadOnly td.rcbInputCellRight { background-position: 100% -22px; }

.RadComboBox_WebBlue .rcbFocused .rcbReadOnly td.rcbInputCellLeft { background-position: 0 -44px; }
.RadComboBox_WebBlue .rcbFocused .rcbReadOnly td.rcbInputCellRight { background-position: 100% -44px; }

.RadComboBox_WebBlue .rcbInputCell .rcbEmptyMessage
{
	color: #666;
}

.RadComboBox_WebBlue .rcbHovered .rcbInputCell .rcbInput
{
	color: #0e3d4f;
}

.RadComboBox_WebBlue .rcbFocused .rcbInputCell .rcbInput
{
	color: #0d202b;
}

.RadComboBox_WebBlue td.rcbArrowCellLeft { background-position: -18px -88px; }
.RadComboBox_WebBlue td.rcbArrowCellRight { background-position: 0 -88px; }

.RadComboBox_WebBlue .rcbHovered .rcbArrowCellLeft { background-position: -54px -88px; }
.RadComboBox_WebBlue .rcbHovered .rcbArrowCellRight { background-position: -36px -88px; }

.RadComboBox_WebBlue .rcbFocused .rcbArrowCellLeft { background-position: -90px -88px; }
.RadComboBox_WebBlue .rcbFocused .rcbArrowCellRight { background-position: -72px -88px; }

.RadComboBox_WebBlue td.rcbArrowCellHidden { background-position: 100% -110px; }
.RadComboBox_WebBlue .rcbHovered td.rcbArrowCellHidden { background-position: 100% -132px; }
.RadComboBox_WebBlue .rcbFocused td.rcbArrowCellHidden { background-position: 100% -154px; }

.RadComboBox_WebBlue .rcbHovered .rcbReadOnly td.rcbArrowCellHidden { background-position: -51px -88px; }
.RadComboBox_WebBlue .rcbFocused .rcbReadOnly td.rcbArrowCellHidden { background-position: -87px -88px; }

/* Read-only styles */

.RadComboBox_WebBlue .rcbReadOnly td.rcbArrowCellLeft { background-position: -18px -88px; }
.RadComboBox_WebBlue .rcbReadOnly td.rcbArrowCellRight { background-position: -2px -88px; }

.RadComboBox_WebBlue .rcbHovered .rcbReadOnly .rcbArrowCellLeft { background-position: -54px -88px; }
.RadComboBox_WebBlue .rcbHovered .rcbReadOnly .rcbArrowCellRight { background-position: -38px -88px; }

.RadComboBox_WebBlue .rcbFocused .rcbReadOnly .rcbArrowCellLeft { background-position: -90px -88px; }
.RadComboBox_WebBlue .rcbFocused .rcbReadOnly .rcbArrowCellRight { background-position: -74px -88px; }

.RadComboBox_WebBlue .rcbReadOnly td.rcbArrowCellHidden { background-position: -15px -88px; }
.RadComboBox_WebBlue .rcbHovered .rcbReadOnly td.rcbArrowCellHidden { background-position: -51px -88px; }
.RadComboBox_WebBlue .rcbFocused .rcbReadOnly td.rcbArrowCellHidden { background-position: -87px -88px; }

/* dropdown */

.RadComboBoxDropDown_WebBlue .rcbMoreResults a
{
	background-image: url('http://apps.americanpainsociety.org/WebResource.axd?d=mOsVi2CJZuvgFmBRk05G5ViLOL_2-JGcEk_VGDwNihcNzv9719TOuF_AWNTFq_2e6xP16RApJ6G2f42FlZEDQ5h3Sm4n5nooUkvF0izTFiTTxrXt5NCKoZlYtODCUnBVgrAhwYBsxTgMbVnwe6hhInCFvjY1&t=634921088700000000');
}

.RadComboBoxDropDown_WebBlue
{
	background: #fff;
	border-color: #768ca5;
	color: #000;
}

.RadComboBoxDropDown_WebBlue .rcbHeader,
.RadComboBoxDropDown_WebBlue .rcbFooter
{
	background-color: #f0f2f4;
	color: #000;
}

.RadComboBoxDropDown_WebBlue .rcbHeader
{
	border-bottom-color: #c7dcf9;
}

.RadComboBoxDropDown_WebBlue .rcbFooter
{
	border-top-color: #c7dcf9;
}

.RadComboBoxDropDown_WebBlue .rcbItem em
{
	background: #e5e5e5;
}

div.RadComboBoxDropDown_WebBlue .rcbHovered
{
	padding: 1px 5px;
	border: 1px solid #5d9fb7;
	background: #bbddf4;
	color: #0e3d4f;
}

.RadComboBoxDropDown_WebBlue .rcbSeparator
{
    color: #666;
    background: #D3ECF9;
}

.RadComboBox_WebBlue .rcbDisabled .rcbInputCell .rcbInput,
.RadComboBoxDropDown_WebBlue .rcbDisabled
{
	color: #787777;
}

.RadComboBox_WebBlue .rcbDisabled td.rcbInputCellLeft { background-position: 0 -66px; }
.RadComboBox_WebBlue .rcbDisabled td.rcbInputCellRight { background-position: 100% -66px; }
.RadComboBox_WebBlue .rcbDisabled td.rcbArrowCellLeft { background-position: -126px -88px; }
.RadComboBox_WebBlue .rcbDisabled td.rcbArrowCellRight { background-position: -108px -88px; }
.RadComboBox_WebBlue .rcbDisabled .rcbReadOnly td.rcbArrowCellRight { background-position: -110px -88px; }
.RadComboBox_WebBlue table.rcbDisabled td.rcbArrowCellHidden,
.RadComboBox_WebBlue .rcbDisabled .rcbReadOnly td.rcbArrowCellHidden { background-position: -123px -88px; }

.RadComboBoxDropDown_WebBlue .rcbLoading
{
	background: #f0f0f0;
}

.RadComboBoxDropDown_WebBlue .rcbMoreResults
{
	border-top-color: #d3dde4;
	background: #f0f2f4;
	color: #8a8a8a;
}

.RadComboBoxDropDown_WebBlue .rcbMoreResults a
{
	background-position: -157px -94px;
}

/* END Telerik.Web.UI.Skins.WebBlue.ComboBox.WebBlue.css */
/* START Telerik.Web.UI.Skins.Ajax.css */
/* 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 center;
	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;
}
/* END Telerik.Web.UI.Skins.Ajax.css */
/* START Telerik.Web.UI.Skins.Default.Ajax.Default.css */
/* Telerik RadAjaxLoadingPanel Default Skin */

.RadAjax_Default .raDiv
{
	background-image:url('http://apps.americanpainsociety.org/WebResource.axd?d=kpDZgEujNryWV3zalebEyP_MavwRX4vmB4ga_om0R-yPm8ejF2U-4MhI7IpCmqO3fgM92JSGCHGLiDcEdwGezSO9vwEVaY-SmPq4-9R7nYl3ghuj60x6Zyt0m2hOfPaLLYx5EuaRS3oeQdEw0&t=634921088700000000');
}

.RadAjax_Default .raColor
{
	background-color:#fff;
}

.RadAjax_Default .raTransp
{
	opacity:0.7;
	-moz-opacity:0.7;
	filter:alpha(opacity=70);
}
/* END Telerik.Web.UI.Skins.Default.Ajax.Default.css */
/* START Telerik.Web.UI.Skins.ListView.css */
/*Telerik RadListView Common CSS*/

/*global*/

.RadListView{font:12px/16px "segoe ui",arial,sans-serif}

.RadListView .rlvEmpty{font-style:italic} /*empty data*/

.RadListView .rlvI{} /*item*/
.RadListView .rlvA{} /*alternating item*/

.RadListView .rlvISel{} /*selected item*/
.RadListView .rlvIEdit{} /*edit item*/
.RadListView .rlvIEmpty{font-style:italic;} /*empty item*/
.RadListView .rlvIGroup{} /*group item*/
.RadListView .rlvIInsert{} /*insert item*/

.RadListView .rlvSItem{} /*item separator*/
.RadListView .rlvSGroup{} /*group separator*/

/*buttons*/

.RadListView .rlvBAdd,
.RadListView .rlvBUpdate,
.RadListView .rlvBCancel,
.RadListView .rlvBSel,
.RadListView .rlvBDel,
.RadListView .rlvBEdit,
.RadListView .rlvDrag
{
	width:16px;
	height:16px;
	border:0;
	margin:0;
	padding:0;
	background-color:transparent;
	background-repeat:no-repeat;
	vertical-align:middle;
	font-size:1px;
	cursor:pointer;
}

.RadListView .rlvDrag
{
	cursor:url('http://apps.americanpainsociety.org/WebResource.axd?d=z1zKzY3AL2QcOgCcSDhTGkShMEaSJ3C8KoB0BvA3iRmxgrFuuzB0cQN1oMB9fS-q0NIXgK7s32vlfgtyOZ5lmrw7IgVIP67UZqMqZ-p6xQrk40JJW4-8D7--s92yCEu45bfKkg2&t=634921088700000000'), move;
}

/*list*/

.RadListView li.rlvI,
.RadListView li.rlvA,
.RadListView li.rlvISel,
.RadListView li.rlvIEmpty
{
	padding-top:5px;
	padding-bottom:4px;
}

/*flow*/

.RadListView div.rlvI,
.RadListView div.rlvA,
.RadListView div.rlvISel,
.RadListView div.rlvIEmpty,
.RadListView div.rlvIEdit
{
	border-bottom:1px solid;
	padding-top:5px;
	padding-bottom:4px;
}

/*grid*/

.RadListView tr.rlvHeader th
{
	padding-top:5px;
	padding-bottom:4px;
	text-align:left;
	font-weight:normal;
}

.RadListView tr.rlvHeader th,
.RadListView tr.rlvI td,
.RadListView tr.rlvA td,
.RadListView tr.rlvISel td,
.RadListView tr.rlvIEmpty td,
.RadListView tr.rlvIEdit td
{
	padding:5px 7px 4px;
}

.RadListView tr.rlvIEdit td td
{
	border:0;
	padding:0;
}

/*single row*/

.RadListView td.rlvI,
.RadListView td.rlvA,
.RadListView td.rlvISel,
.RadListView td.rlvIEmpty,
.RadListView td.rlvIEdit
{
	padding:5px 7px 4px;
}

/*floated tiles*/

div.RadListViewFloated
{
	border-width:0;
}

.RadListView .rlvFloated .rlvI,
.RadListView .rlvFloated .rlvA,
.RadListView .rlvFloated .rlvISel,
.RadListView .rlvFloated .rlvIEmpty,
.RadListView .rlvFloated .rlvIEdit
{
	float:left;
	display:inline;
	border:1px solid;
}

.RadListView .rlvAutoScroll .rlvI,
.RadListView .rlvAutoScroll .rlvA,
.RadListView .rlvAutoScroll .rlvISel,
.RadListView .rlvAutoScroll .rlvIEmpty,
.RadListView .rlvAutoScroll .rlvIEdit
{
	overflow:auto;
}

.RadListView .rlvNoScroll .rlvI,
.RadListView .rlvNoScroll .rlvA,
.RadListView .rlvNoScroll .rlvISel,
.RadListView .rlvNoScroll .rlvIEmpty,
.RadListView .rlvNoScroll .rlvIEdit
{
	overflow:hidden;
}

.RadListView .rlvFloated{display:inline-block}
.RadListView .rlvFloated{display:block}
.RadListView .rlvFloated:after{content:"";display:block;visibility:hidden;clear:both}

/*editing*/

.RadListView .rlvEditTable{}

.RadListView .rlvInput
{
	vertical-align:middle;
	border-width:1px;
	border-style:solid;
	padding:2px 1px 3px;
	font:12px "segoe ui",arial,sans-serif;
}
/* END Telerik.Web.UI.Skins.ListView.css */
/* START Telerik.Web.UI.Skins.WebBlue.ListView.WebBlue.css */
/*Telerik RadListView WebBlue Skin*/

/*global*/

.RadListView_WebBlue
{
	border:1px solid #768ca5;
	background:#fff;
	color:#000;
}

.RadListView_WebBlue .rlvA
{
	background:#dae2e8;
}

.RadListView_WebBlue .rlvISel
{
	background:#7bbbcf;
}

/*buttons*/

.RadListView_WebBlue .rlvBAdd,
.RadListView_WebBlue .rlvBUpdate,
.RadListView_WebBlue .rlvBCancel,
.RadListView_WebBlue .rlvBDel,
.RadListView_WebBlue .rlvBEdit
{
	background-image:url('http://apps.americanpainsociety.org/WebResource.axd?d=PNl8VxLXM_EvKSDaHY5RC5iGkpcOkvgB0VjJIqBsQkAqQdJPrtJPEl_KPFO2oQVNi62QF_mrBA2tleHMJ3LldyPvMlvBKrgbOXQd-uE2gQj2Rnyk7Ams8l0MhGe2yaJ7quyn7U_E4-LwDCe70&t=634921088700000000');
}

.RadListView_WebBlue .rlvBAdd
{
	background-position:0 -1650px;
}
.RadListView_WebBlue .rlvBUpdate
{
	background-position:0 -1800px;
}
.RadListView_WebBlue .rlvBCancel
{
	background-position:2px -1848px;
}
.RadListView_WebBlue .rlvBSel
{
	background-image:url('http://apps.americanpainsociety.org/WebResource.axd?d=nFq9aOUhMbG0Ot5HZRWPZb-NaRwVzXuDiijYmICwPep2NRgPQWN3-7Xl9Ac6I6-0BLosnZ_bqDidW9UJL9003sjPRToQhwKKoOG0xKaV96exDhZqxQ5PTni6KNjni8W8CgqOKnH3Hw4DcizOOLWdUC1bzx4uimTdXNZZJw2&t=634921088700000000');
	background-position:-2px -2px;
}
.RadListView_WebBlue .rlvISel .rlvBSel
{
	background-position:-2px -422px;
}
.RadListView_WebBlue .rlvBDel
{
	background-position:0 -1750px;
}
.RadListView_WebBlue .rlvBEdit
{
	background-position:0 -1700px;
}

.RadListView_WebBlue .rlvDrag
{
	background-image:url('http://apps.americanpainsociety.org/WebResource.axd?d=AY9NePP0GBIqswiUnrRh1HwydJDilN4nD5FT8OLyp25tA5GxVPsF4FwXf165zEPuQJi2bZcxbU_11Ki9cjCvJV2D0m5atXOjwTIsiPub8m1w_FmkWBp3BHMNhQVzBj4tLC3zpgxQqazt6vqr0&t=634921088700000000');
	background-position:center center;
}

/*flow*/

.RadListView_WebBlue div.rlvI,
.RadListView_WebBlue div.rlvIEmpty
{
	border-color:#fff;
}

.RadListView_WebBlue div.rlvA,
.RadListView_WebBlue div.rlvIEdit
{
	border-color:#dae2e8;
}

.RadListView_WebBlue div.rlvISel
{
	border-color:#133c44;
}

/*grid*/

.RadListView_WebBlue tr.rlvHeader th
{
	border:1px solid;
	border-top:0;
	border-color:#98acbf #728ba1 #3d556c #455f77;
	background:0 -2300px repeat-x #718ca1 url('http://apps.americanpainsociety.org/WebResource.axd?d=PNl8VxLXM_EvKSDaHY5RC5iGkpcOkvgB0VjJIqBsQkAqQdJPrtJPEl_KPFO2oQVNi62QF_mrBA2tleHMJ3LldyPvMlvBKrgbOXQd-uE2gQj2Rnyk7Ams8l0MhGe2yaJ7quyn7U_E4-LwDCe70&t=634921088700000000');
	color:#fff;
}

.RadListView_WebBlue tr.rlvI td,
.RadListView_WebBlue tr.rlvA td,
.RadListView_WebBlue tr.rlvISel td,
.RadListView_WebBlue tr.rlvIEmpty td
{
	border:1px solid;
	border-top:0;
}

.RadListView_WebBlue tr.rlvI td,
.RadListView_WebBlue tr.rlvIEmpty td
{
	border-color:#fff #fff #fff #dae2e8;
}

.RadListView_WebBlue tr.rlvA td
{
	border-color:#dae2e8;
}

.RadListView_WebBlue tr.rlvISel td
{
	border-color:#7bbbcf #7bbbcf #133c44;
}

.RadListView_WebBlue tr.rlvIEdit td
{
	border-color:#fff #fff #768ca5 #dae2e8;
}

/*single row*/

.RadListView_WebBlue td.rlvI,
.RadListView_WebBlue td.rlvA,
.RadListView_WebBlue td.rlvISel,
.RadListView_WebBlue td.rlvIEmpty
{
	border:0;
	border-right:1px solid;
}

.RadListView_WebBlue td.rlvI,
.RadListView_WebBlue td.rlvIEmpty
{
	border-color:#fff;
}

.RadListView_WebBlue td.rlvA,
.RadListView_WebBlue td.rlvIEdit
{
	border-color:#dae2e8;
}

.RadListView_WebBlue td.rlvISel
{
	border-color:#133c44;
}

/*floated*/

.RadListView_WebBlue .rlvFloated .rlvI,
.RadListView_WebBlue .rlvFloated .rlvA,
.RadListView_WebBlue .rlvFloated .rlvISel,
.RadListView_WebBlue .rlvFloated .rlvIEdit
{
	border-color:#768ca5;
}

/*edit*/

.RadListView_WebBlue .rlvInput
{
	border-color:#768ca5;
	background:#fff;
	color:#000;
}
/* END Telerik.Web.UI.Skins.WebBlue.ListView.WebBlue.css */