/* Main menu */

#menu, #menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#menu {
	width: auto;
	margin: auto auto;
	background-color: #15AFEA;
	background-image: -moz-linear-gradient(#04acec,  #0186ba);	
	background-image: -webkit-gradient(linear, left top, left bottom, from(#04acec), to(#0186ba));
	background-image: -webkit-linear-gradient(#04acec, #0186ba);
	background-image: -o-linear-gradient(#04acec, #0186ba);
	background-image: -ms-linear-gradient(#04acec, #0186ba);
	background-image: linear-gradient(#04acec, #0186ba);
	-moz-box-shadow: 0 1px 1px #777, 0 1px 0 #666 inset;
	-webkit-box-shadow: 0 1px 1px #777, 0 1px 0 #666 inset;
	box-shadow: 0 1px 1px #777, 0 1px 0 #666 inset;
}

#menu li {
	float: left;
	border-right: 1px solid #222;
	-moz-box-shadow: 1px 0 0 #444;
	-webkit-box-shadow: 1px 0 0 #444;
	box-shadow: 1px 0 0 #444;
	position: relative;
	width: auto;
	max-width: 250px;
	height: auto;
}

#menu a {
	float: left;
	padding: 12px 30px;
	color: #FFF;
	text-transform: uppercase;
	font: bold 13px Arial, Helvetica;
	text-decoration: none;
}

#menu li:hover > a {
	color: #FFF;
    font-size: 13px;
    text-shadow: -2px 2px 8px #050000;
}

*html #menu li a:hover /* IE6 */ {
	color: #OOO;
}

#menu li:hover > ul {
	display: block;
}

/* Sub-menu */

#menu ul {
    list-style: none;
    margin: 20px 0 0 0;
    padding: 0;    
    display: none;
    position: absolute;
    top: 20px;
    left: 0;
    z-index: 99999;    
    background: -moz-linear-gradient(#444, #111);
	background-image: -webkit-gradient(linear, left top, left bottom, from(#444), to(#111));
	background: -webkit-linear-gradient(#444, #111);    
	background: -o-linear-gradient(#444, #111);	
	background: -ms-linear-gradient(#444, #111);	
	background: linear-gradient(#444, #111);
	-moz-box-shadow: 0 -1px rgba(255,255,255,.3);
	-webkit-box-shadow: 0 -1px 0 rgba(255,255,255,.3);
	box-shadow: 0 -1px 0 rgba(255,255,255,.3);	
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;  
}

#menu ul ul {
    top: 0;
	left: 190px;
	margin: 0;
	_margin: 0; /*IE6 only*/
	-moz-box-shadow: -1px 0 0 rgba(255,255,255,.3);
	-webkit-box-shadow: -1px 0 0 rgba(255,255,255,.3);
	box-shadow: -1px 0 0 rgba(255,255,255,.3);		
}

#menu ul li {
    float: none;
	display: block;
	border: 0;
	_line-height: 0; /*IE6 only*/
	-moz-box-shadow: 0 1px 0 #111, 0 2px 0 #666;
	-webkit-box-shadow: 0 1px 0 #111, 0 2px 0 #666;
	box-shadow: 0 1px 0 #111, 0 2px 0 #666;
}

#menu ul li:last-child {   
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;    
}

#menu ul a {    
    padding: 10px;
	height: 10px;
	width: 170px;
	max-width: 250px;
	height: auto;
    line-height: 1;
    display: block;
    white-space: nowrap;
    float: none;
	text-transform: none;
}

*html #menu ul a /* IE6 */ {    
	height: 10px;
}

*:first-child+html #menu ul a /* IE7 */ {    
	height: 10px;
}

#menu ul a:hover {
    background-color: #0186ba;
	background-image: -moz-linear-gradient(#04acec,  #0186ba);	
	background-image: -webkit-gradient(linear, left top, left bottom, from(#04acec), to(#0186ba));
	background-image: -webkit-linear-gradient(#04acec, #0186ba);
	background-image: -o-linear-gradient(#04acec, #0186ba);
	background-image: -ms-linear-gradient(#04acec, #0186ba);
	background-image: linear-gradient(#04acec, #0186ba);
}

#menu ul li:first-child > a {
    -moz-border-radius: 3px 3px 0 0;
	-webkit-border-radius: 3px 3px 0 0;
	border-radius: 3px 3px 0 0;
}

#menu ul li:first-child > a:after {
    content: '';
	position: absolute;
	left: 40px;
	top: -6px;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #444;
}

#menu ul ul li:first-child a:after {
    left: -6px;
	top: 50%;
	margin-top: -6px;
	border-left: 0;	
	border-bottom: 6px solid transparent;
	border-top: 6px solid transparent;
	border-right: 6px solid #3b3b3b;
}

#menu ul li:first-child a:hover:after {
    border-bottom-color: #04acec; 
}

#menu ul ul li:first-child a:hover:after {
    border-right-color: #0299d3; 
    border-bottom-color: transparent; 	
}

#menu ul li:last-child > a {
	-moz-border-radius: 0 0 3px 3px;
	-webkit-border-radius: 0 0 3px 3px;
	border-radius: 0 0 3px 3px;
}

/* Clear floated elements */
#menu:after  {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

* html #menu             { zoom: 1; } /* IE6 */
*:first-child+html #menu { zoom: 1; } /* IE7 */
@charset "utf-8";

#simboli_opis   {
	height: 273px;
	width: 550px;
	margin-top: 850px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: 15px;
	z-index: 3;
	text-align: center;
	background-color: #B8DCF6;
	position: absolute;
	visibility: hidden;
	-moz-box-shadow: 5px 5px 10px #033;
	-webkit-box-shadow: 5px 5px 10px #033;
	box-shadow: 5px 5px 10px #033;

}

