/*  EVENTIM base.css
-----------------------------------------------------*/
/*
    version:   1.0
    author:    Miha Hribar
    email:     miha@dhimahi.com
    website:   http://eventim.at
*/

/* Import common CSS files */
@import "/static/css/misc.css";
@import "/static/css/flags.css";
@import "/static/css/banners.css";
@import "/static/css/calendar.css";
@import "/static/css/jquery.autocomplete.css";

/*  =MISC
-----------------------------------------------------*/
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
    color: #644086;
    height: 100%;
}

/* kill default margins and paddings */
* {
    padding: 0px;
    margin: 0px;
}

/* this is the only font size set in px throught this CSS, all other fonts are
   set using percentage (%) sizing */
body, input, select, textarea, a, table td, table th {
    font-size: 11px;
}

/* color all default a links violet */
a, a:hover {
    color: #644086;
}

/* default font sizes for headings */
h1 {
    font-size: 180%;
}

h1 {
    font-size: 140%;
}

h3 {
    font-size: 130%;
}

h4 {
    font-size: 100%;
}

/* error notices colored red */
.error, .error a, .mandatory {
    color: red;
}

/* to fake a div that cannot be set inside a paragraph we use span and set display to
   block */
span.error {
    display: block;
}

/* space between buttons */
.space {
    margin-right: 5px;
}

/* remove fieldset borders */
fieldset {
    border: 0;
}

/* paragraph inside a form is there only to accomodate XHTML */
/*form p {
    margin: 0 !important;
    padding: 0 !important;
}*/

/* breaking long words in opera (medium events), for more info view:
   http://www.quirksmode.org/oddsandends/wbr.html */
wbr:after { content: "\00200B" }

/*  =TOOLS
-----------------------------------------------------*/
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

/* is it just me or does this NOT validate? */
/*.clearfix {display: inline-table;}*/

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */

/*  =HIDE
-----------------------------------------------------*/
/* hide hr elements for CSS browsers and show for non-css so it separates the parts of
   the sites document */
hr {
    display: none;
}

/*  =CONTAINER
-----------------------------------------------------*/
/* the container of the whole site */
#container {
    float: left;
    width: 100%;
}

/* IE needs 20 additional pixels of width or it will break the layout */
html>body #container {
}

/*  =SEO
-----------------------------------------------------*/
#seo {
    display: none;
    background: #eee url(/static/images/seo.gif) repeat-x;
    border-bottom: 1px solid #e1e1e1;
    padding: 5px;
    margin-bottom: 5px;
    font-size: 11px;
    font-weight: normal;
}

#partner_notice {
	padding: 0 15px;
	height: 25px;
	line-height: 25px;
	background: #644086;
	color: #fff;
}

/*  =WRAPPER
 *  Used to catch footer under the sidebar
-----------------------------------------------------*/
#wrapper {
    width: 876px;
    float: left;
	margin-top: 15px;
}

/*  =HEADER
-----------------------------------------------------*/
#header {
    /* stadium background */
    width: 100% !important;
    height: 174px;
	background: #644086  url(/static/lang/ru/images/integration/117/nav_bg.gif) repeat-x left bottom;
}

/* replace h1 a with the image -> indent text out of the window and add background: Phark method [2] */
#header #logo {
    text-indent: -5000px;
    width: 179px;
    height: 117px;
    margin-top: 10px;
    margin-left: 15px;
    position: absolute;
}

#header #logo a {
    display: block;
    width: 179px;
    height: 117px;
    background: transparent url(/static/lang/ru/images/integration/117/logo.gif) no-repeat center center;
    text-decoration: none;
}

/*  =SIDEBAR
-----------------------------------------------------*/
#sidebar {
    color: #644086;
    width: 180px;
	margin-left: 15px;
    float: left;
	background: #DDD2F4 url(/static/lang/ru/images/integration/117/sidebar_bg_top.gif) no-repeat left top;
	padding-top: 5px;
}

