/* 
    Document   : website
    Created on : Jul 16, 2009, 11:56:01 AM
    Author     : amsys
    Description:
        Base stylesheet for website
*/

root { 
    display: block;
}

body {

    font-family: Arial, Helvetica, sans-serif;

    background: #000;
    text-align: center;

    margin: 0;
    padding: 0;
}

img {
    border: 0;
}

#page {
    /* centering */
    margin: 0 auto;

    width: 986px;
}

#main {
    background: #fff url('../../images/tile.jpg') repeat;

    display: inline-block;

    padding-bottom: 6px;
}

#left {
    /* pad left so we can have background image there */
    padding-left: 150px;
    /*background: #ddd;*/

}

/* Main content */
#right {
    /* pad right so we can have background image there */
    padding-right: 150px;
    /*background: #ddd;*/

}

#logo, #menu, #content {
    clear: left;
    /*background: #fff;*/
    width: 686px;
}

#logo {
    margin: 10px auto;
    padding: 16px 0;
    text-align: center;
}

#logo img {
    margin: 0 auto;
}

#menu {
    background: #ccc;
}

#menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    padding-right: 4px;
}

#menu li {
    display: block;
    float: left;
}

#menu ul.five li a {
    width: 126px;
}

#menu ul.six li a {
    width: 91px;
}

#menu ul.six li.first a {
    width: 95px;
}

/*58px*/
.en .six-flag #menu-home a {
    width: 76px;
}
.en .six-flag #menu-menu a.ie6 {
    width: 86px;
}
.en .six-flag #menu-map a {
    width: 97px;
}
.en .six-flag #menu-gallery a {
    width: 79px;
}
.en .six-flag #menu-reviews a {
    width: 78px;
}
.en .six-flag #menu-contact a {
    width: 89px;
}
/*106px*/
.fr .six-flag #menu-home a {
    width: 113px;
}
.fr .six-flag #menu-menu a.ie6 {
    width: 64px;
}
.fr .six-flag #menu-map a {
    width: 60px;
}
.fr .six-flag #menu-gallery a {
    width: 74px;
}
.fr .six-flag #menu-reviews a {
    width: 78px;
}
.fr .six-flag #menu-contact a {
    width: 116px;
}




.en .seven-flag #menu-home a {
    width: 53px;
}
.en .seven-flag #menu-menu a.ie6 {
    width: 77px;
}
.en .seven-flag #menu-map a {
    width: 88px;
}
.en .seven-flag #menu-gallery a {
    width: 60px;
}
.en .seven-flag #menu-reviews a {
    width: 67px;
}
.en .seven-flag #menu-coupon a {
    width: 58px;
}
.en .seven-flag #menu-contact a {
    width: 80px;
}

.fr .seven-flag #menu-home a {
    width: 96px;
}
.fr .seven-flag #menu-menu a.ie6 {
    width: 37px;
}
.fr .seven-flag #menu-map a {
    width: 36px;
}
.fr .seven-flag #menu-gallery a {
    width: 52px;
}
.fr .seven-flag #menu-reviews a {
    width: 57px;
}
.fr .seven-flag #menu-coupon a {
    width: 106px;
}
.fr .seven-flag #menu-contact a {
    width: 99px;
}

#menu ul.seven li a {
    width: 75px;
}

#menu ul.seven li.first a {
    width: 78px;
}

#menu #menu-flag {
    margin: 0;
}

#menu #menu-flag a {
    width: 41px;
    height: 27px;
    overflow: hidden;
    text-indent: 41px;
    padding: 0;
}

#menu ul #menu-flag:hover a,
#menu ul #menu-flag a:hover {
    border: 0;
    height: 27px;
}

/* Locale dependent settings */

.en #menu #menu-flag a {
    background: url('../images/website-flag-fr.png');
}

.fr #menu #menu-flag a {
    background: url('../images/website-flag-en.png');
}

 /*========================= TOP OF THE MENU CASCADE =========================*/

