/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, form,{
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}
ul{
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
} 
li{
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	color: #2c2c2e;
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	line-height: normal;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
	background-color: #FCEBF2;
	max-width: 100%;
}
/* It is common to set printer friendly styles such as a white background with black text. */


/* Commonly used to style page titles. */
h1 {
	color: #660099;
	font-size: x-large;
	font-weight: bold;
	font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
	margin-bottom: 10px;
	margin-top: 10px;
	text-transform: capitalize;
}
/* Commonly used to style section titles. */
h2 {
	color: #660099;
	font-size: 14px;
	font-weight: bold;
	line-height: 14px;
	font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
}

/* Sets the style for unvisited links. */
a,  a:link {
  color: #dd545e;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #dd545e;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #ff0000;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #c8314b;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #761b36;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	background-color: #fff; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border: 1px solid #CCCCCC;
}
input {
  margin: 0;
  padding: 0;

  }
  
form {
	margin-bottom: 5px;
	margin-top:15px;
}
#outerWrapper #header {
	background-color: #653366;
	background-image: url("../images/hypnotherapy-help.jpg");
	background-repeat: no-repeat;
	border-bottom: solid 1px #667f45; /* Sets the bottom border properties for an element using shorthand notation */
	font-size: 18px;
	font-weight: bold;
	height: 113px;
	line-height: 15px;
	padding: 0px;
	overflow: hidden;
}
#outerWrapper #contentWrapper {
	background-color: #fff;
	clear: both;
	float: none;
	height: auto;
}
#outerWrapper #contentWrapper #leftColumn1 {
	background-color: #f7f9dd;
	float: left;
	width: 191px;
	border-bottom: solid 1px #9db368;
}
#outerWrapper #contentWrapper #leftColumn2 {
	text-align:center;
	float: left;
	width: 190px;
	/*border-bottom: solid 1px #9db368;
	border-right: solid 1px #9db368;*/
	z-index: 2;
	height:auto;
	position: relative;
	background-color: #FFFFFF;
}
#outerWrapper #contentWrapper #rightColumn1 {
	float: right;
	width: 190px;
	text-align: left;
	position: relative;
	height: auto;
	/*border-left: solid 1px #9db368;*/
	z-index: 10;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	margin-top: 0;
	margin-right: 180px;
	margin-bottom: 0px;
	margin-left: 180px;
	background-color:#FFFFFF;
	z-index: -20;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: both;
  display: block;
}

.headPanels {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	padding: 5px;
	background-image: url(../images/barimage.jpg);
	color:#660099;
	margin-bottom: 10px;
	background-repeat: repeat-x;

}
.linkHeads{
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	padding: 5px;
	background-image: url(../images/barimage.jpg);
	color:#660099;
	margin-bottom: 10px;
	background-color: #FFFFFF;
}
#outerWrapper #contentWrapper #content .bodytext {
	padding: 0 20px 20px;
	z-index: 0;
}

#outerWrapper #contentWrapper #content .bodytext h2 {
	font-size:large;
	line-height: normal;
}

#outerWrapper #contentWrapper #content .bodytext h3 {
	color: #C17E00;
	font-size:14px;
}

#outerWrapper #contentWrapper #content dt {
	color: #C17E00;
	padding-top: 10px;
	list-style-type: decimal;
	padding-bottom: 5px;
	font-weight: bold;
}

.PanelContent {
	line-height: 18px;
	margin: 10px;
}
#outerWrapper #contentWrapper #content #ukLink-container .contact{
	padding-right: 20px;
	padding-left: 20px;
	line-height: 24px;
	font-size: 14px;
}
#outerWrapper #contentWrapper #content #ukLink-container .contact td {
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 30px;
}
#outerWrapper #contentWrapper #content #ukLink-container .contact th {
	padding-top: 15px;
	padding-bottom: 5px;
	text-align: left;
}

#outerWrapper #contentWrapper #content #Uk-links {
	height: 0px;
	overflow: hidden;
}

