﻿/* 
	Lists 
	-------------------------
	Unordered lists (ul) represent a sequence of items in no particular
	order. They are displayed with a square bullet to the left of each 
	list item (li).
	
	Ordered lists (ol) represent an ordered sequence of items. They are 
	displayed with a number to the left of each list item (li).
	

	Definition lists (dl) represent a set of terms (dt) and definitions (dd).
	Each term should be followed by one or more definitions. Definition lists
	are very useful for marking up a series of links, each of which has an
	explanatory passage of text.

	
ul, ol {
	margin: 0 0 15px 0;
	padding: 0;
	font-size: 1.3em;
	line-height: 1.4em;
	}

ul, li {
	margin: 5px 0 5px 30px;
	padding: 0 0 0 0px;
	font-size: 1.1em;
	line-height: 1.2em;
	}
*/
ol li {
	color: Navy;
	margin-left:10px;
	margin-right:25px;
	
	}
	
	
                    
/*
dl {
	margin: 0 0 15px 0;
	padding: 0 0 0 0px;
	line-height: 1.4em;
	}
	
dt {
	margin: 0 0 3px 0;
	padding: 0 0 0 0px;
	font-size: 1.2em;
	font-weight: bold;
	}
	
dd {
	margin: 0 0 15px 0;
	padding: 0 0 0 0px;
	font-size: 1.3em;
	line-height: 1.4em;
	}
*/


/*Textbox Watermark*/

.unwatermarked {
}

.watermarked {
	padding:2px 0 0 2px;
	margin: 1px;
	border:1px solid #BEBEBE;
	background-color:#F0F8FF;
	color:#555555;
	text-align:center;
}

/*DropDown*/

.ContextMenuPanel 
{
	border: 1px solid #868686;
	z-index: 1000;
	background: url(images/menu-bg.gif) repeat-y 0 0 #FAFAFA;
	cursor: default;
	padding: 1px 1px 0px 1px;
	font-size: 11px;
}

.ContextMenuBreak
{
	margin:1px 1px 1px 32px;
	padding:0;
	height:1px;
	overflow:hidden;
	display:block;
	border-top: 1px solid #C5C5C5;	
}

a.ContextMenuItem
{
	margin: 1px 0 1px 0;
	display: block;
	color: #003399;
	text-decoration: none;
	cursor: pointer;	
	padding: 4px 19px 4px 33px;
	white-space: nowrap;
}

.ContextMenuItem-Selected
{
	font-weight: bold;
}

a.ContextMenuItem:hover
{
	background-color: #FFE6A0;
	color: #003399;
	border: 1px solid #D2B47A;
	padding: 3px 18px 3px 32px;
}