/*  =SKIP
-----------------------------------------------------*/
#skip {
    list-style: none;
	margin: 0px 5px 1px 5px;
}

#skip li a {
	padding: 6px 0pt 6px 10px;
	background: #f58000;
	color: #fff;
	text-decoration: none;
	display: block;
}

/*  =SIDENAV (panel)
-----------------------------------------------------*/
#sidenav {
    margin: 0px 5px 10px 5px;
}

#sidenav li {
    list-style: none;
    margin-bottom: 1px;
}

#sidenav li a {
    display: block;
    padding: 3px 0 3px 10px;
    height: 1%; /* for IE */
    text-decoration: none;
    font-size: 100%;
    background: #fff;
	color: #7c3d8e;
}

/* when the first level is opened turn the arrow down */
#sidenav li a.open {
    background: #ddd2f4;
    color: #7C3D8E;
}

#sidenav li a:hover, #sidenav li a.selected {
    /*background-color: #D4D4D4;
    color: #666;*/
	font-weight: bold;
}

/* move down when li has sublevel to fix the menu */
#sidenav li ul {
    margin-top: 2px;
}

/* sublevels */
#sidenav li ul li a {
    padding-left: 25px;
    background: #fff;
    color: #7C3D8E;
    text-transform: none;
}

#sidenav li ul li ul li a {
    padding-left: 40px;
    background: #fff;
    color: #7C3D8E;
    text-transform: none;
}

#sidenav li ul li ul li ul li a {
    padding-left: 55px;
    background: #fff;
    color: #7C3D8E;
    text-transform: none;
}

/*  =QUICKSEARCH & =SEE WHAT'S HAPPENING IN YOUR TOWN (panel)
--------------------------------------------------------------*/
#quicksearch {
    /*margin: 0px 10px 10px 10px;
    border: 1px solid #ee1c25;*/
}

#quicksearch h3.quicksearch_title {
	display: none;
    /*background: #f58000;
    font-size: 140%;
    color: #fff;
    padding: 4px;*/
}

#quicksearch_form {
	position: absolute;
	top: 168px;
	left: 15px;
}

#quicksearch_submit {
    width: 22px;
    height: 22px;
    vertical-align: top;
    margin-top: 1px;    /* align the submit button in IE */
    background: transparent url(/static/lang/ru/images/integration/117/quicksearch_button.gif) no-repeat;
    border: 0px none;
    cursor: pointer;
	text-indent: -5000em;
}

html>body #quicksearch_submit {
    margin-top: 0;      /* fix the button alignment in all other browsers */
}

#search_string {
    width: 146px;
    border: 1px solid #ccc;
    padding: 3px;
    height: 21px;
}

html>body #search_string {
    height: auto;
}

#search_country {
    width: 95px;
    border: 0px none;
    background-color: #fff;
}

#your_town {
    background: #fff;
    color: #979CA0;
    padding: 5px;
	margin: 10px 5px;
}

#your_town h3 {
    font-size: 100%;
	margin-bottom: 1em;
	color: #f58000;
}

#your_town table td {
    width: 120px;
}

#your_town a {
    color: #7C3D8E;
    background: #fff;
    text-decoration: none;
    padding-left: 1px;
}

#your_town a:hover {
    text-decoration: underline;
}

#your_town a.advanced {
	background: #DDD2F4;
    color: #7C3D8E;
    font-weight: bold;
    display: block;
    margin-top: 5px;
    padding: 2px;
}

#your_town a.advanced:hover {
    color: #7C3D8E;
}

#quicksearch legend, #quicksearch label, #your_town caption {
    display: none;
}

/*  =NEWSLETTER (panel)
-----------------------------------------------------*/
#newsletter {
    background: #fff;
    margin: 0px 5px 10px 5px;
    padding: 5px 5px 10px 5px;
}

#newsletter h3 {
	color: #f58000;
}

#newsletter p {
    padding: 5px 0;
}

#newsletter_email {
    width: 150px;
    border: 1px solid #ccc;
    padding: 3px;
    height: 22px;
}