#menu {
	position:relative;        /* establish a menu-relative positioning context */
	margin:0;
	padding:0;
	border:0;
	height:35px;                                  /* the menu's overall height */
	width:100%;         /* we always want our menu to fill the available space */
        background: #ccc;
	font-size:13px;         /* this (and also below) sets the menu's font size */
}

#menu img {
	vertical-align: top;      /* prevent images from being pushed down by text */
}

#menu ul {
	padding:0;
	margin:0;
	border:0;
	list-style-type:none;          /* we don't want to view the list as a list */
	line-height:1.5em;           /* globally set the menu's item spacing. note */
}                               /* this must be 1.0 or 1.5 or 2.0 for Mozilla */

#menu ul li {
	float:left;    /* this creates the side-by-side array of top-level buttons */
	position:relative;    /* create local positioning contexts for each button */
	margin: 0;
        padding: 4px 0 0 4px;
}

#menu ul li table {
	margin:-1px 0;              /* IE5 needs -1px top and bottom table margins */
	m\argin:0;               /* re-zero the table margins for everyone but IE5 */
	border-collapse:collapse;      /* IE5 needs this for the sub-menus to work */
	font-size:13px;        /* this sets the base font size for our entire menu */
}

/*======================== TOP LEVEL MENU DEFINITIONS ========================*/

#menu ul li ul {
	display:none;                  /* initially hide the entire list hierarchy */
	/*padding:1px;*/                               /* this is our box border width */
        /*padding: 4px;*/
}

#menu ul li a,
#menu ul li a:visited {                    /* unselected top-level menu items */
	display:block;
	float:left;
	text-decoration:none;
	height:22px;

        padding: 5px 9px 0;

        color: white;
        background: #9e1119;

        /*margin: 4px 0 0 2px;*/

        font-weight: bold;
}

#menu ul li a.noaction {
        cursor:default;
}

#menu ul li:hover a,
#menu ul li a:hover {                        /* selected top-level menu items */
	border-top:1px solid #9e1119;    /* these 2 lines create the push-in illusion */
	height:21px;
}

/*======================== 2ND LEVEL MENU DEFINITIONS ========================*/

#menu ul li:hover ul,
#menu ul li a:hover ul {                           /* 2nd level drop-down box */
	display:block;
	position:absolute;
	margin:0;
	top:31px;              /* place us just up underneath the top-level images */
	left:0px;       /* left-align our drop-down to the previous button border */
	height:auto;      /* the drop-down height will be determiend by line count */
	width:192px;
        padding: 0 0 4px 0;
	color: white;                        /* this sets the unselected-text color */
	background: #ccc;         /* this sets our menu's effective "border" color */
}

#menu ul li:hover ul.leftbutton,
#menu ul li a:hover ul.leftbutton {/* our first dropdown should not be skewed */
	left:0px;
}

#menu ul li:hover ul.skinny,
#menu ul li a:hover ul.skinny {             /* 2nd level skinny drop-down box */
	width:8.08333em;   /* with a 12px default font, this is 97px width (97/12) */
}

#menu ul.rightmenu li:hover ul,
#menu ul.rightmenu li a:hover ul {    /* 2nd level neighborhood drop-down box */
	left:auto;
	right:0;         /* nudge the right menu right to line up under the border */
}

* html #menu ul.rightmenu li a:hover ul {         /* IE5/6 needs a tweak here */
	right:-1px;
}

#menu ul li:hover ul li a,
#menu ul li a:hover ul li a {                   /* 2nd level unselected items */
	border:0;
	margin:0;
	padding:0;
	height:auto;
	color: white;       /* this sets the unselected drop-down text color */
	background: #9E1119; /* this sets the drop-down menu background color */
        text-align: left;
        padding: 6px 9px;
	width:166px;
}

#menu ul li:hover ul li:hover a,
#menu ul li a:hover ul li a:hover {                /* 2nd level selected item */
	color: white;
	background: #9E1119;
}

