/* accessibility */
/* menu links accesskeys */
span.accesskey {
	text-decoration: none;
}
/* accessibility divs are hidden by default, text, screenreaders and such will show these */
.accessibility, hr {
/* position set so the rest can be set out side of visual browser viewport */
	position: absolute;
/* takes it out top side */
	top: -999em;
/* takes it out left side */
	left: -999em;
}
/* definition tags are also hidden, these are also used for accessibility menu links */
dfn {
	position: absolute;
	left: -1000px;
	top: -1000px;
	width: 0;
	height: 0;
	overflow: hidden;
	display: inline;
}
/* end accessibility */
/* wiki style external links */
/* external links will have "(external link)" text added, lets hide it */
a.external span {
	position: absolute;
	left: -5000px;
	width: 4000px;
}
a.external {
/* make some room for the image, css shorthand rules, read: first top padding 0 then right padding 12px then bottom then right */
	padding: 0 12px 0 0;
}
/* colors for external links */
a.external:link {
	color: #18507C;
/* background image for the link to show wiki style arrow */
	background: url(images/cms/external.gif) no-repeat 100% -100px;
}
a.external:visited {
	color: #18507C;
/* a different color can be used for visited external links */
/* Set the last 0 to -100px to use that part of the external.gif image for different color for active links external.gif is actually 300px tall, we can use different positions of the image to simulate rollover image changes.*/
	background: url(images/cms/external.gif) no-repeat 100% -100px;
}
a.external:hover {
	color: #18507C;
/* Set the last 0 to -200px to use that part of the external.gif image for different color on hover */
	background: url(images/cms/external.gif) no-repeat 100% 0;
	background-color: inherit;
}
/* end wiki style external links */
/* clearing */
/* clearfix is a hack for divs that hold floated elements. it will force the holding div to span all the way down to last floated item. We strongly recommend against using this as it is a hack and might not render correctly but it is included here for convenience. Do not edit if you dont know what you are doing*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clear {
	height: 0;
	clear: both;
	width: 90%;
	visibility: hidden;
}
#main .clear {
	height: 0;
	clear: right;
	width: 90%;
	visibility: hidden;
}
* html>body .clearfix {
	display: inline-block;
	width: 100%;
}
* html .clear {
/* Hides from IE-mac \*/
	height: 1%;
	clear: right;
	width: 90%;
/* End hide from IE-mac */
}
/* end clearing */
/* Stylesheet: Accessibility and cross-browser tools Modified On 2009-05-13 10:42:54 */
/* Horizontal menu for the CMS CSS Menu Module */
/* by Alexander Endresen */

#menu_vert {
   margin-left: 1px;
   margin-right: 1px;

}

dfn {display:none;}

/* The wrapper clears the floating elements of the menu */

/* Fix for Opera 8 */
.clearb { clear: both; }
#menuwrapper { 
   /* Fix for Opera 8 */ 
   /*   overflow: hidden; 
   background-color: #ECECEC; removed 
   border-bottom: 1px solid #C0C0C0; removed*/
   background: #794500;
   text-align: center;
/*   border-bottom: 3px solid #000;*/
   
}

/* Set the width of the menu elements at second level. Leaving first level flexible. */
#primary-nav li li { 
   width: 200px; 
}


/* Unless you know what you do, do not touch this */ 
#primary-nav, #primary-nav ul { 
   list-style: none; 
   margin: 0px; 
   padding: 5px 5px 5px 5px;
    height: 100%;
   overflow: hidden;

}
#primary-nav ul { 
   position: absolute; 
   top: auto; 
   display: none; 
   padding: 20px 0;
}
#primary-nav ul ul { 
   margin-top: 1px;
   margin-left: 0px;
   left: 100%; 
   top: 0px; 
}
	
#primary-nav li { 
   margin-right: 5px;
   display: inline;
}
#primary-nav li li { 
   margin-left: 0px;
   margin-top: -1px;
   float: none; 
   position: relative; 
}

/* Styling the basic apperance of the menu elements */
#primary-nav a {
     /*padding-bottom: 8px;*/
}
#primary-nav li a { 
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #fff; 
	font-size: 16px;
	padding: 5px 15px; 
	margin-right: 10px;
	text-decoration: none;
}

#primary-nav li a.menuactive, #primary-nav li a:hover{ color: #99ff99;}

#primary-nav li li a { 
   border: 2px solid #3399ff;
}	
#primary-nav li, #primary-nav li.menuparent { 
   /*background-color: #ececec; removec*/
}

/* Styling the basic apperance of the active page elements (shows what page in the menu is being displayed) */

