@charset "UTF-8";

.TabbedPanels {
	margin: 0px 0px 20px 0px;
	padding: 0px;
	float: left;
	clear: none;
	text-align: justify;
	color: #000;
	font-weight: normal;
	font-size: 13px;
	width: 100%; /* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
	border: 0px solid orange;
}

/* 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 {
	margin: 0px;
	padding: 0px;
}

.TabbedPanelsTab1{
	position: relative;top: 1px;-moz-user-select: none;-khtml-user-select: none;list-style: none;	
	display: block;float: left;border: 0px solid #000;padding: 5px 7px 5px 7px;margin: 9px 0px 0px 0px;text-align: left;color: #fff;
	text-decoration: none;cursor: pointer;
}


#tab-1{
	background: #ffcc00;
}
#tab-1:hover{background: #ffb400;}
#tab-1 .cart{
	display: block;border: 0px solid #000;padding: 7px 4px 7px 29px;margin: 0px 0px 0px 0px;text-align: left;color: #fff;
	font-weight: bold;font-size: 15px;text-decoration: none;cursor: pointer;background: url(cart5.png) no-repeat left center;
}

#tab-2{
	background: #777;
}
#tab-2:hover{background: #555;}
#tab-2 span{
display: block;border: 0px solid #000;padding: 0px 0px 0px 0px;margin: 0px 0px 1px 0px;text-align: center;color: #ffcc00;
font-weight: bold;font-size: 13px;text-decoration: none;
}

.VTabbedPanels .TabbedPanelsTabSelected {
	background-color: #EEE;
	border-bottom: solid 0px #000;
}

/* .TabbedPanelsTab2{
	position: relative;
	top: 1px;
	float: left;
	padding: 4px 10px;
	margin: 0px 1px 0px 0px;
	font: bold 1em sans-serif;
	background-color: #e6e6e6;
	list-style: none;
	border-left: solid 1px #e6e6e6;
	border-bottom: solid 1px #e6e6e6;
	border-top: solid 1px #e6e6e6;
	border-right: solid 1px #e6e6e6;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	-moz-border-radius: 7px 7px 0px 0px;-webkit-border-radius: 7px 0px 0px 0px;
	border-radius: 7px 7px 0px 0px;
	color: #aa5900;
} */

/* 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: url(cart5.png) no-repeat left center #ffb400; */
}

/* 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: url(cart5.png) no-repeat left center #ffb400; */
}

/* 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;
	border-left: solid 0px #000;
	border-bottom: solid 0px #000;
	border-top: solid 0px #000;
	border-right: solid 0px #000;
	background-color: #fff;
	position: relative;
}

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

#TabbedPanelsContent1 span{
	display: block;border: solid 0px #000;position: relative;top: -20px;left: 60px;width: 13px;height: 13px;
}
#TabbedPanelsContent2 span{
	display: block;border: solid 0px #000;position: relative;top: -20px;left: 270px;width: 13px;height: 13px;
}
/* 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 {
}

/* Vertical Tabbed Panels
 *
 * The following rules override some of the default rules above so that the
 * TabbedPanels widget renders with its tab buttons along the left side of
 * the currently active content panel.
 *
 * With the rules defined below, the only change that will have to be made
 * to switch a horizontal tabbed panels widget to a vertical tabbed panels
 * widget, is to use the "VTabbedPanels" class on the top-level widget
 * container element, instead of "TabbedPanels".
 */

/* This selector floats the TabGroup so that the tab buttons it contains
 * render to the left of the active content panel. A border is drawn around
 * the group container to make it look like a list container.
 */
.VTabbedPanels .TabbedPanelsTabGroup {
	float: left;
	width: 10em;
	height: 20em;
	background-color: #fff;
	position: relative;
	border-top: solid 0px #e6e6e6;
	border-right: solid 0px #e6e6e6;
	border-left: solid 0px #e6e6e6;
	border-bottom: solid 0px #000;
}

/* This selector disables the float property that is placed on each tab button TabbedPanels1 TabbedPanels
 * by the default TabbedPanelsTab selector rule above. It also draws a bottom
 * border for the tab. The tab button will get its left and right border from
 * the TabGroup, and its top border from the TabGroup or tab button above it.
 */
.VTabbedPanels .TabbedPanelsTab {
	float: none;
	margin: 0px;
	border-top: none;
	border-left: none;
	border-right: none;
}

/* This selector disables the float property that is placed on each tab button
 * by the default TabbedPanelsTab selector rule above. It also draws a bottom
 * border for the tab. The tab button will get its left and right border from
 * the TabGroup, and its top border from the TabGroup or tab button above it.
 */
/* .VTabbedPanels .TabbedPanelsTabSelected {
	background-color: #EEE;
	border-bottom: solid 0px #000;
}
 */
/* This selector floats the content panels for the widget so that they
 * render to the right of the tabbed buttons.
 */
.VTabbedPanels .TabbedPanelsContentGroup {
	clear: none;
	float: left;
	padding: 0px;
	width: 30em;
	height: 20em;
}

