@charset "UTF-8";

/* SpryAccordion.css - version 0.4 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main Accordion container. For our default style,
 * we draw borders on the left, right, and bottom. The top border of the Accordion
 * will be rendered by the first AccordionPanelTab which never moves.
 *
 * If you want to constrain the width of the Accordion widget, set a width on
 * the Accordion container. By default, our accordion expands horizontally to fill
 * up available space.
 *
 * The name of the class ("Accordion") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * Accordion container.
 */
.Accordion {

	overflow: hidden;
}

/* This is the selector for the AccordionPanel container which houses the
 * panel tab and a panel content area. It doesn't render visually, but we
 * make sure that it has zero margin and padding.
 *
 * The name of the class ("AccordionPanel") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel container.
*/
.AccordionPanel {
	margin: 0px;
	padding: 0px;
}


/* This is the selector for the AccordionPanelTab. This container houses
 * the title for the panel. This is also the container that the user clicks
 * on to open a specific panel.
 *
 * The name of the class ("AccordionPanelTab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel tab container.
 *
 * NOTE:
 * This rule uses -moz-user-select and -khtml-user-select properties to prevent the
 * user from selecting the text in the AccordionPanelTab. These are proprietary browser
 * properties that only work in Mozilla based browsers (like FireFox) and KHTML based
 * browsers (like Safari), so they will not pass W3C validation. If you want your documents to
 * validate, and don't care if the user can select the text within an AccordionPanelTab,
 * you can safely remove those properties without affecting the functionality of the widget.
 */
.AccordionPanelTab {
	
	margin: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	height: 50px;
	padding-top: 9px;
	padding-right: 2px;
	padding-bottom: 9px;
	padding-left: 2px;
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #CCC;
}
.AccordionPanelTab1 {
	margin: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	height: 12px;
	padding-top: 10px;
	padding-right: 2px;
	padding-bottom: 9px;
	padding-left: 14px;
	border-top-width: 2px;
	border-top-style: none;
	border-top-color: #CCC;
	font-family: Arial, Helvetica, sans-serif;
	color: #000;
	background-color: #F5F5F5;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-bottom-style: solid;
	border-right-color: #CCC;
	border-bottom-color: #CCC;
	border-left-color: #CCC;
}

/* This is the selector for a Panel's Content area. It's important to note that
 * you should never put any padding on the panel's content area if you plan to
 * use the Accordions panel animations. Placing a non-zero padding on the content
 * area can cause the accordion to abruptly grow in height while the panels animate.
 *
 * Anyone who styles an Accordion *MUST* specify a height on the Accordion Panel
 * Content container.
 *
 * The name of the class ("AccordionPanelContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel content container.
 */
.AccordionPanelContent {
	overflow: auto;
	display: none;
	margin: 0px;
	width: 725px;
	height: 250px;
	padding-top: 7px;
	padding-right: 0px;
	padding-bottom: 7px;
	padding-left: 0px;
	font-size: 11px;
	background-color: #F5F5F5;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-bottom-style: solid;
	border-right-color: #CCC;
	border-bottom-color: #CCC;
	border-left-color: #CCC;
}

.AccordionPanelContent1 {
	overflow: auto;
	margin: 0px;
	height: 280px;
	padding-top: 7px;
	padding-right: 0px;
	padding-bottom: 7px;
	padding-left: 0px;
	font-size: 11px;
}
/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "AccordionPanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the Accordion.
 */
.AccordionPanelOpen .AccordionPanelTab {
	background-color: #EEEEEE;
	
}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.AccordionPanelTabHover {
	background-color: #CCC;
}
.AccordionPanelOpen .AccordionPanelTabHover {
		background-color: #CCC;

}

/* This is an example of how to change the appearance of all the panel tabs when the
 * Accordion has focus. The "AccordionFocused" class is programatically added and removed
 * whenever the Accordion gains or loses keyboard focus.
 */