#outerWrapper #contentWrapper #content #Canada-links {
	height: 0px;
	overflow: hidden;
}
#outerWrapper #contentWrapper #content #eire-links {
	height: 0px;
	overflow: hidden;
}
#outerWrapper #contentWrapper #content #Us-links {
	height: 0px;
	overflow: hidden;
}
#outerWrapper #contentWrapper #content #Australia-links {
	height: 0px;
	overflow: hidden;
}
.shoptext{
	color:#660099;
	}
.links{
	margin-bottom: 10px;
	background-color: #FFFFFF;
}
#outerWrapper #contentWrapper #content .bodytext #shopLinks h2 {
	font-size: 14px;
	color: #C17E00;
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 20px;
	margin-bottom: 0px;
}
#outerWrapper #contentWrapper #content .bodytext  #shopLinks p {
	color: #660099;
	margin: 0px;
	padding: 0px;
}
.telephone {
	font-weight: bold;
	color: #FF0000;
	font-size: 14px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#outerWrapper #contentWrapper #content img {
	margin-right: 10px;
	float: none;
}
.tel {
	font-weight: bold;
	color: #FF0000;
	font-size: 14px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.brightRed {
	font-weight: bold;
	color: #dd545e;
}
#outerWrapper #contentWrapper #content .bodytext #team a {
	font-size: 16px;
	margin-left: 40px;
}
#outerWrapper #contentWrapper #content .bodytext #team h2 {
	margin-top: 30px;
	margin-bottom: 10px;
}

#outerWrapper #contentWrapper #content .bodytext #questions dt {
	font-weight: bold;
	text-transform: capitalize;
	color: #660099;
}
#outerWrapper #contentWrapper #content .bodytext p {
	line-height: normal;
	font-family: Arial, Helvetica, sans-serif;
}
#outerWrapper #contentWrapper #content .bodytext #questions dd {
	margin-top: 3px;
	margin-bottom: 20px;
	line-height: normal;
}

#outerWrapper #contentWrapper #content .bodytext #alpha li {
	margin-bottom: 15px;
}
.siloLinks{
	text-align:left;
	padding: 5px;

}
#outerWrapper #contentWrapper #content .bodytext .OtherLinks li {
	margin-bottom: 15px;
}
.contact h2 {
	font-size: 16px;
	margin: 0px;
	padding: 0px;
	line-height: 30px;
}
.contact p {
	font-size: 14px;
	margin: 0px;
	padding: 0px;
	line-height: 30px;
}

.contact img {
	margin-left: 30px;
}
.contact .button {
	margin-left: 30px;
}

