@charset "utf-8";

/* Reset & Standard Styles - Copyright Muchachamaca SCP, Spain - All rights reserved */

* {
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-weight: inherit;
	font-style: inherit;
	font-family: inherit;
	color: inherit;
	text-decoration: inherit;
}

html { overflow-y: scroll; height: 100%; }

body {
	position: relative;
	font: 11px/1.4em Verdana, Arial, Helvetica, sans-serif;
	color: #555555;
	background-color: white;
	text-align: left;
	text-decoration: none;
	min-width: 1020px;
	min-height: 100%;
}

img { border: none; display: block; }
table { border: none; border-collapse: collapse; }
th { vertical-align: bottom; }
td { vertical-align: top; }
select { padding: 1px 2px; }
input, textarea { padding: 1px 2px; }
input[type=button], input[type=submit], input[type=reset] { cursor: pointer; padding: 1px 1em; }
input[type=checkbox], input[type=radio] { cursor: pointer; position: relative; top: 3px; }
label { cursor: pointer; }
sup { font-size: 70%; vertical-align: baseline; position: relative; top: -0.4em; }
sub { font-size: 70%; vertical-align: baseline; position: relative; top: 0.3em; }
em, i { font-style: italic; }
strong, b { font-weight: bold; }

h1 { font-weight: bold; font-size: 200%; line-height: 100%; }
h2 { font-weight: bold; font-size: 120%; line-height: 100%; }
h3 { font-weight: bold; line-height: 100%; }

a { color: inherit; }
a:link		{ text-decoration: none; }
a:visited	{ text-decoration: none; }
a:hover		{ text-decoration: underline; }
a:active	{ }
a img { border: none; }

p a:link	{ text-decoration: underline; }
p a:visited	{ text-decoration: underline; }
p a:hover	{ text-decoration: underline; color: black; }
p a:active	{ }

input[type=text].fakename { display: none; }

/* ------------------------------- */

.text ul, .text ol { list-style-position: outside; margin-left: 1em; }

/* ------------------------------- */

/* setting overflow to hidden, auto, or scroll resizes container to fully contain floats */
.float-container { overflow: hidden; }

/* previously: clearfix */
.group:before,
.group:after { content: ""; display: table; }
.group:after { clear: both; }

/* ------------------------------- */

.left { text-align: left; }
.center { text-align: center; }
.right { text-align: right; }
.inline_block { display: inline-block; }
.inline-block { display: inline-block; }
.block { display: block; }
.hidden { display: none; }
.float-left { float: left; }
.float-right { float: right; }
.sticky { position: relative; position: -webkit-sticky; position: -moz-sticky; position: -o-sticky; position: -ms-sticky; position: sticky; z-index: 1; }

/* ------------------------------- */

