/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
	margin:			0;
	padding:		0;
	list-style:		none;
}
.sf-menu {
	line-height:	1.0;
}
.sf-menu ul {
	position:		absolute;
	top:			-999em;
	width:			200px; /* left offset of submenus need to match (see below) */
}
.sf-menu ul ul {
	width: 			200px;
}
.sf-menu ul, .sf-menu ul ul {
	border: 		1px solid #757575;
}
.sf-menu ul li {
	width:			140px;
}
.sf-menu li:hover {
	visibility:		inherit; /* fixes IE7 'sticky bug' */
}
.sf-menu li {
	float:			left;
	position:		relative;
	width:			140px;
}
.sf-menu a {
	display:		block;
	position:		relative;
}
.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
	left:			140px;
	top:			2px; /* match top ul list item height */
	z-index:		99;
}
ul.sf-menu li:hover li ul,
ul.sf-menu li.sfHover li ul {
	top:			-999em;
}
ul.sf-menu li li:hover ul,
ul.sf-menu li li.sfHover ul {
	left:			195px; /* match ul width */
	top:			2px;
}
ul.sf-menu li li:hover li ul,
ul.sf-menu li li.sfHover li ul {
	top:			-999em;
}
ul.sf-menu li li li:hover ul,
ul.sf-menu li li li.sfHover ul {
	left:			200px; /* match ul width */
	top:			2px;
}

/*** DEMO SKIN ***/
.sf-menu {
	float:			left;
	margin-bottom:	1em;
}
.sf-menu a {
/*	border-top:		1px solid #CFDEFF;*/
	padding: 		.75em 1em;
	text-decoration:none;
}
.sf-menu a, .sf-menu a:visited  { /* visited pseudo selector so IE6 applies text colour*/
	color:			#000035;
}
.sf-menu li {
	background:		transparent;
}
.sf-menu li li {
	background:		#eee;
	width: 200px;
}
.sf-menu li li li {
	background:		#eee;
}
.sf-menu li:hover, .sf-menu li.sfHover,
.sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {
	background-color:		#d1daea;
	outline:			0;
	text-decoration: 	none;
}