html>body #newsletter_email {
    height: auto;
}

#newsletter_submit {
    /*border: 0 none;*/
    cursor: pointer;
    /*background: #eee;*/
    font-weight: bold;
    width: auto;
}

#newsletter legend, #newsletter label {
    display: none;
}

/*  =TICKET ALARM SIDEBAR
 *  =SIDEBAR_TICKET_ALARM
-----------------------------------------------------*/
#sidebar_ticket_alarm {
    margin: 5px;
}

#sidebar_ticket_alarm h3 {
    padding-top: 15px;
	color: #F58000;
}

#sidebar_ticket_alarm p {
    padding: 5px 0;
    clear: left;
}

#sidebar_ticket_alarm p a {
    color: #7C3D8E;
}

#sidebar_ticket_alarm li {
    clear: left;
    list-style: none;
    margin-bottom: 5px;
    padding: 5px;
    background: #644086;
    float: left;
    width: 160px;
}

#sidebar_ticket_alarm li img {
    float: left;
    margin: 0 10px 0 0;
    border: 1px solid #ccc;
}

#sidebar_ticket_alarm li a {
    font-weight: bold;
    text-decoration: underline;
    color: #DDD2F4;
}

/*  =EVENTIM_OUTLETS
-----------------------------------------------------*/
#eventim_outlets {
    margin: 0px 10px 10px 10px;
    padding: 0px 10px 10px 10px;
    background: url(/static/images/line.gif) no-repeat 10px 0;
    padding-top: 15px;
}

#eventim_outlets p {
    margin: 5px 0 0 0;
}

#eventim_outlets p a {
}

#eventim_outlets img.image1 {
    margin-right: 5px;
}

#eventim_outlets {
    margin: 0px 10px 10px 10px;
    padding: 0px 10px 10px 10px;

    padding-top: 15px;
}

/*  =END SIDEBAR
-----------------------------------------------------*/
#end_sidebar {
    clear: left;
	background: transparent url(/static/lang/ru/images/integration/117/sidebar_bg_bottom.gif) no-repeat bottom left;
	height: 5px;
	margin-top: -10px;
    /* round thingy to end the sidebar with */
}

/*  =MAIN
-----------------------------------------------------*/
#main, #shopping {
    width: 656px;
    float: right;
    position: relative; /* use relative to catch all absolute positioned elements inside main */
    top: -189px;
	margin-bottom:-189px;
	background: url(/static/lang/ru/images/integration/117/awards.png) no-repeat top right;
}

#banner_main_top {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	margin-top: 15px;
}

/*  =LOCATION
-----------------------------------------------------*/
#location {
    display: none;
    position: absolute;
    top: 15px;
    left: 10px;
    list-style: none;
    color: #ccc;
    width: 25em; /* if the width is not set Opera breaks the layout */
}

#location li {
    list-style: none;
    float: left;
    padding-right: 10px;
    height: 30px;
}

#location li a, #location li strong {
    display: block;
    margin-top: 3px;
}

#location li a, #user_links li a, #location li {
    color: #644086;
    text-decoration: none;
}

/*  =USER LINKS
 *  =USER_LINKS
-----------------------------------------------------*/
#user_links {
	float: right;
	margin-right: 15px;
    margin-top: 98px;
}

#user_links li {
    list-style: none;
    float: right;
	margin-left: 20px;
}

#user_links li a {
    padding-right: 10px;
	color: #fff
}

#user_links li a:hover {
    color: #f58000;
}

#user_links li a.last {
    background: none;
}

#user_links ul li a.flag_en {
	background: transparent url(/static/images/flags/16_11/gb.png) no-repeat center right;
	padding-right: 20px;
}

#user_links ul li a.flag_ru {
	background: transparent url(/static/images/flags/16_11/ru.png) no-repeat center right;
	padding-right: 20px;
}

#user_links ul li a.flag_en:hover {
	text-decoration: underline;
}

#user_links ul li a.flag_ru:hover {
	text-decoration: underline;
}