table.std_table { border-collapse: collapse; border: 1px solid black; }
table.std_table th { border: 1px solid black; background-color: #CCC; padding: 2px; }
table.std_table td { border: 1px solid black; padding: 2px; }

table.grey_border { border: 1px solid #999; }
table.grey_border th { border: 1px solid #999; }
table.grey_border td { border: 1px solid #999; }

table.blue_table { border-collapse: collapse; border: 1px solid black; }
table.blue_table th { border: 1px solid #aaa; background-color: #d0d0f0; padding: 2px; font-weight: bold; }
table.blue_table td { border: 1px solid #aaa; padding: 0; }
table.blue_table tr:nth-child(even) { background: #f0f0ff; }
table.blue_table tr:nth-child(odd) { background: #f8f8ff; }

/* ------------------------------- */

div.loading_icon { visibility: hidden; width: 16px; height: 16px; background-image: url(/interface/loading-white.gif); }
div.loading_icon.inline { vertical-align: middle; display: inline-block; }
div.loading_icon.grey { background-image: url(/interface/loading-grey.gif); }
div.loading_icon.visible { visibility: visible; }

/* ------------------------------- */

.simple-button {
	display: inline-block;
	vertical-align: top;
	background-color: #06f;
	background-image: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.05) 45%, rgba(0,0,0,0.1) 55%, rgba(0,0,0,0.20) 100%);
	text-decoration: none !important;
	text-align: center;
	font-size: 120%;
	line-height: 180%;
	font-weight: bold;
	padding: 0 12px;
	color: white;
	cursor: pointer;
	border-radius: 4px;
	border: 1px solid #48f;
	box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.5);
	text-shadow: -1px -1px rgba(0,0,0,0.2);
}
.simple-button:hover,
.simple-button:active {
	background-image: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.0) 45%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.3) 100%);
	outline: none; 	color: white; }

.simple-button.disabled,
.simple-button.disabled:hover,
.simple-button.disabled:active { cursor: default; background: #bbb; border-color: #aaa; color: #ddd; }

.simple-button.dark-text { color: #222; text-shadow: 1px 1px rgba(255,255,255,0.8); }

.simple-button.small {
	font-size: 12px;
	line-height: 18px;
	font-weight: bold;
	padding: 0 10px;
	border-radius: 3px;
}

.no-select {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* ------------------------------- */

div.star_rating { background: url(/interface/rating-stars.png) 0 12px; width: 65px; height: 12px; display: inline-block; }
div.star_rating>span { position: absolute; background: transparent; height: 12px; overflow: hidden; }
div.star_rating>span:hover, div.star_rating>span.selected { background-image: url(/interface/rating-stars.png); }
div.star_rating>span.s1 { width: 13px; }
div.star_rating>span.s2 { width: 26px; }
div.star_rating>span.s3 { width: 39px; }
div.star_rating>span.s4 { width: 52px; }
div.star_rating>span.s5 { width: 65px; }

div.star_rated { position: relative; background: url(/interface/rating-stars.png) 0 12px; width: 65px; height: 12px; display: inline-block; }
div.star_rated>span { position: absolute; background: transparent url(/interface/rating-stars.png) 0 0; height: 12px; overflow: hidden; }

/* ------------------------------- */

#query-stats { position: fixed; right: 14px; bottom: 2px; }

/* ------------------------------- */

header, section, footer, aside, nav, main, article, figure { display: block; }


/* Site Specific Styles - Copyright Muchachamaca SCP, Spain - All rights reserved */

/* ------------------------------- */

body {
	min-width: 980px;
	font-size: 10px;
	color: #204040;
	font-family: Verdana, Geneva, sans-serif;
	text-align: center;
	margin: 0;
}

h1 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
	font-style: italic;
	font-size: 26px;
	color: #666;
	margin: 0.5em 0 0.5em 0;
}
h2 {
	font-size: 11px;
	margin-top: 1.5em;
}

label {
	padding-left: 5px;
}

ul, ol { margin-left: 4em; margin-top: 1em; }

/* ------------------------------- */

a.subtle { text-decoration: none !important; }
a.subtle:hover { text-decoration: underline !important; }

#face {
	padding: 0;
}

.centerpage {
	position: relative;
	margin: 0 auto;
	width: 950px;
	text-align: left;
	background-color: white;
}

#topline {
	height: 23px;
}
#topline a {
	text-decoration: underline;
}

#langmenu {
	text-align: right;
	color: #D8D0D0;
}

#langmenu a:link { color: #D8D0D0; text-decoration: none; }
#langmenu a:visited { color: #D8D0D0; text-decoration: none; }
#langmenu a:hover { color: white; text-decoration: none; }
#langmenu a:active { color: #D8D0D0; text-decoration: none; }


ul#top-links {
	position: absolute;
	text-align: left;
	margin: -29px 0 0 189px;
	padding: 0;
}
ul#top-links li {
	/* somehow, the font-size & family needs to set here; just in the a is not enough */
	/* this goes for FF and IE8 */
	font-family: Georgia, "Times New Roman", Times, serif;
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline-block;
	line-height: 29px;
	vertical-align: middle;
	border-left: 1px solid #4e2949;
	border-right: 1px solid #a07798;
}
ul#top-links li:first-child { border-left: none; padding-left: 1px; }
ul#top-links li:last-child { border-right: none; padding-right: 1px; }

ul#top-links li a {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 10px;
	font-weight: normal;
	padding: 8px 15px;
	color: white;
	text-transform: uppercase;
}
ul#top-links li a			{ text-decoration: none; }
ul#top-links li a:hover	{ text-decoration: underline; }
ul#top-links>li.selected	{ background-image: url(/interface/menu-hilite-bg.gif); background-color: white; border-left: none; border-right: none; padding-left: 1px; padding-right: 1px; background-repeat: repeat-x; }
ul#top-links>li.selected a { color: black; }