.AccordionFocused .AccordionPanelTab {
	
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open when the Accordion has focus.
 */
.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
	
}

#adv2 {
  width:650px;

}
#adv2 ul {
	display:block;
	float:left;
	margin: 0px;
	padding: 0px;	
}
#adv2 li {
	float:left;
	list-style-type: none;
}
#adv2 li a {
	display:block;
	height:25px;
	
	line-height:26px;
	text-decoration:none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #333;
	text-align: left;
	padding-left: 9px;
	padding-right: 9px;
}
#adv2 li a:hover {
	color: #000;
	background-color: #CCC;
}
#adv2 li a.selected {
	color:#FFF;
	font-weight:bold;
	background-color: #900;
}

#adv2 span {
  height:50px;
  display:block;
  line-height:45px;
  width:650px;
  float:right;

}

#adv3 a {
  color:snow;
  font-size:2em;
  font-weight:bold;
  text-decoration:none;
  margin:6px;
}
#adv3 a:hover { color:#68D; }
#adv3 p {
  color:#888;
  margin:5px;
  font-style:italic; 
}
#adv3 p a {
  margin:0;
  color:#CCC;
  font-size:1em;
  font-weight:bold;
  text-decoration:underline;
}
#adv3 p a:hover { color:#FFF; }

#message {
  margin:10px auto;
  border:6px solid #222;
  width:240px;
  height:40px;
  font-size:1.3em;
  line-height:2em;
  color:#FC4;
}

.media_header1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	line-height: normal;
	padding-top: 10px;
	padding-bottom: 5px;
}

.media_sub {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333;
	line-height: normal;
	padding-top: 3px;
	padding-right: 3px;
	padding-bottom: 6px;
}

#container_media {
	width: 200px;	
}

#container_media ul {
		
}

#container_media li {
	
	list-style-type: none;		
}

#nav a, #nav a:active, #nav a:visited {
	float:left;
	color:#666;
	text-decoration:none;
	outline:none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding-top: 5px;
	padding-left: 0px;
	padding-right: 0px;
	padding-bottom: 10px;
	margin-left: 0px;
	margin-right: 0px;
	margin-top: 7px;
	width: 123px;
	height: 38px;
	background-image:url(../images/layout/wizboxtop.jpg);
	background-repeat: no-repeat;
	}
#nav a.selected, #nav a.selected:active, #nav a.selected:visited {
	width: 123px;
	height: 38px;
	background-image:url(../images/layout/wizboxtop2.jpg);
	background-repeat: no-repeat;
	/*background-position: 0px 0px;*/
	color:#9D0B15;
	/*font-weight: bold;*/
	text-decoration:none;
	outline:none;
	}
	
	
	
	
	
#navbg {
	background-image: url(../images/layout/wiztopbar.jpg);
	background-repeat: no-repeat;
	width: 738px;
	height: 40px;
	}	
	
#nav1 a.selected, #nav1 a.selected:active, #nav1 a.selected:visited {
	color:#CC0000;
	text-decoration:none;
	outline:none;
	background-color: #333;
	font-weight: bold;
	}
.hiddencontent {
	background-image: url(../images/layout/wiz_contbgexp.jpg);
	background-repeat: no-repeat;
/*	padding-top: 50px;*/
	padding-bottom: 5px;
	padding-left: 7px;
	padding-right: 12px;
	margin-left: 15px;
	width: 720px;
	height: 1620px;
	display:none;
	/*background-color: #F8F8F8;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCC;*/
	}

.hiddencontentpdf {
/*	background-image: url(../images/layout/Downloadpackpdficon.jpg);
	background-repeat: no-repeat;*/
	float: right;
	padding-top: 12px;
	/*background-color: #F8F8F8;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCC;*/
	}
.hiddencontentsum{
/*	background-image: url(../images/layout/Downloadpackpdficon.jpg);
	background-repeat: no-repeat;*/
	float: left;
	padding-top: 14px;
	/*background-color: #F8F8F8;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCC;*/
	}
	
	
