/*
==========================================================================
	
	CFOVERRIDE.CSS | This style sheet contains styles that are used to 
	overrride the default styles that are applied to ColdFusion built-in
	components (i.e. CFWINDOW)

==========================================================================
*/


/* --------------------------------------------------------------------------------
 USED TO OVERRIDE DEFAULT CFWINDOW STYLES 
--------------------------------------------------------------------------------- */

/* Set the window header to the sunlife connect logo */
.windowHdr 
{
	background: url(/international/images/layout/cfwindowbg.jpg) repeat-x ;
	color:#fff;
	font:normal 11px tahoma, verdana, helvetica;
	padding-top:100px;
	padding:5px;
	font-weight:bold;
}
/* Change border east */
.x-dlg div.x-resizable-handle-east
{
	background-image: url(/international/images/layout/cfwindowbg.jpg) repeat ;
	width:1px;
}
/* Change border west */
.x-dlg div.x-resizable-handle-west 
{
	background-image: url(/international/images/layout/cfwindowbg.jpg) repeat ;
	width:1px;
}
/* Change border bottom */
.x-dlg div.x-resizable-handle-south 
{
	background-image: url(/international/images/layout/cfwindowbg.jpg) repeat ;
	height:1px;
}
/* Change border top */
.x-dlg div.x-resizable-handle-north 
{
	background-image: url(/international/images/layout/cfwindowbg.jpg) repeat ;
	height:1px;
}
/* Change border bottom cornor */
.x-dlg div.x-resizable-handle-southwest
{
	background: none;
	width:0px;
	height:0px;
	margin:0px;
	padding:0px;
}
/* Change border bottom cornor */
.x-dlg div.x-resizable-handle-southeast 
{
	background: none;
	width:0px;
	height:0px;
	margin:0px;
	padding:0px;
}
/* pad the close button */
.x-dlg .x-dlg-close{

padding-right:4px;
}
/* stops the banner flash on load */
.yuiextdlg {
    position:absolute;
    left:-200px;
}

/*---------------------------------------------------------------------------------*/

/* used to over ride the css header of cfwindow */
.x-dlg .x-dlg-hd {
	background: #eaab00 url(/international/images/layout/small_sunlife_banner_yellow_sunburst.gif) no-repeat 0;
	height:60px;
}

.x-dlg-toolbox {
	background-image: url(/international/images/icons/Pop-up_Close.gif);
	background-repeat:no-repeat;
	width:60px;
	height:20px;
}

.x-dlg .x-dlg-close {
	background-image:none;
}

/* code to change the modal background color */
.x-dlg-mask{ 
background: #123456; 
opacity:.25; 
}