#dealer-login {
	text-align: right;
	line-height: 23px;
	padding-right: 10px;
}
#dealer-login img {
	vertical-align: text-top;
	display: inline-block;
}

#leftmenu {
	position: absolute;
/*	float: left; */
	padding-left: 0;
	margin-left: 30px;
	margin-top: 0;
	padding-top: 0;
}
#leftmenu ul {
	padding-left: 0;
	margin-left: 0;
	margin-top: 0;
	padding-top: 0;
}
#leftmenu li {
	list-style: none;
	margin: 0;
	padding: 13px 2px 13px 0px;
}
#leftmenu li a {
	margin: 0;
	text-decoration: none;
}
#leftmenu li a:link { color: #406ABC; text-decoration: none; }
#leftmenu li a:visited { color: #406ABC; text-decoration: none; }
#leftmenu li a:hover { color: #102080; text-decoration: underline; }
#leftmenu li a:active { color: #406ABC; text-decoration: none; }

#pagetitle {
	margin: 60px 0 0 90px;
	height: 40px;
}

#content {
/*	width: 699px; */ /* 759 - padding! */
	text-align: left;
	margin: 0;
/*	padding: 0 35px 25px 25px; */
	padding: 0 0 25px 0;
	min-height: 400px;
}
#content h1 {
	font-size: 26px;
	color: #666;
	margin: 1em 0 1em 0;	
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: italic;
	font-weight: normal;
}
#content h2 {
	margin-bottom: 1px;
}
#content p {
	margin-top: 5px;
	line-height: 1.4em;
}
#content p a { text-decoration: underline; }

.closep {
	margin-top: 10px;
	margin-bottom: 10px;
}

.footer {
	text-align: center;
	font-size: 9px;
	color: #666666;
	margin: 0 0 15px 0;
	padding: 0;
	clear: both;
}

.footer h2 { font-family: Georgia, "Times New Roman", Times, serif; font-size: 18px; font-weight: normal; font-style: italic; margin: 15px 0 10px 0; }

.footer a:link { color: #666666; text-decoration: none; }
.footer a:visited { color: #666666; text-decoration: none; }
.footer a:hover { color: #666666; text-decoration: underline; }
.footer a:active { color: #666666; text-decoration: none; }

.footer table {
	width: 100%;
	border-spacing: 30px;
}
.footer table td {
	padding-right: 30px;
	line-height: 2em;
	max-width: 200px;
}
.footer table td:last-child {
	padding-right: 0;
}

.home-content {
	background: url(/interface/home-background.jpg) no-repeat;
	position: relative;
	color: #666;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 18px;
	line-height: 1.5em;
	height: 700px;
}
.home-content a { text-decoration: none; }
.home-content .strong { font-size: 22px; color: #444; }

.jc_thumbnail {
	margin-left: 9px;
	cursor: pointer;
}
img.jc_thumbnail { display: inline-block }

.jc_thumbnail_pendant_10 {
	margin-right: 11px;
	cursor: pointer;
}
img.jc_thumbnail_pendant_10 { display: inline-block }

.jc_thumbnail_pendant_15 {
	margin-right: 7px;
	cursor: pointer;
}
img.jc_thumbnail_pendant_15 { display: inline-block }

.jc_thumbnail_pendant {
	margin-right: 4px;
	cursor: pointer;
}
img.jc_thumbnail_pendant { display: inline-block }

.faqs {
}
.faqs ul {
	margin-top: 7px;
	margin-bottom: 7px;
}
.faqs ol {
	margin-top: 7px;
	margin-bottom: 7px;
}
.faq_question {
	margin-top: 14px;
}

.faq_question a:link	{ color: black; font-weight: bold; text-decoration: none; }
.faq_question a:visited	{ color: black; font-weight: bold; text-decoration: none; }
.faq_question a:hover	{ color: black; font-weight: bold; text-decoration: underline; }
/*.faq_question a:active	{ color: black; font-weight: bold; text-decoration: none; }*/

.faq_answer {
	display: none;
	padding-top: 0px;
	margin-bottom: 10px;
	margin-left: 20px;
}

.button {
	cursor: pointer;
}

#submenu {
	margin: 25px 25px 0 0;
	padding: 0;
	float: right;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: black;
}
#submenu ul {
	margin: 0;
	padding: 0;
}
#submenu li {
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline-block;
	border-right: 1px solid #947bcd;
	border-top: 1px solid #947bcd;
	border-bottom: 1px solid #947bcd;
	line-height: 18px;
}
#submenu li:first-child {
	border-left: 1px solid #947bcd;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 9px;
}
#submenu li a {
	color: black;
	margin: 0;
	padding: 0 10px 0 10px;
}
#submenu li a:hover { text-decoration: none; color: #BB4A35; }

