/* Formating for Basic Dialog */
		
.basicdialog 
{
	position: absolute;
	display: block;
	visibility: hidden;
	z-index:10000;     /* in practice, dialog must display on top of all other content on screen*/
}

.basicdialog_close 
{
	position:absolute;
	height: 18px;
	width: 19px;
	background: transparent url(/images/dialogui/basicdialog_close.png) no-repeat;
	top: 12px;
	right: 25px;
	cursor: pointer; 
}

.basicdialog_close:hover 
{
	background: transparent url(/images/dialogui/basicdialog_close_hover.png) no-repeat; 
}

.basicdialog_topleft
{
	cursor: move;
	position: relative;
	text-align: left;
	width: 100%;
	background: transparent url(/images/dialogui/basicdialog_topleft.png) no-repeat top left;
}

.basicdialog_topright
{
	position: relative;
	text-align: left;
	width: 100%;
	background: transparent url(/images/dialogui/basicdialog_topright.png) no-repeat top right;
}

.basicdialog_title
{
	position: relative;
	height: 33px;
	background: transparent url(/images/dialogui/basicdialog_topmid.png) repeat-x;
	text-align: center;
	padding: 9px 0px 0px 0px;
	margin: 0px 80px 0px 70px; 	
	font-size: 18px;
	font-weight: bold;
	color: #FFF;
}

.basicdialog_wrapcontentleft 
{
	position: relative;
	text-align: left;
	width: 100%;
	background: transparent url(/images/dialogui/basicdialog_left.png) repeat-y left; 
}

.basicdialog_wrapcontentright 
{
	position: relative;
	text-align: left;
	width: 100%;
	background: transparent url(/images/dialogui/basicdialog_right.png) repeat-y right; 
}

.basicdialog_content
{
	position: relative;
	margin: 0px 11px 0px 3px;
	padding: 15px 20px 0px 20px;
	background: #FFB746 url(/images/dialogui/basicdialog_mid.gif) repeat-x top;
	/*min-height: 191px;*/
	min-height: 60px;
}

.basicdialog_message
{
	text-align: center;
	color: #fff;
	font-size: 15px;
						
}

.basicdialog_errormessage
{
	background-color: #FFF9BF;
	color: red;
	font-size: 12px;
	border: 1px solid #000;
	padding: 5px 10px;
	margin: 10px 0px 0px 0px;
	text-align: center;
	display: none;
}

.basicdialog_prompt
{
	font-size: 15px;
	color: #fff;
	margin: 0px 0px 5px 0px;
}

.basicdialog_helplink
{
	font-size: 12px;
	color: #0000DD;
}

.basicdialog_wrapfooterleft
{
	position: relative;
	text-align: left;
	width: 100%;
	background: transparent url(/images/dialogui/basicdialog_bottomleft.png) no-repeat left; 
	height: 25px;
}

.basicdialog_wrapfooterright
{
	position: relative;
	text-align: left;
	width: 100%;
	background: transparent url(/images/dialogui/basicdialog_bottomright.png) no-repeat right; 
	height: 25px;
}

.basicdialog_footer
{
	position: relative;
	text-align: left;
	background: transparent url(/images/dialogui/basicdialog_bottommid.png) repeat-x; 
	height: 25px;
	margin: 0px 101px 0px 74px;
}
			
.basicdialog_buttonrow
{
	width: 100%;
	padding: 20px 0px 0px 0px;
	text-align: center;
}	

.basicdialog_buttonrow a
{		
	text-decoration: none;
}

.basicdialog_button
{
	display: inline;		/* applies to Firefox 2 */
	display: inline-block;  /* works for Firefox 3 and Safari */
	cursor: pointer;
}

* html .basicdialog_button     /* override display for IE 6 */
{
	display:inline;  
}  

* + html .basicdialog_button   /* override display for IE 7 */
{
	display:inline;  
	float: left;
	margin-left: 15px;
}  

.basicdialog_buttonleft
{
	height:53px;
	width:15px;
	background: transparent url(/images/dialogui/basicdialog_buttonleft.png) no-repeat;					
}

.basicdialog_buttonmid
{
	height:35px;
	width: 50px; /* this is really to represent "min-width" */
	padding:18px 5px 0px 5px;
	background: transparent url(/images/dialogui/basicdialog_buttonmid.png) repeat-x top;	
	color: #4D4D4D;					
}

.basicdialog_buttonmid span  /* span is used so IE sees nowrap correctly */
{
	white-space: nowrap;
}			

.basicdialog_buttonmid.default /* the default-action button for the dialog has a blue font */
{
	color: #0000DD;
}

.basicdialog_buttonright
{
	height:53px;
	width:15px;
	background: transparent url(/images/dialogui/basicdialog_buttonright.png) no-repeat;												
}
			
a:hover .basicdialog_buttonleft
{
	background: transparent url(/images/dialogui/basicdialog_buttonleft_hover.png) no-repeat;				
}

a:hover .basicdialog_buttonmid
{
	background: transparent url(/images/dialogui/basicdialog_buttonmid_hover.png) repeat-x top;	
	color: #000;					
}

a:hover .basicdialog_buttonright
{
	background: transparent url(/images/dialogui/basicdialog_buttonright_hover.png) no-repeat;			
}