#packcontlist ul {
	list-style-type:none;

}

#packcontlist li {
	background-image: url(../images/layout/contlistbgactive1.jpg);
	margin-left: 0px;
	width: 725px;
	height: 31px;
	background-position: center;
	padding-top: 5px;
	color: #000000;
	list-style-type: none;
	list-style: none;

}
	
.packcontlist {
	background-image: url(../images/layout/contlistbgactive1.jpg);
	margin-left: 0px;
	width: 725px;
	height: 31px;
	background-position: center;
	padding-top: 5px;
	color: #000000;
	}
	
	.packcontlistalt {
	background-image: url(../images/layout/contlistbgactive2.jpg);
	margin-left: 0px;
	width: 725px;
	height: 31px;
	background-position: center;
	padding-top: 5px;
	color: #000000;
	}
	
.packcontlistinactive {
	background-image: url(../images/layout/contlistbginactive1.jpg);
	margin-left: 0px;
	width: 725px;
	height: 31px;
	background-position: center;
	padding-top: 5px;
	color: #666666;
	}
	
.packcontlistinactive2 {
	background-image: url(../images/layout/contlistbginactive2.jpg);
	margin-left: 0px;
	width: 725px;
	height: 31px;
	background-position: center;
	padding-top: 5px;
	color: #666666;
	}	
	
/*Urban grey */	
.urbangreymenu{
width: 725px; /*width of menu*/
}

.urbangreymenu .headerbar{
background-image: url(../images/layout/contlistbgactive1.jpg);
	margin-left: 0px;
	width: 725px;
	height: 36px;
	background-position: center;
	padding-top: 12px;
	color: #000000;
}

/*.urbangreymenu .headerbar a{
text-decoration: none;
color: white;
display: block;
}*/

.urbangreymenu ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
	margin-bottom: 10px; /*bottom spacing between each UL and rest of content*/
	margin-top: 10px;
	padding-left: 0px;
	padding-right: 0px;
	margin-left: 50px;
	margin-right: 70px;
}

.urbangreymenu ul li{
padding-bottom: 2px; /*bottom spacing between menu items*/
}

/*.urbangreymenu ul li a{
font: normal 12px Arial;
color: black;
background: #E9E9E9;
display: block;
padding: 5px 0;
line-height: 17px;
padding-left: 8px; /*link text is indented 8px
text-decoration: none;
}*/

/*.urbangreymenu ul li a:visited{
color: black;
}*/

/*.urbangreymenu ul li a:hover{ hover state CSS*/
/*color:#9D0B15;
background-image: url(../images/layout/bookbtn2.jpg);
}	*/

/*Urban grey */ 

#packbox {
	float: left;
	background-image:url(../images/layout/wizdetails_bg2.jpg);
	background-repeat: no-repeat;
	width: 398px;
	height: 199px;
	padding-bottom: 16px;
	padding-top: 10px;
	padding-left: 10px;
	padding-right: 5px;
	margin-left: 20px;
	margin-right: 0px;
	}
	
#packbox h2 {
font-size: 14px;
color:#9D0B15;
margin-right: 30px;
}

#packbox a{
font-size: 12px;
color:#333333;
font-weight: bold;
/*margin-right: 30px;*/
}

#packbox a:hover {
font-size: 12px;
color:#9D0B15;
margin-right: 30px;
}
.bookbtn {
	background-image: url(../images/layout/bookbtn1.jpg);
	width: 130px;
	height: 35px;
	background-repeat: no-repeat;
	padding-top: 10px;
	}

.upgradenull {
	background-image: url(../images/layout/bookbtn1.jpg);
	width: 130px;
	height: 35px;
	background-repeat: no-repeat;
	padding-top: 10px;
	color:#CCCCCC;
	}
.cost {
	color:#9D0B15;
	font-size: 12px;
	font-weight: bold;
	}
.clear {
	clear:both;
	}
