@charset "UTF-8";

/* @override 
	http://www.zerobraces.com/?css=stylesheets/stylesheet.v.1249196455
	http://www.zerobraces.com/?css=stylesheets/stylesheet.css.v.1249288001
	http://www.zerobraces.com/?css=stylesheets/stylesheet.css.v.1249601382
	http://www.lessbraces.com/?css=stylesheets/stylesheet.css.v.1249601382
*/

/* @group Main menu */

.mainmenu {
	color: white;
	font-size: 12px;
	font-family: Helvetica, Geneva, Arial, SunSans-Regular, sans-serif;
	background-color: #ff9300;
	padding: 8px 10px;
}

.mainmenu a, .mainmenu a:hover {
	color: white;
	text-decoration: none;
}

.mainmenu:hover {
	background-color: #ffb400;
}

.mainmenu_current {
	color: white;
	font-size: 12px;
	font-family: Helvetica, Geneva, Arial, SunSans-Regular, sans-serif;
	background-color: #01bef2;
	padding: 8px 10px;
}

.mainmenu_current a, .mainmenu_current a:hover {
	color: white;
	text-decoration: none;
}

/* @end */

/* @group Accordion panels */

/* SpryAccordion.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main Accordion container. For our default style,
 * we draw borders on the left, right, and bottom. The top border of the Accordion
 * will be rendered by the first AccordionPanelTab which never moves.
 *
 * If you want to constrain the width of the Accordion widget, set a width on
 * the Accordion container. By default, our accordion expands horizontally to fill
 * up available space.
 *
 * The name of the class ("Accordion") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * Accordion container.
 */
.Accordion {
	overflow: hidden;
}

/* This is the selector for the AccordionPanel container which houses the
 * panel tab and a panel content area. It doesn't render visually, but we
 * make sure that it has zero margin and padding.
 *
 * The name of the class ("AccordionPanel") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel container.
*/
.AccordionPanel {
	margin: 0px;
	padding: 0px;
}

/* This is the selector for the AccordionPanelTab. This container houses
 * the title for the panel. This is also the container that the user clicks
 * on to open a specific panel.
 *
 * The name of the class ("AccordionPanelTab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel tab container.
 */
.AccordionPanelTab {
	background-color: #ebebeb;
	border-top: solid 2px white;
	margin: 0px;
	padding: 10px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	font-size: 11px;
	color: #4c4c4c;
}

/*Aaron's own styling for the content panels*/

div.AccordionPanelContent p {
	margin: 10px;
}

/* This is the selector for a Panel's Content area. It's important to note that
 * you should never put any padding on the panel's content area if you plan to
 * use the Accordions panel animations. Placing a non-zero padding on the content
 * area can cause the accordion to abruptly grow in height while the panels animate.
 *
 * Anyone who styles an Accordion *MUST* specify a height on the Accordion Panel
 * Content container.
 *
 * The name of the class ("AccordionPanelContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel content container.
 */
