/*Separate into sections - elements, classes and ids, making sure that the elements are first, then alphabetize.*/
/*************************************************elements*********************************************************/
/*roberts red #971414*/
* {
  padding: 0;
  margin: 0;
  /*border: 1px solid red;*/
}
a:link {
  color: #007dff; /*aqua from crayon set*/
  color: #418AB7; /*has to be a shade of blue*/
}
a:visited {
  color: #FAD163;
  color: #60782d;
  color: #CCCCCC;
  color: #999999;
}
a:hover {
    color: #971414;
}
a img {
  border: none;
}
/*using this on pricing page, under floated boxes*/
br.clear {
  clear: both;
}
body {
  background: url("image/bg.gif") repeat-x 0 0;
  font: 13px/20px "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
  text-align: center; /*IE workaround*/
  color: #333333;
  background-color: white;
}
#content fieldset {
  border: none;
  border-top: 1px solid #CAE4FD;
  border-bottom: 1px solid #CAE4FD;
  padding: 8px;
  background-color: #EFF6FD;
  margin-bottom: 16px;
}
#payment fieldset {
  border: none;
  background-color: white;
}
#content fieldset p {
  margin: 0 0 10px 0;
}
fieldset ul {
  list-style: none;
}
#step2 fieldset input.checkbox {
  margin-top: 10px;
  color
}
h1, h2, h3 {
  /*font-family: Dolly, Georgia, "Times New Roman", serif; from croft*/
  margin-top: 25px;
  margin-bottom: 10px;
  clear: both; /*this prevents floated images from causing weird indent problems*/
}
h1 {
  font-size: 25px;
  line-height: 25px;
}
h2 {
  font-size: 20px;
  line-height: 20px;
}
h3 {
  font-size: 15px;
  line-height: 15px;
}
/*web 2.0 big time intros; like apple and 37signals*/
p#intro {
  font-size: 130%;
  color: #777777;
}
input, textarea, select {
  padding: 1px;
  font-size: 120%;
  margin-bottom: 10px;
}
img.top {
  margin-top: 25px;
}
#content .submit input {
  font-weight: normal;
  font-size: 120%;
}
#sidebar .submit input {
  font-size: 90%;
}
textarea {
  font-weight: normal;
  padding: 3px;
}
input.note, textarea.note {
  margin: 0px 0 2px 0;
}
input.checkbox {
  margin: 0 5px 0 0;
}
/*whoa, there are pseudo selectors for form elements? source: http://www.ozzu.com/ftopic76687.html
#content input[type=checkbox] {
  padding: 80px;
}*/
label {
  display: block;
}
label.checkbox, .radio label {
  display: inline;
  position: relative;
}
legend {
  font-weight: bold;
}
#sidebar .classes li {
  margin-bottom: 8px;
}
#sidebar ul.align_right {
  list-style: none;
}
fieldset li input.checkbox {
  margin-bottom: 10px;
}
option {
  padding: 0 5px 0 3px;
}
ul, ol {
  margin-bottom: 16px;
  margin-left: 16px;
}
ul {
  list-style-type: square;
}
/*************************************************classes*********************************************************/
.align {
  text-align: left; 
}
/*default testimonial_box display*/
#testimonial .align, .align_right {
  text-align: right;
}
.error, .warning, del {
  color: #971414;
}
p#feedback, p#sticky {
  text-align: center;
  font-weight: bold;
  border-top: 1px solid #FAD163;
  border-bottom: 1px solid #FAD163;
  background-color: #FFFFCC;
  padding: 0 5px 0 5px;
}
/*always blue*/
p#sticky a, p#feedback a {
  color: #418AB7;
}
.message {
  border-top: 1px solid #CAE4FD;
  border-bottom: 1px solid #CAE4FD;
  background-color: #EFF6FD;
  padding: 0 8px 0 8px;
}
#content .message p {
  margin-bottom: 0px;
}
#content .message ul {
  margin-top: 10px;
  margin-bottom: 5px;
}
#content .message .small_text {
  font-weight: normal;
}
/*this is REALLY STRONG TEXT, AS IF TO SAY, I WILL BE SEEN*/
.highlight8 {
  /*dark orange*/
  background-color: #FAD163;
  /*light orange*/
  background-color: #FFFFCC;
  padding: 0 2px 0 2px;
}
/*make certain lists horizontal*/
.horizontal, .horizontal ul {
  margin: 0 0 16px 0;
}
.horizontal li {
  margin: 0 5px 0 0;
}
.horizontal p {
  margin-right: 5px;
}
.horizontal p, .horizontal ul, .horizontal li {
 display: inline;
}
.inline {
  display: inline;
}
/*this is for the confirm pages, to put a space between the heading/paragraph after things are classed to inline*/
div.inline {
  margin-top: 25px;
  margin-bottom: 10px;
  display: block;
  clear: both;
}
div.inline h1, div.inline h2, div.inline h3, div.inline p, div.inline ul {
  display: inline;
}
.normal_text {
  font-size: 12px;
}
/*make paragraph classed testimonials pop out*/
.testimonial {
  color: green;
  text-align: center;
  font-size: 110%;
}
/*
.radio input {
  margin-left: 16px;
  border: none;
}*/
/*optional labels*/
.small_text, div.inline p, .optional {
  font-size: 10px;
  line-height: 12px;
  color: #777777;
}
/*successful coupon code is the inspiration*/
.success {
  color: green;
  font-weight: bold;
}
#confirm .warning {
  color: #971414;
  font-weight: bold;
}
.strike {
  text-decoration: line-through;
  color: #999999;
}
.testimonial_box h2 {
  margin-top: 0;
}
.testimonial_box p {
  margin: 0;
}
/*these are labels that are next to fields on the right, like, "dollars per year"*/
.unit {
  position: relative;
  left: 5px;
}
/*************************************************ids*********************************************************/
/*i used to include navigation in this, but no need now, because the nav is INSIDE the relatively positioned header, to keep the baseline the same source: http://www.stopdesign.com/articles/absolute/*/
#container, #header, #navigation ul {
  width: 720px;
  margin: 0 auto;
  text-align: left;
  padding: 0 50px 0 50px;
}
/*#about-foh #container{
  background-image: url("image/speakers.png");
  background-repeat: repeat-y;
  background-position: 0px 0px;
}*/
#content {
  /*header files contain custom CSS for full width or sidebar present*/
  /*float: left;
  width: 510px;
  border-right: 1px dotted #333333;*/
  padding: 10px 20px 30px 0;
}
/*this makes the page full width of the container (which right now is 720px)
#faq #content, #index #content, #privacy #content, #phone #content {
  float: none;
  width: 100%;
}*/
#content p, #sidebar p {
  margin-bottom: 16px;
}
/*though a duplicate, this has to come after content to negate the margin used above*/
#content p.submit, #sidebar p.submit {
  margin: 16px 0 0 0;
}
#cta {
  text-align: center;
  border-top: 1px solid #FAD163;
  border-bottom: 1px solid #FAD163;
  padding: 10px;
  background-color: #FFFFCC;
  margin-bottom: 16px;
  clear: both;
}
#cta a {
  color: #333333;
}
#cta a:hover {
  color: #CF6F0F;
}
#content #cta h2, #content #cta p {
  padding: 0;
  margin: 0;
}
#debug {
  clear: both;
  background-color: #EEEEEE;
  text-align: left;
  padding: 5px;
  border: 1px solid red;
}
#debug hr {
  display: none;
}
#faq #content ul {
  font-size: 110%;
}
#footer {
  color: #999999;
  text-align: center;
  border-top: 2px solid #CCCCCC;
  padding: 1px;
  margin-bottom: 16px;
  clear: both;
}
#header {
  position: relative;
  /*background-image: url("image/url3.gif");
  background-repeat: no-repeat;
  background-position: 1px 25px;*/
  height: 70px;
}
/*generally this hides the header if I have a photoshoped image*/
#header hr {
  display: none;
}
#header h1 {
  display: none;
  color: white;
  margin: 0;
  padding: 10px 0 0 5px;
  font: 25px/25px "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
}
#header p {
  /*47px + x for top margin*/
  position: absolute;
  color: #777777;
  top: 47px;
  left: 70px;
}
/*standard logo*/
#header img {
  position: absolute;
  top: 10px;
  left: 50px;
}
/*don't style the url text in header*/
#header h1 a:link, #header h1 a:visited {
  color: white;
  text-decoration: none;
}
#header h1 a:hover {
  color: #971414;
}
#index p.warning {
  margin-top: 25px;
}
/*cta2*/
.cta2 {
  text-align: center;
  margin-bottom: 16px;
  clear: both;
}
.cta2 a {
  color: #418AB7; /*has to be a shade of blue*/
}
.cta2 a:hover {
  color: #971414;
}
.cta2 h2 {
  margin-bottom: 0px;
}
.cta2 p {
  color: #777777;
}
/*no bullets means you need to shift the list items over when they are centered*/
.image_box {
  width: 400px;
  font-size: 10px;
  line-height: 12px;
  float: left;
  /*declare width of img just in case*/
  margin: 0 16px 16px 0px;
}
/*navigation*/
#navigation {
  margin-top: 2px;  
  border-top: 2px solid #CCCCCC;
  border-bottom: 2px solid #CCCCCC;
  height: 21px;
}
#navigation li {
  list-style-type: none;
  padding-right: 5px;
  display: inline;
}
/*the current page*/
#navigation li strong {
  color: #777777;
  padding-right: 5px;
}
#navigation a {
  padding-right: 5px;
  color: #CCCCCC;
  text-decoration: none;
  font-weight: bold;
}
#navigation a:hover {
  color: #777777;
}
#sidebar {
  float: right;
  width: 170px;
  font-size: 12px;
  line-height: 17px;
  padding: 10px 0 30px 0px;
}
#sidebar fieldset {
  border: none;
}
#sidebar input {
  margin-bottom: 5px;
}
/*text container carries the testimonial, do it differently on four pages*/
#testimonial .testimonial_box {
  margin-bottom: 16px;
  border-top: 1px solid #CAE4FD;
  border-bottom: 1px solid #CAE4FD;
  padding: 10px 10px 0 10px;
  background-color: #EFF6FD;
}
/* the overlayed element */ 
div.overlay { 
  /* growing background image */ 
  background-image:url(image/overlay-white.png); 
  /* dimensions after the growing animation finishes  */ 
  height:300px;         
  width:400px; 
  /* initially overlay is hidden */ 
  display:none; 
  /* some padding to layout nested elements nicely  */ 
  padding:55px; 
}
div.overlay h3 {
  margin-top: 0;
}
 
