/* =IMPORTS
   ----------------------------------------------------*/

@import "reset.css";

/* =GENERIC
   ----------------------------------------------------*/

html {
  background: fixed #FFF url(/img/pc_icon_grey_offset.gif) no-repeat 100% 100%;
}
body {
  font-family: Calibri, 'Trebuchet MS', Arial, sans-serif;
  font-size: 0.85em;
  line-height: 1.5;
  text-align: center;
  margin: 0 0 20px;
}
h1, h2, h3 {
  font-family: Calibri,'Trebuchet MS', Arial, sans-serif;
  font-weight: bold;
  margin: 0 0 10px;
  line-height: 1;
}
h1 {
  font-size: 2em;
  margin-top: 20px;
}
h2 {
  font-size: 1.5em;
}
h3 {
  font-size: 1.2em;
}
a:link,
a:visited {
  color: #006;
  text-decoration: underline;
}
a:hover,
a:active {
  color: #008;
  text-decoration: none;
}
strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

.hidden {
  display: none;
}

fieldset {
  border: 1px solid #CCC;
  padding: 20px 0;
  margin-bottom: 20px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
input, textarea, select {
/*
  -moz-border-radius:15px;
  -moz-box-sizing:border-box;
*/
  border: 1px solid #CCC;
  background: #FFF;
  padding: 3px;
}

input:focus, textarea:focus, select:focus {
  border: 1px solid #666;
  background-color: #E5F2FF;
  color: #000;
}

fieldset div.input {
  clear: left;
  margin: 0 20px;
  padding: 5px 0;
}
fieldset div.input label {
  float: left;
  width: 200px;
  text-align: right;
  margin-right: 20px;
}

fieldset div.input input,
fieldset div.input select,
fieldset div.input textarea {
  float: left;
}

fieldset div.checkbox input {
  width: auto;
  margin-right: 10px;
}
fieldset div.checkbox label {
  width: auto;
}

fieldset div.input .error-message {
  float: left;
  margin-left: 20px;
}

/* Nasty hack to hide the leftover colon on time fields */
fieldset div.time-selects {
  float: left;
  color: #FFF;
}
fieldset div.time-selects select {
  color: #222;
}

form .submit {
  text-align: center;
}
form .required label {
  font-weight: bold;
}

form .required label:after {
  content: '*';
}


form .submit input,
input.button {
  padding: 10px;
  border: 2px solid;
  border-color: #D00 #300 #300 #D00;
  background: #800;
  color: #DDD;
  font-weight: bold;
  font-size: 1.4em;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  text-shadow: #000 0 1px 1px;
}
form .submit input:focus,
form .submit input:active,
form .submit input:hover,
input.button:focus,
input.button:active,
input.button:hover {
  background: #A00;
}

input.textbox-inactive {
  color: #999;
  font-style: italic;
}

fieldset .error input {
  border: solid #C00;
  border-width: 1px;
}
fieldset .error label,
fieldset .error .error-message {
  color: #C00;
}

.note {
  padding: 10px;
  background: #DDDDFF;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
.note strong {
  display: block;
  font-size: 1.3em;
}

.disclaimer {
  font-size: 10px;
  border: none;
}
#container {
  width: 680px;
  margin: 0 auto;
  text-align: left;
}

#footer {
  margin: 30px 0;
  text-align: center;
  color: #999;
}

/* Home - segway to identifying what type of insurance */
body.home {
  position: relative;
}

body.home #common,
body.home #rare {
  float: left;
  width: 300px;
}

body.home div ul {
  margin: 0 20px 20px 0;
  padding: 0;
}
body.home div ul li {
  list-style: none;
  padding: 2px 0;
  border-bottom: 2px solid #EEE;
}

body.home #saved_quote {
  position: absolute;
  top: 0;
  right: 10px;
  background: #800;
  padding: 10px 10px;
  margin: 0;
  font-weight: bold;

  border-bottom-right-radius: 10px;
  -moz-border-bottom-right-radius: 10px;
}

body.home #saved_quote a {
  color: #FFF;

}