@charset "utf-8";

#container {
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	width: 1000px;
	background-image: url(../Images/EquipmentPages/WashoutBackground.png);
	background-repeat: no-repeat;
	background-position: -1px 0px;
}

/* CSS Document */

#ProductNav {
	width: 917px;
	margin-top: 5px;
	height: auto;
	clear: both;
	margin-bottom: 10px;
	margin-right: auto;
	margin-left: auto;
}
#SideInfo {
	background-image: url(../Images/EquipmentPages/SandcarvingInfo.png);
	background-repeat: no-repeat;
	background-position: 0px 112px;
	float: left;
	height: 1600px;
	width: 30px;
	margin-right: 5px;
}
.SideNav {
	padding-top: 60px;
}

#SideNav {
	float: left;
	height: 425px;
	width: 205px;
	background-image: url(../Images/EquipmentPages/SideNav.png);
	background-repeat: no-repeat;
}


/* SpryTabbedPanels.css - version 0.4 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* Horizontal Tabbed Panels
 *
 * The default style for a TabbedPanels widget places all tab buttons
 * (left aligned) above the content panel.
 */

/* This is the selector for the main TabbedPanels container. For our
 * default style, this container does not contribute anything visually,
 * but it is floated left to make sure that any floating or clearing done
 * with any of its child elements are contained completely within the
 * TabbedPanels container, to minimize any impact or undesireable
 * interaction with other floated elements on the page that may be used
 * for layout.
 *
 * If you want to constrain the width of the TabbedPanels widget, set a
 * width on the TabbedPanels container. By default, the TabbedPanels widget
 * expands horizontally to fill up available space.
 *
 * The name of the class ("TabbedPanels") used in this selector is not
 * necessary to make the widget function. You can use any class name you
 * want to style the TabbedPanels container.
 */
.TabbedPanels {
	margin: 0px;
	padding: 0px;
	float: left;
	clear: none;
	width: 900px;
}

/* This is the selector for the TabGroup. The TabGroup container houses
 * all of the tab buttons for each tabbed panel in the widget. This container
 * does not contribute anything visually to the look of the widget for our
 * default style.
 *
 * The name of the class ("TabbedPanelsTabGroup") used in this selector is not
 * necessary to make the widget function. You can use any class name you
 * want to style the TabGroup container.
 */
.TabbedPanelsTabGroup {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 325px;
}

/* This is the selector for the TabbedPanelsTab. This container houses
 * the title for the panel. This is also the tab "button" that the user clicks
 * on to activate the corresponding content panel so that it appears on top
 * of the other tabbed panels contained in the widget.
 *
 * For our default style, each tab is positioned relatively 1 pixel down from
 * where it wold normally render. This allows each tab to overlap the content
 * panel that renders below it. Each tab is rendered with a 1 pixel bottom
 * border that has a color that matches the top border of the current content
 * panel. This gives the appearance that the tab is being drawn behind the
 * content panel.
 *
 * The name of the class ("TabbedPanelsTab") used in this selector is not
 * necessary to make the widget function. You can use any class name you want
 * to style this tab container.
 */
.TabbedPanelsTab {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	background-image: url(../Images/EquipmentPages/Tabs/Tab.gif);
	background-repeat: repeat;
	height: 15px;
	margin-top: 0px;
	margin-right: 1px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 4px;
	padding-right: 10px;
	padding-bottom: 4px;
	padding-left: 10px;
	border: 1px solid #999;
	font-family: sans-serif;
	font-size: 12px;
	font-weight: bold;
}

/* This selector is an example of how to change the appearnce of a tab button
 * container as the mouse enters it. The class "TabbedPanelsTabHover" is
 * programatically added and removed from the tab element as the mouse enters
 * and exits the container.
 */
.TabbedPanelsTabHover {
	background-image: url(../Images/EquipmentPages/Tabs/TabHover.gif);
	background-repeat: repeat-x;
	height: 15px;
}

/* This selector is an example of how to change the appearance of a tab button
 * container after the user has clicked on it to activate a content panel.
 * The class "TabbedPanelsTabSelected" is programatically added and removed
 * from the tab element as the user clicks on the tab button containers in
 * the widget.
 *
 * As mentioned above, for our default style, tab buttons are positioned
 * 1 pixel down from where it would normally render. When the tab button is
 * selected, we change its bottom border to match the background color of the
 * content panel so that it looks like the tab is part of the content panel.
 */
.TabbedPanelsTabSelected {
	background-image: url(../Images/EquipmentPages/Tabs/TabOn.gif);
	background-repeat: repeat-x;
	height: 15px;
}

/* This selector is an example of how to make a link inside of a tab button
 * look like normal text. Users may want to use links inside of a tab button
 * so that when it gets focus, the text *inside* the tab button gets a focus
 * ring around it, instead of the focus ring around the entire tab.
 */
.TabbedPanelsTab a {
	color: black;
	text-decoration: none;
}

/* This is the selector for the ContentGroup. The ContentGroup container houses
 * all of the content panels for each tabbed panel in the widget. For our
 * default style, this container provides the background color and borders that
 * surround the content.
 *
 * The name of the class ("TabbedPanelsContentGroup") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the ContentGroup container.
 */
.TabbedPanelsContentGroup {
	clear: both;
}