#primary-nav li a.menuactive,
#primary-nav li.menuactive { 
}


/* Styling the basic apperance of the menuparents - here styled the same on hover (fixes IE bug) */
#primary-nav ul li.menuparent, 
#primary-nav ul li.menuparent:hover, 
#primary-nav ul li.menuparenth { 
/* arrow for menuparents */
   background-image: url(../../images/cms/arrow.gif); 
   background-position: center right; 
   background-repeat: no-repeat; 
}


/* Styling the apperance of menu items on hover */

#primary-nav li a:hover,
#primary-nav li:hover, 
#primary-nav li.menuh, 
#primary-nav li.menuparenth, 
#primary-nav li.menuactiveh { 
}


/* The magic - set to work for up to a 3 level menu, but can be increased unlimited */

/* 
just add 
#primary-nav li:hover ul ul, 
#primary-nav li.menuparenth ul ul ul,
for fourth level 
*/
#primary-nav ul, 
#primary-nav li:hover ul, 
#primary-nav li:hover ul ul, 
#primary-nav li.menuparenth ul, 
#primary-nav li.menuparenth ul ul { 
   display: none; 
}

/* add 
#primary-nav ul ul ul li:hover ul, 
#primary-nav ul ul ul li.menuparenth ul,
for fourth level
*/
#primary-nav li:hover ul, 
#primary-nav ul li:hover ul, 
#primary-nav ul ul li:hover ul, 
#primary-nav li.menuparenth ul, 
#primary-nav ul li.menuparenth ul, 
#primary-nav ul ul li.menuparenth ul {
	display: block;
	background-color: #28a3e1;
}


/* IE Hacks */
#primary-nav li li { 
   float: left; 
   clear: both; 
}
#primary-nav li li a { 
   height: 1%; 
}

/********************
Footer Links
*********************/

/* hack for Internet Explorer */
* html div#menu_horiz {
   /* hide ie/mac \*/
   height: 1%;
   /* end hide */
}

/* 
background-color for the entire menu row, 
covering 100% of the width and text center-aligned 
*/
div#menu_horiz {
  /* background color for the entire menu row */
	width: 100%;
	line-height:15px;
	margin: 0;
}

/* 
the menu ul box has top and left border, 
right border is provided by the li elements 
*/
div#menu_horiz ul {
   margin: 0;
   padding: 0;
   float: left;

}


/* menu list items */
div#menu_horiz li {
   float: left; /* makes the list horizontal */
   list-style: none; /* hides the list bullet */ 
   margin: 0 ;
   margin-top: 5px;
   line-height: 10px;
}


/* the links, that is each list item */
div#menu_horiz a {
	text-decoration: none; /* no underline for links */
	color: #444;
	display: block; /* IE has problems with this, fixed above */
	font-size: 11px;
	background-position: center;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #444;
	margin-top: 0;
	margin-right: 5px;
	margin-bottom: 0;
	margin-left: 0;
	padding-right: 5px;
	
}


/* hover state for links */
div#menu_horiz li a:hover {
	color: #F8E9CA;
}
div#menu_horiz a.activeparent:hover {
   color: #F8E9CA;
}

/* active parent, that is the first-level parent of a child page that is the current page */
div#menu_horiz li.activeparent a {
	text-decoration: none; /* no underline for links */
	color: #444;
	display: block; /* IE has problems with this, fixed above */
	font-size: 11px;
	background-position: center;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #444;
	margin-top: 0;
	margin-right: 3;
	margin-bottom: 0;
	margin-left: 0;
	padding-right: 3em;
	text-transform: lowercase;
}

div#menu_horiz h3 {/* THIS IS THE COLOR OF THE HIGHTLIGHTED TEXT AKA CURRENT PAGE*/
	text-decoration: none;/* THIS IS THE COLOR OF THE HIGHTLIGHTED TEXT AKA CURRENT PAGE*/
	color: #444;/* THIS IS THE COLOR OF THE HIGHTLIGHTED TEXT AKA CURRENT PAGE*/
	display: block; /* THIS IS THE COLOR OF THE HIGHTLIGHTED TEXT AKA CURRENT PAGE*/
	font-size: 11px;/* THIS IS THE COLOR OF THE HIGHTLIGHTED TEXT AKA CURRENT PAGE*/
	background-position: center;/* THIS IS THE COLOR OF THE HIGHTLIGHTED TEXT AKA CURRENT PAGE*/
	border-right-width: 1px;/* THIS IS THE COLOR OF THE HIGHTLIGHTED TEXT AKA CURRENT PAGE*/
	border-right-style: solid;/* THIS IS THE COLOR OF THE HIGHTLIGHTED TEXT AKA CURRENT PAGE*/
	border-right-color: #444;/* THIS IS THE COLOR OF THE HIGHTLIGHTED TEXT AKA CURRENT PAGE*/
	margin-top: 0;
	margin-right: 3px;
	margin-bottom: 0;
	margin-left: 0;
	padding-right: 3px; /* instead of the normal font size for <h3> */
	font-weight: normal;
}

