/* main body style */
body {
	background: #FFFFFF;
	color: #000000;
	font-family: Tahoma, Verdana, sans-serif;
	font-size: 11px;
	margin: 0px;
}

/* styling for block elements */
td, th, div, select, textarea, input {
	font-family: Tahoma, Verdana, sans-serif;
	font-size: 11px;
}

/* remove border from linked images */
a img {
	border: 0px;
}

/* link classes 
Note 1: we only specify anything that changes from the base class in 
all other classes 
Note 2: we only specify individual styles for the pseudo classes 
e.g. (A:link, A:hover etc.) if styling these differently 
*/
a, a.pn-normal {
	color: #0000FF;
	font-size: 11px;
	text-decoration: underline;
	background: none;
}
a.pn-pagetitle, h1 a {
	font-size: 16px;
	font-weight: bold;
}
a.pn-title, h2 a {
	font-size: 14px;
	font-weight: bold;
}
a.pn-sub {
	font-size: 12px;
}
a.pn-logo {
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 3px;
	text-decoration: none;
}

/* postnuke specific classes */
.pn-logo {
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 3px;
}
.pn-logo-small {
	font-size: 13px;
	font-weight: bold;
}
.pn-pagetitle, h1 {
	font-size: 16px;
	font-weight: bold;
	text-align:center;
}
.pn-title, h2 {
	font-size: 14px;
	font-weight: bold;
	text-align:center;
}
.pn-normal {
	color: #000000;
	font-size: 11px;
	text-decoration: none;
}
.pn-sub {
}
.pn-statusmsg {
	color: Red;
	font-style: italic;
}
/* news styles */
.pn-storytitle {
	font-size: 11px;
	font-weight: bold;
	letter-spacing: 3px;
}

/* block styles */
.sideblock {
	width: 150px;
	padding:1px;
	border: 1px solid #000; 
}
.centerblock {
	padding: 0px;
	border: 1px solid #000;
}

/* styles for legacy opentable functions */
.box1{
	border:1px #cccccc solid;
	padding:8px;
	margin-bottom:5px;
}
.box2{
	border:1px #cccccc solid;
	padding:8px;
	margin-bottom:5px;
	text-align:center;
}

/* styling for lists */
ul {
	margin-left: 1em; 
	padding-left: 1em; 
	text-indent: 0em;
}

.title1 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #3caf42;
	font-size: 14px;
}

.title2 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #298BFF;
	font-size: 14px;
}

.title3 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #749289;
	font-size: 14px;
}

.title4 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #ECA427;
	font-size: 12px;
}

.title5 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #749289;
	font-size: 14px;
}

td.especial {
	border-style: solid;
}

tr.especial {
	border-style: solid;
}

a.info_tienda {
    position: relative; /*this is the key*/
    z-index: 24;
	text-decoration:none;
}

a.info_tienda:hover {
	z-index: 25;
}

a.info_tienda span {
	display: none;
}

a.info_tienda:hover span { /*the span will display just on :hover state*/
    display: block;
    position: absolute;
    top: 2em; left: 2em; width: 15em;
    border: 1px solid #000000;
    background-color: #ffffff;
	color:#000000;
}