/**
 * Name: base.css
 *
 *	T.O.C
 *	
 *	#CssReset
 *	#Typography
 *		#Links
 *		#Lists
 *		#Images
 *		#Tables
 *		#Forms
 *		#Misc
 */


/* ==========================================================================
   #CssReset
   ========================================================================== */

	html, body, div, span, applet, object, iframe,
	h1, h2, h3, h4, h5, h6, p, blockquote, pre,
	a, abbr, acronym, address, big, cite, code,
	del, dfn, em, img, ins, kbd, q, s, samp,
	small, strike, strong, sub, sup, tt, var,
	b, u, i, center,
	dl, dt, dd, ol, ul, li,
	fieldset, form, label, legend,
	table, caption, tbody, tfoot, thead, tr, th, td,
	article, aside, canvas, details, embed, 
	figure, figcaption, footer, header, hgroup, 
	menu, nav, output, ruby, section, summary,
	time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline;
	}
	
	/* HTML5 display-role reset for older browsers */
	
	article, 
	aside, 
	details, 
	figcaption, 
	figure, 
	footer, 
	header, 
	hgroup, 
	menu, 
	nav, 
	section {
		display: block;
	}
	
	body {
		line-height: 1;
	}
	
	ol, 
	ul {
		list-style: none;
	}
	
	blockquote, 
	q {
		quotes: none;
	}
	
	blockquote:before, 
	blockquote:after,
	q:before, 
	q:after {
		content: '';
		content: none;
	}
	
	table {
		border-collapse: collapse;
		border-spacing: 0;
	}
	
	/**
	 * 1. Always force vertical scroll
	 * 2. Prevent iOS text size adjust after orientation change, without disabling user zoom.
	 * 3. For animations
	 */
	
	html { 
		font-size: 100%; 
		overflow-y: scroll; /* 1  */ 
		-ms-text-size-adjust: 100%; /* 2 */
    	-webkit-text-size-adjust: 100%; /* 2 */
		-webkit-font-smoothing: antialiased; 
		overflow-x: hidden; /* 3 */
	}

