@charset "utf-8";


#container {
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	width: 1000px;
	background-image: url(../Images/FilmPages/FilmBackground.png);
	background-repeat: no-repeat;
	background-position: 0px 20px;
}
.clearfix {
	display: block;
	clear: both;
}


/* CSS Document */

#ProductNav {
	width: 917px;
	margin-top: 5px;
	height: auto;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	clear: none;
}
#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 {
	margin-bottom: 30px;
}
.paragraphStyle ul li {
	list-style-position: inside;
	list-style-type: disc;
	margin-bottom: 8px;
}


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


/* 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 {
	padding: 0px;
	float: left;
	width: 900px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}

/* 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: auto;
	margin-bottom: 0px;
	margin-left: 125px;
}

/* 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/FilmPages/Tabs/FilmTab.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/FilmPages/Tabs/FilmTabOver.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/FilmPages/Tabs/FilmTabOn.gif);
	background-repeat: repeat-x;
	height: 15px;
}
.table {
	margin-top: 20px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	width: 700px;
	height: auto;
}




/* 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;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: left;
}

/* 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 {
}



#faqWrapper {
	width: 97%;
	background-color: #590908;
	padding: 10px;
}
.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 {
	font-family: Georgia, "Times New Roman", Times, serif;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 35px;
	font-style: italic;
	color: #FFF;
	background-color: #47453D;
	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;
}
.stockDesigns {
	float: left;
	width: 875px;
	margin-left: 10px;
}

.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;
	background-color: #C4CCC9;
	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;
	color: #3B0605;
	border-top-width: 1.1pt;
	border-top-style: dashed;
	border-top-color: #3B0605;
}
.answerWrapper ul  li{
	font-family: Arial, Helvetica, sans-serif;
	list-style-type: disc;
}
.answerWrapper ol  li{
	font-family: Arial, Helvetica, sans-serif;
}

.thickness {
	padding: 2px;
	float: left;
	width: 85px;
	margin-right: 10px;
	text-align: center;
	margin-top: 15px;
	margin-left: 20px;
}

.thickness h4 {
	margin-bottom: 5px;
	font-size: 13px;
	padding-bottom: 2px;
}
.thickness h5 {
	font-size: 12px;
	margin-bottom: 5px;
}
.sqinches {
	padding: 2px;
	float: left;
	width: 85px;
	margin-right: 10px;
	text-align: center;
	margin-top: 15px;
	
}
.sqinches h4 {
	margin-bottom: 5px;
	font-size: 13px;
	padding-bottom: 2px;
}

.sqinches p {
	font-size: 12px;
	margin-bottom: 5px;
}
.sheets {
	padding: 2px;
	float: left;
	width: 85px;
	margin-right: 10px;
	text-align: center;
	margin-top: 15px;
	background-color: #7E001B;
}
.sheets h4 {
	margin-bottom: 5px;
	display: block;
	background-color: #FFF;
	font-size: 13px;
	padding-bottom: 2px;
}
.sheets p {
	font-size: 12px;
	margin-bottom: 5px;
	color: #FFF;
}
.code {
	padding: 2px;
	float: left;
	width: 85px;
	margin-right: 10px;
	text-align: center;
	margin-top: 15px;
	margin-left: 135px;
}

.code h4 {
	margin-bottom: 5px;
	font-size: 13px;
	padding-bottom: 2px;
}
.code h5 {
	font-size: 12px;
	margin-bottom: 5px;
}
.pstyle {
	font-size: 12px;
	line-height: 16px;
	margin-bottom: 10px;
	text-align: justify;
}
.space {
	padding: 2px;
	float: left;
	width: 40px;
	text-align: center;
	margin-top: 15px;
	margin-right: 5px;
	
}

.image {
	margin-left: 375px;
}
.imagewrap {
	text-align: center;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;	
}
.wrap {
	width: auto;
	float: left;
}
.wrapLeft {
	float: left;
}
.wrapLeft img {
	padding: 5px;
	margin-right: 10px;
	background-color: #FFF;
	border: 1px solid #666;
}

.wrapRight {
	float: right;
	margin-right: 20px;
}
.pricingWrapper .wrapRight ul li{
	list-style-type: disc;
}



.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 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 ol li a {
	color: #06F;
	text-decoration: none;
}
.paragraphStyle ol li a:hover {
	color: #F90;
}
.paragraphStyle {
	margin-top: 10px;
	background-color: #FFF;
	padding: 10px;
	border: 1px solid #CCC;
}

.pricingWrapper {
	float: left;
	width: 728px;
	margin-left: 92px;
	margin-top: 10px;
	margin-bottom: 10px;
	background-color: #F4F7EE;
	border: 1px solid #666;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 12px;
	padding-left: 5px;
}
.pricingWrapper ol li {
	list-style-position: inside;
	margin-left: 10px;
}
#FilmTabs .TabbedPanelsContentGroup .TabbedPanelsContent.TabbedPanelsContentVisible .pricingWrapper .wrapRight li {
	list-style-type: disc;
}

.pricingWrapper ol p {
	padding-left: 10px;
	font-weight: bold;
}

.cmInfo {
	background-color: #D5E7F2;
	padding: 10px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	margin-bottom: 10px;
}
.cmInfo ul li {
	list-style-type: none;
}

.cmInfo p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin-bottom: 10px;
	line-height: 16px;
}


.cmInfo ol li {
	list-style-position: inside;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin-bottom: 5px;
}
.cmInfo p strong {
	font-family: Arial, Helvetica, sans-serif;
	color: #800000;
}

.policy {
	background-color: #CCC;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333;
	margin-top: 30px;
	padding-right: 8px;
	padding-left: 8px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	padding-bottom: 5px;
	padding-top: 5px;
}

.policy p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	margin-bottom: 10px;
}
.pricingWrapper p em {
	padding-right: 10px;
	padding-left: 10px;
}



.pricingWrapper h3 {
	text-align: center;
	font-size: 16px;
	margin-bottom: 10px;
	clear: both;
}
.TabbedPanelsContentGroup .TabbedPanelsContent.TabbedPanelsContentVisible .pricingWrapper .policy h3 {
	font-size: 22px;
	color: #800000;
}

.pricingWrapper span {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	text-align: justify;
	margin-bottom: 10px;
}

.pricingWrapper ul li {
	list-style-type: none;
	margin-bottom: 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.pricingWrapper ul li var {
	color: #901100;
	font-size: 12px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
}
.pricingWrapper p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.wrapper {
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
	
	
	
.section {
	background-color: #D5E7F2;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	margin-top: 10px;
	padding-top: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;

}
.TabbedPanelsContent.TabbedPanelsContentVisible .pricingWrapper .section ol li {
	padding-bottom: 10px;
}
.pricingWrapper .wrapper ol li {
	padding-bottom: 10px;
}


.section p {
	margin-bottom: 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
}

/****End Order Forms Styles ***/
.wrapper p {
	margin-bottom: 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
}