#menu ul li:hover ul.skinny li a,
#menu ul li a:hover ul.skinny li a,
#menu ul li:hover ul.skinny li a:hover,
#menu ul li a:hover ul.skinny li a:hover {     /* 2nd level un+selected items */
	width:8.08333em;
}

/*======================== 3RD LEVEL MENU DEFINITIONS ========================*/

#menu ul li:hover ul li ul,
#menu ul li a:hover ul li a ul {             /* hide inactive 3rd-level menus */
	visibility:hidden;
}

#menu ul li:hover ul li:hover ul,
#menu ul li a:hover ul li a:hover ul {             /* 3rd level drop-down box */
	visibility:visible;
	position:absolute;
	margin-top:-1px;	      /* bring the top edge of the 3rd level menu up one */
	top:0;
	left:8.08333em;
	width:14em;
}

#menu ul li:hover ul li:hover ul li a,
#menu ul li a:hover ul li a:hover ul li a {     /* 3rd level unselected items */
	width:14em;
	background:#d8d8d8;
}

#menu ul li:hover ul li:hover ul li a:hover,
#menu ul li a:hover ul li a:hover ul li a:hover {    /* level3 selected items */
	width:14em;
	background:white;
}

/*
#menu a {
    display: block;
    padding: 6px 9px;

    color: white;
    background: #9e1119;

    margin: 4px 0px 4px 4px;

    font-weight: bold;

    font-size: 13px;

    text-decoration: none;
}

#menu a:hover {
    text-decoration: none;
}
*/
div.clear-columns {
    clear: both;
}

#content {
    text-align: left;

}
h1, .columns .left h1 {
    font-size:16px;
    margin:0;
    padding:0;
}

h1 {
    margin-left:9px;
    padding-top:3px;
}


.columns .left h2 {
    font-size: 16px;
    margin: 0;
    padding: 0;
}

h2 {
    font-size: 16px;
    margin: 0;
    padding: 0;
    margin-left: 9px;
    padding-top: 3px;
}

.columns .left h2 {
    padding: 0;
    margin-left: 9px;
    margin-top: 3px;
}

.columns .right h2 {
    font-size: 15px;
    margin: 0;
    padding: 2px 4px 1px;
    background: #ccc;
    border: 1px solid #aaa;
    border-bottom: 0;
}

.columns .right td
.columns .right th {
    background: #eee;
}

.columns .right tr.even td,
.columns .right tr.even th {
    background: #ddd;
}

.columns p {
    margin: 0;
    padding: 0;
}

/************ info boxy ~ flash zpravy ******************/
.infobox, .info {
    border: 1px solid;
    margin: 10px 5px;
    padding: 15px 10px 15px 50px;
    background-repeat: no-repeat;
    background-position: 10px center;
    /*font-family:Arial, Helvetica, sans-serif;*/
    font-size: 13px;
    -moz-border-radius-bottomleft: 5px;
    -moz-border-radius-bottomright: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
	-khtml-border-radius: 5px;
	-webkit-border-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	border-radius: 5px;
	opacity: 0.9;
	border: none !important;

}

.info {
    color: #00529B;
    background-color: #C6DBFF;
    background-image: url('../images/info.png');
}

#content {
    font-size: 13px;
}

#footer {
    border-top: 2px solid #ccc;
    color: #fff;

    padding: 0.4em 0;

    line-height: 26px;

    background-color: #000;

}
#footer img {
    vertical-align: middle;
}

.columns .left,
.columns .right {
    /*padding: 6px;*/
    text-align: left;
    /*
    width -> (( page - middle space ) / 2) - (padding-left + padding-right)
    */
}

#content .inside {
    margin: 16px 0;
}

.columns .left {
    float: left;
    width: 422px;
    padding-right: 6px;
    text-align: justify;
}

.columns .left p {
    padding: 9px;
}

.columns .right {
    float: right;
    padding-left: 6px;
    width: 252px;
}

a {
    color: #00f;
}

a:hover {
    color: #9e1119;
}

a img{
border:0;
}