/* contact form */
#TabbedPanelsContent2 #TabbedPanelsContent2_1{
display: block;border: 0px solid black;text-align: left;color: #4d4d50;font-size: 13px;margin: 0px 7px 7px 7px;
}
#TabbedPanelsContent2 #TabbedPanelsContent2_1 h2{
font-weight: bold;margin-bottom: 7px;border: 0px solid #000;text-align: left;display: block;padding: 0px 0px 0px 0px;font-size:15px;
color:#555; 
}
#TabbedPanelsContent2 #TabbedPanelsContent2_1 #forme{font-size: 13px;border: 0px solid red;text-align: left;}
#TabbedPanelsContent2 #TabbedPanelsContent2_1 #forme #form1{font-size: 13px;border: 0px solid red;text-align: left;}
#TabbedPanelsContent2 #TabbedPanelsContent2_1 #forme #form1 label{
display: block;color: #f5be00;font-size: 13px;text-align: left; font-weight: bold; border:0px solid #000;margin: 0px; padding: 2px 0px 2px 0px;
}
#TabbedPanelsContent2 #TabbedPanelsContent2_1 #forme #form1 input{
display: block;color: #555;font-size: 12px;text-align: left; font-weight: normal; border:2px solid #cacaca;margin: 0px; padding: 3px;width: 90%;
background: #f6f6f6;
}
#TabbedPanelsContent2 #TabbedPanelsContent2_1 #forme #form1 input:focus{border:2px solid #a5a5a5;}

#TabbedPanelsContent2 #TabbedPanelsContent2_1 #forme #form2{font-size: 13px;border: 0px solid red;text-align: left;}
#TabbedPanelsContent2 #TabbedPanelsContent2_1 #forme #form2 label{
display: block;color: #f5be00;font-size: 13px;text-align: left; font-weight: bold; border:0px solid #000;margin: 0px; padding: 2px 0px 2px 0px;
}
#TabbedPanelsContent2 #TabbedPanelsContent2_1 #forme #form2 textarea{
display: block;color: #555;font-size: 12px;text-align: left; font-weight: normal; border:2px solid #cacaca;margin: 0px 0px 7px 0px; padding: 3px;
width: 90%;height: 90px;background: #f6f6f6;
}
#TabbedPanelsContent2 #TabbedPanelsContent2_1 #forme #form2 textarea:focus{border:2px solid #a5a5a5;}

#TabbedPanelsContent2 #TabbedPanelsContent2_1 #forme #form2 .sub{
display: block;border: 0px solid #000;text-align: center;font-size: 11px;text-decoration: none;padding: 5px 11px 5px 9px;margin: 0px 5px 0px 0px;
cursor: pointer;background-color: #595959; color: #fff; font-weight: bold; 
}
#TabbedPanelsContent2 #TabbedPanelsContent2_1 #forme #form2 .sub:hover{
background-color: #f5be00; color: #fff; 
}



/* contact form */
#TabbedPanelsContent1 #TabbedPanelsContent1_1{
display: block;border: 0px solid black;text-align: left;color: #4d4d50;font-size: 13px;margin: 0px 7px 7px 7px;
}
#TabbedPanelsContent1 #TabbedPanelsContent1_1 h2{
font-weight: bold;margin-bottom: 7px;border: 0px solid #000;text-align: left;display: block;padding: 0px 0px 0px 0px;font-size:15px;
color:#555; 
}

#TabbedPanelsContent1 #TabbedPanelsContent1_1 table {border-collapse: collapse;width: 100%;border: 0px solid #333333;background: none;}
#TabbedPanelsContent1 #TabbedPanelsContent1_1 table th{
padding: 7px 0px 7px 0px;color: #f5be00;background: #4495f1;text-align: left;font-size: 13px;border: 0px solid #333;background: none;
font-weight: bold;
}
#TabbedPanelsContent1 #TabbedPanelsContent1_1 td{
color: #555;padding: 7px 0px 7px 0px;text-align: center;border-top: 1px solid #cacaca;font-size: 13px;
}				
#TabbedPanelsContent1 #TabbedPanelsContent1_1 td h2{color: #000;font-size: 13px;font-weight: bold; text-align: left;}	
#TabbedPanelsContent1 #TabbedPanelsContent1_1 td p{color: #555;font-size: 13px;font-weight: normal; text-align: left;padding: 0px 0px 0px 0px;}
#TabbedPanelsContent1 #TabbedPanelsContent1_1 td p strong{
color: #555;font-size: 13px;font-weight: normal; text-align: right;padding: 0px 0px 0px 0px;border: 1px solid #cacaca;background: #f6f6f6;
padding: 3px 3px 3px 3px;width: 40px;display: block;
}
	
#TabbedPanelsContent1 #TabbedPanelsContent1_1 td .piece_close{
border: 0px solid red;text-align: center;margin: 0 auto;padding: 0px 0px 0px 0px;width: 17px;height: 15px;
}
#TabbedPanelsContent1 #TabbedPanelsContent1_1 td .piece_close .close{
display: block;margin: 0px;font-size: 12px;border: 0px solid red;text-align: left;width: 17px;height: 15px;background: url(no1.png);cursor: pointer; 
}


#TabbedPanelsContent1 #TabbedPanelsContent1_1 td #paypal{
display: block;margin: 0px;font-size: 12px;border: 0px solid red;text-align: left;width: 145px;height: 43px;background: none; 
}
#TabbedPanelsContent1 #TabbedPanelsContent1_1 td #paypal img{display: block;width: 145px;height: 43px;}


