/**************************************************************************/
/** DEFAULT/STANDARD ITEMS                                                   */
/**************************************************************************/
HTML {   
	/* following line forces firefox to always display a scrollbar so that the 
	page does not jump around when switching betwwen pages that require a scrollbar
	and those that don't. Sadly can't find a way to disable the scrollbar you just can't use it */
	overflow: -moz-scrollbars-vertical;
}

body {margin:0px;}
td {vertical-align:top;}
form {margin:0px;}
p,h1,h2,h3,h4,h5,h6,h7 {margin:0px;}
a img {border:none;}
h1 {
	padding:2px;
	margin:0;
	margin-top:5px;
}
input {
	margin:0;
}

/**************************************************************************/
/** MAIN SITE STRUCTURE                                                   */
/**************************************************************************/

#sitecontainer {
	width:100%;
}

#sitelayout {
	width:100%;
	height:100%;
	clear:both;
}

#sitelayout #sltagline {
	width:100%;
	clear:both;
	
}

#sitelayout #slnav {
	width:120px;
	height:100%;
}

#sitelayout #sltop {
	width:100%;
	height:85px;
}

#sitelayout #slmain, #slmain {
	width:100%;
	margin:0px;
	height:365px;
}


#slfooter {
	clear:both;
	width:100%;
}
#ikfooter {
	clear:both;
	width:99%;
	margin:0 auto;
	text-align:center;
	background-color:transparent;
}

/**************************************************************************/
/** NAVIGATION STUFF                                                      */
/**************************************************************************/
#navpane {
	width:120px;
	margin:0;
	padding:0;
	border:none;
}

div#imagelink {
	
}

div#imagelink a {
	display:block;
	float:left;
}

div#imagelink img {
	display:block;
	float:none;
	margin:5px auto;
}

#navpane ul.navlist {
	list-style-type:none;
	margin:3px auto;
	padding:0;
	width:110px;
	clear:left;
}

#navpane ul.navlist li.navitem {
	padding:0px;
	margin:3px 0 0 0;
	border: solid red 2px;
}

li.navitem a, li.navitem a:link, li.navitem a:visited {
	display:inline-block;
	/* Comment out for IE5 \*/
	display:block;
	/* End of comment */
	width:102px;
	height:1%;
	padding:3px;
	text-decoration:none;
	/*overflow:hidden;*/
	border: solid red 2px;
}

li.navitem a:active, li.navitem a:hover {
	text-decoration:none;
}

/**************************************************************************/
/** MULTI LEVEL NAVIGATION                                               **/
/**************************************************************************/
.navigationmenu {
	width:110px;  
	position:relative; 
	margin:0 auto;
	
}
.navigationmenu ul li a, .navigationmenu ul li a:visited {
	display:block; 
	width:102px;
	padding:3px; 
	height:auto; 
	line-height:19px; 
}
.navigationmenu ul {
	padding:0; 
	margin:0;
	list-style-type: none; 
}
.navigationmenu ul li {
	float:left; 
	margin-right:1px; 
	position:relative;
	margin-top:3px;
}
.navigationmenu ul li ul {
	display: none;
	
}
.navigationmenu ul li ul li {
	margin:0;
}

.navigationmenu ul li:hover ul, .navigationmenu ul li.navitem a:hover ul {
	display:block; 
	position:absolute; 
	top:0; 
	left:109px; 
	width:105px;
}

.navigationmenu ul li:hover ul li:hover a.hide {
	width:120px;
}
.navigationmenu ul li:hover ul li ul {
	display: none;
}
.navigationmenu ul li:hover ul li a, .navigationmenu ul li a:hover ul li a {
	display:block; 
	width:120px;
}

.navigationmenu ul li:hover ul li:hover ul, 
.navigationmenu ul li a:hover ul li a:hover ul {
	visibility:visible; 
	display:block; 
	position:absolute; 
	left:127px; 
	top:0; 
}
.navigationmenu ul li:hover ul li:hover ul li a, .navigationmenu ul li a:hover ul li a:hover ul li a {
	display:block; 
	width:120px; 
}