div.wrap {
margin:0.5em auto 0;
text-align:left;

background: #ccc 50% 0 no-repeat;
}
div.wrap, div#slide-holder {
    width:422px;
    height:270px;
}
div#slide-holder{
z-index:40;
position:absolute;
}
div#slide-runner, div#slide-runner img {
width:404px;
height:252px;
}
div#slide-runner {
top:9px;
left:9px;
overflow:hidden;
position:absolute;
}
div#slide-holder img{
margin:0;
display:none;
position:absolute;
}
div#slide-controls {
background: #ccc;
}
div#slide-nav{
margin:1px 4px 9px 0;
float: right;
}
div#slide-nav a{
float:left;
width:24px;
height:24px;
display:inline;
font-size:11px;
margin:0 5px 0 0;
line-height:24px;
font-weight:bold;
text-align:center;
text-decoration:none;
background-position:0 0;
background-repeat:no-repeat;
color: #fff;
}
div#slide-nav a.on{
background-position:0 -24px;
}
div#slide-nav a{background-image:url('../../images/default/slide-nav.png');}

div.box {
    line-height: 18px;
    padding: 6px;
    margin-bottom: 12px;
    border: 1px solid #aaa;
}

div.box span {
    font-weight: bold;
}

#openhours {
    width: 100%;
}

table.open-hours, table#features {
    width: 238px;
}

table.open-hours, table#features {
    font-size: 13px;
}

table.open-hours th {
    text-align: left;
    vertical-align: top;
}

table.open-hours td {
    text-align: right;
    padding-left: 0.5em;
}

table#features {
    text-align: left;
}

table#features th {
    font-weight: normal;
}

table#features th,
table#features td {
    height: 19px;
}

table#features td span {
    display: none;
}

table#features td {
    width: 19px;
    background: url('../images/bullets/website-featureoff-2.gif') 3px 3px no-repeat;
}

table#features tr.on th {
    font-weight: bold;
}

table#features tr.on td {
    background: url('../images/bullets/website-featureon-2.gif') 3px 3px no-repeat;
}

#map, #home-map {
    width: 678px;
    height: 508px;
}
#map {
    border-width: 4px;
    border-style: solid;
    border-color: #ccc;
}

#map_canvas {
    background: #fff url('../images/bigspinner.gif') no-repeat center center;
}

.gallery {
    margin-top: 23px;
}

.gallery .left, .gallery .right {
    float: left;
    width: 329px;
    line-height: 0;
    border-width: 1px;
    border-style: solid;
    border-color: #ccc;
}

.gallery .right {
    margin-left: 23px;
}

.gallery img {
    width: 329px;
    height: 205px;
}

hr {
    background: #ccc;
    height: 0;
    border: 0;
    margin: 0;
    padding: 0;
}

/* forms */

form fieldset {
    border: 0;
    margin: 1em 0 0 0;
    padding: 1em 0 0 0;
}

form legend {
    color: #9e1119;
    font-weight: bold;
}

form table {
    width: 100%;
}

form th {
    text-align: right;
    padding: 4px 4px 0 0;
    width: 170px;
}

form input,
form textarea,
form select {
    border: 1px solid #cbcbcb;
}

.mandatory {
    font-size: 12px;
    font-style: italic;
    color: #9e1119;
}

hr {
    background: #ccc;
    height: 1px;
    border: 0;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}

hr.small {
    margin-top: 0.4em;
    margin-bottom: 0.3em;
}

hr.short {
    margin-left: 3.5em;
    margin-right: 3.5em;
}

div.forceheight {
    height: 380px;
    /* 970px - 284px -306px */
}

h3 {
    font-size: 13px;
    margin: 0;
    padding: 0;
}

p.contact span {
    font-weight: bold;
}

.center {
    text-align: center;
}

div.hide {
    overflow: hidden;
    position:relative;
    width: 100%;
    height: 0;
}

br.clear-columns {
    clear: both;
}

hr.page-break {
    height: 0; page-break-after: always;
}