/*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, sub, sup, tt, var,
dl, dt, dd,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0.1;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}
body {
  line-height: 1;
  color: black;
  background: white;
  height:auto !important;
}
ol, ul {
  list-style: initial;
}
a img {
  border: none;
}

html {
  background: #eeeeee;
}
  body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.4em;
    background: #eeeeee;
    color: #333333;
  }
  .main_area {
      display: block;
      width: 880px;
	  height: 1600px;
      margin-left: auto;
      margin-right: auto;
  }
   .admin_main_area {
      display: block;
      width: 1500px;
	  height: 1600px;
      margin-left: auto;
      margin-right: auto;
  }

*/


#todoapp {
  width: 480px;
  margin: 0 auto 40px;
  background: white;
  padding: 20px;
  -moz-box-shadow: rgba(0, 0, 0, 0.2) 0 5px 6px 0;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 5px 6px 0;
  -o-box-shadow: rgba(0, 0, 0, 0.2) 0 5px 6px 0;
  box-shadow: rgba(0, 0, 0, 0.2) 0 5px 6px 0;
}
  #todoapp h1 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    padding: 20px 0 30px 0;
    line-height: 1;
  }

#create-todo {
  position: relative;
}
  #create-todo input {
    width: 466px;
    font-size: 24px;
    font-family: inherit;
    line-height: 1.4em;
    border: 0;
    outline: none;
    padding: 6px;
    border: 1px solid #999999;
    -moz-box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px 0 inset;
    -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px 0 inset;
    -o-box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px 0 inset;
    box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px 0 inset;
  }
    #create-todo input::-webkit-input-placeholder {
      font-style: italic;
    }
  #create-todo span {
    position: absolute;
    z-index: 999;
    width: 170px;
    left: 50%;
    margin-left: -85px;
  }

#todo-list {
  margin-top: 10px;
}
  #todo-list li {
    padding: 12px 20px 11px 0;
    position: relative;
    font-size: 24px;
    line-height: 1.1em;
    border-bottom: 1px solid #cccccc;
  }
    #todo-list li:after {
      content: "\0020";
      display: block;
      height: 0;
      clear: both;
      overflow: hidden;
      visibility: hidden;
    }
    #todo-list li.editing {
      padding: 0;
      border-bottom: 0;
    }
  #todo-list .editing .display,
  #todo-list .edit {
    display: none;
  }
    #todo-list .editing .edit {
      display: block;
    }
    #todo-list .editing input {
      width: 444px;
      font-size: 24px;
      font-family: inherit;
      margin: 0;
      line-height: 1.6em;
      border: 0;
      outline: none;
      padding: 10px 7px 0px 27px;
      border: 1px solid #999999;
      -moz-box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px 0 inset;
      -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px 0 inset;
      -o-box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px 0 inset;
      box-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px 0 inset;
    }
  #todo-list .check {
    position: relative;
    top: 9px;
    margin: 0 10px 0 7px;
    float: left;
  }
  #todo-list .done .todo-content {
    text-decoration: line-through;
    color: #777777;
  }
  #todo-list .todo-destroy {
    position: absolute;
    right: 5px;
    top: 14px;
    display: none;
    cursor: pointer;
    width: 20px;
    height: 20px;
    background: url(/img/destroy.png) no-repeat 0 0;
  }
    #todo-list li:hover .todo-destroy {
      display: block;
    }
    #todo-list .todo-destroy:hover {
      background-position: 0 -20px;
    }

#todo-stats {
  *zoom: 1;
  margin-top: 10px;
  color: #777777;
}
  #todo-stats:after {
    content: "\0020";
    display: block;
    height: 0;
    clear: both;
    overflow: hidden;
    visibility: hidden;
  }
  #todo-stats .todo-count {
    float: left;
  }
    #todo-stats .todo-count .number {
      font-weight: bold;
      color: #333333;
    }
  #todo-stats .todo-clear {
    float: right;
  }
    #todo-stats .todo-clear a {
      color: #777777;
      font-size: 12px;
    }
      #todo-stats .todo-clear a:visited {
        color: #777777;
      }
      #todo-stats .todo-clear a:hover {
        color: #336699;
      }

