/* --------------------------------------------------------------

   reset.css
   * Resets default browser CSS.

-------------------------------------------------------------- */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, nav, section {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

article, aside, dialog, figure, footer, header,
hgroup, nav, section {
    display:block;
}

body {
  line-height: 1.5;
}

/* Tables still need 'cellspacing="0"' in the markup. */
table { border-collapse: separate; border-spacing: 0; }
caption, th, td { text-align: left; font-weight: normal; }
table, td, th { vertical-align: middle; }

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }

/* Remove annoying border on linked images. */
a img { border: none; }


/* --------------------------------------------------------------

   typography.css
   * Sets up some sensible default typography.

-------------------------------------------------------------- */

/* Default font settings.
   The font-size percentage is of 16px. (0.75 * 16px = 12px) */
html { font-size:100.01%; }
body {
  font-size: 75%;
  color: #222;
  background: #fff;
  font-family: Tahoma, Geneva, sans-serif;
}


/* Headings
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6 { font-weight: bold; color: #fa81e5; font-family:Georgia, "Times New Roman", Times, serif; font-style:italic }

h1 { font-size: 1.9em; line-height: 1.2; margin-bottom: 0.5em;}
h2 { font-size: 1.7em; padding-bottom: 0.1em; }
h3 { font-size: 1.5em; line-height: 1; margin-bottom: 1em; }
h4 { font-size: 1.2em; line-height: 1.25; margin-bottom: 1.25em; }
h5 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; }
h6 { font-size: 1em; font-weight: bold; }

h1 img, h2 img, h3 img,
h4 img, h5 img, h6 img {
  margin: 0;
}


/* Text elements
-------------------------------------------------------------- */

p           { padding: 0 0 1.5em 15px; padding-left: 15px; line-height: 1.2em}
p img.left  { float: left; margin: 1.5em 1.5em 1.5em 0; padding: 0; }
p img.right { float: right; margin: 1.5em 0 1.5em 1.5em; }