.contact .member {
	background-color:#ddddFF;
	padding: 5px;
	padding: 0px 10px 10px 10px;
}
.memberHeads{
	font-size: 14px;
	font-weight: bold;
	text-align: left;
	background-image: url(../images/barimage.jpg);
	color:#C17E00;
	padding-left: 10px;
}
#closepanel {
	color: #FF0000;
	float: right;
	padding-top: -15px;
}
.closePanel {
	padding-right:5px;
	text-align:right;
	font-size: 12px;
	color: #FFFFFF;
	background-color: #999;
	z-index: 20;
}
.menuOptions img {
	margin-top: 0px;
	margin-left: 10px;
	margin-right: 5px;
}
.menuOptions h2 {
	font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
	font-size: medium;
	margin-bottom: 10px;
}
.menuOptions h3 {
	font-size: 12px;
	margin: 0px;
}
#locationControl{
	background-image:url(../images/international-hypnotherapy-1.jpg);
	background-position:10px;
	background-repeat:no-repeat;
	height:auto;
	position: static;
	width:190px;
	z-index: 0;
	overflow:visible;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 40px;
	padding: 0px;
	top: 175px;
}
.detailsBox{
	 margin-top:5px;
	 margin-bottom:10px;
	 border-bottom:#CCCCCC 1px solid;
	 padding-bottom: 5px;
}
#contactMaskBox {
	/*background-color: #FF0000;*/
	overflow: hidden;
	position: absolute;
	height: auto;
	width: 230px;
	margin: 0px;
	padding: 0px;
	top: 0px;
	right: 0px;
}
#outerWrapper #contentWrapper #content dd {
	margin: 0px;
	padding: 0px;
}
#menu01 {
	position: absolute;
	width: 177px;
	top: 0px;
	left: 240px;
	height: 331px;
	z-index:10;
}
#menu02 {
	position: absolute;
	width: 177px;
	top: 0px;
	left: 240px;
	height: 331px;
	z-index:9;
}
#menu03 {
	position: absolute;
	width: 177px;
	top: 0px;
	left: 240px;
	height: 331px;
	z-index:8;
}
#menu04 {
	position: absolute;
	width: 177px;
	top: 0px;
	left: 240px;
	height: 331px;
	z-index:7;
}
#menu05 {
	position: absolute;
	width: 177px;
	top: 0px;
	left: 240px;
	height: 331px;
	z-index:6;
}
.menuControl {
	position:absolute;
	left: -59px;
	top: 165px;
	cursor: pointer;
	width: 58px;
	z-index:1;
}
.menuOptions {
	position:relative;
	top: 0px;
	left: -1px;
	font-size: 12px;
	width: 155px;
	background-color: #fff;
	border: 1px solid #ccc;
	height: 380px;
	z-index: 100;
	overflow: hidden;
}
.ukLocationOld {
	background-color: #ffffff;
	background-image: url("../images/tab.gif");
	background-repeat: no-repeat;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	margin: 0px;
	height: 30px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 0px;
	padding-left: 5px;
}
#locationWrapper {
	position: absolute;
	left: 0px;
	top: 20px;
	background-color: #ffffff;
	height: 600px;
	overflow: hidden;
	width: 151px;
	z-index: 10;
}
.clinic {
	position: relative;
	top: 0px;
	height: 0px;
	overflow: hidden;
	padding-left: 5px;
	font-size: 14px;
	margin: 0px;
}
.closePanel {
	position: relative;
	top: -2px;
	padding-right: 5px;
	text-align: right;
	font-size: 12px;
	color: #FFFFFF;
	background-color: #999;
	z-index: 20;
}
.location-clear{
	position:absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	width:100%;
}
.location-tinted{
	position:absolute;
	top: 0px;
	left: 0px;
	margin-left: -3px;
	margin-top: -3px;
	height: 100%;
	width:100%;
	background-color: black;
	filter: alpha(opacity=75);
	opacity: 0.75; 
}

#biogPanel{
	position: absolute;
	width: 800px;
	background-color:#ffffff;
	margin-top: 10px;
	z-index: 1000;
	display: none;
	text-align:left;
	border: #000000 thin inset;
	clear: both;
	float: none;
}

#issuesPanel{
	position: absolute;
	width: 740px;
	height: 510px;
	background-color:#ffffff;
	z-index: 1000;
	display: none;
	text-align:left;
	border: medium outset #999;
	float: none;
	clear:both;
	padding:0px;
	overflow:visible;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
}

#cover{
	position: fixed;
	width: 100%;
	height: 100%;
	z-index:100;
	display: none;
	background-color: #000;
	opacity: .10;
	filter: progid:DXImageTransform.Microsoft.BasicImage(opacity=.25);
	top: 0px;
	left: 0px;
}
.slideControl {
	float:right;
	color: red;
}
.scrollBiog {
	height: 380px;
	overflow: auto;
	top: 14px;
	position: relative;
	padding: 10px;
	border: black 1px solid;
}
.menuContact{
	position:relative;
	padding-top:5px; 
	padding-bottom:10px; 
	border-bottom:#CCCCCC 1px solid;
	z-index:8000;
}
h4 {
	font-size: small;
	color: #2c2c2e;
}
.infoText {
	position: absolute;
	top:0px;
	left:0px;
	padding: 0px;
	width: 100%;
	margin: 0px;
	height: 190px;
	vertical-align:middle;
	overflow:auto;
	background:none;
}
h5 {
	color: #660099;
	font-size: small;
	margin-top: 10px;
	font-weight: bold;
}
#outerWrapper #topMenu .topMenuItem {
	float: left;
	background-image: url(../images/topTab.gif);
	background-repeat: no-repeat;
	background-position: right top;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	padding-top: 4px;
	padding-right: 10px;
	padding-bottom: 4px;
	padding-left: 4px;
	cursor: auto;
}
#outerWrapper #topMenu {
	margin:0px;
	padding:0px;
	height:25px;
}
#outerWrapper #topMenu #siloLinksHead {
	width: 200px;
	position: absolute;
	top: 25px;
	left: 0px;
	text-align: left;
	background-color:#FFFFFF;
	height:0px;
	overflow:hidden;
	border: 0;
	z-index:56000;
}
	