#okvir_nacrt {
	height: 367px;
	width: 550px;
	margin-top: 755px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: 13px;
	border: 2px solid #FFF;
	position: absolute;
	-moz-box-shadow: 5px 5px 10px #033;
	-webkit-box-shadow: 5px 5px 10px #033;
	box-shadow: 5px 5px 10px #033;
	visibility: visible;
	z-index: 1;
}

#opis_i_cijenik   {
	height: 282px;
	width: 550px;
	margin-top: 450px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: 15px;
	z-index: 1;
	text-align: center;
	background-color: #B8DCF6;
	position: absolute;
	visibility: visible;
}

#kontakt_cjenik {
	height: 335px;
	width: 218px;
	margin-top: 1190px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 15px;
	text-align: center;
	position: absolute;
	visibility: visible;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: normal;
	color: #000;
}

#botun_kalendar {
	height: 21px;
	width: 200px;
	position: absolute;
	margin-top: 12px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	visibility: visible;
}

#botun_rezervacija {
	height: 21px;
	width: 200px;
	position: absolute;
	margin-top: 290px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	visibility: visible;
}

#botun_upitnik_ville {
	height: 21px;
	width: 200px;
	margin-top: 50px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	position: absolute;
	visibility: visible;
}

#okvir_cjenik   {
	background-color: #DFFFFF;
	height: 384px;
	width: 550px;
	margin-top: 1140px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: 13px;
	border: 2px solid #FFF;
	position: absolute;
	text-align: center;
	z-index: 14;
	-moz-border-radius-topleft: 15px;
	-moz-border-radius-topright: 15px;
	-moz-border-radius-bottomleft: 15px;
	-moz-border-radius-bottomright: 15px;
	visibility: hidden;
}

#wrap #left #okvir_cjenik #cjenik tr td {
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #006;
}

#okvir_kalendar {
	background-color: #DFFFFF;
	height: 385px;
	width: 550px;
	margin-top: 1140px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: 13px;
	border: 2px solid #FFF;
	position: absolute;
	text-align: center;
	z-index: 14;
	visibility: hidden;
	-moz-border-radius-topleft: 15px;
	-moz-border-radius-topright: 15px;
	-moz-border-radius-bottomleft: 15px;
	-moz-border-radius-bottomright: 15px;
	
}

