/* px to em conversion (default = 16px)*/
/* 18px = 1.125em */
/* 16px = 1em     */
/* 14px = 0.875em */
/* 12px = 0.75em  */
/* 10px = 0.625em */
/*  8px = 0.5em   */
/*  6px = 0.375em */
/*  4px = 0.25em  */

/****** CSS Clear ******/

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { 
	margin:0;
	padding:0;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
fieldset,img { 
	border:0;
}
address,caption,cite,code,dfn,em,th,var {
	font-style:normal;
	font-weight:normal;
}
/*
ol,ul {
	list-style:none;
}
*/
caption,th {
	text-align:left;
}
h1,h2,h3,h4,h5,h6 {
	font-size:100%;
	font-weight:normal;
}
q:before,q:after {
	content:'';
}
abbr,acronym { border:0;
}

/********** end css clear ************/

/********** begin layout **********/
html, body {
	background-color: #ddd; 
	font-family: Verdana, sans-serif, arial;
	font-size: 14px;
	color: #555;
}

#Container {
	margin: 0 auto; /*center on page*/
	text-align: left;
	width: 85%;
	max-width: 900px;
	background-position: center;
	}

#header {
	background-color: #fff;
	border: 1px solid #bbb;
	-webkit-box-shadow: 5px 3px 10px 0px #aaa;
	box-shadow: 5px 3px 10px 0px #aaa;
	padding:0;
	margin: 30px 0 40px 0;
	position: static;
}

#content_body {
	background-color: #fff;
	border: 1px solid #bbb;
	-webkit-box-shadow: 5px 3px 10px 0px #aaa;
	box-shadow: 5px 3px 10px 0px #aaa;
	padding: 60px 60px 40px 60px;
	margin: 30px 0 25px 0;
	position:relative;
	overflow:auto;
}
	