/*  =USERSPACE
-----------------------------------------------------*/
#userspace {
	position: absolute;
    top: 102px;
    width: 250px;
	left: 0;
}

#userspace ul {
}

/* IE6 and lower get this wrong */
* html #userspace {
    margin-left: -10px;
}

#userspace h3 {
    display: none;
}

#userspace li {
    float: left;
    margin-left: 10px;
    list-style: none;
}

#userspace li a {
    display: block;
    padding: 3px 25px 2px 0;
	color: #fff;
	text-decoration: underline;
	font-weight: bold;
}

#userspace li a:hover {
    color: #f58000;
}

#userspace a {
    color: #7C3D8E;
    font-weight: bold;
    text-decoration: none;
}

#userspace li.info {
    color: #fff;
}

#userspace li.info a {
    display: inline;
    width: auto;
    border-top: 0;
    padding: 0;
    color: #fff;
    text-decoration: underline;
}

#userspace li.info a:hover {
    border-top: 0;
}

/*  =SHOPPING_BASKET
 *  =SHOPPING BASKET
-----------------------------------------------------*/
#shopping_basket {
    position: absolute;
    top: 102px;
    right: 75px;
    color: #fff;
    width: 300px;
}

#shopping_basket a.cart {
    float: left;
    display: block;
    width: 19px;
    height: 19px;
    text-indent: -9999px;
    background: url(/static/lang/ru/images/integration/117/cart.gif) no-repeat;
    text-decoration: none;
 }

#shopping_basket a.full {
    background: url(/static/lang/ru/images/integration/117/cart.gif) no-repeat;
}

#shopping_basket h3 {
    padding-top: 3px;
    height: 19px;
    text-transform: uppercase;
}

#shopping_basket h3.hide {
}

#shopping_basket p {
	color: #fff;
    float: left;
    margin-left: 10px;
    display: inline;
}

#shopping_basket p.full {
    color: #fff;
}

#shopping_basket a {
	color: #fff;
	font-weight: bold;
}

#shopping_basket a:hover {
	color: #f58000;
}

/*  =MAIN NAVIGATION
    =NAV
    =MAIN_NAV
-----------------------------------------------------*/
#main_nav {
	position: absolute;
    clear: both;
    height: 40px;
    top: 134px;
	left: 0;
	border-left: 1px solid #9E4CC4;
	display: inline;
}

#main_nav li {
    float: left;
    list-style: none;
	line-height: 40px;
	border-right:1px solid #644086;
}

#main_nav li a {
    font-size: 140%;
    color: #fff;
    font-weight: bold;
    display: block;
    text-decoration: none;
    overflow: hidden;
    padding-right: 20px;
    padding-left: 20px;
	text-transform: uppercase;
	width: 87px;
	text-align: center;
}

#main_nav li a:hover, #main_nav li a.selected {
    color: #fff;
    text-decoration: none;
	background: #F29430 url(/static/lang/ru/images/integration/117/nav_bg_on.png) repeat-x center;
}

#main_nav li#nav_home {
	display: none;
}

/*  =CONTENT
-----------------------------------------------------*/
#content {
    padding: 0 10px 10px 10px;
    margin-top: 65px;
    float: left;
	clear: both;
}

#content h1 {
    color: #f58000;
    margin-bottom: 5px;
}

/*html>body #content h1 {
    width: 408px;
    background-position: 397px 1px;
}*/

/* hide h1 heading */
#body_home #main h1, #body_event #main h1, #body_subscribe #main h1, #body_login #main h1 {
    display: none;
}

/* IE needs the exact height */
* html #content input {
    height: 22px;
}

#content input, #content textarea, #content select {
    padding: 3px;
    border: 1px solid #ccc;
}

#content #main_content {
    width: 418px;
    color: #644086;
    line-height: 1.5em;
    float: left;
    text-align: justify;
}

* html #content #main_content {
    width: 421px;
}

#main_content a {
}