#okvir_cjenik table tr th {
	color: #FFF;
	font-size: 16px;
	-moz-border-radius-topleft: 15px;
	-moz-border-radius-topright: 15px;
	
}

#opis_apartman_vise_pocetna {
	height: 20px;
	width: 580px;
	margin-top: 675px;
	margin-left: 0px;
	z-index: 1052;
	position: absolute;
	visibility: inherit;
	text-align: left;
}

#tabela_opis_apartmana {
	height: 400px;
	width: 550px;
	border:0;
	font-size:13px;
	color:#000;
	font-style: normal;
	font-family:"Arial Black", Gadget, sans-serif;
	vertical-align:50%;
	text-align:left;
	margin: 0px auto;
	border-collapse: collapse;
	text-decoration: none;
	background-color: #B8DCF6;

}

#okvir_tlocrt_apartmana {
	height: 367px;
	width: 550px;
	border:0;
	font-size:13px;
	color:#000;
	font-style: normal;
	font-family:"Arial Black", Gadget, sans-serif;
	vertical-align:50%;
	text-align:left;
	margin: 0px auto;
	border-collapse: collapse;
	text-decoration: none;
	background-color: #B8DCF6;
    -moz-box-shadow: 5px 5px 10px #033;
	-webkit-box-shadow: 5px 5px 10px #033;
	box-shadow: 5px 5px 10px #033;

}
#okvir_fotografije1 {
	height: 100px;
	width: 150px;
	margin-top: 15px;
	margin-right: 45px;
	margin-bottom: 0px;
	margin-left: 38px;
	border: 2px solid #FFF;
	-moz-box-shadow: 5px 5px 10px  #033;
	-webkit-box-shadow: 5px 5px 10px #033;
}

#okvir_fotografije1 a:hover {
	filter:alpha(opacity=50);	
	opacity: 0.5;
}

#okvir_fotografije2 {
	height: 100px;
	width: 150px;
	margin-top: 14px;
	margin-right: 45px;
	margin-bottom: 0px;
	margin-left: 38px;
	border: 2px solid #FFF;
	-moz-box-shadow: 5px 5px 10px #033;
	-webkit-box-shadow: 5px 5px 10px #033;
	color: #B8DCF6;
}

#okvir_fotografije2 a:hover {
	filter:alpha(opacity=50);	
	opacity: 0.5;
}

#okvir_fotografije3   {
	height: 100px;
	width: 150px;
	margin-top: 15px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	border: 2px solid #FFF;
	text-align: center;
	-moz-box-shadow: 5px 5px 10px #033;
	-webkit-box-shadow: 5px 5px 10px #033;
}

#okvir_fotografije3 a:hover {
	filter:alpha(opacity=50);	
	opacity: 0.5;
}