/*** arrows **/
.sf-menu a.sf-with-ul {
	padding-right: 	2.25em;
	min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator {
	position:		absolute;
	display:		block;
	right:			.75em;
	top:			1.05em; /* IE6 only */
	width:			10px;
	height:			10px;
	text-indent: 	-999em;
	overflow:		hidden;
	background:		url('../images/arrows-ffffff.png') no-repeat -10px 0; /* 8-bit indexed alpha png. IE6 gets solid image only */
}
a > .sf-sub-indicator {  /* give all except IE6 the correct values */
	top:			.8em;
	background-position: 0 0; /* use translucent arrow for modern browsers*/
}
/* apply hovers to modern browsers */
a:focus > .sf-sub-indicator,
a:hover > .sf-sub-indicator,
a:active > .sf-sub-indicator,
li:hover > a > .sf-sub-indicator,
li.sfHover > a > .sf-sub-indicator {
	background-position: -10px 0; /* arrow hovers for modern browsers*/
}

/* point right for anchors in subs */
.sf-menu ul .sf-sub-indicator { background-position:  -10px 0; }
.sf-menu ul a > .sf-sub-indicator { background-position:  0 0; }
/* apply hovers to modern browsers */
.sf-menu ul a:focus > .sf-sub-indicator,
.sf-menu ul a:hover > .sf-sub-indicator,
.sf-menu ul a:active > .sf-sub-indicator,
.sf-menu ul li:hover > a > .sf-sub-indicator,
.sf-menu ul li.sfHover > a > .sf-sub-indicator {
	background-position: -10px 0; /* arrow hovers for modern browsers*/
}

/* styling for both css and generated arrows */
.sf-arrows .sf-with-ul:after {
        content: '';
        position: absolute;
        top: 50%;
        right: 1em;
        margin-top: -3px;
        height: 0;
        width: 0;
        /* order of following 3 rules important for fallbacks to work */
        border: 5px solid transparent;
        border-top-color: #A5ABF3 ;/* edit this to suit design (no rgba in IE8) */
}
.sf-arrows > li > .sf-with-ul:focus:after,
.sf-arrows > li:hover > .sf-with-ul:after,
.sf-arrows > .sfHover > .sf-with-ul:after {
        border-top-color: white; /* IE8 fallback colour */
}
/* styling for right-facing arrows */
.sf-arrows ul .sf-with-ul:after {
        margin-top: -5px;
        margin-right: -3px;
        border-color: transparent;
        border-left-color: #A5ABF3; /* edit this to suit design (no rgba in IE8) */
}
.sf-arrows ul li > .sf-with-ul:focus:after,
.sf-arrows ul li:hover > .sf-with-ul:after,
.sf-arrows ul .sfHover > .sf-with-ul:after {
        border-left-color: white;
}
.sf-vertical.sf-arrows > li > .sf-with-ul:after {
  margin-top: -5px;
  margin-right: -3px;
  border-color: transparent;
  border-left-color: #A5ABF3; /* edit this to suit design (no rgba in IE8) */
}
.sf-vertical.sf-arrows li > .sf-with-ul:focus:after,
.sf-vertical.sf-arrows li:hover > .sf-with-ul:after,
.sf-vertical.sf-arrows .sfHover > .sf-with-ul:after {
  border-left-color: white;
}

/*** shadows for all but IE6 ***/
/*sf-shadow ul {
	background:	url('../images/shadow.png') no-repeat bottom right;
	padding: 0 8px 9px 0;
	-moz-border-radius-bottomleft: 17px;
	-moz-border-radius-topright: 17px;
	-webkit-border-top-right-radius: 17px;
	-webkit-border-bottom-left-radius: 17px;
}
.sf-shadow ul.sf-shadow-off {
	background: transparent;
}
*/

.sf-vertical, .sf-vertical li {
	width:	140px;
}
/* this lacks ul at the start of the selector, so the styles from the main CSS file override it where needed */
.sf-vertical li:hover ul,
.sf-vertical li.sfHover ul {
	left:	140px; /* match ul width */
	top:	0;
}

.sf-vertical .sf-sub-indicator { background-position: -10px 0; } /* IE6 gets solid image only */
.sf-vertical a > .sf-sub-indicator { background-position: 0 0; } /* use translucent arrow for modern browsers*/

.sf-vertical a:focus > .sf-sub-indicator,
.sf-vertical a:hover > .sf-sub-indicator,
.sf-vertical a:active > .sf-sub-indicator,
.sf-vertical li:hover > a > .sf-sub-indicator,
.sf-vertical li.sfHover > a > .sf-sub-indicator {
	background-position: -10px 0; /* arrow hovers for modern browsers*/
}

.sf-menu li a,
.report-list li div,
.report-menu p
 {
	background-image: url(/images/menuicons/menu_sprite.gif);
	background-repeat: no-repeat;
}
.report-list li div {
	float: right;
	width: 18px;
	height: 18px;
}

.report-menu p.emptyLink, .sf-menu li li a { background-image: none; }

.emptyLink { background-position: 999px 999px; }
.about_icon { background-position: 2px 4px; } 
.acc_icon { background-position: 2px -45px; } 
.cal1_icon { background-position: 2px -94px; } 
.cal_icon { background-position: 2px -143px; } 
.chart_icon { background-position: 2px -192px; } 
.chart_manual_icon { background-position: 2px -243px; } 
.clock_icon { background-position: 2px -294px; } 
.compsystem_icon { background-position: 2px -343px; } 
.contact_icon { background-position: 2px -394px; } 
.csv_icon { background-position: 2px -446px; }
.digital_icon { background-position: 2px -494px; } 
.digital_manual_icon { background-position: 2px -545px; } 
.doc_icon { background-position: 2px -596px; } 
.download_icon { background-position: 2px -645px; } 
.email_icon { background-position: 2px -694px; } 
.faq_icon { background-position: 2px -743px; } 
.forum_icon { background-position: 2px -792px; } 
.help_icon { background-position: 2px -841px; } 
.home_icon { background-position: 2px -890px; } 
.letter { background-position: 2px -939px; } 
.links_icon { background-position: 2px -985px; } 
.lorry_icon { background-position: 2px -1034px; } 
.lorry_manual_icon { background-position: 2px -1081px; } 
.manual_manual_icon { background-position: 2px -1132px; } 
.mobile_icon { background-position: 2px -1183px; } 
.pdf_icon { background-position: 2px -1236px; } 
.pricing_icon { background-position: 2px -1283px; } 
.reports_icon { background-position: 2px -1332px; } 
.signup_icon { background-position: 2px -1381px; } 
.spreadsheet_icon { background-position: 2px -1430px; } 
.supplies_icon { background-position: 2px -1481px; } 
.tachograph_icon { background-position: 2px -1530px; } 
.tools_icon { background-position: 2px -1581px; } 
.training_icon { background-position: 2px -1630px; } 
.visitors_icon { background-position: 2px -1679px; } 
.worker_list { background-position: 2px -1728px; }
.csv_schedule_icon { background-position: 2px -1783px; }
.pdf_schedule_icon { background-position: 2px -1832px; }
.schedule_icon { background-position: 3px -1878px; }
.vehicle_list { background-position: 2px -1926px; }
.list_icon { background-position: 2px -1974px; }
.analytic_icon { background-position: 2px -2022px; }


.report-menu {
	border: 0;
	background-color: transparent;
	font-size: 1em;
}

.report-menu-container {
	padding: 5px;
	width: 600px;
	background-color: #fff;
	border: 1px solid #000;
	position: absolute;
	top: -20px;
	left: -30px;
}

.report-menu-container div {
	float: left;
	width: 200px;
	margin-bottom: 5px;
}

.report-menu h5 {
	font-size: 1.2em;
	color: #222;
	margin: 5px 0;
}

.report-menu p {
	margin: 0;
}

#menu ul .report-menu a {
	padding: 3px 3px 3px 0;
	margin-left: 23px;
	width: 170px;
	color: #000;
}
.report-menu a:hover {
	background-position: 0 0;
}