div#navigationadmin {
	
}
div#navigationadmin ul li span.besort {
	
	display:block;
	margin:3px 3px 0 0;
	float:left;
}

div#navigationadmin ul li span.besort input {
	
	display:block;
	margin:3px;
}
div#navigationadmin ul {
	margin-top:0;
	padding-top:0;
}

div#navigationadmin ul li {
	
	clear:left;
	float:left;
}

div#navigationadmin ul li a {
	border:solid 1px black;
	background-color:#ffffff;
	color:black;
	display:block;
	float:left;
	width:100px;
	padding:3px 5px 3px 5px;
	margin:3px 0 3px 0;
	text-decoration:none;
}

div#navigationadmin ul li a:hover {
	background-color:#cccccc;
}

div#navigationadmin ul li a.addsub, 
div#navigationadmin ul li a.del 
 {
	width:auto;
	margin-left:5px;
	font-size:10px;
	background-color:#ffffff;
	border:solid 1px #000000;
	
	vertical-align:middle;
	text-decoration:none;
	color:#000000;
	cursor:pointer;
}
div#navigationadmin ul li a.addsub:hover, 
div#navigationadmin ul li a.del:hover {
	background-color:#99ff99;
	border:solid 1px #000000;
	
	vertical-align:middle;
	text-decoration:none;
	color:#000000;
	cursor:pointer;
}
div#navigationadmin ul li a.del:hover {
	background-color:#ff9999;
}

/** NAVIGATION END ********************************************************/

/**************************************************************************/
/** TAGLINE/FOOTER STUFF                                                  */
/**************************************************************************/
#tagline {
	padding:2px;
	width:99.5%;
	float:left;
}
#tagline marquee {
	width:100%;
	float:left;
	height:1%;
}
#footer {
	padding:2px;
	
}
/** TAGLINE END ********************************************************/

/**************************************************************************/
/** MAIN PANEL STUFF                                                      */
/**************************************************************************/
div#mainpane {
	margin:10px;
	
}

label {
	font-weight:bold;
	
}
label img {
	vertical-align:middle;
	margin:2px;
}

div.introtext {
	margin:5px 0 5px 0;
	clear:both;
}

.catselect {
	float:right;
	margin:0 0 5px 0;
}

img.helpicon {
	cursor:help;
}

/** MAIN PANEL END ********************************************************/

/**************************************************************************/
/** VACANCY APPLICATION STUFF                                             */
/**************************************************************************/
form#application {
	margin-left:10px;
	float:left;
	width:95%;
}

form#application div.approw {
	clear:both;
	float:left;
	margin-bottom:10px;
	width:500px;
}

form#application label {
	display:block;
	width:150px;
	float:left;
}

form#application div.address {
	width:auto;
	float:left;
}

form#application div.address input {
	clear:left;
	float:left;
	margin-bottom:3px;
	width:200px;
}

/** VACANCY APPLICATION END ***********************************************/

/**************************************************************************/
/** SITE BUILDER STUFF                                                    */
/**************************************************************************/
#kitholder {
	
}
#kitholder form {
	
}
#mainblock {
	
	
}

#continue {
	margin-right:20px;
	float:right;
	font-weight:bold;
}

#buildsitetext {
	float:left;
	width:60%;
}
#buildsitefield {
	float:left;
	margin-left:10px;
}

#demotext {
	float:left;
	width:60%;
}
#demofield {
	float:left;
	margin-left:10px;
}

#logintext {
	float:left;
	width:60%;
}
#loginfield {
	float:left;
	margin-left:10px;
}

#outrotext {
	clear:both;
	
	margin-top:15px;
}

#collectioncontrols {
	margin:5px 5px 5px 5px;
	
	
}
#collectioncontrols a {
	display:block;
	width:100px;
	text-align:center;
}
#collectioncontrols span {
	margin-left:30px;
	
}