/* default close button positioned on upper right corner */ 
div.overlay div.close { 
  background-image: url(image/overlay-apple-close.png); 
  position:absolute; 
  right:5px; 
  top:5px; 
  cursor:pointer; 
  height:28px; 
  width:28px; 
} 
/* black */ 
div.overlay.black { 
  background:url(image/overlay-transparent.png) no-repeat !important; 
  color:#fff; 
}
/* petrol */ 
div.overlay.petrol { 
  background:url(image/overlay-petrol.png) no-repeat !important; 
  color:#fff; 
} 
div.black h2, div.petrol h2 { 
  color:#ddd;         
}
div.overlay li {
  margin-bottom: 10px;
}
/*heading image replacement: source: http://alicious.com/2009/new-css-image-replacement-jir/ NOPE... check that: I used: http://www.kryogenix.org/code/browser/lir/ 
unlinked*/
#replace {
  padding: 104px 0 0 0;
  overflow: hidden;
  background-image: url('image/tcfohe-logo.gif');
  background-repeat: no-repeat;
  height: 0px !important;
  height /**/:104px;
}
/*linked replacement 
<h2 id=”llj” class=”llj”>
<a href=”http://alicious.com” title=”LLS adjusted”>Leahy-Langridge-Jefferies method 1</a>
</h2>*/
.replace_and_link {
position: relative; /* allows child element to be placed positioned wrt this one */
overflow:hidden; /* don’t let content leak beyond the header – not needed as height of anchor will cover whole header */
padding: 0; /* needed to counter the reset/default styles */
}
.replace_and_link a {
position: absolute; /* defaults to top:0, left:0 and so these can be left out */
height: 0; /* hiding text, prevent it peaking out */
width: 100%; /* 686px; fill the parent element */
background-position: left top;
background-repeat: no-repeat;
}
#replace_and_link {
height: 104px; /* height of replacement image */
}
#replace_and_link a {
padding-top: 104px; /* height of the replacement image */
background-image: url('image/tcfohe-logo.gif'); /* the replacement image */
}