/* content pages have their content justified and line height is bigger
   to make reading a bit easier */
#body_content #content p,
#body_news #content p,
#body_faq #content p,
#body_ticket_alarm #content p,
#body_outlets #content p {
    line-height: 1.4em;
    text-align: justify;
    margin-bottom: 10px;
}

#body_content #content p a,
#body_news #content p a,
#body_faq #content p a,
#body_ticket_alarm #content p a,
#body_outlets #content p a {
    color: #644086;
}

/* =FORMS
-----------------------------------------------------*/
fieldset {
	border: none;
	margin-bottom: 20px;
}

fieldset ol {
	list-style: none;
}

fieldset p.note,
fieldset p.note_text {
	clear: both;
	margin-bottom: 5px;
}

fieldset legend {

}

fieldset legend span {
	font-size: 1.3em;
	text-transform: uppercase;
	font-weight: normal;
	letter-spacing: -1px;
	display: block;
	width: 612px;
	padding: 3px;
/*	padding: 0.3em 0;
	margin-bottom: 10px;*/
}

fieldset fieldset ol {
	margin-left: 12.5em;
}

fieldset fieldset label {
	width: auto;
}

fieldset fieldset input {
	margin-right: 0.5em;
}

/*  =FOOTER
-----------------------------------------------------*/
#footer {
    position: relative;
    width: 656px;
    clear: both;
    height: 140px;
	margin-left: 230px;
}

#footer_data {
    color: #644086;
	line-height: 1.5em;
}

#footer_data p {

}

/*  =FAQ & QUICKLINKS
    =QUICKLINKS
-----------------------------------------------------*/
#faq,
#quicklinks {
	margin-bottom: 15px;
	text-align: center;
}

#footer_data {
	text-align: center;
	clear: both;
	margin-top: 70px;
}

#footer_data span.adr {
	clear: both;
}

#faq h4,
#quicklinks h4,
#footer_data h4 {
    /*color: #644086;
    background: #eee;
    padding: 3px 7px;
    margin-bottom: 5px;
    font-weight: bold;*/
	display: none;
}

#faq li,
#quicklinks li {
    list-style: none;
    padding: 0 5px 0px 7px;
	display: inline;
	background: url(/static/images/foot_delimiter.gif) no-repeat left center;
	line-height: 1.5em;
}

#faq li.first,
#quicklinks li.first {
    background: 0px none;
	padding-left: 0;
}

#faq li a,
#quicklinks li a {
    text-decoration: none;
}

#faq li a:hover,
#faq li a:focus,
#quicklinks li a:hover,
#quicklinks li a:focus {
    text-decoration: underline;
}

#faq li.rss {
    background: none;
    position: absolute;
    right: 23px;
}

#faq li.rss a {
    display: block;
    text-indent: -9999px;
    text-decoration: none;
    width: 25px;
    height: 15px;
    background: url(/static/images/rss.gif) no-repeat;
}

#faq li.rss a:hover {
    background-position: 0 -15px;
}

/* hover */
#faq:hover h4,
#faq:hover li a,
#quicklinks:hover h4,
#quicklinks:hover li a,
#footer_data:hover,
#footer_data:hover h4 {
}

/*  =COPYRIGHT
-----------------------------------------------------*/
#copyright {
    position: absolute;
    left: 10px;
    bottom: 28px;
    color: #ccc;
        display: none;

}

/*  =AUTHORS
-----------------------------------------------------*/
#authors {
	display: none;
    position: absolute;
    right: 0;
    bottom: 20px;
    text-indent: -5000px;
    width: 87px;
    height: 20px;
}

#authors a {
	display: none;
    height: 20px;
    background: transparent url(/static/images/dhimahi.gif) no-repeat;
    text-decoration: none;
}

#authors a:hover,
#authors a:focus {
    background-position: 0px -20px;
}
/*  =REST
-----------------------------------------------------*/
#rest {
    position: relative;
    width: 170px;
    float: right;
    margin-right: 15px;
    margin-top: 65px;
	background: #DDD2F4 url(/static/lang/ru/images/integration/117/sidebar_bg_top.gif) no-repeat left top;
	padding: 5px;
}