#collectionholder {
	float:left;
	width:580px;
	padding:10px 0 0 20px;
}

#collectionholder .themecollection {
	float:left;
	width:166px;
	height:140px;
	overflow:hidden;
	margin-right:20px;
	
	
	margin-bottom:20px;
	border:solid 1px #333333;
	background-color:#cccccc;
	text-align:center;
}
#collectionholder .themecollection a {
	display:block;
	background-color:#cccccc;
	width:166px;
	height:140px;
	text-decoration:none;
}
#collectionholder .themecollection a:hover {
	background-color:#333333;
}
#collectionholder .themecollection img {
	border:solid 1px #333333;
	margin:2px 2px 0 2px;
	/*
	opacity: 1;
	filter: alpha(opacity=100);
	*/
}

#collectionholder .themecollection a:hover img {
/*
	opacity: .5;
	filter: alpha(opacity=50);
*/
}

#collectionholder .collectionname {
	margin:0 2px 2px 3px;

}

#largethemepreview {
	width:408px;
	border:solid 1px #333333;
	background-color:#cccccc;
	float:left;
}

#largethemepreview #selectedthemename {
	margin:2px 0 0 2px;
}

#largethemepreview img {
	margin:3px;
	border:solid 1px #333333;
}

#themevariations {
	float:left;
	margin:0px 0 0 10px;
	width:190px;
}

#themevariations p {
	font-weight:bold;
	margin-bottom:5px;
}

#themevariations ul {
	margin:0;
	list-style:none;
	padding:0;
}

#themevariations ul li {
	margin:0;
	float:left;
	margin-right:10px;
	margin-bottom:10px;
}


#themevariations img {
	border:solid 1px #333333;
	opacity: 1;
	filter: alpha(opacity=100);
	width:80px;
	height:50px;
}
#themevariations img.selected {
	opacity: .5;
	filter: alpha(opacity=50);
}

#themevariations a:hover img {
	opacity: .5;
	filter: alpha(opacity=50);
}

#sitelogin {
	width:auto;
	margin:0 auto;
}

#loginlogo img {
	display:block;
	margin:0 auto;
	text-align:center;
}
div.loginintrotext {
	margin:10px 20px 10px 20px;
}

#sitelogin label {
	text-align:right;
	margin-right:20px;
}

#sitelogin .fieldgroup {
	border:none;
}

#sitelogin .fieldvalue input {
	width:200px;
}

#sitelogin div.errors {
	color:#ff0000;
	margin-left:5px;
}
#sitelogin div.errors p {
	color:#ff0000;
}
#sitelogin div.errors ul {
	margin:0 0 10px 0;
	padding:0px;
	list-style:none;
}
#sitelogin div.errors li {
	margin:5px 0 0 20px;
	
}

.hostlist {
	margin:0 0 0 20px;
	list-style-type:none;
}

#accountcontent {
	float:left;
	margin-left:5px;
	width:95%;
}

fieldset.siteitem {
	display:block;
	margin-top:5px;
	
	
}

fieldset.statusbox {
	float:right;
	margin-top:5px;
}
fieldset.statusbox label {
	display:block;
	width:75px;
	float:left;
	
}
fieldset.statusbox a.upgrade {
	display:block;
	width:75px;
	margin-bottom:2px;
}

fieldset.statusbox a.manage {
	display:block;
	width:150px;
	margin-bottom:2px;
}



/** SITE BUILDER END ***********************************************/


/**************************************************************************/
/** ACCOUNT AREA                                                      */
/**************************************************************************/

div#limitupgrade {
	float:left;
	

}