/* ------------------------------- */

ul.buttonrow {
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: black;
}
ul.buttonrow li {
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline-block;
	border-right: 1px solid #947bcd;
	border-top: 1px solid #947bcd;
	border-bottom: 1px solid #947bcd;
	line-height: 18px;
	cursor: pointer;
}
ul.buttonrow li:first-child {
	border-left: 1px solid #947bcd;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 9px;
}
ul.buttonrow li a {
	color: black;
	margin: 0;
	padding: 0 10px 0 10px;
}
ul.buttonrow li a:hover { text-decoration: none; color: #BB4A35; }

ul.padding li {
	padding: 0 10px 0 10px;
}

/* ------------------------------- */

a.std-button {
	display: inline-block;
	background: transparent url(/interface/button-right2.png) no-repeat scroll top right;
	text-decoration: none;
	font-size: 14px;
	font-weight: bold;
	height: 26px;
	padding-right: 12px;
	color: white;
	cursor: pointer;
/*	text-transform: uppercase; */
}
a.std-button span {
	background: transparent url(/interface/button-left2.png) no-repeat;
	display: inline-block;
	line-height: 26px;
	padding-left: 12px;
	white-space: nowrap;
}
a.std-button:active, a.std-button:hover {
	background-position: bottom right;
	outline: none; /* hide dotted outline in Firefox */
}
a.std-button:active span, a.std-button:hover span {
    background-position: bottom left;
} 
a.std-button.disabled { cursor: default; color: #DAD; }
a.std-button.disabled:hover { background-position: top right; }
a.std-button.disabled:hover span { background-position: top left; }

a.std-button-small {
	display: inline-block;
	background: transparent url(/interface/button-right-small2.png) no-repeat scroll top right;
	text-decoration: none;
	font-size: 12px;
	font-weight: bold;
	height: 19px;
	padding-right: 12px;
	color: white;
	cursor: pointer;
}
a.std-button-small span {
	background: transparent url(/interface/button-left-small2.png) no-repeat;
	display: inline-block;
	line-height: 19px;
	padding-left: 12px;
	white-space: nowrap;
}
a.std-button-small:active, a.std-button-small:hover {
    background-position: bottom right;
    outline: none; /* hide dotted outline in Firefox */
}
a.std-button-small:active span, a.std-button-small:hover span {
    background-position: bottom left;
}
a.std-button-small.disabled { cursor: default; color: #DAD; }
a.std-button-small.disabled:hover { background-position: top right; }
a.std-button-small.disabled:hover span { background-position: top left; }


/* ------------------------------- */

.simple-button { background-color: #ee3d96; border-color: #d03583; }

/* ------------------------------- */


.smalltext {
	font-size: 10px
}
.smalltext p {
	margin-top: 10px;
	margin-bottom: 10px;
}

/* ------------------------------- */

#content .press_block {
	width: 700px;
	border: 1px solid #DDDDDD;
	padding: 10px;
	padding-bottom: 15px;
	margin-bottom: 20px;
}
#content .press_block h1 {
	margin-top: 0px;
	margin-bottom: 0px;
	padding-bottom: 0px;
	font-size: 14px;
	font-weight: bold;
}
#content .press_block h1 a {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	font-style: italic;
	font-size: 14px;
	color: #666666;
	margin: 0;
	text-decoration: none;
}
#content .press_block h1 a:hover { text-decoration: underline; }
#content .press_block p {
	margin-top: 6px;
	margin-bottom: 0px;
	padding: 0px;
	font-size: 10px;
}
#content .press_block a { text-decoration: underline; }