#instructions {
  width: 520px;
  margin: 10px auto;
  color: #777777;
  text-shadow: rgba(255, 255, 255, 0.8) 0 1px 0;
  text-align: center;
}
  #instructions a {
    color: #336699;
  }

#credits {
  width: 520px;
  margin: 30px auto;
  color: #999;
  text-shadow: rgba(255, 255, 255, 0.8) 0 1px 0;
  text-align: center;
}
  #credits a {
    color: #888;
  }


/*
 *  François 'cahnory' Germain
 */
.ui-tooltip, .ui-tooltip-top, .ui-tooltip-right, .ui-tooltip-bottom, .ui-tooltip-left {
  color:#ffffff;
  cursor:normal;
  display:-moz-inline-stack;
  display:inline-block;
  font-size:12px;
  font-family:arial;
  padding:.5em 1em;
  position:relative;
  text-align:center;
  text-shadow:0 -1px 1px #111111;
  -webkit-border-top-left-radius:4px ;
  -webkit-border-top-right-radius:4px ;
  -webkit-border-bottom-right-radius:4px ;
  -webkit-border-bottom-left-radius:4px ;
  -khtml-border-top-left-radius:4px ;
  -khtml-border-top-right-radius:4px ;
  -khtml-border-bottom-right-radius:4px ;
  -khtml-border-bottom-left-radius:4px ;
  -moz-border-radius-topleft:4px ;
  -moz-border-radius-topright:4px ;
  -moz-border-radius-bottomright:4px ;
  -moz-border-radius-bottomleft:4px ;
  border-top-left-radius:4px ;
  border-top-right-radius:4px ;
  border-bottom-right-radius:4px ;
  border-bottom-left-radius:4px ;
  -o-box-shadow:0 1px 2px #000000, inset 0 0 0 1px #222222, inset 0 2px #666666, inset 0 -2px 2px #444444;
  -moz-box-shadow:0 1px 2px #000000, inset 0 0 0 1px #222222, inset 0 2px #666666, inset 0 -2px 2px #444444;
  -khtml-box-shadow:0 1px 2px #000000, inset 0 0 0 1px #222222, inset 0 2px #666666, inset 0 -2px 2px #444444;
  -webkit-box-shadow:0 1px 2px #000000, inset 0 0 0 1px #222222, inset 0 2px #666666, inset 0 -2px 2px #444444;
  box-shadow:0 1px 2px #000000, inset 0 0 0 1px #222222, inset 0 2px #666666, inset 0 -2px 2px #444444;
  background-color:#3b3b3b;
  background-image:-moz-linear-gradient(top,#555555,#222222);
  background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0,#555555),color-stop(1,#222222));
  filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#555555,EndColorStr=#222222);
  -ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#555555,EndColorStr=#222222);
}
.ui-tooltip:after, .ui-tooltip-top:after, .ui-tooltip-right:after, .ui-tooltip-bottom:after, .ui-tooltip-left:after {
  content:"\25B8";
  display:block;
  font-size:2em;
  height:0;
  line-height:0;
  position:absolute;
}
.ui-tooltip:after, .ui-tooltip-bottom:after {
  color:#2a2a2a;
  bottom:0;
  left:1px;
  text-align:center;
  text-shadow:1px 0 2px #000000;
  -o-transform:rotate(90deg);
  -moz-transform:rotate(90deg);
  -khtml-transform:rotate(90deg);
  -webkit-transform:rotate(90deg);
  width:100%;
}
.ui-tooltip-top:after {
  bottom:auto;
  color:#4f4f4f;
  left:-2px;
  top:0;
  text-align:center;
  text-shadow:none;
  -o-transform:rotate(-90deg);
  -moz-transform:rotate(-90deg);
  -khtml-transform:rotate(-90deg);
  -webkit-transform:rotate(-90deg);
  width:100%;
}
.ui-tooltip-right:after {
  color:#222222;
  right:-0.375em;
  top:50%;
  margin-top:-.05em;
  text-shadow:0 1px 2px #000000;
  -o-transform:rotate(0);
  -moz-transform:rotate(0);
  -khtml-transform:rotate(0);
  -webkit-transform:rotate(0);
}
.ui-tooltip-left:after {
  color:#222222;
  left:-0.375em;
  top:50%;
  margin-top:.1em;
  text-shadow:0 -1px 2px #000000;
  -o-transform:rotate(180deg);
  -moz-transform:rotate(180deg);
  -khtml-transform:rotate(180deg);
  -webkit-transform:rotate(180deg);
}

/*
#wrapper {
	width:88%;height:auto; margin:5px 0px 20px 0px;
}
*/

.label_container {
	float:left; cursor:pointer; margin:0 1px 0 0;
}

#searchbar {
	width: 100%; height: auto; margin-bottom:5px;
}