a:focus,
a:hover     { color: #fc95ce; text-decoration: none }
a           { color: #fc95ce; text-decoration: underline; }

blockquote  { margin: 1.5em; color: #666; font-style: italic; }
strong      { font-weight: bold; }
em,dfn      { font-style: italic; }
dfn         { font-weight: bold; }
sup, sub    { line-height: 0; }

abbr,
acronym     { border-bottom: 1px dotted #666; }
address     { margin: 0 0 1.5em; font-style: italic; }
del         { color:#666; }

pre         { margin: 1.5em 0; white-space: pre; }
pre,code,tt { font: 1em 'andale mono', 'lucida console', monospace; line-height: 1.5; }


/* Lists
-------------------------------------------------------------- */

li ul,
li ol       { margin: 0; }
ul, ol      { margin: 0 1.5em 1.5em 0; padding-left: 3.333em; }

ul          { list-style-type: disc; }
ol          { list-style-type: decimal; }

dl          { margin: 0 0 1.5em 0; }
dl dt       { font-weight: bold; }
dd          { margin-left: 1.5em;}


/* Tables
-------------------------------------------------------------- */

table       { margin-bottom: 1.4em; width:100%; }
th          { font-weight: bold; }
thead th    { background: #c3d9ff; }
th,td,caption { padding: 4px 10px 4px 5px; }
tr.even td  { background: #e5ecf9; }
tfoot       { font-style: italic; }
caption     { background: #eee; }


/* Misc classes
-------------------------------------------------------------- */

.small      { font-size: .8em; margin-bottom: 1.875em; line-height: 1.875em; }
.large      { font-size: 1.2em; line-height: 2.5em; margin-bottom: 1.25em; }
.hide       { display: none; }

.quiet      { color: #666; }
.loud       { color: #000; }
.highlight  { background:#ff0; }
.added      { background:#060; color: #fff; }
.removed    { background:#900; color: #fff; }

.first      { margin-left:0; padding-left:0; }
.last       { margin-right:0; padding-right:0; }
.top        { margin-top:0; padding-top:0; }
.bottom     { margin-bottom:0; padding-bottom:0; }


/* --------------------------------------------------------------

   forms.css
   * Sets up some default styling for forms
   * Gives you classes to enhance your forms

   Usage:
   * For text fields, use class .title or .text
   * For inline forms, use .inline (even when using columns)

-------------------------------------------------------------- */

label       { font-weight: bold; }
fieldset    { padding:1.4em; margin: 0 0 1.5em 0; border: 1px solid #ccc; }
legend      { font-weight: bold; font-size:1.2em; }


/* Form fields
-------------------------------------------------------------- */

input[type=text], input[type=password],
input.text, input.title,
textarea, select {
  background-color:#fff;
  border:1px solid #bbb;
}
input[type=text]:focus, input[type=password]:focus,
input.text:focus, input.title:focus,
textarea:focus, select:focus {
  border-color:#666;
}

input[type=text], input[type=password],
input.text, input.title,
textarea, select {
  margin:0.5em 0;
}

input.text,
input.title   { width: 300px; padding:5px; }
input.title   { font-size:1.5em; }
textarea      { width: 390px; height: 250px; padding:5px; }

input[type=checkbox], input[type=radio],
input.checkbox, input.radio {
  position:relative; top:.25em;
}

form.inline { line-height:3; }
form.inline p { margin-bottom:0; }


/* Success, notice and error boxes
-------------------------------------------------------------- */

.error,
.notice,
.success    { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; }

.error      { background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; }
.notice     { background: #FFF6BF; color: #514721; border-color: #FFD324; }
.success    { background: #E6EFC2; color: #264409; border-color: #C6D880; }
.error a    { color: #8a1f11; }
.notice a   { color: #514721; }
.success a  { color: #264409; }

/**
 * jQuery lightBox plugin
 * This jQuery plugin was inspired and based on Lightbox 2 by Lokesh Dhakar (http://www.huddletogether.com/projects/lightbox2/)
 * and adapted to me for use like a plugin from jQuery.
 * @name jquery-lightbox-0.5.css
 * @author Leandro Vieira Pinho - http://leandrovieira.com
 * @version 0.5
 * @date April 11, 2008
 * @category jQuery plugin
 * @copyright (c) 2008 Leandro Vieira Pinho (leandrovieira.com)
 * @license CC Attribution-No Derivative Works 2.5 Brazil - http://creativecommons.org/licenses/by-nd/2.5/br/deed.en_US
 * @example Visit http://leandrovieira.com/projects/jquery/lightbox/ for more informations about this jQuery plugin
 */
#jquery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 90;
	width: 100%;
	height: 500px;
}
#jquery-lightbox {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	text-align: center;
	line-height: 0;
}
#jquery-lightbox a img { border: none; }
#lightbox-container-image-box {
	position: relative;
	background-color: #fff;
	width: 250px;
	height: 250px;
	margin: 0 auto;
}
#lightbox-container-image { padding: 10px; }
#lightbox-loading {
	position: absolute;
	top: 40%;
	left: 0%;
	height: 25%;
	width: 100%;
	text-align: center;
	line-height: 0;
}
#lightbox-nav {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 10;
}
#lightbox-container-image-box > #lightbox-nav { left: 0; }
#lightbox-nav a { outline: none;}
#lightbox-nav-btnPrev, #lightbox-nav-btnNext {
	width: 49%;
	height: 100%;
	zoom: 1;
	display: block;
}
#lightbox-nav-btnPrev { 
	left: 0; 
	float: left;
}
#lightbox-nav-btnNext { 
	right: 0; 
	float: right;
}
#lightbox-container-image-data-box {
	font: 10px Verdana, Helvetica, sans-serif;
	background-color: #fff;
	margin: 0 auto;
	line-height: 1.4em;
	overflow: auto;
	width: 100%;
	padding: 0 10px 0;
}
#lightbox-container-image-data {
	padding: 0 10px; 
	color: #666; 
}
#lightbox-container-image-data #lightbox-image-details { 
	width: 70%; 
	float: left; 
	text-align: left; 
}	
#lightbox-image-details-caption { font-weight: bold; }
#lightbox-image-details-currentNumber {
	display: block; 
	clear: left; 
	padding-bottom: 1.0em;	
}			
#lightbox-secNav-btnClose {
	width: 66px; 
	float: right;
	padding-bottom: 0.7em;	
}

/* --------------------------------------------------------------

   main.css
   СОбСТВЕННЫЕ КЛАССЫ

-------------------------------------------------------------- */

html { min-height:100%; background:#f2f1f1;}
body {background:#f2f1f1; font-size:11pt; min-height:100%;}
del {text-decoration:line-through}
.clear {height:0; clear:both}
.invisible, .total {display:none}

#supervisor {min-width:920px; max-width:1200px; margin:0 auto; padding:0 30px}

#header {height:145px; width:100%}

#logo {position:relative; width:23%; float:left; height:145px;}
#logotype { position:absolute; left:12%; top:20px; z-index:5}
#logo .cloud { position:absolute; z-index:4; right:13%; top:40px;}

#nav { width:61%; height:145px; float:left}
#nav  ul { list-style:none; margin:0; padding:0; position:relative; padding:35px 0 0 0;}
#nav  ul li {list-style:none; display:inline-block;}
#nav  ul li a {margin:4px 7px; color:#000}
#nav  ul li span {padding:4px 7px; color:#fff; background:#fc95ce; -webkit-border-radius: 30px; -moz-border-radius: 30px; border-radius: 30px; position:relative;}
#nav  ul li.special { font-size:1.4em;}
#nav  ul li.special a { color:#fc95ce}
/*#nav  ul li.trail>a {padding:4px 7px; margin:0; color:#fff; text-decoration:none; background:#fc95ce; -webkit-border-radius: 30px; -moz-border-radius: 30px; border-radius: 30px; position:relative;}*/
#nav  ul li ul {display:block; position:absolute; top:5.5em; left:0; font-size:10pt; margin:0; padding:0}
#nav  ul li ul li a, #nav  ul li.special ul li a {color:#000}
#nav  ul li ul li span {padding:4px 7px; color:#fff; background:#fecf45; -webkit-border-radius: 30px; -moz-border-radius: 30px; border-radius: 30px; position:relative;}

#contacts_link {width:16%; height:110px; padding-top:35px; float:left}
#contacts_link address {font-family:Georgia, "Times New Roman", Times, serif; font-style:normal; margin:0; font-size:1.2em;}
#contacts_link span {padding:4px 7px; color:#fff; background:#fc95ce; -webkit-border-radius: 30px; -moz-border-radius: 30px; border-radius: 30px; position:relative; top:3px;}

#addbubles {position:absolute; z-index:0; width:100%; min-width:980px; overflow: hidden; top:180px; text-align:center;}
#addbubles .wrap { width:100%; max-width:1200px; display:inline-block; height:475px;}
#addbubles .wrap .wrap2 {position:relative; height:475px; left:-236px; background:url(/tl_files/theme/img/buble1.png) left no-repeat}
#addbubles .wrap .wrap3 {position:relative; height:475px; right:-472px; background:url(/tl_files/theme/img/buble5.png) right no-repeat}

#addbubles2 {position:absolute; z-index:-1; width:100%; min-width:980px; overflow: hidden; top:140px; text-align:center;}
#addbubles2 .wrap { width:100%; max-width:1260px; display:inline-block; height:300px;}
#addbubles2 .wrap .wrap1 {position:relative; height:216px; right:-80px; background:url(/tl_files/theme/img/buble5s.png) right no-repeat}
#addbubles2 .wrap .wrap2 {position:relative; height:216px; right:-130px; background:url(/tl_files/theme/img/buble5s2.png) right no-repeat}

#bubles {position:relative; height:500px;}
#bubles h2 {font-weight:normal; font-size:1.2em}

#buble1 {display:none}
#buble2 {position:absolute; left:16%; width:37%;}
#buble2 img {float:left}
#buble3 {position:absolute; top:140px; left:22%; width:39%;}
#buble3 img {float:right}
#buble3 div {margin-top:170px;}
#buble4 {position:absolute; right:12%; width:33%;}
#buble4 h2 { margin:0 0 0 65%; position:relative; z-index:10}
#buble4 .cloud {position:absolute; margin:0; z-index:-1}
#buble4 .bubble  {position:absolute; margin:-2em 0 0 22%}
#buble5 {display:none}

#mp_news {width:50%; font-size:0.9em; background: url(/tl_files/theme/img/cl_news.png) no-repeat 0 90%; float:left;}
#mp_news a {color:#000}

#mp_highlights {width:50%; float:left; overflow:hidden; position:relative}
#mp_highlights .wrap {width:150%}
#mp_highlights .wrap .mp_highlight {width:32%; float:left; margin-left:1%; line-height:normal;}
#mp_highlights .wrap .mp_highlight div {font-size:0.9em}
#mp_highlights h4 {margin:0}
#mp_highlights h4 a {text-decoration:none}
#mp_highlights h4 a:hover {text-decoration:underline}
#mp_highlights a {text-decoration:none}

#footer { margin:30px 20px 0; padding:20px; border-top:#dbdada solid 1px; color:#696969; font-size:0.9em}
#footer .copyr {float:right}
#footer .copyr a { color:#696969}

.mod_cataloglist {
	background:#f2f1f1 url(/tl_files/theme/img/cloud1.png) 0px 50% no-repeat;
	padding-left:1.5ex;
}

.item { display:inline-block; margin-left:-0.5ex; vertical-align:top; white-space:normal; width:21%; padding:0 2% 30px; text-align:center}
.item .photo {display:inline-block; padding:9px 10px; background:url(/tl_files/theme/img/frame.png) no-repeat; width:123px; height:123px; text-align:left;}
.item .name {text-align:left; font-size:13pt; font-style:italic; font-weight:normal; margin:0; padding:0; color:#666; width:180px; display:inline-block; line-height:normal; font-family:Georgia, "Times New Roman", Times, serif; position:relative; left:-0.5em}
.item .sh_descr { text-align:left; font-size:10pt; width:180px; display:inline-block}
.item .price {font-style:italic; text-align:right; width:180px; display:inline-block; font-size:1.2em; color:#de3fc2; font-family:Georgia, "Times New Roman", Times, serif}
.item:after {content:''; display:block; clear:both; height:0}

.mod_newslist .layout_latest h3 {
	line-height:normal; margin:0}
.mod_newslist .layout_latest h3 a {
	text-decoration:none}
.mod_newslist .layout_latest h3 a:hover {
	text-decoration:underline}
	
.mod_newsreader .info,
.mod_newslist .layout_latest .info {
	font-style:italic;
	color:#666;
	font-family:Georgia, "Times New Roman", Times, serif
}
.mod_newslist .layout_latest {border-bottom:1px #666 dashed; padding-top:2em}
.mod_newslist .last {border-bottom:none}

#price {
	border:0;
	margin:0px auto 0px auto;
	text-align:left;
	width:80%;
}

#price td {
	border-bottom:1px solid #999; }
	
#price tr:hover td {
	background:#d0d0d0;
	border-bottom:1px solid #fff;
 }
	
#price th {
	border-bottom:1px solid #999;
}

#price th h1 {
	margin:0.5em 0;
}
	
#price tr td h3 {
	margin:0;
}

#price tr:hover td h3 {
	color:#000;
}

#price tr.table_titles:hover {
	background:none!important;
	color:#000!important; }
	
#print_price caption {
	text-align:left;
	font-style:italic;
	font-family:Georgia, "Times New Roman", Times, serif;
	color:#666;
	background:none;
}

#print_price thead tr td {padding:0}

#print_price thead tr td div {
	background-color:#d0d0d0;
	-webkit-border-radius: 30px; 
	-moz-border-radius: 30px; 
	border-radius: 30px;
	padding:5px 10px;
	position:relative;
}

#print_price tbody td {
	padding:4px 5px;
}
#print_price tbody tr:hover td,
#print_price tbody tr:hover th{
	background:#d0d0d0;
}
#print_price tbody tr.number_of:hover td,
#print_price tbody tr.number_of:hover th{
	background: none;
}
#print_price tbody td:hover {
	border:2px solid #fc95ce;
	padding:2px 3px;
	background:#999!important;
}