.AccordionPanelContent {
	overflow: auto;
	margin: 0px;
	padding: 0px;
	height: 150px;
	background-color: #d9ffda;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "AccordionPanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the Accordion.
 */
.AccordionPanelOpen .AccordionPanelTab {
	background-color: #50a655;
	color: white;
}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.AccordionPanelTabHover {
	color: white;
	background-color: #fea51b;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: #ffffff;
	background-color: #fea51b;
}

/* This is an example of how to change the appearance of all the panel tabs when the
 * Accordion has focus. The "AccordionFocused" class is programatically added and removed
 * whenever the Accordion gains or loses keyboard focus.
 */
.AccordionFocused .AccordionPanelTab {
	background-color: #ebebeb;
	color: #4c4c4c;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open when the Accordion has focus.
 */
.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
	background-color: #50a655;
	color: white;
}

/* @end */

/* @group Collapsable panels */



/* SpryCollapsiblePanel.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main CollapsiblePanel container. For our
 * default style, the CollapsiblePanel is responsible for drawing the borders
 * around the widget.
 *
 * If you want to constrain the width of the CollapsiblePanel widget, set a width on
 * the CollapsiblePanel container. By default, our CollapsiblePanel expands horizontally to fill
 * up available space.
 *
 * The name of the class ("CollapsiblePanel") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * CollapsiblePanel container.
 */
.CollapsiblePanel {
	margin: 0px;
	padding: 0px;
}

/* This is the selector for the CollapsiblePanelTab. This container houses
 * the title for the panel. This is also the container that the user clicks
 * on to open or close the panel.
 *
 * The name of the class ("CollapsiblePanelTab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * CollapsiblePanel panel tab container.
 */
.CollapsiblePanelTab {
	margin: 0px;
	padding: 10px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	background-color: #ebebeb;
	color: #4c4c4c;
}

/* This is the selector for a CollapsiblePanel's Content area. It's important to note that
 * you should never put any padding on the content area element if you plan to
 * use the CollapsiblePanel's open/close animations. Placing a non-zero padding on the content
 * element can cause the CollapsiblePanel to abruptly grow in height while the panels animate.
 *
 * The name of the class ("CollapsiblePanelContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style a
 * CollapsiblePanel content container.
 */
.CollapsiblePanelContent {
	margin: 0px;
	padding: 10px;
	border-style: solid;
	border-color: #50a655;
}

/* An anchor tag can be used inside of a CollapsiblePanelTab so that the
 * keyboard focus ring appears *inside* the tab instead of around the tab.
 * This is an example of how to make the text within the anchor tag look
 * like non-anchor (normal) text.
 */
.CollapsiblePanelTab a {
	text-decoration: none;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "CollapsiblePanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the CollapsiblePanel.
 */
.CollapsiblePanelOpen .CollapsiblePanelTab {
	background-color: #50a655;
	color: white;
}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "CollapsiblePanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.CollapsiblePanelTabHover,  .CollapsiblePanelOpen .CollapsiblePanelTabHover {
	background-color: #fea51b;
	color: white;
}

/* This is an example of how to change the appearance of all the panel tabs when the
 * CollapsiblePanel has focus. The "CollapsiblePanelFocused" class is programatically added and removed
 * whenever the CollapsiblePanel gains or loses keyboard focus.
 */
.CollapsiblePanelFocused .CollapsiblePanelTab {
	background-color: #50a655;
	color: white;
}

.appliance_names {
	color: #ccc;
}

/* @end */

html {
	background: #f7f7f7 url(/images/template_images/bg.png) repeat-x fixed;
}

.byline {
	color: white;
	font-size: 12px;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	background-color: #0089d6;
}

.top_instructions {
	color: #c0c0c0;
	font-size: 11px;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	background-color: white;
}

.feature_box {
	padding: 20px;
	width: 100%;
	background: #fff url(/images/template_images/front_1_new.jpg) no-repeat;
}

.feature_box_video {
	width: 100%;
	padding: 20px;
	background: #fff url(/images/template_images/front_2.jpg) no-repeat;
}

.parents_feature_box {
	padding: 20px;
	width: 100%;
	background: #fff url(/images/template_images/parents_feature_1.jpg) no-repeat;
}

.parents_feature_box_video {
	width: 100%;
	padding: 20px;
	background: #fff url(/images/template_images/parents_feature_2.jpg) no-repeat;
}

.feature p {
	color: white;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

.content {
	background-color: white;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

.footer {
	background-color: #ebebeb;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

.copyright {
	color: white;
	font-size: 11px;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

.rcol {
	padding: 10px 20px 10px 19px;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	border-left: 1px solid #ebebeb;
}

.lcol {
	padding: 10px 20px;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

.lcol_footer {
	padding: 20px 20px 10px;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

.rcol_footer {
	padding: 20px 20px 10px 19px;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	border-left: 1px solid #ffffff;
}

hr {
	padding-top: 5px;
	padding-bottom: 5px;
	border-color: #ebebeb;
	border-style: solid none none;
	border-width: 1px 0 0;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

.lcol_box_hr {
	padding-top: 5px;
	padding-bottom: 5px;
	border-style: solid none none;
	border-width: 1px 0 0;
	border-color: #9ee2a2;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

.button1 {
	color: white;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	background-color: #00bef2;
	text-align: right;
	padding: 15px 20px;
	border-bottom: 2px solid white;
}

.button1:hover {
	color: white;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	background-color: orange;
	text-align: right;
	padding: 15px 20px;
}

.button1 a, .button1 a:hover {
	color: white;
	text-decoration: none;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

.button2 {
	color: white;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	background-color: #50a655;
	text-align: right;
	padding: 15px 20px;
	border-bottom: 2px solid white;
}

.button2:hover {
	color: white;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	background-color: orange;
	text-align: right;
	padding: 15px 20px;
}

.button2 a, .button2 a:hover {
	color: white;
	text-decoration: none;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

.button3 {
	color: white;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	background-color: #fecc65;
	text-align: right;
	padding: 15px 20px;
	border-bottom: 2px solid white;
}

.button3:hover {
	color: white;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	background-color: orange;
	text-align: right;
	padding: 15px 20px;
}

.button3 a, .button3 a:hover {
	color: white;
	text-decoration: none;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

.button4 {
	color: white;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	background-color: #887fba;
	text-align: right;
	padding: 15px 20px;
	border-bottom: 2px solid white;
}

.button4:hover {
	color: white;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	background-color: orange;
	text-align: right;
	padding: 15px 20px;
}

.button4 a, .button4 a:hover {
	color: white;
	text-decoration: none;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

.toc {
	padding: 15px 20px;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

#inline_image {
	padding: 10px;
	border: 5px solid #e6e6e6;
	margin-top: 5px;
	margin-left: 10px;
	margin-bottom: 20px;
}

.toc a, .toc p {
	color: #fff;
	text-decoration: none;
	margin-bottom: 10px;
	font: 11px/14px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

.lcol_box {
	background-color: #d9ffda;
	padding: 15px 20px;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

.section_title {
	color: #c0c0c0;
	text-transform: capitalize;
	font: 11px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

.entry_metadata {
	color: #c0c0c0;
	text-transform: capitalize;
	font: 11px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	padding: 0;
	margin: -10px 0 0;
	text-align: left;
}

.footer_cols {
	font: 11px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	padding: 20px;
}

p, h1, h2, h3, h4, textarea, input, dl {
	color: #4c4c4c;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

p {
	font: 11px/18px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

h1, h2, h3, h4 {
	font-weight: normal;
	line-height: 1em;
	margin-top: 0;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

a {
	color: #1bb1ed;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

a:hover {
	color: orange;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

#tk_character {
	background: url(/images/template_images/jimmy-trans.png) no-repeat;
	width: 97px;
	height: 260px;
	position: fixed;
	bottom: 0px;
	left: 20px;
}

.form_required {
	color: red;
}

.form_section {
	color: #4c4c4c;
	font: 11px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	text-align: left;
	border: 1px solid #ebebeb;
	background-color: #ebebeb;
}


input, textarea, select {
	color: #01bef2;
	background: #ebfafe;
	border: 2px solid #01bef2;
	padding: 5px;
	font: 14px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

textarea {
	width: 464px;
	height: 150px;
}

input.form_field_norm {
	width: 464px;
}

input.form_field_address {
	width: 125px;
	margin-right: 20px;
	margin-left: 0;
}

.form_field_captcha {
}

input:focus, textarea:focus, select:focus {
	background-color: #dafecf;
	border: 2px solid #179a36;
	color: #179a36;
}

.submit {
	color: #ffffff;
	background: #179a36;
	border-color: #179a36;
	padding: 10px;
}

.submit:hover {
	color: #ffffff;
	background: #ff9300;
	border-color: #ff9300;
}

ul li {
	font-size: 11px;
	color: #4c4c4c;
	margin-bottom: 10px;
	line-height: 18px;
	margin-left: -20px;
	list-style-position: outside;
	list-style-type: square;
}

ol li {
	font-size: 11px;
	color: #4c4c4c;
	margin-bottom: 10px;
	line-height: 18px;
	margin-left: -20px;
	list-style-position: outside;
}

.important {
	background-color: #fdf1df;
	padding: 10px;
	margin-bottom: 20px;
	border: 2px solid #fea51b;
}

.important p {
	margin: 0 0 10px;
}

.warning p {
	color:  red;
	background-color: #ffe5e5;
	padding: 10px;
	margin-bottom: 20px;
	border: 2px solid red;
}

.bluebox {
	color: #01bef2;
	background: #ebfafe;
	border: 2px solid #01bef2;
	padding: 10px;
	margin-bottom: 20px;
}

.bluebox p {
	margin: 0 0 10px;
}

.greenbox {
	color: #179a36;
	background: #dafecf;
	border: 2px solid #179a36;
	padding: 10px;
	margin-bottom: 20px;
}

.greenbox p {
	margin: 0 0 10px;
}

div.important img#inline_image {
	padding: 0;
	float: right;
	margin: 0;
	width: 125px;
	border: 10px solid white;
}

table#clinic_list {
	color: #4c4c4c;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	font: 11px/18px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

table#clinic_list thead th {
	color: #4c4c4c;
	text-align: left;
}

table#clinic_list tbody tr {
	color: #01bef2;
	background: #ebfafe;
	text-align: left;
}

table#clinic_list tbody tr:hover {
	color: #179a36;
	background-color: #dafecf;
}

table#clinic_list tbody td, table#clinic_list thead th {
	padding: 5px 10px;
	border-bottom: 1px solid white;
}

dl {
} 

dt { 
	float: left; 
	clear: left; 
	width: 110px; 
	text-align: right; 
	font-weight: bold; 
	color: #4c4c4c 
	}

dt:after { 
	content: ":"; 
	} 
dd { 
	padding: 0 0 0.5em 0;
	margin: 0 0 0 120px;
}

dl#dl_profile {
	font: 11px/18px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}


dl#dl_profile dt { 
	float: left; 
	clear: left; 
	width: 70px; 
	text-align: right; 
	font-weight: bold; 
	color: #4c4c4c 
	}

dl#dl_profile dt:after { 
	content: ":"; 
	} 
dl#dl_profile dd { 
	padding: 0 0 0.5em 0;
	margin: 0 0 0 80px;
}

.nobr { white-space:nowrap; }

.level_icon {
	float: right;
	margin-top: -5px;
}