/* Footer */


/* Stylesheet: menu Modified On 2017-07-12 11:41:12 */
@charset "utf-8";
/* CSS Document */

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, font, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
caption, tbody, tfoot, thead, th {
	margin: 0;
	padding: 0;
	padding:0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
	
}
body{
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:14px;
	color: #444;
	line-height: 150%;
	background: #ccffcc url(../../uploads/images/allure-bg-main.jpg) top left repeat-x;
}

a, img{ border: 0;}

p{ 
	margin: 15px 0;
	line-height:150%;
}

a{ cursor: pointer; text-decoration: none; text-decoration: underline; color: #794500}

h1{ font-size: 22px; margin-bottom: 20px; font-weight: normal; font-family:Georgia, "Times New Roman", Times, serif; color: #663300}
h2{ font-size: 18px; font-family:Georgia, "Times New Roman", Times, serif; color: #663300;  font-weight: normal;}
h3{ font-size: 14px; font-family:Georgia, "Times New Roman", Times, serif; color: #663300}
h4{}
h5{}
h6{}



/*General*/
#container{
	width: 951px;
	margin: auto;
	background: #fff;
}
#header, #content, #body, #footer{ height: 100%; overflow: hidden}
#body{ padding:30px; background: #fff; height: 100%; overflow: hidden}
#content{}
a.NormalLink{
	color: #FFFFFF;
}
a.NormalLink:Hover{
	color: #000000;
}
a.FooterLink{
	color: #FFFFFF;
	line-height:1;
}
a.FooterLink:hover{
	color: #000000;
	line-height:1;
}

/*Common*/
.clear{ clear: both; display: block}
.left{ float: left; display: block}
.right{ float: right; display: block}
.wrapper{ clear: both; margin-bottom: 40px}
.question{font-size: 16px; font-weight: bold; color:#F60; margin-right: 10px;}
.answer{font-size: 16px; font-weight: bold; color:#39F;  margin-right: 10px;}
.padding-20{ padding: 10px 20px; height: 100%; overflow: hidden; margin-bottom: 50px;}
 

.left-width{ width: 520px; float: left}
.right-width{ width: 400px; float: right}

.image-left{ float: left; margin-right: 20px; display: block}
.image-right{ float: left; margin-left: 20px;  display: block}
.text-right{ width: 500px; float:left}


#content .clear{ padding-top: 10px;}
#content .clear .left{ margin-right: 8px;}

.logo{ text-align: center;}

.list{ list-style-type:; padding-left: 12px;}
.list li{ margin: 10px 20px 10px 0px; }

.form{ margin-top: 30px;}
.form .left{ width: 320px; font-size: 12px; margin-right: 20px; }
.form .left table{ }
.form .right{ width: 600px;  font-size: 12px; margin-top: 20px;}
.form input, .form textarea{ width: 300px;}
.form input.cms_submit{ width: 100px;}

#footer{ background: #ccffcc; color: #444; font-size: 12px; padding: 15px 20px; border-top: #794500;}
#footer a.sites{ color: #444; text-decoration: none;}
#footer a.sites:hover{ text-decoration: underline}

/* speicfic */

.home{}
.home .left{ width: 460px }
.home .right{ width: 460px}

.sub-menu{ height: 65px; background: url(../../uploads/images/anycool-submenu-bg.jpg) top left repeat-x; margin: 0px; padding:0px; list-style: none;}
.sub-menu a{ font-size: 22px; float: left; color: #979696; background: url(../../uploads/images/anycool-submenu-break.jpg) center right no-repeat ; padding: 10px 60px; color: #fff}
.sub-menu a.last{ background: none}
.sub-menu a:hover{ color: #004cd0}

/*Extra*/
a.car-link{ width: 257px; height: 63px; display: block; text-align: center; background: url(../../uploads/images/greg-btn-bg.gif) top left no-repeat; font-size: 28px; color: #1c1f4c; font-weight: bold; text-decoration: none; line-height: 60px;}
.car-name{ color: #bee11a; font-weight: bold; font-size: 18px;}
.car-price{ color: #bee11a; font-weight: bold;}
.bdr-bottom td{ border-bottom: 1px solid #353535}
/* Stylesheet: theme Modified On 2017-07-12 11:42:10 */