#okvir_fotografije3_vertikalno {
	height: 200px;
	width: 150px;
	margin-top: 15px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: 38px;
	border: 2px solid #FFF;
	text-align: center;
	-moz-box-shadow: 5px 5px 10px #033;
	-webkit-box-shadow: 5px 5px 10px #033;
}
#okvir_fotografije3_vertikalno a:hover {
	filter:alpha(opacity=50);	
	opacity: 0.5;
}
#okvir_galerija_thumbs {
	position: absolute;
	width: 550px;
	height: 80px;
	z-index: 200;
	margin-top: 445px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: 15px;
}
.image_fotogallery_slides   {
	height: 367px;
	width: auto;
	text-align: center;
	float: center;
	margin: 0 auto  0 auto;
	vertical-align: central;
}
#image_menu {
	float: left;
	margin-top: 10px;
	width: 1045px;
	height: 145px;
	padding: 5px 0px 10px 10px;
	margin-bottom: 0px;
	border: 3px solid #FFF;
	background-color: #B8DCF6;
	box-shadow: 0px 5px 22px #000000;
	text-align: left;
}
#okvir_app_menu {
	position: absolute;
	width: 150px;
	height: 20px;
	z-index: 1;
	margin-top: 105px;
	text-align: center;
	vertical-align: middle;
	padding-top: 3px;
}
#image_menu_app1 {
	position: absolute;
	width: 155px;
	height: 135px;
	z-index: 201;
	background-color: #FFF;
	padding: 10px 10px 0px 10px;
	text-align: center;
	vertical-align: middle;
	border: 1px solid #000;
}
.image_menu_app1  {
	width:150px;
	height:auto;
	border: 2px solid #333;
	
}
#image_menu_app1 a:hover {
	filter:alpha(opacity=50);	
	opacity: 0.5;
}
#image_menu_app2 {
	position: absolute;
	width: 155px;
	height: 135px;
	z-index: 201;
	background-color: #FFF;
	padding: 10px 10px 0px 10px;
	text-align: center;
	vertical-align: middle;
	border: 1px solid #000;
	margin-left: 215px;
}

#image_menu_app2 a:hover {
	filter:alpha(opacity=50);	
	opacity: 0.5;
}
#image_menu_app3 {
	position: absolute;
	width: 155px;
	height: 135px;
	z-index: 201;
	background-color: #FFF;
	padding: 10px 10px 0px 10px;
	text-align: center;
	vertical-align: middle;
	border: 2px solid #000;
	margin-left: 425px;
}

#image_menu_app3 a:hover {
	filter:alpha(opacity=50);	
	opacity: 0.5;
}
#image_menu_app4 {
	position: absolute;
	width: 155px;
	height: 135px;
	z-index: 201;
	background-color: #FFF;
	padding: 10px 10px 0px 10px;
	text-align: center;
	vertical-align: middle;
	border: 2px solid #000;
	margin-left: 640px;
}

#image_menu_app4 a:hover {
	filter:alpha(opacity=50);	
	opacity: 0.5;
}
#image_menu_app5 {
	float: right;
	position: absolute;
	width: 155px;
	height: 135px;
	z-index: 201;
	background-color: #FFF;
	padding: 10px 10px 0px 10px;
	text-align: center;
	vertical-align: middle;
	border: 2px solid #000;
	margin-left: 855px;
}

#image_menu_app5 a:hover {
	filter:alpha(opacity=50);	
	opacity: 0.5;
}
@charset "utf-8";
#styleVillas {
}

#tlocrt_ville {
	height: 367px;
	width: 550px;
	margin-top: 742px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: 13px;
	border: 2px solid #FFF;
	position: absolute;
	-moz-box-shadow: 5px 5px 10px #033;
	-webkit-box-shadow: 5px 5px 10px #033;
	box-shadow: 5px 5px 10px #033;
	z-index: 4;
	visibility: hidden;
}

#opis_cijenik_simboli  {
	width: 555px;
	margin-top: 455px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: 13px;
	z-index: 3;
	text-align: center;
	background-color: #B8DCF6;
	position: absolute;
	background-repeat: no-repeat;
	background-position: 2px 475px;
	visibility: visible;
	height: 480px;
}

#opis_vile_vise {
	height: 20px;
	width: 580px;
	margin-top: 860px;
	margin-left: 0px;
	z-index: 3;
	position: absolute;
	visibility: visible;
}

#okvir_foto_panorama {
	position:absolute;
	width:550px;
	height:173px;
	z-index:1;
	margin-top: 885px;
	margin-right: auto;
	margin-left: 13px;
	visibility: visible;
}

#opis_simboli  {
	height: 308px;
	width: 555px;
	margin-top: 455px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: 13px;
	z-index: 3;
	text-align: center;
	background-color: #B8DCF6;
	position: absolute;
	background-repeat: no-repeat;
	background-position: bottom;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	color: #000;
	text-decoration: none;
	visibility: hidden;
}