div#limitupgrade div.header {
	
}
div#limitupgrade div.header div {
	float:left;
	width:80px;
	background-color:#cccccc;
	padding:5px;
}
div#limitupgrade div.module {
	
	border-bottom:solid 1px #333333;
	float:left;
}
div#limitupgrade div.module div {
	float:left;
	width:80px;
	padding:5px;
}
div#limitupgrade div.module div.qty, 
div#limitupgrade div.header div.hdrqty, 
div#limitupgrade div.module div.current, 
div#limitupgrade div.header div.hdrcurrent {
	text-align:center;
}
div#limitupgrade div.module div.increase, 
div#limitupgrade div.header div.hdrincrease {
	width:120px;
}
div#limitupgrade div.module div.linetotal, 
div#limitupgrade div.header div.hdrlinetotal, 
div#limitupgrade div.linetotal {
	text-align:right;
}
div#limitupgrade div.module input {
	width:30px;
}
div#limitupgrade div.grandtotal {
	text-align:right;
	padding-right:5px;
}

div#limitupgrade div.buttons {
	text-align:right;
	margin-top:20px;
	
	
}

/** ACCOUNT AREA END ***********************************************/

/**************************************************************************/
/** MANAGEMENT STUFF                                                      */
/**************************************************************************/

/**************************************************************************/
/** MEDIA STORE                                                           */
/**************************************************************************/
div.mediastorecategory {
	float:left;
	border:solid 1px #333333;
	padding:0;
	width:95px;
	height:105px;
	margin:0 5px 5px 0;
	overflow:hidden;
	position: relative;	
}

div.mediastorecategory a.mediastoreimage, 
div.mediastorecategory a.mediastoreimage:link, 
div.mediastorecategory a.mediastoreimage:visited {
	display:block;
	width:95px;
	height:105px;
	overflow:hidden;
}

div.mediastorecategory a.fld {
	background-image:url('/sh/img/fld.gif');
	background-repeat:no-repeat;
	background-position:50% 50%;
	height:105px;
	overflow:hidden;
	display:block;
}

div.mediastorecategory div.showfolder {
	background-image:url('/sh/img/fld.gif');
	background-repeat:no-repeat;
	background-position:50% 50%;
	height:105px;
	overflow:hidden;
	display:block;
}

div.mediastorecategory a.fld:hover img {
	opacity: 1;
	filter: alpha(opacity=100);
}

div.mediastorecategory a.fld:hover {
	background-color:white;
}

div.mediastorecategory a.mediastoreimage:active, 
div.mediastorecategory a.mediastoreimage:hover {
	background-color:white;
}

div.mediastorecategory img {
	float:none;
	display:block;
	margin:2px auto;
	opacity: .5;
	filter: alpha(opacity=50);
}

div.mediastorecategory a.removeimage {
	display: block;
	position: absolute;
	margin: 0;
	top: -1px;
	left: 80px;
}

div.mediastorecategory a.removeimage img {
	opacity: 1;
	filter: alpha(opacity=100);
	margin: 0;
}

div.mediastorecategory a.mediastoreimage:hover img {
	opacity: 1;
	filter: alpha(opacity=100);
}

div.mediastorecategory div {
	text-align:center;
	margin:2px auto;
	width:90px;
}

div.mediastorecategory input {
	display: block;
	position: absolute;
	margin: 0;
	top: -2px;
	left: 77px;
}

/**************************************************************************/
/** THEME WIZARD                                                         **/
/**************************************************************************/
div#stylelinks {
	float:left;
	width:220px;
	padding:0;

}
div#stylelinks ul {
	margin:0;
	padding:0;
	float:left;
	list-style:none;
}
div#stylelinks ul li {
list-style:none;
	float:left;
	margin:0;
}

div#stylelinks ul li a {
	display:block;
	width:100px;
	padding:1px;
	border:solid 1px black;
	margin:0;
	margin-top:2px;
	margin-right:2px;
	float:left;
	background-color:#ffffff;
}
div#stylelinks ul a:hover {
	background-color:#999999;
}

fieldset.themeedit {
	
	display:none;
	margin-left:5px;
	margin-right:10px;
	
}
fieldset.themeedit legend {
	font-weight:bold;

}

fieldset.themeedit label {
	display:block;
	float:left;
	width:120px;
}