#searchbar .input {
	float:left;
}

#search {
	color:#CCC; padding-left:7px; font-size:18px; width:100%; height:35px; border:1px solid #CCC;
}

#controls {
	width:102%; margin:5px 0;height:20px;
}



a.region {
	margin:0 3px;
	color:#000 !important;
}

#productImage {
	background-image:url("/img/DC_header_dlrloc.jpg") !important;
        display: block;
        width: 866px;
        height: 210px;
        margin-left: auto;
        margin-right: auto;
}

a.online_dealer,
a.education_dealer {
	margin-right:5px;
}

/*
#content {
	width: 100% !important;
}
*/

#page {
	overflow:hidden;
	margin: 0 auto !important;
	height: auto !important;
}

body {
	height: auto !important;
}

#business_units {
	float:left; padding-right: 3px; width:83%; overflow:hidden; border:1px solid #CCC;height:20px;
}

#business_units span {
	float:left;
	padding:3px 0 0 3px;
}

#business_units label {
	line-height:22px; font-size:11px;
}

div.online_result {
	width:33%;
	float:left;
	font-size:10px;
	margin-bottom:5px;
}

#products_outer {
	position:relative;
}

#products {
	z-index:8000;height:auto;position:absolute; top: 19px; left: -327px; width:419px;background-color:#FFF; padding:20px 5px 0 5px; border:1px solid #CCC; display:none;font-size:10px;
}

#products .products-col1, #products .products-col2 {
	width:50%;
	overflow:hidden;
	float:left;
}

#products .category {
	float:left;border:1px solid #ccc;padding:3px;margin:5px;min-width:110px;min-height:95px; width:90%;
}

#products .product {
	background-color:#F0F0F0;margin-bottom:3px;
}

#prod_container_outer {
	float:right; width:15%;  border:1px solid #CCC; margin-right:3px;height:20px;
}

#prod_container {
	padding-top:1px;
}

div.educational_result {
	width:100%;
	font-size:10px;
	margin-bottom:5px;
}

div.online_result .dealer a, 
div.educational_result .dealer a {
	color:#000 !important;
	font-size:11px !important;
	font-weight:bold;
}

div.online_result .phone, 
div.educational_result .phone {
	color:#000 !important;
	font-size:9px !important;
}

div.bread a {
	font-weight:bold;
	color:#000;
}

div.bread a:hover {
	color:red !important;
	text-decoration:none;
}

#edu_online_footer {
	width:100%; overflow:hidden; border:1px solid #CCC;padding:4px;
	height: 850px;
}

#edu_online_footer #edu_footer {
	width:35%; float:left;
}

#edu_online_footer #online_footer {
	width:65%; float:left;
}

#mapstate {
	border:1px solid #CCC; padding:4px; width:100%; height:385px; overflow:hidden;
}

#map_outer {
	width: 100%; height:100%;float:left;
}

#userposition_outer {
	position:relative; z-index:4001
}

#userposition {
	text-align:center; -webkit-box-shadow:0 8px 10px rgba(0, 0, 0, 0.7); box-shadow:0 8px 10px rgba(0, 0, 0, 0.7);-moz-box-shadow:0 8px 10px rgba(0, 0, 0, 0.7); display:none; background-color:#fff; width:440px; height:160px; position:absolute; top:112px; left:127px; z-index:4000;
}

#userposition .exit {
	float:right;cursor:pointer;
}

#userposition .msg {
	font-size:17px; clear:right; line-height:18px;margin-top:10px;
}

#userposition .controls {
	font-size:18px; font-weight:bold; margin-top:10px;
}