/* ==========================================================================
   #Typography
   ========================================================================== */
   
   /**
	 * 1. For animations
	 */
	 
	body {
		overflow-x: hidden; /* 1 */
		background-color: #fff;
		color: #818181;
		font: 14px 'Open Sans', Arial, sans-serif; 
	/*	line-height: 24px;	*/
	}
	
	h1, 
	h2, 
	h3, 
	h4, 
	h5, 
	h6 { font-weight: normal; }
		
	h1 a, 
	h2 a, 
	h3 a, 
	h4 a, 
	h5 a, 
	h6 a {
		color: #818181;
		font-weight: inherit; 
	}
	
	h1 {
		margin-bottom: 14px; 	 
		font-size: 26px; 
		line-height: 48px; 
	}
	
	h2 { 
		margin-bottom: 10px;	
		font-size: 30px; 
		line-height: 42px;  
	}
	
	h3 { 
		margin-bottom: 8px;
		font-size: 20px; 
		line-height: 36px;   
	}
	
	h4 {
		margin-bottom: 4px; 
		font-size: 18px; 
		line-height: 28px;   
	}
	
	h5 { 
		font-size: 16px; 
		line-height: 26px; 
	}
	
	h6 { 
		font-size: 14px; 
		line-height: 24px; 
	}
	
	p { margin-bottom: 20px; }
	em { font-style: italic; }
	strong { font-weight: 600; }
	small { font-size: 90%; }
	
	sub { 
		vertical-align: sub; 
		font-size: 75%; 
	}
	
	sup { 
		vertical-align: super; 
		font-size: 75%; 
	}
	
	abbr[title] {  
		border-bottom: 1px dotted #cdcdcd; 
		cursor: help;
	}
	
	address { 
		display: block; 
		margin-bottom: 20px; 
	}
	
	blockquote {}
	
	blockquote p { font-style: italic; }
	
	blockquote span { 
		display: block;
		margin-top: 5px;
		color: #999999;  
	}
	
	blockquote span:before { content: "\2013 \00A0"; }

	hr { 
		height: 0; 
		border: solid #e9e9e9; 
		border-width: 1px 0 0 0;
		margin: 15px 0 15px 0;
	}

	code, 
	pre { 
		-webkit-border-radius: 3px;
			    border-radius: 3px;	
		font-family: Monaco, Menlo, Consolas, "Courier New", monospace;			
	}
	
	code { 
		padding: 1px 4px;
		border: 1px solid #cdcdcd;
		background-color: #e9e9e9;  
		color: #d14;  
	}
	
	pre { 
		overflow-x: auto; 
		display: block;
		padding: 20px;
		border: 1px solid #cdcdcd;   
		margin-bottom: 20px;
		white-space: pre-wrap;
		background-color: #e9e9e9; 
	}
	
	/* Typography Helper Classes */
	
	/**
	 * <div class="hr"></div> acts like an <hr />
	 */
	
	.hr { 
		border-top: 1px solid #e9e9e9;  
		margin: 30px 0;
	}
	
	.text-left { text-align: left; }
	.text-right { text-align: right; }
	.text-center { text-align: center; }
	
	.text-highlight { color: #289ccb; }

	.text-uppercase { text-transform: uppercase; }
	
	.mute{ color: #aaa; }
	
	p.last,
	h1.last,
	h2.last,
	h3.last,
	h4.last,
	h5.last,
	address.last { margin-bottom: 0; }
	
/* #Links
   ========================================================================== */
	
	a, 
	a:visited { 
		color: #818181; 
		text-decoration: none; 
	}
	
   /**
	* 1. Remove the gray background color from active links in IE 10.
	*/
	
	a:active {
 		background: transparent; /* 1 */
	}
	
	a:hover, 
	a:focus {
		outline: 0; 
		text-decoration: none;
		color: #ff630d;
	}	
	
/* #Lists
   ========================================================================== */
	
	ul, 
	ol { 
		margin-bottom: 20px;
		list-style-position: inside; 
	}
	
	ul ul, 
	ul ol, 
	ol ol, 
	ol ul { 
		margin-bottom: 0; 
		margin-left: 30px; 
	}
	
	li {}
	
	ul { list-style-type: disc; }
	ol { list-style-type: decimal; }
	
	/* List Helper Classes */

	ul.last,
	ol.last { margin-bottom: 0; }

/* #Images
   ========================================================================== */
	
	img { border: none; }
	
	/* Images Helper Classes */
	
	.img-align-left { 
		float: left;
		margin: 5px 10px 0 0;  
	}
	
	.img-align-right { 
		float: right;
		margin: 5px 0 0 10px; 
	}

/* #Tables
   ========================================================================== */

	table { 
		width: 100%;
		margin-bottom: 20px; 
		border-collapse: collapse; 
		border-spacing: 0; 
		background-color: transparent; 
	}
	
	caption { 
		margin: 20px 0;
		text-align: center; 
	}

	table th, 
	table td {
		padding: 15px 8px; 
		border-top: 1px solid #cdcdcd;
		text-align: center;
		vertical-align: top; 
	}
	
	table th { 
		border-top: none;
		background-color: #289ccb;
		color: #fff;
		font-size: 16px;
	}
	
	table thead th { vertical-align: bottom; }
	#l_menu {
		width: 100%;
		text-align: right;
	}
	.package-details {
		margin-top: -10px;
	}
	.package-details td {
    	padding: 0px;
   		border-top: 0;
  		text-align: left;
		vertical-align: top;
		font-size: 12px;
	}
/*
ca #009ade
cb #ec008c
cc #bdc61e
cd #005da0
ce #ac208e
*/
.side_menu {
	float:right;
	padding-right:10px;
	margin-left:30px;
	min-width: 200px;
	border-top: 3px solid #ff630d;
}
.side_menu.ca{
	border-top: 3px solid #009ade;
}
.side_menu.cb{
	border-top: 3px solid #ec008c;
}
.side_menu.cc{
	border-top: 3px solid #bdc61e;
}
.side_menu.cd{
	border-top: 3px solid #005da0;
}
.side_menu.ce{
	border-top: 3px solid #ac208e;
}

.side_menu img {
	height: 140px;
	margin: 10px 45px;
}

#l_menu ul {
	padding: 0;
	margin: 0;
	font: 12px Arial,tahoma,verdana,sans-serif;
	list-style: none;
}

#l_menu ul li a {
	width: 100%;
	display: block;
	line-height: 25px;
	color:#818181;
	background: #e9e9e9;
	padding-right: 10px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	text-decoration:none;
	font-weight: normal;
	white-space: nowrap;
}