#content .press_article {
/*	width: 450px; */
/*	background-color: #FFFFE8; */
}

#content .press_article h2 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: italic;
	font-size: 24px;
	font-weight: bold;
	color: #666;
	margin: 0.5em 0 0.5em 0;	
}

#content .press_author {
	margin-top: -10px;
}

#content .press_caption {
	font-size: 9px;
}

/* ------------------------------- */

.testimonial {
	width: 600px;
/*	margin-left: 20px;*/
}

.testimonial p {
	margin-top: 10px;
	margin-bottom: 10px;
}

.testimonial_separator {
	height: 1px;
	width: 50px;
	color: #80C0C0;
	background-color: #80C0C0;
	border: none;
	margin: 15px auto 15px 250px;
	padding: 0;
}


/* ------------------------------- */


table.cart_table {
	font-size: 10px;
	margin: auto;
	padding: 0;
}
table.cart_table th {
	padding-bottom: 3px;
	border-bottom: 1px solid #614883;
	text-align: left;
	font-weight: bold;
}
table.cart_table td {
	padding-top: 6px;
	padding-bottom: 3px;
/*	border-bottom: 1px dashed #85774A; */
	border-bottom: 1px solid #e8e8f0;
	text-align: left;
}
table.cart_table img {
}

table.cart_table_form {
	font-size: 10px;
	margin: auto;
	padding: 0;
}
table.cart_table_form th {
	padding-bottom: 3px;
	border-bottom: 1px solid black;
	text-align: left;
}
table.cart_table_form td {
	padding-top: 6px;
	padding-bottom: 3px;
	border-bottom: 1px dashed #CCCCCC;
	text-align: left;
}

/* ------------------------------- */

.contactform {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	margin-left: 80px;
	margin-top: 25px;
}
.contactform p {
	font-size: 10px;
}
.contactform h1 {
	font-size: 11px;
	font-weight: bold;
}

.orderform {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
}
.orderform tr { height: 20px; }
.orderform td:first-child { width: 100px; text-align: right; padding-right: 10px; }
.orderform td { width: 320px; text-align: left; }
.orderform input[type=text]{ width: 320px; }

.orderform_print {
	margin: 0 auto;
	text-align: center;
	width: 747px;
}
.orderform_print td { vertical-align: bottom; }

#webdesign {
	position: absolute;
	margin-left: 0px;
	margin-top: 350px;
}

#audio {
	display: none;
}

.panel1 {
	width: 191px;
	margin-bottom: 12px;
}
.panel1-title {
	height: 22px;
	background-color: #614883;
	color: white;
	font-weight: bold;
	line-height: 21px;
	vertical-align: middle;
	text-align: center;
}
.panel1-content {
	width: 189px;
	border-left: 1px solid #f0eaf4;
	border-right: 1px solid #f0eaf4;
	border-bottom: 1px solid #f0eaf4;
	background-color: #fbfbfb;
}

.panel2 {
	width: 191px;
	margin-bottom: 12px;
}
.panel2-title {
	height: 22px;
	background-color: #88576d;
	color: white;
	font-weight: bold;
	line-height: 21px;
	vertical-align: middle;
	text-align: center;
}
.panel2-content {
	width: 189px;
	border-left: 1px solid #f0eaf4;
	border-right: 1px solid #f0eaf4;
	border-bottom: 1px solid #f0eaf4;
	background-color: #fbfbfb;
}

.panel3 {
	width: 191px;
	margin-bottom: 12px;
}
.panel3-title {
	height: 22px;
	background-color: #a46a5b;
	color: white;
	font-weight: bold;
	line-height: 21px;
	vertical-align: middle;
	text-align: center;
}
.panel3-content {
	width: 189px;
	border-left: 1px solid #f0eaf4;
	border-right: 1px solid #f0eaf4;
	border-bottom: 1px solid #f0eaf4;
	background-color: #fbfbfb;
}

.panel-cart {
	width: 750px;
	margin-bottom: 12px;
}
.panel-cart-title {
	height: 22px;
	background-color: #614883;
	color: white;
	font-weight: bold;
	line-height: 21px;
	vertical-align: middle;
	text-align: center;
}
.panel-cart-content {
	width: 748px;
	border-left: 1px solid #f0eaf4;
	border-right: 1px solid #f0eaf4;
	border-bottom: 1px solid #f0eaf4;
	background-color: #fbfbfb;
}