#banner_righttop {
	width: 170px;
}

/* on content pages #rest has to move up */
#body_content #rest, #body_faq #rest, #body_news #rest, #body_ticket_alarm #rest {

}

#rest h3 {
	color: #fff;
	font-weight: normal;
	text-transform: uppercase;
}

/*  =NEWS (panel)
-----------------------------------------------------*/
#news, #news_cancelations {
    margin-bottom: 20px;
    padding-bottom: 10px;
    /*border: 1px solid #c7c7c7;*/
}

#news {
	margin: -5px;
	padding: 5px;
}

#news h3, #news_cancelations h3 {
    background: #f58000;
    padding: 5px 10px;
    margin-bottom: 5px;
}

/* fixes IE's bug -> bullets kept appearing and dissappearing (hasLayout must be the reason) */
#news_list, #help_list {
    position: relative;
}

#news_list li, #news_list_cancelations li {
    list-style: none;
    padding-left: 10px;
    background: #DDD2F4 url(/static/lang/ru/images/integration/117/bullets/dot_black.gif) no-repeat left;
    margin-bottom: 10px;
}

#news_list li.archive, #news_list_cancelations li.archive {
    margin-top: 5px;
    background: none;
}

#news_list li a, #news_list_cancelations li a {
    color: #7c3d8e;
    text-decoration: none;
}

#news_list li a:hover, #news_list_cancelations li a:hover {
	font-weight: bold;
}

/*  =TOP_TEN (panel)
-----------------------------------------------------*/
#top_ten {
    margin-bottom: 20px;
    padding-bottom: 5px;
    /*border: 1px solid #c7c7c7;*/
}

#top_ten h3 {
    background: #f58000;
    padding: 5px 10px;
    margin-bottom: 5px;
}

#top_ten_list {
    margin-left: 27px;
    color: #644086;
    font-weight: bold;
}

#top_ten_list li a {
    color: #7C3D8E;
    text-decoration: none;
    font-weight: normal;
}

#top_ten_list li a:hover {
    text-decoration: underline;
}

/*  =POLL_FIRSTPAGE (panel)
-----------------------------------------------------*/
#firstpage_poll {
    margin-bottom: 20px;
    padding-bottom: 5px;
    /*border: 1px solid #c7c7c7;*/
}

#firstpage_poll h3 {
    background: #f58000;
    padding: 5px 10px;
    margin-bottom: 5px;
}

#firstpage_poll input, #firstpage_poll label {
    margin: 0;
    padding: 0;
}

#firstpage_poll ul {
	list-style: none;
}

#firstpage_poll li {
    width: 151px;
    float: left;
    clear: both;
    margin: 1px 0;
}

#firstpage_poll input.radio {
    width: 20px;
    float: left;
}

#firstpage_poll label {
    width: 125px;
    float: right;
}

#firstpage_poll input.button {
    font-family: Arial, Helvetica, sans-serif;
    margin: 4px auto auto auto;
    border: 0;
    background: url(/static/images/button_vote.gif) no-repeat left;
    height: 15px;
    width: 65px;
    font-size: 90%;
    cursor: pointer;
	color: #7C3D8E;
}

#firstpage_poll dl, #firstpage_poll form {
    margin: 0 0 0 10px;
    width: 151px;
}

#firstpage_poll form h4, #firstpage_poll dl dt {
    font-weight: bold;
    margin-bottom: 5px;
}

#firstpage_poll dl dd.colors {
    border: 1px solid #999;
    padding: 0;
    margin: 1px 0 5px 0;
    font-size: 4px;
    height: 7px;
}

#firstpage_poll dl dd.colors span.span_colors {
    background: #034768 url(/static/images/poll_results_bg.gif) repeat-x;
    height: 5px;
    padding: 0;
    margin: 1px;
    text-indent: -5000px;
    display: block;
}