#l_menu ul li a:hover {
	background-color: #ff630d;
	color: #fff;
}

.side_menu.ca #l_menu ul li a:hover{
	background: #009ade;
}
.side_menu.cb #l_menu ul li a:hover{
	background: #ec008c;
}
.side_menu.cc #l_menu ul li a:hover{
	background: #bdc61e;
}
.side_menu.cd #l_menu ul li a:hover{
	background: #005da0;
}
.side_menu.ce #l_menu ul li a:hover{
	background: #ac208e;
}

.has_submenu {
	color:#fff !important;
	background: #ff630d !important;
}

.side_menu.ca .has_submenu{
	background: #009ade !important;
}
.side_menu.cb .has_submenu{
	background: #ec008c !important;
}
.side_menu.cc .has_submenu{
	background: #bdc61e !important;
}
.side_menu.cd .has_submenu{
	background: #005da0 !important;
}
.side_menu.ce .has_submenu{
	background: #ac208e !important;
}
.has_submenu:hover {
/*	background: rgba(0, 140, 153, 1) !important;*/
}

#l_menu ul li ul li a {
/*	background:none !important;*/
	border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
	background: #f9f9f9;
}

#l_menu ul li ul li a:hover {
	background: rgba(255, 99, 13, 0.7) !important;
}

.side_menu.ca #l_menu ul li ul li a:hover{
	background: #009ade !important;
}
.side_menu.cb #l_menu ul li ul li a:hover{
	background: #ec008c !important;
}
.side_menu.cc #l_menu ul li ul li a:hover{
	background: #bdc61e !important;
}
.side_menu.cd #l_menu ul li ul li a:hover{
	background: #005da0 !important;
}
.side_menu.ce #l_menu ul li ul li a:hover{
	background: #ac208e !important;
}

#l_menu ul li ul {
	margin: 0;
	padding: 0;
	display: none;
}
#l_menu {
	margin-bottom: 20px;
}

.l_active {
	font-weight: bold !important;
	color: #fff !important;
	background: #231f20 !important;
/*	text-decoration: underline !important;*/
}	
/* #Forms
   ========================================================================== */

	form {}
	
	fieldset {}
	
	form p {}
	
	label {
		display: block;
		margin-bottom: 5px;
	}

	label span { color: #ff0000; }
	
	select,
	button,
	input[type="button"],
	input[type="reset"],
	input[type="submit"],
	input[type="radio"],
	input[type="checkbox"] { cursor: pointer; }
	
	/*
	 * 1. stop safari from overwriting input styles
	 */	
	
	input,
	textarea,
	select {
		-webkit-appearance: none; /* 1 */
		display: block;		
		max-width: 100%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		padding: 6px 10px;
		border: 1px solid #cdcdcd;
		margin-bottom: 10px;
		background: #fff;
		color: #818181;	
		font: 14px/24px 'Open Sans', Arial, sans-serif; 		 
	}

	.esm_form_field input[type="text"],
	.esm_form_field input[type="email"],
	.esm_form_field input[type="url"],
	.esm_form_field textarea {
		width:100%;	
	}	
	input[type="text"]:focus,
	input[type="email"]:focus,
	input[type="url"]:focus,
	textarea:focus {
		border-color: #ff630d;
		outline: 0;		
	}
	
	select { height: 35px; }
	
	select:focus {
	  outline: thin dotted #cdcdcd;
	  outline: 5px auto -webkit-focus-ring-color;
	  outline-offset: -2px;
	}
	
	textarea { 
		min-height: 100px; 
		overflow: auto; 
	}

	.radio,
	.checkbox {
		min-height: 18px;
		padding-left: 18px;
	}
	
	.radio input[type="radio"],
	.checkbox input[type="checkbox"] {
		float: left;
		margin-left: -18px;
	}
	
	input:-moz-placeholder,
	textarea:-moz-placeholder {
		color: #ccc;
	}
	
	input:-ms-input-placeholder,
	textarea:-ms-input-placeholder {
		color: #ccc;
	}
	
	input::-webkit-input-placeholder,
	textarea::-webkit-input-placeholder {
		color: #ccc;
	}
	.right_to_form {
		text-align:right;
	}
/* #Misc
   ========================================================================== */
   
   .javascript-required {
	    padding: 15px 0;
		background-color: #f00;
		color: #fff;
		text-align:center;
		font-weight: bold;
	}
   