.report-popular li {
	padding: 5px 0;
}


.help-title p {
	padding: 5px;
	font-weight: bold;
	line-height: 1.4em;
}


.training_menu {
	margin-top: 5px;
}
#menu ul .training_menu a {
	margin: 0;
	padding: 0;
	background: none;
}
.sf-menu li.training_menu:hover, .sf-menu li.training_menu.sfHover,
.sf-menu li.training_menu a:focus, .sf-menu li.training_menu a:hover, .sf-menu li.training_menu a:active {
	background: none;
}

#newmenu-help {
	display:none;
	clear:both;
	position:relative;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
#newmenu {
	display:none;
	font-size: 1.1em;
	position:absolute;
	top:-20px;
	left:30px;
	width:300px;
	padding: 10px;
	z-index:999;
	font-weight:normal;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-moz-box-shadow: 0px 0px 9px 0px #939294;
	-webkit-box-shadow: 0px 0px 9px 0px #939294;
	box-shadow: 0px 0px 9px 0px #939294;
}
#newmenu ul {
	margin-left: 0;
	padding-left: 0;
}
#newmenu ul li {
	margin-left: 18px;
	padding-left: 0;
}
#newmenu h3 {
	margin-bottom: 10px;
}

.risk-menu-item {
	position: absolute;
	width: 15px;
	height: 15px;
	left: 2px;
}