/* ------------------------------- */

.catalog-selector {
	border: 1px solid #d9d9d9;
	border-radius: 23px;
	width: 130px;
	height: 180px;
	text-align: center;
	display: inline-block;
	margin: 0 18px 25px 0;
	overflow: hidden;
	position: relative;
	color: #555;
	font-family: Georgia, "Times New Roman", Times, serif;
	letter-spacing: 1px;
	cursor: pointer;
}
.catalog-selector:hover {
	border-color: #aaa;
	box-shadow: 0 0 5px #aaa;
}
.catalog-selector a { text-decoration: none; }
.catalog-selector .text1 { font-style: italic; font-size: 18px; }
.catalog-selector .text2 { font-style: italic; font-size: 12px; }
.catalog-selector .line-label {
/*	background-color: #93c5ac;*/
	position: absolute;
	bottom: 0;
	line-height: 23px;
	width: 130px;
	font-style: italic;
	font-size: 11px; 
}

/* ------------------------------- */

.catalog-tab {
	width: 143px;
	height: 38px;
	display: inline-block;
}
.catalog-tab-hilite {
	width: 143px;
	height: 37px;
	background-image: none;
	cursor: pointer;
}
.catalog-tab-hilite:hover {
	background-image: url(/interface/catalog-tab-hilite.png);
}
.catalog-tab-title {
	padding-top: 5px;
	text-align: center;
	line-height: 1.2em;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 11px;
}
.catalog-tab-title a {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 11px;
}
/*.catalog-tab-content {
	width: 143px;
	height: 183px;
}*/

/* replace the above with the below */

/* new catalog */

.catalog-line-title {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	font-weight: bold;
	padding-top: 5px;
	width: 140px;
	text-align: center;
}
.catalog-line-title a {
	color: inherit;
	font-family: inherit;
	font-size: 12px;
	font-weight: bold;
	text-decoration: none;
}

.catalog-line-subtitle {
/*	font-family: Verdana, Geneva, sans-serif; */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	margin-top: 4px;
	width: 140px;
	text-align: center;
}
.catalog-line-subtitle a {
	color: inherit;
	font-family: inherit;
	font-size: 10px;
	margin-top: 4px;
	text-decoration: none;
}

.catalog-upper-menu-title {
}
.catalog-upper-menu-title a {
}

.catalog-subtitle {
	font-size: 14px;
	letter-spacing: 1px;
}

.catalog-display-kit-entry {
	position: relative;
	display: inline-block;
	vertical-align: top;
	border: 1px solid #dbdbdc;
	width: 215px;
	height: 300px;
	padding: 5px 0 2px 0;
	margin: 0 15px 15px 0;
}
.catalog-display-kit-entry img { display: inline-block; }

.catalog-inspiration-entry {
	position: relative;
	display: inline-block;
	vertical-align: top;
	border: 1px solid #dbdbdc;
	width: 355px;
	height: 250px;
	padding: 5px 0 2px 0;
	margin: 0 10px 10px 0;
	line-height: 13px;
}
.catalog-inspiration-entry input[type=text] {
	padding: 1px 0 0 0;
}

/* ------------------------------- */

.infinite-necklace-small {
	display: inline-block;
	text-align: center;
}

.no-ashes-warning-block {
	float: right;
	margin: -20px 10px 0 0;
	padding: 5px 10px;
	border: 1px solid #CCC;
	background-color: #F4F4F4;
	width: 150px;
}

.no-ashes-warning-line {
	float: right;
	margin: -40px 10px 0 0;
	padding: 0 10px;
	font-style: italic;
}

/* ------------------------------- */

table#accessories-table { width: 100%; }

/* ------------------------------- */

#dhtmltooltip {
	position: absolute;
	left: -300px;
/*	width: 150px;*/
	border: 1px solid black;
	padding: 8px 12px;
	background-color: white;
	visibility: hidden;
	z-index: 100;
/*	opacity: 0.9;
	filter: alpha(opacity=90);*/
	/*Remove below line to remove shadow. Below line should always appear last within this CSS*/
/*	filter: progid:DXImageTransform.Microsoft.Shadow(color=gray,direction=135);*/
}

