/*
###############################################
# Css Purpose: Contains all styles for admin  #
#              items that do NOT change when  #
#              a new style has been selected. #
# ------------------------------------------- #
# Referenced:  This css style is referenced   #
#              in: UC\adminOptions.ascx,      #
#              Admin\*.aspx                   #
###############################################*/

/* an empty class for misc use.
 */
.empty
{
}

/*////// ADMIN OPTIONS POPUP MENU //////*/

/* the actual menu that popups up that contains
 * all administrative options.
 */
.popup_menu
{
	position: absolute;
	width: 135;
	
	/* top & left set via javascript */
	left: 0;
	top: 0;

	background-color: White;
	border: 1px solid #70C259;
}

/* the popup menu when hidden.
 */
.popup_menu_hidden
{
	display: none;
}

/* the row that contains each task listed on this 
 * menu - this mainly controls the text appearance
 * but is row-specific because of the hover event.
 */
.popup_menu_row
{	
	background-color: #ffffff;
	
	color: #000000;
	font-family: Tahoma, Arial;
	font-size: 13;
	
	border-bottom: 1px solid #ffffff;
	cursor: hand;
}

/* same as `popup_menu_row` but when mouse 
 * is hovering over the row.
 */
.popup_menu_row_over
{
	background-color: #D4FCB2;
	
	color: #000000; /* cannot change! */
	font-family: Tahoma, Arial;
	font-size: 13;
	
	border-bottom: 1px solid darkgreen;
	cursor: hand;
}

/* same as `popup_menu_row` but when you want 
 * a seperator underneath this row - this is
 * to be applied to the text cell NOT the row.
 */
.popup_menu_cell_with_sep
{	
	border-bottom: 1px solid #70C259;
}

/* the cell that contains the icon for each task
 * listed on this menu.
 */
.popup_menu_icon_cell
{
	text-align: center;
	width: 20;
	
	background-color: #70C259;
	filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=1, StartColorStr='#D4FCB2', EndColorStr='#70C259');
	
	border-right: 1px solid #D4FCB2;
}

/* a server-linkbutton that needs to be displayed
 * the same as a regular menu item.
 */
.popup_menu_link
{
	color: #000000;
	font-family: Tahoma, Arial;
	font-size: 13;
	text-decoration: none;
	
	cursor: hand;
}

/*////// ADMIN CONSOLE //////*/

/* the admin-console's root container in each page.
 */
.console
{
	width: 100%;
	height: 100%;
	
	border: 2px solid #003cd1;
}

/* the header cell for the console.
 */
.console_header
{
	font-family: Arial;
	font-size: 14pt;
	font-weight: bolder;
	color: White;
	
	padding: 3px;
	text-align: center;
	
	filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#849cd8', EndColorStr='#5a66ae');
}

/* the seperator underneath the header cell for 
 * the console.
 */
td.console_header_sep
{
	height: 3px;
	
	filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=1, StartColorStr='#ffffff', EndColorStr='#c28f62');
}

/* the content-containing cell for the consle.
 */
td.console_body
{
	height: 99%;
	
	filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=1, StartColorStr='#c6d1e3', EndColorStr='#e7e9f5');
}

/* the content-containing a small cell for the consle.
 */
td.console_body_small
{	
	filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=1, StartColorStr='#c6d1e3', EndColorStr='#e7e9f5');
}

/* white cell for special content in the console.
 */
.console_body_white
{
	background-color: #ffffff;
	border-top: 1px solid #5a66ae;
	border-bottom: 1px solid #5a66ae;
	
	padding: 2px;
}

/* the main links in the console
 */
.link_title
{
	color: #000000;
	text-decoration: none;
	font-weight: bold;
}

/* highlight the input with an inappropriate value in it.
 */
input.mark_error
{
	border: 2px solid darkred;
	background-color: red;
	
	color: #ffffff;
}

/* splits the window in half with a border
 */
.console_keep_seperate
{
	padding-left: 2px;
	border: 2px solid #e7e9f5;
	background-color: #c6d1e3;
}

