/* ================================================================ 
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/menu/balloons.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.

The method is based on my drop-down and flyout menus whereby Internet Explorer can be made to recognise nested links by using tables.

Hover the mouse over any of the web pages to see a pop-up information box with the site name and a snippet of information. Also included are three links from the particular web site.

Non IE browsers are able to use the li:hover styling to show the pop-up balloon but IE is limited to using a:hover. Conditional comments are used to feed the nested links to IE5.5 and IE6.

IE7 beta 2 recognises li:hover so it is excluded from the conditional comments.

This works in IE5.5, IE6, IE7 beta X, Firefox, Opera etc.
=================================================================== */
 
 /* common styling */
 /*----------------------------BOX-------------------------------------*/
 
.balloon { /*This is the image or text BOX which mouseover makes the popup show */
	float: left;
	width:140px;    /*     BOX    size           */
	height:220px;
	background-color: #FFF;
	background-image: url(graphics/littlestuff/line_hLf_gray.gif);
	background-repeat: repeat-y;
	text-decoration: none;
	letter-spacing: 0.1em;
	padding-top: 0px;
	padding-right: 3px;
	padding-bottom: 4px;
	padding-left: 3px;
	margin: 0px 1px 0px 0px;
	overflow: hidden;
	display: block;
	border-top: 0px none;
	border-right: 0px none;
	border-bottom: 0px none #0000CC;
	border-left: 0px none;
}
.balloon ul {
	padding:0;
	margin:0;
	list-style-type: none;
	width: 120px;
	overflow: hidden;
}


			/* OUTER BOX for UL text under the pic - a link to the popup*/
.balloon ul li a , .balloon ul li a:hover, .balloon ul li a:visited {
	display:inline;
	text-decoration:none;
	color:#333333;
	font-size: 0.9em;
	font-weight: bold;
	text-transform: uppercase;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	line-height: 114%;
	letter-spacing: 0.4em;
	text-align: right;
	word-spacing: 0.3em;
	padding: 0px;
	margin: 0px;
}
.balloon ul li a img, .balloon ul li a:visited img {
	padding: 0px;
	float: left;
	margin-top: 0px;
	margin-left: 20px;
	margin-right: 8px;
	text-align: right;
}
               /* ------------------------- POPUP ------------------------------ */
.balloon ul li dl {/*DL, DD and DT below are the POPUP containers. DL - container; DT - main text; DD - subText. Baloon_orig has the code for rounded corners and an attached "balloon pointer"*/
	visibility:hidden;
	position:absolute;
	left: -1000px;
	top: -1350px;
}

.balloon dl {
	width:300px;
	background:transparent url(graphics/xxxxx.gif) no-repeat bottom left;
	height:auto;
}
.balloon dt {/*-----------------popup main text properties-----------------------*/
	font-size:0.9em;
	font-weight:bold;
	color: #000;
	background:transparent url(graphics/xxxxxxxxx.gif) no-repeat top left;
	text-align:left;
	padding-top: 2px;
	padding-right: 3px;
	padding-bottom: 2px;
	padding-left: 4px;
	font-style: normal;
}          /*-------------------popup SUBTITLE AT BOTTOM "a wem video" --------------------*/
.balloon #web1 {
	z-index: 2222222;
}

.balloon dd {
	color:#990000;
	font-size:1em;
	font-family: "Times New Roman", Times, serif;
	font-style: italic;
	text-transform: lowercase;
	width:117px;
	padding-bottom: 4px;
	background-image: url(graphics/backgrounds/gradients/bg_cprBarOrig.gif);
	text-align: center;
	margin-top: 3px;
	margin-right: 2px;
	margin-bottom: 0px;
	margin-left: 0px;
	height: 12px;
	background-repeat: no-repeat;
	width: 100%;z-index: 500000;
}
	
/* specific to non IE browsers and IE7 first with IE5.5 and IE6 second */
.balloon ul li:hover,
.balloon ul li a:hover {
	color:#993300;
	position:relative;
	cursor: pointer;
	cursor:hand;
	z-index: 500;
}

.balloon ul li:hover dl,
.balloon ul li a:hover dl {/*-------------Balloon POPUP properties-------------------*/
	visibility:visible;
	color:#000;
	top:0px;/*-------position of the popup -------------*/
	left:-100px;
	cursor:default;
	float: left;
	z-index: inherit;
	font-size: 1.1em;
	line-height: 1.2em;
	font-style: normal;
	border: 6px dashed #FFCC00;
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: 0.1em;
	background-color: #FFFFCC;
	background-repeat: repeat-y;
	padding: 3px 1px 1px;
	background-position: 1px;
}
.balloon ul li:hover dl a:hover,
.balloon ul li a:hover dl a:hover {
text-decoration:none;
background:transparent;
}
#web1 a {/* ----------------------The Go button in the Popup-----------------------*/
	display: inline;
	margin: 0px;
	visibility: visible;
	text-decoration: none;
	padding-top: 0px;
	padding-right: 14px;
	padding-left: 4px;
	padding-top: 3px;
	font-size: 1em;
	font-weight: bold;
	letter-spacing: 0.1em;
	background-image: url(graphics/littlestuff/arrow_rt.gif);
	float: right;
	height: 16px;
	width: 25px;
	position: relative;
	top: -5px;
}


.iconVideo {
	text-decoration: none;
	border-right-width: 3px;
	border-bottom-width: 3px;
	border-left-width: 3px;
	border-right-style: ridge;
	border-bottom-style: ridge;
	border-left-style: ridge;
	border-bottom-color: #FFFF66;
	border-left-color: #CC0000;
	border-right-color: #00CC66;
	margin-top: 0px;
	margin-bottom: 3px;
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 1px;
	padding-left: 2px;
	letter-spacing: 0.1em;
	margin-right: auto;
	margin-left: auto;
}