#firstpage_poll form a {
    color: #644086;
    text-decoration: none;
}

#firstpage_poll form a:hover {
    text-decoration: underline;
}



/*  =SIDEBAR_HELP (panel)
-----------------------------------------------------*/
#rest_help {
	/*display: none;*/
	background: #DDD2F4 url(/static/lang/ru/images/integration/117/sidebar_bg_bottom.gif) no-repeat left bottom;
	margin: -5px;
	padding: 5px;
	height: 1px;
}

#rest_help * {
	display: none;
}

/*  =BANNERS
-----------------------------------------------------*/

#banner_sky_righttop {
    padding: 0px 0px 10px 0px;
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 5px;
}

#banner_sky {
    position: absolute;
    margin-top: 190px;
    left: 900px;
}


/*  =BREADCRUMBS
-----------------------------------------------------*/
#breadcrumbs {
    height: 14px;
    padding: 3px 0;
    margin: 1px 18px 6px 0;
}

#breadcrumbs li, #breadcrumbs_buy li {
    list-style: none;
    float: left;
    padding-right: 11px;
    margin-right: 3px;
    background: transparent url(/static/images/breadcrumbs_slash.gif) no-repeat;
    background-position: right;
}

#breadcrumbs li a, #breadcrumbs_buy li a {
    color: #7c3d8e;
    text-decoration: none;
}

#breadcrumbs li a:hover, #breadcrumbs_buy li a:hover {
    text-decoration: underline;
}

#breadcrumbs li.last, #breadcrumbs_buy li.last {
    background: none;
}

#breadcrumbs li a.last, #breadcrumbs_buy li a.last {
    color: #7C3D8E;
}

/*  =OT_TEMP
-----------------------------------------------------*/
#ot_temp {
    margin: 0px 10px 10px 10px;
    padding: 0px 10px 10px 10px;
    background: url(/static/images/line.gif) no-repeat 10px 0;
    padding-top: 15px;
}

#ot_temp img {
    border: 1px solid #ccc;
}

#ot_temp dt {
    clear: left;
    float: left;
    width: 120px;
}

#ot_temp dd {
    margin-left: 120px;
    min-height: 85px;
}

#ot_temp h4 {
    margin-bottom: 5px;
}

/*  =REST_TICKET
-----------------------------------------------------*/
#rest_ticket {
    margin: 15px 0;
}

#rest_ticket img {
    border: 1px solid #ccc;
}

/*  =TEMP
-----------------------------------------------------*/
#form .narrow, #search_form .narrow {
    width: auto;
}

/*  =INPUT BUTTON
-----------------------------------------------------*/
#content input.button, #content_container input.button {
    border: 0;
    background: url(/static/images/button.gif) no-repeat left;
    height: 23px;
    width: 70px;
    color: #644086;
}

#content input.checkbox, #content input.radio {
    margin-right: 5px;
    border: 0;
    width: auto;
}

/*  =NOTICE
-----------------------------------------------------*/
/* catch the notice icon within parent */
#notice_wrapper {
    position: relative;
}

#notice p {
    margin: 0 0 15px 0;
    padding: 5px 90px 5px 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    width: 618px;
}

/* box model workaround */
html>body #notice p {
    width: 528px;
}

#notice p a {
}

#notice.register {
    padding-top: 24px;
}

#icon {
    position: absolute;
    top: -5px;
    left: 550px;
    width: 52px;
    height: 52px;
}

/* Mulit-Class IE6 Bugfix */
#notice_wrapper .error {
    background: url(/static/images/notice_error.gif) no-repeat;
}

#notice_wrapper .info {
    background: url(/static/images/notice_info.gif) no-repeat;
}

#notice_wrapper .success {
    background: url(/static/images/notice_success.gif) no-repeat;
}

#notice ul {
    list-style: none;
}

#notice li {
    padding: 0px 2px 2px 22px;
    background: url(/static/images/bullets/notice.gif) no-repeat;
    margin-bottom: 5px;
}