#dhtmlpointer {
	position: absolute;
	left: -300px;
	z-index: 101;
	visibility: hidden;
/*	opacity: 0.9;
	filter: alpha(opacity=90);*/
}

/* ------------------------------- */

#left_column {
	width: 170px;
	float: left;
/*	border-right: 1px solid #ece6ee; */
	margin-top: 0;
	background-image: url(/interface/catalog-menu-bg.png);
	background-repeat: no-repeat;
	background-position: top right;
}

#right_column {
	width: 191px;
	float: right;
	margin-top: 1px;
}

#wide_right_column {
	margin: 0 0 0 170px;
	text-align: left;
}
#wide_right_column #content { padding-left: 25px; }

#wide_left_column {
	margin: 0 170px 0 0;
	text-align: left;
}
#wide_left_column { padding-right: 25px; }

#center_column {
	margin: 0 170px 0 170px;
	text-align: left;
}
#center_column { padding-left: 25px; padding-right: 25px; }

/* ------------------------------- */


.side-block {
	padding: 0 2px 15px 0;
/*	border: 1px solid #ece6ee;
	background-color: #F0F0F0;
	border-radius: 8px; */
	margin: 0 0 4px 0;
	font-size: 11px;
}
.side-block .title {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
	font-size: 12px;
	color: #2d1749;
	text-align: center;
	margin-bottom: 10px;
	text-transform: uppercase;
}
.side-block li { list-style: none; }
.side-block li a { text-decoration: none; padding: 2px 0; line-height: 15px; display: block; padding-left: 0px; font-weight: bold; }
.side-block li a:hover { color: inherit; background-color: #ece6ee; }
.side-block p { margin: 0.5em 10px 0.5em 10px; }
.side-block p a { text-decoration: none; color: inherit; }
.side-block img { text-align: center; margin: 0 auto; }

/* ------------------------------- */

#menu_cart_summary {
	padding: 1px 1px 15px 0;
	margin-right: 1px;
	background-color: #f8f4f8;
	box-shadow: 0 4px 4px -2px #888;
}
#menu_cart_summary h2 {
	color: #444;
	font-size: 12px;
	text-align: center;
	font-style: italic;
	margin: 0.5em 0;
}

/* ------------------------------- */

#menu_display_kits {
	padding: 1px 1px 15px 0;
	margin-right: 1px;
	background-color: #f8f4f8;
	box-shadow: 0 4px 4px -2px #888;
}
#menu_display_kits h2 {
	color: #444;
	font-size: 12px;
	text-align: center;
	font-style: italic;
	margin: 0.5em 0;
}

/* ------------------------------- */

#menu_categories {
	margin-top: 10px;
	padding: 0 2px 15px 0;
/*	border-bottom: 1px solid #ece6ee; */
}
#menu_categories>ul { margin: 0; padding: 0; }
#menu_categories li ul { margin: 0; padding: 0; margin-left: 7px; padding: 0; border-left: 1px solid #ddd; display: none; }
#menu_categories * li { list-style: none; padding: 0 5px 0 0; }
#menu_categories * li span,
#menu_categories * li a { padding: 3px 0 3px 5px; text-decoration: none; line-height: 15px; display: block; cursor: pointer; }
#menu_categories * li span:hover,
#menu_categories * li a:hover { color: inherit; background-color: #ece6ee; }
#menu_categories * li.single { margin-left: 5px; }
#menu_categories * li span.catlevel-0-title { font-weight: bold; }
#menu_categories>ul>li>ul>li a { font-weight: normal; }
#menu_categories * li a.selected { color: inherit; background-color: #ece6ee; }

.fakename {
	display: none;
}

/* ------------------------------- */

.inline-img-container img {
	display: inline-block;
}

/* ------------------------------- */

.uppercase { text-transform: uppercase; }
.transparent { background-color: transparent; }
.align-middle td { /*vertical-align: middle; only in ie7.css */ }

/* ------------------------------- */

#debug-path { position: fixed; right: 14px; bottom: 2px; }
#debug-path:hover { background-color: #CCF; }

#query-stats { position: fixed; right: 14px; bottom: 17px; }
#query-stats:hover { background-color: #CCF; }

/* ------------------------------- */