.pricingWrapper ul {
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 20px;
}
.TabbedPanelsContent.TabbedPanelsContentVisible .pricingWrapper ol li {
	padding-bottom: 5px;
}
.TabbedPanelsContent.TabbedPanelsContentVisible .pricingWrapper ol p {
	padding-bottom: 5px;
}



.pricingWrapper ul h4 {
	font-size: 14px;
	text-align: left;
	margin-bottom: 10px;
}

.pricingWrapper ul p {
	font-size: 11px;
	font-style: italic;
	font-family: Arial, Helvetica, sans-serif;
	color: #000;
	margin-top: 5px;
}
.pricingWrapper h5 {
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 5px;
	margin-bottom: 5px;
}
.pricingWrapper h1 {
	text-align: center;
}



.divider {
	display: block;
	margin-top: 20px;
	margin-bottom: 10px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #333;
	width: 75%;
	text-align: center;
	margin-left: 90px;
	clear: both;
}
/*** Order Forms Styles ***/
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: 250px;
	padding-top: 12px;
	padding-right: 8px;
	padding-left: 8px;
	margin-left:325px;
	text-decoration: none;
	font-family: Verdana, Geneva, sans-serif;
	font-weight: bold;
	color: #FFF;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	margin-top: 10px;
	}
a.button2:hover{
	background-image: url(../Images/FilmPages/buttonOn.jpg);
	background-repeat: repeat-x;
	color: #FFF;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	}
	
	
	
.paragraphStyle p strong em {
	color: #06F;
}
.noborderinput {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	text-align: center;
}
.form {
	margin-top: 20px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}

.form form div table tr td small {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
}
.sdNav {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333;
	text-align: center;
	float: left;
	font-weight: bold;
	margin-top: 5px;
	height: 35px;
	width: 875px;
	background-image: url(../Images/FilmPages/sdnav/navback.png);
	background-repeat: repeat-x;
}
.sdNav ul {
	list-style-type: none;
}
.sdNav ul li {
	float: left;
}
.sdNav ul li a {
	color: #FFF;
	text-decoration: none;
	background-image: url(../Images/FilmPages/sdnav/tab.png);
	display: block;
	float: left;
	text-align: center;
	width: 70px;
	height: 23px;
	padding-top: 12px;
	background-repeat: no-repeat;
}
.sdNav ul li a:hover {
	color: #000;
	text-decoration: none;
	background-image: url(../Images/FilmPages/sdnav/tabover.png);
	background-repeat: no-repeat;
	height: 35px;
	width: 71px;
	padding-top: 10px;	}

	
.sdContent {
	float: left;
	width: 856px;
	background-color: #FFF;
	background-image: url(../Images/FilmPages/sdnav/sdback.jpg);
	background-repeat: repeat-x;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #ADB2B7;
	border-bottom-color: #ADB2B7;
	border-left-color: #ADB2B7;
	padding-top: 10px;
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 10px;
}
/*.active {
	background-image: url(../Images/FilmPages/sdnav/tabon.png);
	height: 23px;
	width: 71px;
	padding-top: 12px;
}*/
.border {
	width: 30px;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #ADB2B7;
	height: 35px;
	float: left;
}

.details {
	float: left;
	margin-top: 10px;
	margin-left: 10px;
	height: 275px;
}
.details img {
	margin: 5px;
}
.sdNav ul li.active a {
	background-image: url(../Images/FilmPages/sdnav/tabon.png);
	padding-top: 12px;
	width: 71px;
	color:#000;
}
.calltoaction {
	text-align: center;
	display: block;
	margin-top: 15px;
	height: 84px;
	width: 627px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}

.sdContent table {
	margin-bottom:8px;
}
#quickguide {
	float: left;
	height: 280px;
	width: 176px;
	margin-right: 20px;
	font-family: Arial, Helvetica, sans-serif;
}
#quickguide h2 {
	font-size: 14px;
	margin: 0px;
	padding: 0px;
}

#instructions {
	float: left;
	height: 280px;
	width: 155px;
}
#instructions h2 {
	font-size: 14px;
	margin: 0px;
	padding: 0px;
}


.center {
	width: 380px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
