﻿#fade { /*--Transparent background layer--*/
	display: none; /*--hidden by default--*/
	background: #000;
	position: fixed; left: 0px; top: 0px;
	width: 100%; height: 100%;
	opacity: .80;
	z-index: 9999;
}
.popup_block{
	display: none; /*--hidden by default--*/
	position: fixed;
	left: 0px; top: 0px;
	z-index: 99999;
	width: 100%;
	height: 100%;
	font-size: 12px;
}
.popup_block div.center
{
    border: 5px solid #ddd;
    padding: 20px;
    background: #fff;
    font-size: 1.2em;
    width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
	font-family: Verdana, Geneva, sans-serif;
	-webkit-box-shadow: 0px 0px 20px #000;
	-moz-box-shadow: 0px 0px 20px #000;
	box-shadow: 0px 0px 20px #000;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
.popup_block h1
{
    margin: 6px 0 6px 0;
    text-indent: 0;
    font-size: 1.7em;
    color: rgb(20, 20, 20);
}
.popup_block h2
{
    margin: 6px 0 6px 0;
    text-indent: 0;
    font-size: 1.2em;
    font-style:normal;
    color: rgb(20, 20, 20);
}
.popup_block p
{
    text-indent: 0;
    font-size: 1em;
    margin: 3px 0 3px 0;
    color: rgb(20, 20, 20);
    text-align:left;
    padding-bottom:0;
    padding-top:2px;
}
.popup_block a
{
    color: #702300;
}
.popup_block a:hover
{
    color: #420d00;
}
.popup_block .scroller
{
    min-height: 150px;
}
.popup_block .scroller .items .item
{
    display: none;
    /*text-align: center;*/
}
.popup_block .scroller .items
{
    margin: 16px 0px 10px 0px;
}
.popup_block .scroller .head
{
    font-size: 18px;
    margin: 20px 0 0 0;
    text-align: left;
}
.popup_block .scroller .head .sc-option
{
    display: inline;
    margin: 0;
    padding: 5px 6px 5px 6px;
	background: #EEE;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px; 
    cursor: pointer;
    color: #290900;
}
.popup_block .scroller .head .over
{
    background: #FCC500;
    background: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(227,175,4)),
        color-stop(1, rgb(252,197,0))
    );
    background: -moz-linear-gradient(
        center bottom,
        rgb(227,175,4) 0%,
        rgb(252,197,0) 100%
    );
}
.popup_block .right-image
{
    float: right; margin: 0 0 0 0;text-align:center;
}
.popup_block .right-image a
{
    text-decoration: none;
}
.popup_block .right-image img
{
    border: 0;
}
/*a.btn_close {
	float: right;
	margin: -55px -55px 0 0;
	width: 50px;
	height: 50px;
	border: 0;
	text-decoration: none;
	background-image: url('../img/close_pop.png');
}*/
div.btn_call_to_order 
{
    display: block;
	width: 244px;
	height: 68px;
	margin: -16px 50px 24px 120px;
	border: 0;
	padding: 0;
	text-decoration: none;
	text-align:center;
    background-image: url('../img/call_to_order.jpg');
}
a.btn_call_to_order
{
    color: #222222;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    padding-top: 15px;
    display: block;
    margin: 20px;
    cursor: pointer;
    text-shadow: 0px 0px 3px #ffffff;
    filter: dropshadow(color=#ffffff, offx=0, offy=0); 
}
a.btn_call_to_order:hover
{
    color: black;
}
/*--Making IE6 Understand Fixed Positioning--*/
*html #fade {
	position: absolute;
}
*html .popup_block {
	position: absolute;
}