#outerWrapper #topMenu #topMenuItem1 #siloLinksHead a {
	font-size: 12px;
	font-weight: normal;
	line-height:normal;
}
#outerWrapper #topMenu #topMenuItem1 #siloLinksHead a hover {
	font-size: 12px;
	font-weight: normal;
	line-height:normal;
	color:#FF0000;
}

#outerWrapper #topMenu #topMenuItem1 #siloLinksHead li {
	border:#CCCCCC 1px solid;
	width: 100%;
	background-color: #dddddd;
	color:#dd545e;
	padding:3px;
}
#outerWrapper #topMenu #topMenuItem1 #siloLinksHead div {
border:#CCCCCC 1px solid;
	width: 100%;
	background-color: #dddddd;
	color:#dd545e;
	padding:3px;
	width: 190px;
}
#outerWrapper #topMenu  a{
	color:#660099;
}

#issuesList {
	position: relative;
	left: 10px;
	top: 0px;
	width: 240px;
	border: 1px #444444 solid;
	height: 314px;
}

#issuesMenu{
	position: relative;
	left: 260px;
	top: -316px;
	width: 470px;
	border: 1px #444444 solid;
	height: 314px;
	overflow: hidden;
}
#issuesMenu ul{
	margin: 0px;
	vertical-align: top;
}

#issuesMenu a{
	font-weight:normal;
	text-transform: capitalize;
}

#issuesPanel ul {
	line-height:30px; 
	list-style-image: url(../images/pointer.gif); 
	color:#660099; 
	font-size:14px; 
	vertical-align:top;
	margin-left: 25px;
}

.headLinkList{
	line-height:30px;
	list-style-image: url(../images/pointer.gif);
	color:#660099;
	font-size:14px;
	margin: 0px;
	padding: 0px;
	text-indent: 0px;
}

#issuesListContent{
	width: 100%;
	overflow: auto;
	height:314px;
}
#aboutPanel{
	position: absolute;
	width: 255px;
	background-color:#eeeeee;
	z-index: 1000;
	text-align:left;
	border: #cccccc 1px solid;
	display: none;
	clear: both;
	float: none;
	left: 242px;
	top: 24px;
	padding-top:15px;
}

#testPanel{
	position: absolute;
	width: 740px;
	background-color:#ffffff;
	margin-top: 10px;
	z-index: 1000;
	display: none;
	text-align:left;
	border: #000000 thin inset;
	clear: both;
	float: none;
}

#testPanelInner{
	margin: 0 10px 10px;
	padding: 10px;
	height: 370px;
	overflow: auto;
	border: 1px #444444 solid;
}

#aboutPanel a{
	font-weight:normal;
	text-transform: capitalize;
}

#aboutPanel ul{
	margin-left: 25px;
	valign: top;
}
#infoPanel{
	position: absolute;
	width: auto;
	background-color:#eeeeee;
	z-index: 1000;
	text-align:left;
	border: #cccccc 1px solid;
	display: none;
	clear: both;
	float: none;
	left: 350px;
	top: 24px;
	padding:10px;
}
#infoPanel a{
	font-weight:normal;
	text-transform: capitalize;
}

#infoPanel ul{
	margin-left: 15px;
	valign: top;
}

#trainingPanel{
	position: absolute;
	width: 276px;
	background-color:#eeeeee;
	z-index: 1000;
	text-align:left;
	border: #cccccc 1px solid;
	display: none;
	clear: both;
	float: none;
	left: 475px;
	top: 24px;
	padding-top:15px;
}
#trainingPanel a{
	font-weight:normal;
	text-transform: capitalize;
}