#konoba {
	-moz-box-shadow: 10px 10px 10px #033;
	-webkit-box-shadow: 10px 5px 10px #033;
	position: absolute;
	height: 246px;
	width: 550px;
	margin-top: 860px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 15px;
	visibility: hidden;
	border: 2px solid #FFF;
	z-index: 2;
	-moz-box-shadow: 5px 5px 10px #033;
	-webkit-box-shadow: 5px 5px 10px #033;
	box-shadow: 5px 5px 10px #033;

}

#botun_cjenik_ville {
	height: 21px;
	width: 200px;
	position: absolute;
	margin-top: 25px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	visibility: visible;
}
#botun_kalendar_ville {
	height: 21px;
	width: 200px;
	position: absolute;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	visibility: visible;
}

#okvir_kalendar   {
	background-color: #DFFFFF;
	height: 385px;
	width: 550px;
	margin-top: 1140px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: 13px;
	border: 2px solid #FFF;
	position: absolute;
	text-align: center;
	z-index: 4;
	visibility: hidden;
	-moz-border-radius-topleft: 15px;
	-moz-border-radius-topright: 15px;
	-moz-border-radius-bottomleft: 15px;
	-moz-border-radius-bottomright: 15px;
	
}

#wrap #left #okvir_cjenik #cjenik tr td {
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #006;
}

#fotogallery_ville {
	position:relative;
	width:152px;
	height:21px;
	z-index:60;
	left: 400px;
	top: 410px;
}
#tabela_opis_vile {
	height: 100%;
	width: 570px;
	border:0;
	font-size:13px;
	color:#000;
	font-style: normal;
	font-family:"Arial Black", Gadget, sans-serif;
	vertical-align:50%;
	text-align:left;
	margin: 0px auto;
	border-collapse: collapse;
	text-decoration: none;
	background-color: #B8DCF6;

}

#tabela_opis_vile .rowa {
	background: #B8DCF6;
	height: 20px;
	font-style:normal;
	text-align:left;
	
}
#tabela_opis_vile .rowb {
	background: #B8DCF6;
	height: 20px;
	font-style:normal;
	text-align:left;
}
#tabela_opis_vile .cell {
	padding: 0px;
	border: 0px solid #000000;
	font-style: normal;

}

#botun_cjenik_app {
	height: 21px;
	width: 168px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 25px;
	position: absolute;
	visibility: visible;
	background-image: url(botun_strelica.png);
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 9px;
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
	letter-spacing: normal;
	vertical-align: 50%;
	word-spacing: normal;
	line-height: 20px;
	text-indent: -10%;
	-moz-box-shadow: 0px 0px 0px #0F8BCE;
	-webkit-box-shadow: 0px 0px 0px #0F8BCE;
	box-shadow: 0px 0px 0px #0F8BCE;
}
#botun_cjenik_app:hover {
	-moz-box-shadow: -3px 2px 6px #0F8BCE;
	-webkit-box-shadow: -3px 3px 6px #0F8BCE;
	box-shadow: -5px 5px 6px #0F8BCE;
	background-repeat: no-repeat;
	background-image:url(botun_strelica_rollover.png);
	border-radius: 9px;
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
}

#botun_kalendar_app {
	height: 21px;
	width: 168px;
	margin-top: 30px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 25px;
	position: absolute;
	visibility: visible;
	background-image: url(botun_strelica.png);
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 9px;
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
	letter-spacing: normal;
	vertical-align: 50%;
	word-spacing: normal;
	line-height: 20px;
	text-indent: -10%;
	-moz-box-shadow: 0px 0px 0px #0F8BCE;
	-webkit-box-shadow: 0px 0px 0px #0F8BCE;
	box-shadow: 0px 0px 0px #0F8BCE;
}
#botun_kalendar_app:hover {
	-moz-box-shadow: -3px 2px 6px #0F8BCE;
	-webkit-box-shadow: -3px 3px 6px #0F8BCE;
	box-shadow: -5px 5px 6px #0F8BCE;
	background-repeat: no-repeat;
	background-image:url(botun_strelica_rollover.png);
	border-radius: 9px;
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
}