/* This is the selector for the Content panel. The Content panel holds the
 * content for a single tabbed panel. For our default style, this container
 * provides some padding, so that the content is not pushed up against the
 * widget borders.
 *
 * The name of the class ("TabbedPanelsContent") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the Content container.
 */
.TabbedPanelsContent {
	padding: 4px;
}

/* This selector is an example of how to change the appearnce of the currently
 * active container panel. The class "TabbedPanelsContentVisible" is
 * programatically added and removed from the content element as the panel
 * is activated/deactivated.
 */
.TabbedPanelsContentVisible {
}
.ppot {
	margin-top: 110px;
}
}
#faqWrapper {
	width: 80%;
	height: auto;
	margin-left: 100px;
	border: 2px solid #8D4040;
	padding-top: 10px;
	padding-right: 10px;
	padding-left: 10px;
	background-color: #F2F2F0;
}
.questionWrapper {
	font-family: Arial, Helvetica, sans-serif;
	margin-bottom: 10px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 35px;
	font-style: italic;
	color: #000;
	background-color: #D9D2C5;
	font-size: 14px;
	background-image: url(../Images/q.png);
	background-repeat: no-repeat;
	list-style-type: none;
	background-position: 3px 5px;
	list-style-image: none;
	font-weight: bold;
}
.h4 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	color: #870F01;
	text-align: center;
	font-size: 16px;
	margin-top: 10px;
	font-style: italic;
}
.questionWrapper ul  li{
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
	list-style-type: disc;
}
.questionWrapper ol  li{
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
}
.answerWrapper {
	font-family: Arial, Helvetica, sans-serif;
	margin-bottom: 10px;
	background-color: #A69E94;
	font-size: 14px;
	background-image: url(../Images/a.png);
	background-repeat: no-repeat;
	background-position: 3px 5px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 35px;
}
.answerWrapper ul  li{
	font-family: Arial, Helvetica, sans-serif;
	list-style-type: disc;
}
.answerWrapper ol  li{
	font-family: Arial, Helvetica, sans-serif;
}
.bottNav {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-align: left;
	color: #FFF;
	margin-top: 112px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
	left: 950px;
	top: 115px;
}
.bottNav ul {
	list-style-type: none;
}
.bottNav ul li a {
	text-decoration: none;
	color: #CCC;
	font-family: Arial, Helvetica, sans-serif;
}
.bottNav ul li a:hover {
	color: #F60;
}
.paragraphStyle p {
	font-size: 12px;
	margin-bottom: 10px;
	text-align: justify;
	padding-right: 5px;
	padding-left: 5px;
}
.paragraphStyle p a {
	color: #06F;
	text-decoration: none;
	font-weight: bold;
}
.paragraphStyle p a:hover {
	color: #F90;
	font-weight: bold;
}
.paragraphStyle h3{
	font-size: 13px;
	margin-bottom: 10px;
}
.paragraphStyle h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	margin-bottom: 10px;
	color: #06C;
	margin-top: 10px;
}
.paragraphStyle h5 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	margin-bottom: 10px;
	font-style: italic;
	color: #333;
	text-align: center;
}

.paragraphStyle h4{
	font-size: 14px;
	text-align: center;
	margin-bottom: 5px;;
}
.paragraphStyle ol {
	list-style-position: inside;
}
.paragraphStyle ol li {
	font-size: 12px;
	margin-bottom: 10px;
}
.paragraphStyle {
	margin-top: 10px;
	background-color: #FFF;
	border: 1px solid #999;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	text-align: left;
}
.paragraphStyle p strong em {
	color: #06F;
}

.paragraphStyle ul li {
	list-style-position: inside;
	list-style-type: disc;
	margin-bottom: 8px;
}
.paragraphStyle ul li a {
	text-decoration: none;
	color: #06F;
}
.paragraphStyle ul li a:hover {
	color: #F90;
}

.paragraphStyle ul{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;	
}
a.button{
	background-image: url(../Images/FilmPages/button.jpg);
	background-repeat: repeat-x;
	text-align: center;
	display: block;
	height: 28px;
	width: auto;
	padding-top: 12px;
	padding-right: 8px;
	padding-left: 8px;
	text-decoration: none;
	font-family: Verdana, Geneva, sans-serif;
	font-weight: bold;
	float: left;
	color: #FFF;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	margin-top: 10px;
	margin-left: 350px;
	}
a.button:hover{
	background-image: url(../Images/FilmPages/buttonOn.jpg);
	background-repeat: repeat-x;
	color: #FFF;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	}	
a.button2{
	background-image: url(../Images/FilmPages/button.jpg);
	background-repeat: repeat-x;
	text-align: center;
	display: block;
	height: 28px;
	width: auto;
	padding-top: 12px;
	padding-right: 8px;
	padding-left: 8px;
	text-decoration: none;
	font-family: Verdana, Geneva, sans-serif;
	font-weight: bold;
	float: left;
	color: #FFF;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	margin-top: 10px;
	margin-left: 400px;
	}
a.button2:hover{
	background-image: url(../Images/FilmPages/buttonOn.jpg);
	background-repeat: repeat-x;
	color: #FFF;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	}	
.clearfix {
	display: block;
	clear: both;
}
.calltoaction {
	text-align: center;
	display: block;
	margin-top: 10px;
	height: 84px;
	width: 627px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}

.calltoaction2 {
	text-align: center;
	display: block;
	margin-top: 0px;
	height: 84px;
	width: 627px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}