fieldset.themeedit div.attribsplit {
	clear:both;
	display:block;
	border-top:solid 1px #aaaaaa;
	margin:2px 0;
	
	
}

.previewWindow {
	margin-top:20px;
	border-left:1px solid threeddarkshadow; 
	border-top:1px solid threeddarkshadow; 
	border-right: 2px solid threeddarkshadow; 
	border-bottom: 2px solid threeddarkshadow;
}


/**************************************************************************/
/** OTHER STUFF                                                          **/
/**************************************************************************/

div#attachments {
	float:left;
	margin-bottom:10px;
}

div#attachments div.attachment {
	float:left;
	margin-right:20px;
	
}

table.view {
	width:100%;
	margin-bottom:5px;
	border-collapse:collapse;
}
table.view th {
	white-space:nowrap;
	padding:2px;
	
}
table.view td {
	padding:2px;
	
	
}
table.view td.aright, table.view th.aright {
	text-align:right;
}
table.view td input {
	margin:0;
}
table.view td.noitems {
	font-weight:bold;
	padding:10px;
	text-align:center;
	
}

div#managementlinks {
	margin:5px 0 2px 10px;
	float:left;
}

div#managementlinks a, div#managementlinks a:link, div#managementlinks a:visited {
	float:left;
	color:#000000;
	margin:0 10px 3px 0;
	padding:2px;
	background-color:#ffffff;
	display:block;
	width:120px;
	border:solid 1px #000000;
	text-decoration:none;
	text-align:center;
}
div#managementlinks a:active, div#managementlinks a:hover {
	background-color:#cccccc;
	text-decoration:none;
}

div.errorblock {
	border:solid 1px red;
	float:left;
	margin:5px;
	width:500px;
	color:#ff0000;
	padding:5px;
}
div.errorblock p {
	font-weight:bold;
}
div.errorblock ul {
	list-style:none;
	margin:10px 0 10px 10px;
}

/**** Error display on site ****/
div.errors {
	border:solid 1px red;
	background-color:#ffffff;
	float:left;
	margin:5px;
	width:500px;
	color:#ff0000;
	padding:5px;
}
div.errors p {
	color:#ff0000;
}
div.errors ul {
	list-style:none;
	margin:10px 0 10px 10px;
}
div.errors ul li {

}

div.sitelayouticon {
	float:left;
	padding:5px;
	text-align:center;
}

div.settingslink {
	float:left;
	width:300px;
	height:100px;
	margin-left:5px;
}

div.settingslink img {
	margin:5px;
}

form.editform label {
	float:left;
	width:150px;
	
}
.w50 {width:50px;}
.w100 {width:100px;}
.w150 {width:150px;}
.w200 {width:200px;}
.w300 {width:300px;}
.w350 {width:350px;}
.w400 {width:400px;}
.w500 {width:500px;}
.w50p {width:49%;}
.w33p {width:33%;}

.mleft10 {margin-left:10px;}
.mright3 {margin-right:3px;}
.mright10 {margin-right:10px;}

textarea.half {
	overflow:auto;
	width:300px;
	height:100px;
}
textarea.slim {
	overflow:auto;
	width:300px;
	height:50px;
}
textarea.full {
	overflow:auto;
	width:580px;
	height:300px;
}
textarea.wide {
	overflow:auto;
	width:580px;
	height:150px;
}

.fieldgroup {
	margin-bottom:3px;
	padding:3px 0;
	clear:both;
	border-bottom:1px solid #cccccc;
	
}
.fieldgroup label {
	float:left;
	width:230px;
}
.fieldgroup label.nowidth {
	float:left;
	border:none;
	width:auto;
}

.attachmentfieldgroup {
	margin-bottom:3px;
	padding:3px 0;
	clear:both;
	border-bottom:none;
}

.regform .fieldgroup label {
	text-align:right;
	padding-right:10px;
	font-size:80%;
}
.fieldgroup .fieldrow {
	margin-bottom:2px;
	clear:both;
}