#botun_upitnik_app {
	height: 21px;
	width: 168px;
	margin-top: 60px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 25px;
	position: absolute;
	visibility: visible;
	background-image: url(botun_strelica.png);
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 9px;
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
	letter-spacing: normal;
	vertical-align: 50%;
	word-spacing: normal;
	line-height: 20px;
	text-indent: -10%;
	-moz-box-shadow: 0px 0px 0px #0F8BCE;
	-webkit-box-shadow: 0px 0px 0px #0F8BCE;
	box-shadow: 0px 0px 0px #0F8BCE;
}
#botun_upitnik_app:hover {
	-moz-box-shadow: -3px 2px 6px #0F8BCE;
	-webkit-box-shadow: -3px 3px 6px #0F8BCE;
	box-shadow: -5px 5px 6px #0F8BCE;
	background-repeat: no-repeat;
	background-image:url(botun_strelica_rollover.png);
	border-radius: 9px;
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
}

#botun_rezervacija_app {
	height: 21px;
	width: 168px;
	margin-top: 305px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 25px;
	position: absolute;
	visibility: visible;
	background-image: url(botun_strelica.png);
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 9px;
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
	letter-spacing: normal;
	vertical-align: 50%;
	word-spacing: normal;
	line-height: 20px;
	text-indent: -10%;
	-moz-box-shadow: 0px 0px 0px #0F8BCE;
	-webkit-box-shadow: 0px 0px 0px #0F8BCE;
	box-shadow: 0px 0px 0px #0F8BCE;
}
#botun_rezervacija_app:hover {
	-moz-box-shadow: -3px 2px 6px #0F8BCE;
	-webkit-box-shadow: -3px 3px 6px #0F8BCE;
	box-shadow: -5px 5px 6px #0F8BCE;
	background-repeat: no-repeat;
	background-image:url(botun_strelica_rollover.png);
	border-radius: 9px;
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
}
#okvir_fotografije1 {
	height: 100px;
	width: 150px;
	margin-top: 15px;
	margin-right: 45px;
	margin-bottom: 0px;
	margin-left: 38px;
	border: 2px solid #FFF;
	-moz-box-shadow: 5px 5px 10px  #033;
	-webkit-box-shadow: 5px 5px 10px #033;
	box-shadow: 5px 5px 10px #033;
}

#okvir_fotografije1 a:hover {
	filter:alpha(opacity=50);	
	opacity: 0.5;
}

#okvir_fotografije2 {
	height: 100px;
	width: 150px;
	margin-top: 14px;
	margin-right: 45px;
	margin-bottom: 0px;
	margin-left: 38px;
	border: 2px solid #FFF;
	-moz-box-shadow: 5px 5px 10px #033;
	-webkit-box-shadow: 5px 5px 10px #033;
	box-shadow: 5px 5px 10px #033;
}

#okvir_fotografije2 a:hover {
	filter:alpha(opacity=50);	
	opacity: 0.5;
}

#okvir_fotografije3   {
	height: 100px;
	width: 150px;
	margin-top: 15px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	border: 2px solid #FFF;
	text-align: center;
	-moz-box-shadow: 5px 5px 10px #033;
	-webkit-box-shadow: 5px 5px 10px #033;
	box-shadow: 5px 5px 10px #033;
}

#okvir_fotografije3 a:hover {
	filter:alpha(opacity=50);	
	opacity: 0.5;
}

#okvir_fotografije3_vertikalno {
	height: 200px;
	width: 150px;
	margin-top: 15px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: 38px;
	border: 2px solid #FFF;
	text-align: center;
	-moz-box-shadow: 5px 5px 10px #033;
	-webkit-box-shadow: 5px 5px 10px #033;
	box-shadow: 5px 5px 10px #033;
}
#okvir_fotografije3_vertikalno a:hover {
	filter:alpha(opacity=50);	
	opacity: 0.5;
}