#notice li a {
    text-decoration: none;
}

#notice li a:hover {
    text-decoration: underline;
}


/* ---------------------------------------------------- */
/* OUTLETS */
#outlets_search {
    float: left;
    background: #ddd2f4 url(/static/lang/ru/images/integration/117/outlets_bg_bottom.png) no-repeat bottom;
    width: 410px;
    margin-bottom: 20px;
	padding: 5px;
}

#outlets_search h4 {
	background: #ddd2f4 url(/static/lang/ru/images/integration/117/outlets_bg_top.png) no-repeat top;
	padding: 5px;
	margin: -5px;
	margin-bottom: 5px;
}

#outlets_search img {
    float: left;
}

#outlets_search p {
	margin: 5px 0;
}

#outlets_search input {
    float: left;
}

#outlets_results {
    float: left;
    width: 200px;
}


#outlets_results ul li {
    padding-bottom: 15px;
    list-style: none;
    color: #644086;
    text-align: left;
}

/* NAVIGATION FOR OUTLETS */
#nav, #nav_results {
    float: right;
    width: 180px;
}

#nav ul {
    border-bottom: 1px solid #eee;
    width: 180px;
    list-style: none;
}

#nav ul li {
    display: inline;
    font-size: 110%;
    padding: 3px 5px 0px 5px;
    cursor: pointer;
}

#nav ul li:hover {
    border-bottom: 3px solid #eee;
}

#nav ul li.selected {
    font-weight:bold;
    border-bottom: 3px solid #eee;
}

#nav_results {
    overflow: auto;
    height: 245px;
    padding-top: 5px;
}

#nav_results ul {
    width: 160px;
    list-style: none;
}

#nav_results ul li {
    padding: 0px 5px;
    cursor: pointer;
}

#nav_results ul li:hover {
    text-decoration: underline;
}

#nav_results ul li.lisel span {
    background-color: #eee;
    color: #644086;
}

#div_pre_content {
    display: none;
}

.note {
    padding:.8em 1em .8em;
    margin: 1em 0;
}

.note ul {
    margin: 5px 0 0 12px;
}

.note_icon{
    padding-left: 35px;
    background: url(/static/images/notice_icon.gif) .8em .8em no-repeat;
    background-color: #f5f5f5;
    border:1px solid #ccc;
}

.info_icon{
    padding-left: 35px;
    background: url(/static/images/info_icon.gif) .8em .8em no-repeat;
    background-color: #f5f5f5;
    border:1px solid #ccc;
}

.error_icon{
    padding-left: 35px;
    background: url(/static/images/error_icon.gif) .8em .8em no-repeat;
    background-color: #f5f5f5;
    border:1px solid #ccc;
}

.error input {
    border: 1px solid red !important;
}

.desc {
    margin-bottom:0 !important;
}

.desc a {
    font-weight: bold;
}

/*  =AJAX LOADING CONTAINER
-----------------------------------------------------*/
div.loading {
    height: 30px;
    background: url(/static/images/ajax-loader.gif) no-repeat center center;
}

/*  =MICROFORMATS
-----------------------------------------------------*/
.vevent abbr {
    border: 0;
}

body#body_event .vevent .location {
    display: none;
}

/* =CALENDAR - calendar override styles
-----------------------------------------------------*/
#calendar {
	margin: 10px 5px;
}

#calendar ul {
	background: #f58000;
	padding: 6px;
}

#calendar ul a {
	font-weight: normal;
	color: #fff;
}

#calendar table {
	background: #fff;
	border: none;
}

#calendar th {
	background: transparent;
	color: #f58000;
	border: none;
}
#calendar td,
#calendar td.full,
#calendar td.empty {
	background: transparent;
	border: none;
}

#calendar td a {
	color: #7c3d8e;
}

/*	=RAMBLER CODE
-----------------------------------------------------*/

#rambler_code {
	clear: both;
	margin-left: 240px;
	text-align: center;
	width: 660px;
	margin-top: 20px;
	float: left;
}