#trainingPanel ul{
	margin-left: 25px;
	valign: top;
}
#trainingPanel li{
	margin-left:0px;
	vertical-align:middle;
}
#infoPanel li{
	margin-left:0px;
	vertical-align:middle;
	padding: 0px;
	margin-top: 0px;
}
#aboutPanel li{
	margin-left:0px;
	vertical-align:middle;
}
#searchBox {
	position:relative;
	top: -314px;
	text-align:center;
	clear:both;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-bottom: 10px;
}
#outerWrapper #contentWrapper #rightColumn1 #contactMaskBox #locationControl #menu01 .menuOptions #locationWrapper #london h2 {
	margin: 0px;
	padding: 0px;
}
#outerWrapper #contentWrapper #rightColumn1 #contactMaskBox #locationControl #menu01 .menuOptions #locationWrapper #london h3 {
	margin: 0px;
	padding: 0px;
}

#outerWrapper #contentWrapper #content .bodytext #shopLinks {
	border: 1px solid #2c2c2e;
	padding: 10px;
	margin-top: 10px;
}
#outerWrapper #contentWrapper #content .bodytext #shopLinks h4 {
	font-size: large;
	color: #660099;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
#outerWrapper #contentWrapper #content .bodytext .numberedList {
	padding-left: 23px;
	list-style-type: decimal;
	padding-top: 10px;
	padding-bottom: 10px;
}
#outerWrapper #contentWrapper #leftColumn2 #tests {
	background-color: #fff;
	margin: 0px;
	padding: 0px;
}
#outerWrapper #contentWrapper #leftColumn2 #tests #testimonials {
	background-color: #FFFFFF;
	text-align: left;
	margin: 0px;
	padding: 0px;
}
#outerWrapper #contentWrapper #rightColumn1 #contactMaskBox .headPanels {
	padding-left: 40px;
}
.intextUL {
	margin-bottom: 20px;
	margin-left: 25px;
}


#contactCountry {
	position: relative;
	left: 10px;
	top: 0px;
	width: 250px;
	border: 1px #444444 solid;
	height: 400px;
}

#contactCentre{
	position: relative;
	left: 275px;
	top: -402px;
	width: 250px;
	border: 1px #444444 solid;
	height: 400px;
	overflow: hidden;
}

#contactTherapist{
	position: relative;
	left: 540px;
	top: -804px;
	width: 248px;
	border: 1px #444444 solid;
	height: 400px;
	overflow: hidden;
}
#contactMenu ul{
	margin: 0px;
	vertical-align: top;
}

#contactMenu a{
	font-weight:normal;
	text-transform: capitalize;
}

#contactPanel ul {
	line-height:30px; 
	list-style-image: url(../images/pointer.gif); 
	color:#660099; 
	font-size:14px; 
	vertical-align:top;
	margin-left: 25px;
}
#contactPanel{
	position: absolute;
	width: 800px;
	background-color:#ffffff;
	margin-top: 10px;
	z-index: 1000;
	display: none;
	text-align:left;
	border: #aaa thick outset;
	clear: both;
	float: none;
	margin-left: -40px;
	height: 500px;
	overflow:hidden;
}
#outerWrapper #topMenu #topMenuItem4 {
	margin-top: -2px;
}
#outerWrapper #topMenu #topMenuItem3 img {
	margin-top: -5px;
}
#outerWrapper #topMenu #topMenuItem5 img {
	margin-top: -5px;
}
.displayBox {
	border: medium outset #ddd;
	width:72%;
	padding:10px;
	height: auto;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	overflow: hidden;
}
#outerWrapper #contentWrapper #content .bodytext .displayBox h1 {
	margin-bottom: 0px;
}
#outerWrapper #contentWrapper #content .bodytext .displayBox p {
	margin-top: 0px;
}
#outerWrapper #contentWrapper #content .bodytext .displayBox h2 {
	margin-bottom: 0px;
}
#outerWrapper #contentWrapper #leftColumn2 #shopAd {
	border: medium outset #ddd;
	position: relative;
	padding: 0px;
	width: 160px;
	margin: auto;
	height:205px;
}
#outerWrapper #contentWrapper #content #bottomBreadcrumb {
	font-size: x-small;
	text-align: center;
	padding-top: 15px;
}
.ukLocation {
	background-color: #ffffff;
	background-image: url("../images/tab.gif");
	background-repeat: no-repeat;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	margin: 0px;
	height: 22px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 0px;
	padding-left: 5px;
}