#map {
	width: 100%; height:100%;
}

#results_container {
	display:none; width:30%; height:100%; float:left; overflow-y:scroll;
}

#results {
	width:96%; height:100%; margin:0 auto;
}

#results .result_container {
	border:1px solid #CCC; margin-bottom:5px;
}

#results .pro{
	border:1px solid #FF181E; background-color:#F0F0F0; margin-bottom:5px;
}

#results .result-min {
	font-size:12px;margin:3px;width:100%; overflow:hidden;
}

#results .marker {
	float:left; width:12%; margin-right:5px;cursor:pointer;
}

#results .info-left {
	float:left; width:76%; font-size:10px;
}

#results .info-right {
	float:left; width:6%; font-size:16px;
}

#results .result-max {
	display:none; font-size:12px;margin:3px;width:100%; overflow:hidden;
}

#results .result-max .marker {
	float:left; width:12%; margin-right:5px;
}

#results .result-max .info {
	float:left; width:76%; font-size:10px;
}

#results .result-max .info2 {
	float:left; width:6%; font-size:18px;
}

#labels_container {
	position:relative;
}

#labels_container  #labels {
	position:absolute; z-index:4000; left:0px; top:0px;
}

#parent_region {
	width:100%;overflow:hidden;margin:5px 0;
}

#labels_container #labels .label {
	border:1px solid #000; padding:2px;background-color:#000; white-space: nowrap;color:#ffffff;font-family: Arial; font-weight: bold;font-size: 10px;
}

#megafoter {
	width: 100%; height: auto; margin-top:10px;
}

a.underline:hover {
	text-decoration:underline !important;;
}

#megafooter {
	position: relative; top: 10px;
}

#megafooter #regions_footer {
	width:100%; border:1px solid #CCC; margin-bottom:10px;padding:4px;
}

#admin {

}

#admin #dealers table tr.dealer:nth-child(even) {background:#FFF;}
#admin #dealers table tr.dealer:nth-child(odd) {background:#CCC;}

#admin a.sorter {
	text-decoration:underline;
}

#admin #dealers table tr th {
	font-weight:bold;
}

#edit_dialog #edit {
	width:90%;
	margin:0 auto;
}

#edit_dialog #edit .header {
	width:100%;
	background:#666666;
	color:#FFF;
	font-weight:bold;
	-webkit-box-shadow:0 3px 4px rgba(0, 0, 0, 0.4); box-shadow:0 3px 4px rgba(0, 0, 0, 0.4);-moz-box-shadow:0 3px 4px rgba(0, 0, 0, 0.4);
	margin-bottom:15px;
	height:35px;
	text-align:left;
	overflow:hidden;
}

#edit_dialog #edit .data_map  {
	width:100%;
	overflow:hidden;
	margin-bottom:10px;
}

#edit_dialog #edit .dealer_data  {
	float:left;
	margin-left:10px;
	margin-right:5px;
	width:59%;
}

#edit_dialog #edit .dealer_logo {
	margin-bottom:10px;
	width:100%;
	overflow:hidden;
}

#edit_dialog #edit .dealer_associations  {
	margin-bottom:10px;
}

#edit_dialog #edit .dealer_map  {
	float:right;
	width:38%;
}

#edit_dialog #edit .dealer_data .data_row  {
	overflow:hidden;
	text-align:left;
}

#edit_dialog #edit .dealer_data .data_row .data_field {
	float:left;
	width:120px;

}

#edit_dialog #edit .dealer_data .data_row .data_value {
	float:left;
}

#edit_dialog #edit .dealer_logo .logo_prev {
	float:left;
	width:33%;
}

#edit_dialog #edit .dealer_logo .logo_controls {
	float:left;
	width:33%;
}

#edit_dialog #edit .dealer_logo .logo_controls div.delete {
	background-image:url('/img/XPButtonUploadText_61x22.png');
}

#edit_dialog #edit .dealer_logo .logo_instructions {
	float:right;
	width:33%;
	text-align:left;
}

#edit_dialog #edit .submit {
	float:right;
	margin-top:-17px;
	margin-right:17px;
}

.ui-dialog-title {
	text-align:left;
}

.swfupload {
	position:absolute;
	z-index:1;
}