#form_rezervacija {
	background-color: #B8DCF6;
	height: 539px;
	width: 578px;
	margin-top: 988px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	border:solid #FFF 2px;
	position: absolute;
	z-index: 14;
	padding-left: 0px;
	text-align: center;
	visibility: hidden;
	-moz-box-shadow: 5px 5px 10px #033;
	-webkit-box-shadow: 5px 5px 10px #033;
	box-shadow: 5px 5px 10px #033;

}
@charset "utf-8";

.btnform {
	border: 0px; font-family: tahoma, verdana; 
	font-size: 12px; background-color: #DBEAF5; 
	width: 100%; height:18px; text-align: center; cursor: hand;
}
		
.Sun {
  font-family:verdana;
  font-size:11px;
  line-height:14px;
  width:23px;
  text-align:center;
  color:#000000;
  background-color:#dbeaf5;
  border:0px solid #f9c000;
  padding:1px;
  cursor:pointer;
}
.SunO {
  font-family:verdana;
  font-size:9px;
  line-height:14px;
  width:23px;
  text-align:center;
  color:#f0f0f0;
  background-color:#dbeaf5;
  border:0px solid #c69000;
  padding:1px;
  cursor:pointer;
}

.Sat {
  font-family:verdana;
  font-size:11px;
  line-height:14px;
  width:23px;
  text-align:center;
  color:#000000;
  background-color:#dbeaf5;
  border:0px solid #9c96cc;
  padding:1px;
  cursor:pointer;
}
.SatO {
  font-family:verdana;
  font-size:9px;
  line-height:14px;
  width:23px;
  text-align:center;
  color:#f0f0f0;
  background-color:#dbeaf5;
  border:0px solid #696399;
  padding:1px;
  cursor:pointer;
}

    .btn  a:visited, a:active
		{color: #0000aa; text-decoration: none; font-family: Tahoma, Verdana; font-size: 11px}
	.btn  a:hover
		{color: #ff0000; text-decoration: none; font-family: Tahoma, Verdana; font-size: 11px}
	   p, tr, td, ul, li
		{

}
	th
		{
	color: #000000;
}
		{background: #B8DCF6; color: #000000;}
	.intd
		{color: #000000; font-family: Tahoma, Verdana; font-size: 11px; padding-left: 15px;}
	.wcell
		{background: #000; vertical-align: top}
	.ctrl
		{
	font-family: Tahoma, Verdana, sans-serif;
	font-size: 12px;
	width: 100%;
	color: #000;
}
	.btnform
		{border: 0px; font-family: tahoma, verdana; font-size: 12px; background-color: #DBEAF5; width: 100%; height:18px; text-align: center; cursor: hand;}
	.btn
		{background-color: #DBEAF5; padding: 0px;}
	textarea, select,input
		{font: 9px Verdana, arial, helvetica, sans-serif; background-color: #DBEAF5;}
		
	/* classes for validator */
	.tfvHighlight
		{font-weight: bold; color: red;}
	.tfvNormal
		{font-weight: normal;	color: black;}

#form_registration {
	display: block;
	width: 570px;
	background-color: #B8DCF6;
}
@charset "utf-8";

#botun_cjenik_app {
	height: 21px;
	width: 168px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 25px;
	position: absolute;
	visibility: visible;
	background-image: url(botun_strelica.png);
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 9px;
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
	letter-spacing: normal;
	vertical-align: 50%;
	word-spacing: normal;
	line-height: 20px;
	text-indent: -10%;
	-moz-box-shadow: 0px 0px 0px #0F8BCE;
	-webkit-box-shadow: 0px 0px 0px #0F8BCE;
	box-shadow: 0px 0px 0px #0F8BCE;
}
#botun_cjenik_app:hover {
	-moz-box-shadow: -3px 2px 6px #0F8BCE;
	-webkit-box-shadow: -3px 3px 6px #0F8BCE;
	box-shadow: -5px 5px 6px #0F8BCE;
	background-repeat: no-repeat;
	background-image:url(botun_strelica_rollover.png);
	border-radius: 9px;
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
}

#botun_kalendar_app {
	height: 21px;
	width: 168px;
	margin-top: 30px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 25px;
	position: absolute;
	visibility: visible;
	background-image: url(botun_strelica.png);
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 9px;
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
	letter-spacing: normal;
	vertical-align: 50%;
	word-spacing: normal;
	line-height: 20px;
	text-indent: -10%;
	-moz-box-shadow: 0px 0px 0px #0F8BCE;
	-webkit-box-shadow: 0px 0px 0px #0F8BCE;
	box-shadow: 0px 0px 0px #0F8BCE;
}
#botun_kalendar_app:hover {
	-moz-box-shadow: -3px 2px 6px #0F8BCE;
	-webkit-box-shadow: -3px 3px 6px #0F8BCE;
	box-shadow: -5px 5px 6px #0F8BCE;
	background-repeat: no-repeat;
	background-image:url(botun_strelica_rollover.png);
	border-radius: 9px;
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
}

#botun_tlocrt_app {
	background-color: #B8DCF6;
	height: 21px;
	width: 168px;
	margin-top: 60px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 25px;
	position: absolute;
	visibility: visible;
	background-image: url(botun_strelica.png);
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 9px;
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
	letter-spacing: normal;
	vertical-align: 50%;
	word-spacing: normal;
	line-height: 20px;
	text-indent: -10%;
	-moz-box-shadow: 0px 0px 0px #0F8BCE;
	-webkit-box-shadow: 0px 0px 0px #0F8BCE;
	box-shadow: 0px 0px 0px #0F8BCE;
}

#botun_tlocrt_app:hover {
	-moz-box-shadow: -3px 2px 6px #0F8BCE;
	-webkit-box-shadow: -3px 3px 6px #0F8BCE;
	box-shadow: -5px 5px 6px #0F8BCE;
	background-repeat: no-repeat;
	background-image:url(botun_strelica_rollover.png);
	border-radius: 9px;
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
}

#botun_upitnik_app {
	height: 21px;
	width: 168px;
	margin-top: 90px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 25px;
	position: absolute;
	visibility: visible;
	background-image: url(botun_strelica.png);
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 9px;
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
	letter-spacing: normal;
	vertical-align: 50%;
	word-spacing: normal;
	line-height: 20px;
	text-indent: -10%;
	-moz-box-shadow: 0px 0px 0px #0F8BCE;
	-webkit-box-shadow: 0px 0px 0px #0F8BCE;
	box-shadow: 0px 0px 0px #0F8BCE;
}
#botun_upitnik_app:hover {
	-moz-box-shadow: -3px 2px 6px #0F8BCE;
	-webkit-box-shadow: -3px 3px 6px #0F8BCE;
	box-shadow: -5px 5px 6px #0F8BCE;
	background-repeat: no-repeat;
	background-image:url(botun_strelica_rollover.png);
	border-radius: 9px;
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
}

#botun_rezervacija_app {
	height: 21px;
	width: 168px;
	margin-top: 305px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 25px;
	position: absolute;
	visibility: visible;
	background-image: url(botun_strelica.png);
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 9px;
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
	letter-spacing: normal;
	vertical-align: 50%;
	word-spacing: normal;
	line-height: 20px;
	text-indent: -10%;
	-moz-box-shadow: 0px 0px 0px #0F8BCE;
	-webkit-box-shadow: 0px 0px 0px #0F8BCE;
	box-shadow: 0px 0px 0px #0F8BCE;
}
#botun_rezervacija_app:hover {
	-moz-box-shadow: -3px 2px 6px #0F8BCE;
	-webkit-box-shadow: -3px 3px 6px #0F8BCE;
	box-shadow: -5px 5px 6px #0F8BCE;
	background-repeat: no-repeat;
	background-image:url(botun_strelica_rollover.png);
	border-radius: 9px;
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
}
