﻿/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/flyout_wall.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

/* common styling */

/* set up the overall width of the menu div, the background image and the margins */
.menu {
font-family: verdana, arial, sans-serif; 
width:125px;
height:500px;
top:0px;
left:5px;
background:url("../../images/CT_Background-2.jpg.jpg");
position:absolute;
}
/* remove the bullets and set the margin and padding to zero for the unordered list and position it over the menu background image */
.menu ul {
padding:0; 
margin:0;
list-style-type: none;
position:absolute;
left:5px;
top:0px;
width:120px;
height:100px;
}
/* float the list so that the items are vertical with no gaps and their position relative so that the drop down list will appear in the right place to the right of each list item */
.menu ul li {
float:left; 
position:relative;
width:120px;
padding-bottom:5px;
}
/* style the links to be 150px wide by 50px high. place the text off screen. */
.menu ul li a, .menu ul li a:visited {
display:block; 
text-indent:-1000px; 
width:120px; 
height:30px;
text-decoration:none;
}

/* set up the background list/link images relative to this css file */

li a.map1 {background:url("../images/Home_Button.gif");}
li a.map2 {background:url("../images/FeaturesButton2.gif");}
li a.map3 {background:url("../images/Antiques_Button.gif");}
li a.map4 {background:url("../images/CTTavernWaresButton.gif");}
li a.map5 {background:url("../images/CTRepros-CandlesButton.gif");}
li a.map6 {background:url("../images/Accessories_Button.gif");}
li a.map7 {background:url("../images/Buttry_Button.gif");}
li a.map8 {background:url("../images/ReproductionsButton.gif");}
li a.map9 {background:url("../images/BellasButton.gif");}
li a.map10 {background:url("../images/Links_Button.gif");}
li a.map11 {background:url("../images/Contact_Us_Button.gif");}
li a.map12 {background:url("../images/Order_Info_Button.gif");}
li a.map13 {background:url("../images/Home_Tour_Button.gif");}
li a.map14 {background:url("../images/Shows_Button.gif");}
li a.map15 {background:url("../images/JarCandlesButton.gif");}


ul.sub1 {background:url("../images/SmallsButtons-2.gif");height:100px;}
ul.sub2 {background:url("../images/ReprosButtons-3.gif");height:100px;}
ul.sub3 {background:url("../images/TavernButtons-2.gif");height:100px;}

ul.sub4 {background:transparent url("../../map/sub4.jpg");}
a.sub1a {background:url("../images/Smalls_Button.gif");}
a.sub1b {background:url("../images/Smalls2_Button.gif");}
a.sub1c {background:url("../images/Smalls3_Button.gif");}

a.sub2a {background:url("../images/Reproductions1Button.gif");}
a.sub2b {background:url("../images/Reproductions2Button.gif");}

a.sub3a:hover {background:url("../images/CT_Tavern1Button.gif");}
a.sub3b:hover {background:url("../images/CT_Tavern2Button.gif");}

a.sub3c:hover {background:transparent url("../../map/sub3c.jpg");}
a.sub4a:hover {background:transparent url("../../map/sub4a.jpg");}
a.sub4b:hover {background:transparent url("../../map/sub4b.jpg");}
a.sub4c:hover {background:transparent url("../../map/sub4c.jpg");}

/* make the dropdown ul invisible */
.menu ul li ul {
visibility:hidden;
}

/* specific to non IE browsers */

/* make the sub menu ul visible and position it to the right of the main menu list item */
.menu ul li:hover ul {
visibility:visible;; 
position:absolute; 
top:0; 
left:120px; 
width:120px;
height:65px;
}

/* style the size of the submenu links */
.menu ul li:hover ul li a {
display:block; 
width:120px;
height:30px;
}