/*////// PAGE SUMMARY //////*/

/* the REAL listbox that contains the controls for this page
 * which via this class should be hidden from view so that the
 * pseudo, graphical version can be seen.
 */
.layout_real
{
	display: none;
}

/* the main ui listbox container (div) that holds the pseudo
 * control list for the page.
 */
div.layout_pseudo
{
	width: 225px;
	height: 236px;
	
	padding: 2px;
	
	border: 1px solid #000000;
	background-color: #ffffff;
	overflow: auto;
}

/* the main ui listbox container (div) that holds the pseudo
 * control list for the page.
 */
div.sitemap_list
{
	width: 270px;
	height: 236px;
	
	padding: 2px;
	
	border: 1px solid #000000;
	background-color: #ffffff;
	overflow: auto;
}

/* each tablerow that contains the an item for the ui listbox.
 */
tr.layout_pseudo_row
{
	background-color: #ffffff;
}

/* same as `layout_pseudo_row` but in a `selected` state.
 */
tr.layout_pseudo_row_sel
{
	background-color: #70C259;
	
	border: 1px solid #a1a5a9;
}

/* each cell in a pseudo-row in the ui listbox.
 */
td.layout_pseudo_cell
{
	border-bottom: 1px solid #a1a5a9;
	cursor:pointer;
	
	filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#ffffff', EndColorStr='#efefef');
}

/* each cell in a `selected` pseudo-row in the ui listbox.
 */
td.layout_pseudo_cell_sel
{
	border-bottom: 1px solid #3F7426;
	cursor:pointer;
	
	filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#D4FCB2', EndColorStr='#70C259');
}

/* when you highlight an item in the ui listbox the REAL
 * control gets highlighted on the main page, this is the
 * highlight style.
 */
td.layout_selected_control
{
	border-top: 2px solid #3F7426;
	border-bottom: 2px solid #3F7426;
	cursor:pointer;
	
	filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#70C259', EndColorStr='#d4fcb2');
}

/* the type-title displayed for each item in the ui listbox.
 */
.layout_pseudo_title
{
	font-weight: bold;
	font-size: 12pt;
	color: #535353;
}

/* a description (if available) for each item in the ui listbox.
 */
.layout_pseudo_descr
{
	font-weight: normal;
	font-size: 9pt;
	color: #666666;
}

/* ////// IMAGE MENU ////// */

div.xpmenu
{
    border: 1px solid #666666;
    background-color: white;
    padding: 1px;
}

table.menu_table
{
    width: 100%;
    background-color: #f9f8f7;
    padding: 1px;
}

td.menu_icon_cell
{
    width: 20px;
    height: 20px;
    text-align: center;
    background-color: #d7d3cc;
    filter: progid:DXImageTransform.Microsoft.Gradient(endColorstr='#d7d3cc', startColorstr='#f9f8f7', gradientType='1');
    border-top: 1px none #0A246A;
    border-left: 1px solid #f9f8f7;
    border-bottom: 1px none #0A246A;
}

td.menu_icon_cell_over
{
    width: 20px;
    height: 20px;
    text-align: center;
    background-color: #B6BDD2;
    border-top: 1px solid #0A246A;
    border-left: 1px solid #0A246A;
    border-bottom: 1px solid #0A246A;
}

a.menu_link
{
    font-family: Tahoma;
    font-weight: normal;
    padding-left: 5px;
    color: Black;
    text-decoration: none;
    width: 100%;
}
a:hover.menu_link
{
    font-family: Tahoma;
    font-weight: normal;
    padding-left: 5px;
    color: Black;
    text-decoration: none;
    width: 100%;
}

td.menu_link_cell
{
    border-top: 1px solid #f9f8f7;
    border-right: 1px solid #f9f8f7;
    border-bottom: 1px solid #f9f8f7;
}

div.menu_shadow
{
    background-color: Black;
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=40);
}

td.menu_link_cell_over
{
    background-color: #B6BDD2;
    border-top: 1px solid #0A246A;
    border-right: 1px solid #0A246A;
    border-bottom: 1px solid #0A246A;
}