div.securefieldholder div.fieldrow {
	margin-bottom:2px;
	clear:both;
	float:left;
	width:90%;
}

.fieldgroup div.fieldvalue {
	float:left;
	margin:0;
	padding:0;
}
ul.nobullets {
	list-style:none;
	margin:0;
}
ul.nobullets label {
	width:100px;
}

#headerfields {
	margin-bottom:10px;
	margin-top:10px;
}
#bodyfields {
	clear:both;
	margin-top:5px;
}

div.bodygroup {
	float:left;
	clear:both;
	width:100%;
	margin-bottom:10px;
}
div.bodygroup div.bodyhalf {
	width:49%;
	float:left;
}
div.bodygroup div {
	margin:0;
}

div.half {
	float:left;
	width:49%;
}
div.mini {
	float:left;
	width:200px;
	
}
.imgright {
	float:right;
	margin:0 0 5px 10px;
}
.imgleft {
	float:left;
	margin:0 10px 5px 0;
}
div.imgcenter {
	margin-top:5px;
	text-align:center;
}
div.imgcenter img {
	margin:0 auto;
}

a.escd, a.escd:link, a.escd:visited {
	background-color:#ffffff;
	border:solid 1px #000000;
	padding:2px 10px;
	text-decoration:none;
	color:#000000;
}
a.escd:active, a.escd:hover {
	background-color:#cccccc;
}
input.escd {
	background-color:#ffffff;
	border:solid 1px #000000;
	height:21px;
	vertical-align:middle;
	text-decoration:none;
	color:#000000;
	cursor:pointer;
}
input.escdhover {
	background-color:#cccccc;
	border:solid 1px #000000;
	height:21px;
	vertical-align:middle;
	text-decoration:none;
	color:#000000;
	cursor:pointer;
}

.cleft {
	clear:left;
}
.left {
	float:left;
}
.right {
	float:right;
}

.clearer {
	clear:both;
	line-height:1px;
}
.limitreport {
	float:right;
}
.red {
	color:red;
}
.redborder {
	border:solid 1px red;
}
.bgred {
	background-color:#ff9999;
}
.bdred {
	
	color:red;
}
.bdred input, .bdred select {
	border:solid 1px red;
}
.bdred select, .bdred select option {
	color:red;
}
span.highlight {
	border:solid 1px black;
	background-color:#ffffff;
	color:#ff0000;
	padding:1px 3px 1px 3px;

}

/**************************************************************************/
/** ACCOUNT DETAILS                                                      **/
/**************************************************************************/
#accountdetails hr {
	border:0;
	height:1px;
}
#accountdetails a.escd {
	margin-left:4px;
	width:85px;
		font-family:arial;
}
#accountdetails div {
	font-family:arial;
	font-size:12px;
}
#accountdetails div.section {
	width:294px;
	float:left;
	margin-right:15px;
	margin-bottom:10px;
	background-color:#ffffff;
}

#accountdetails div.section a.sectionlink {
	cursor:pointer;
}

#accountdetails div.textholder {
	float:left;
	padding:2px 3px 2px 3px;
	height:62px;
	width:222px;
}
#accountdetails div.textonly {
	float:left;
	padding:2px 3px 2px 3px;
	display:inline;
	height:65px;
	width:286px;
}

#accountdetails div#accintro, 
#accountdetails div#accmanage, 
#accountdetails div#accaddress, 
#accountdetails div#accmessage {
	margin-right:0;
}

/******* MESSAGE CENTRE ************************/
div#accountdetails div.message {
	border-bottom:solid 1px #666666;
	padding:5px 0 10px 0;
	
}

#accountdetails div.message input {
	float:right;
	margin-right:40px;
	display:inline;
}

#accountdetails div.message h3 {
	font-size:100%;
}

#accountdetails div.message p {

}

table.locatorlist {

}
table.locatorlist thead tr th {
	text-align:left;
}
table.locatorlist tbody tr td {
	padding:2px;
}