.step {
	position:absolute;
	left:0px;
	top:0px;
	color: #333;
	background-color:#ccc;
	background: -moz-linear-gradient(top, #eeeeee 0%, #cccccc 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eeeeee), color-stop(100%,#cccccc));
	background: -webkit-linear-gradient(top, #eeeeee 0%,#cccccc 100%);
	background: -o-linear-gradient(top, #eeeeee 0%,#cccccc 100%);
	background: -ms-linear-gradient(top, #eeeeee 0%,#cccccc 100%);
	background: linear-gradient(to bottom, #eeeeee 0%,#cccccc 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc',GradientType=0 );
	padding: 8px 30px 10px 30px;
	-webkit-border-radius: 0px 0px 12px 0px;
	border-radius: 0px 0px 12px 0px;
	text-shadow: 0px 0px 12px #999;
    filter: dropshadow(color=#999, offx=0, offy=0);
	}
	
.pic {
	float:right;
	padding: 0;
	}
	
.paragraph {
	width: 250px;
	float:left;
	padding: 0;}
	
#content_body ul {
	margin: 0 0 20px 40px;
	list-style-type: disk;
}

#content_body li {
	padding: 5px 0 5px 10px;
}

h2, h3, h4, h5 {
	line-height:25px;}
	
h2 {
	margin: 0 0 30px 0;
	font-weight:bold;
	font-size: 24px;}
	
h3 {
	margin: 10px 0 10px 0;
	font-weight:bold;
	font-size: 18px;}

p {
	line-height: 20px;
	padding-bottom: 15px;
	/*text-align: justify;*/}
	
/********** end layout **********/
/********** begin styles **********/

.codedirection {
	unicode-bidi: bidi-override;
	direction: rtl;}

.hr {
	clear: both;
	margin: 5px 0 20px 0;
	overflow: hidden;}
	
.pic img {
	border: solid 1px #cec7ba; /*#ccc*/
	-moz-box-shadow: 4px 4px 6px #b8b0a2; /*#bbb*/
	-webkit-box-shadow: 4px 4px 6px #b8b0a2;
	box-shadow: 4px 4px 6px #b8b0a2;
	margin: 0 8px 8px 0;
	}
	
.right {
	text-align:right;
	float:right;}
	
.center {
	text-align:center;} 

.small {
	font-size:12px;
	margin:0;
	padding:0 0 8px 0;}
	
p.italic {
	font-style:italic;
	margin-bottom: 0;
	padding-bottom: 0;}

	
/************************************************************* tables *********************************************************************/
.grid
{
	border-collapse: collapse;
	border: 1px solid #777;
	line-height: 150%;
	margin: 10px 0 20px 0;
	white-space: nowrap;
}

.grid th {
	padding: 8px;
	font-weight: bold;
	text-align: center;
	background: #ddd;
	background: -moz-linear-gradient(top, #dddddd 25%, #cccccc 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(25%,#dddddd), color-stop(100%,#cccccc));
	background: -webkit-linear-gradient(top, #dddddd 25%,#cccccc 100%);
	background: -o-linear-gradient(top, #dddddd 25%,#cccccc 100%);
	background: -ms-linear-gradient(top, #dddddd 25%,#cccccc 100%);
	background: linear-gradient(to bottom, #dddddd 25%,#cccccc 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dddddd', endColorstr='#cccccc',GradientType=0 );
	border: 1px solid #aaa;}

.grid td {
	padding: 8px;
	background: #eee;
	border: 1px solid #aaa;}
/************************************************************* end tables *********************************************************************/

.noscript {
	background-image: url('images/css/noscript.png');
	background-repeat: no-repeat;
	background-position: center;
	height: 150px;
	clear: left;
	margin: 0 auto; /* center the div */
	margin-top: 40px; /* push the div down */
	margin-bottom: 10px; /* add space below the div */
	}
	
.noscript  p {
	margin: 0 30px 0 80px;
	padding-top: 40px;}

/***************************************************************** Top Menu ********************************************************************/	
#nav_wrapper {
	background-color: #ccc;
	background: -moz-linear-gradient(top, #cccccc 0%, #aaaaaa 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#cccccc), color-stop(100%,#aaaaaa));
	background: -webkit-linear-gradient(top, #cccccc 0%,#aaaaaa 100%);
	background: -o-linear-gradient(top, #cccccc 0%,#aaaaaa 100%);
	background: -ms-linear-gradient(top, #cccccc 0%,#aaaaaa 100%);
	background: linear-gradient(to bottom, #cccccc 0%,#aaaaaa 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cccccc', endColorstr='#aaaaaa',GradientType=0 );
	width: 100%;
	border-bottom: 2px solid #888;
	-webkit-box-shadow: 0px 8px 16px 0px #bbb;
	box-shadow: 0px 8px 16px 0px #bbb; 
	z-index: 100;
}
#nav {
	margin: 0 auto;
	text-align: center;
	position: relative;
	min-height: 40px;
	color: #777;
	z-index: 10;
}
#nav ul {
	list-style: none;
	position: relative;
	top:2px;
	display: inline-table;
	padding: 10px 0 0 0;
}
#nav ul:after {
	content: "";
	clear: both;
	display: block;
}
#nav ul li {
	float: left;
	border-left:1px solid #ccc;
	border-right:1px solid #aaa;
	border-bottom: 1px solid #bbb
	-webkit-border-radius: 7px 7px 0px 0px;
	border-radius: 7px 7px 0px 0px;
	background: #eee;
	/*background: linear-gradient(top, #efefef 0%, #ddd 100%);
	background: -moz-linear-gradient(top, #efefef 0%, #ddd 100%);
	background: -webkit-linear-gradient(top, #efefef 0%,#ddd 100%);*/
}
#nav ul li:hover {
	/*background: linear-gradient(top, #ddd 0%, #ccc 100%);
	background: -moz-linear-gradient(top, #ddd 0%, #ccc 100%);
	background: -webkit-linear-gradient(top, #ddd 0%,#ccc 100%);*/
}
#nav ul li:hover > ul {
	display: block;
}
#nav ul li a {
	display: block;
	padding: 15px 20px;
	color: #777;
	text-decoration: none;
}
#nav ul ul {
	padding: 0;
	position: absolute;
	top: 100%;
	display: none;
	
}
#nav ul ul li {
	float: none;
	border-bottom: 1px solid #bbb;
	/*border-bottom: 1px solid #eee;*/
	position: relative;
	left:-1px;
	top:1px;
	border-radius: 0px;
	white-space:nowrap;
	background: #eee;
}
#nav ul ul li a {
	padding: 15px 20px;
}
#nav ul ul li a:hover {
/*
	background: -moz-linear-gradient(top, #ddd 0%, #ccc 35%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ddd), color-stop(35%,#ccc));
background: -webkit-linear-gradient(top, #ddd 0%,#ccc 35%);
background: -o-linear-gradient(top, #ddd 0%,#ccc 35%);
background: -ms-linear-gradient(top, #ddd 0%,#ccc 35%);
background: linear-gradient(to bottom, #ddd 0%,#ccc 35%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ddd', endColorstr='#ccc',GradientType=0 );
	*/
	background: #ccc;

	color: #000;
}
#nav ul ul ul { /* Submenu flyout to right side */
	position: absolute; 
	left: 100%;
	top:-2px;
} 

#nav .current {
	background: #fff;

}

/******************************************************** Mobile Menu *******************************************************/
#mobile_nav_wrapper {
	background: #eee;
	border-bottom: 2px solid #888;
	-webkit-box-shadow: 0px 8px 16px 0px #bbb;
	box-shadow: 0px 8px 16px 0px #bbb; 
	display:none;}

#mobile_nav {
	min-height: 40px;}

#mobile_nav ul {
	width: 100%;
	list-style: none;
}

#mobile_nav ul li {
	margin: 0;
	border-top:1px solid #aaa;
	width: 100%;
}

#mobile_nav ul li:hover {
	background: #ccc;
	background: linear-gradient(top, #ddd 0%, #ccc 100%);
	background: -moz-linear-gradient(top, #ddd 0%, #ccc 100%);
	background: -webkit-linear-gradient(top, #ddd 0%,#ccc 100%);
}
#mobile_nav ul li:hover > ul {
	display: block;
}
#mobile_nav ul li a {
	display: block;
	padding: 15px 0 15px 20px;
	color: #555;
	text-decoration: none;
}
#menu_button {
	border: none;
	background: #eee url(images/css/icon-menu.png) no-repeat 10px 16px;
}

#menu_button a:hover {
	background: #eee url(images/css/icon-menu.png) no-repeat 10px 16px;
}