body {
	margin: 0;
	padding: 0;
	font-family: "Sanchez", sans-serif;
	font-size: 1.125em; /* 16px */
	color: #000; /* #616161; */
	text-align: center; /* IE6 block alignment */
	background-color: rgb(225,225,225);
	/*background: #8000D0 url('/resources/template/bg.jpg') left top repeat; */
}

p, div, h1, h2, h3 {
	position: relative;
	margin: 0;
	padding: 0;
	font-weight: normal;
}

h1, h2, h3 {
	font-family: "Sanchez", sans-serif;
	font-weight: bold;
	margin: 0.5em 0;
	color: #000;
}

h1
{
	margin-top: 0;
	font-size:32px;
}

@media screen and (max-width: 980px)
{
	h1
	{
		font-size: 24px;
	}
}

h2, h3 {
	margin: 0.5em 0 0;
}

h2
{
	font-size: 28px;
}

@media screen and (max-width: 980px)
{
	h2
	{
		font-size: 20px;
	}
}

h3
{
	font-size: 20px;
}

@media screen and (max-width: 980px)
{
	h3
	{
		font-size: 18px;
	}
}

p {
	margin-bottom: 0.5em;
}
a:link, a:visited, a:active { color:#3D3D3D; text-decoration:none;
	
}

a:hover, a:focus { color:#6148BE; text-decoration:underline;

}

a img {
	border: none;
}

.message { color: #F00; }
.strong {font-weight: bold;}

/*** section styles ***/
#header {
	max-width: 980px;
	height: 93px;
	position: relative;
	margin: 0px auto;
	background: #FFF url('/resources/template/banner_bg.jpg') top left no-repeat;
	z-index: 10;
	border: 0px solid #999999;
}

@media screen and (max-width: 980px)
{
	#header
	{
		height: auto;
	}
}

#logo {
	display: block;
	position: absolute;
	top: 8px;
	left: 18px;
	max-width: 100%;
	height: auto !important;
}

@media screen and (max-width: 980px)
{
	#logo
	{
		box-sizing: border-box;
		display: block;
		left: 0;
		margin: auto;
		position: relative;
		top: 0;
		padding: 10px;
	}
}

#header h2
{
	position: absolute;
	top: -7px;
	right: 30px;
	font-family: 'Times New Roman';
	font-size: 35px;
	color: #6148be;
	font-weight: bold;
}

@media screen and (max-width: 980px)
{
	#header h2
	{
		position: relative;
		top: 0;
		right: 0;
		text-align: center
	}
}

#header p {
	position: absolute;
	right: 30px;
	bottom: 0;
	line-height: 1.2em;
	text-align: left;
	color: #000;
	font-size: 18px;
}

@media screen and (max-width: 980px)
{
	#header p
	{
		position: relative;
		right: 0;
		bottom: 0;
		text-align: center
	}
}

#header p strong
{
}
 
#navigation {
	display: table;
	max-width: 980px;
	min-height: 20px;
	line-height: 20px;
	margin: 0 auto;
	background: #FFF;
	border-color: #d1d1d1;
	border-width: 1px 0;
	border-style: solid;
	width: 100%;
}

@media screen and (max-width: 980px)
{
	border: 0;
}

#menu {

	position: relative;
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 14px;
}

@media screen and (max-width: 980px)
{
	#menu
	{
		text-align: center;
	}
}

#menu li {
	position: relative;
	float: left;
	min-height: 20px;
	line-height: 20px;
	margin: 0;
	padding: 0 0 0 3px;
	background: #FFF url('/resources/template/nav_sep.jpg') left center no-repeat;
}

@media screen and (max-width: 980px)
{
	#menu li
	{
		background: #e0e0e0;
		display: flex;
		float: none;
		margin: 5px 0;
		padding: 0;
		vertical-align: top;
	}

	#menu li.has-children:after
	{
		align-items: center;
		border-left: 1px solid #808080;
		content: "▼";
		display: flex;
		justify-content: center;
		position: absolute;
		right: 0;
		top: 0;
		bottom: 0;
		width: 40px;
	}

	#menu li.has-children.open:after
	{
		content: "×";
	}
}

#menu li:first-child {
	background-image: none;
	padding-left: 0;
}

#menu a:link, #menu a:visited, #menu a:active {
	display: block;
	color: #3d3d3d;
	flex-grow: 1;
	text-decoration: none;
	margin: 0;
	padding: 0 18px;
	vertical-align: top;
}

@media screen and (max-width: 980px)
{
	#menu a:link, #menu a:visited, #menu a:active
	{
		display: inline-block;
		padding: 10px 20px;
	}
}

* html #menu a {  }

#menu a:hover, #menu a:focus {
	color: #6148be;
	text-decoration: underline;
}

#menu .sel > a, #menu .sel .sel > a {
	color: #6148be;
}

#menu .sel li a:link, #menu .sel li a:visited, #menu .sel a:active {
	background-color: none;
	background-image: none;
}


#menu li ul {
	position: absolute;
	left: 0;
	top: 100%;
	width: 190px;
	margin: 0;
	padding: 0;
	list-style-type: none;
	min-width: 100%;
	opacity: 0;
	text-align: left;
	transition: all 0.2s;
	transform: translateY(-10px);
	visibility: hidden;
	z-index: 100;
}

@media screen and (max-width: 980px)
{
	#menu li ul
	{
		text-align: center;
	}
}

#menu li:hover ul,
#menu li:focus ul,
#menu li:active ul
{
	display: block;
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
}

@media screen and (max-width: 980px)
{
	#menu li ul
	{
		background: #fff;
		border: solid #000;
		border-width: 2px 0;
	}

	#menu li:hover ul,
	#menu li:focus ul,
	#menu li:active ul
	{
		display: block;
		opacity: 0;
		transform: translateY(-10px);
		visibility: hidden;
	}

	#menu li.open ul
	{
		opacity: 1;
		transform: translateY(0);
		visibility: visible;
	}
}

* html #menu li ul {
	overflow: hidden;
}

#menu li li {
	position: relative;
	float: none;
	text-indent: 5px;
	border: 1px solid #d1d1d1;
	border-top-width: 0;
	margin:0;
	padding: 0;
	background-image: none;
}

* html #menu li li {

}

* html #menu li li a:link, * html #menu li li a:visited {

}

#content {
		display: flow-root;
	position: relative;
	max-width: 800px; /* 980px */
	padding: 10px 85px 40px 95px;
	margin: 0 auto;
	text-align: left;
	background: #FFFFFF;
	font-size: 0.875em; /* 14px from 16px */
}

@media screen and (max-width: 980px)
{
	#content
	{
		max-width: none;
		padding: 10px 10px 40px;
	}
}

#content.fck {
	padding: 10px;
}

#content img {
	padding: 2px;
	border: 0px solid #cfa422;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	-o-border-radius: 2px;
	-k-border-radius: 2px;
	border-radius: 2px;
}

@media screen and (max-width: 980px)
{
	#content img
	{
		box-sizing: border-box;
		height: auto !important;
		margin-left: 0 !important;
		max-width: 100%;
	}
}

.shade_top {
	background: transparent url('/resources/template/shade_top.jpg') center center no-repeat;
	padding: 4px 0;
	font-size: 0.5em;
	line-height: 0.5em;
}

.shade_bottom {
	background: transparent url('/resources/template/shade_bottom.jpg') center center no-repeat;
	padding: 4px 0;
}

.social {
	position: absolute;
	right: 18px;
	bottom: 15px;
	height: 24px;
	line-height: 24px;
	margin: 0;
}

.social a {
	margin: 0;
}

#footer {
	box-sizing: border-box;
	clear: both;
	max-width: 980px; /* 980px; */
	min-height: 67px;
	padding: 10px;
	margin: 0 auto 20px;
	background: #353535 url('/resources/template/footer_bg.jpg') top left repeat-x;
	color: #a4a4a4;
	font-size: 0.875em; /* 14px from 16px */
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;
}

#footer a:link, #footer a:visited, #footer a:active {
	text-decoration: none;
	color: #a4a4a4;
}

#footer a:hover, #footer a:active {
	text-decoration: underline;
}

/* galleries */
div.gallery {
	padding: 0px;
	border: 1px solid #CCCCCC;
	position: relative;
	margin: 10px auto;
	overflow: hidden;
}

div.gallery ul {
	list-style-type: none;
	margin: 10px 0;
	padding: 0;
	position: relative;
}

div.gallery li {
	float: left;
	margin: 10px 0 !important;
	padding: 0;
	width: 224px;
	height: 132px;
	line-height: 132px;
	text-align: center;
}

div.gallery a {
	display: inline-block;
	height: 130px;
	overflow: hidden;
}

div.gallery img {
	display: inline; /* kauri default sets to block */
	/* border: 2px solid #CCCCCC; */
	vertical-align: middle;
}

/*customise shadowbox for long titles */
#sb-title, #sb-title-inner {
        height:auto !important;
}


/* workshops */
table.workshops {
	width: 100%;
}

.workshops th, .workshops td {
	vertical-align: top;
	text-align: left;
	padding: 4px;
}

.workshops .ws_name, .workshops .ws_date, .workshops .ws_time, .workshops .ws_booking {
	width: 19%;
}

.workshops .ws_location {
	width: 24%;
}

.workshops .month {
	background: #CCC;
}

.callback {
	overflow: hidden;
}

.callback .message {
	text-align: center;
	color: #6148be;
	font-weight: bold;
}

.callback form {
	display: block;
	width: 321px;
	overflow: hidden;
}

@media screen and (max-width: 980px)
{
	.callback form
	{
		width: 100%;
	}
}

.callback h2 {
	font-size: 26px;
	color: #000;
	margin: 0 0 10px;
	font-weight: bold;
}

.callback label {
	display: block;
	width: 100%;
	overflow:hidden;
}

.callback input {
	box-sizing: border-box;
	display: block;
	width: 100%;
	height: 38px;
	line-height: 31px;
	padding: 0;
	margin-bottom: 10px;
	text-indent: 10px;
	background: #d5ceee;
	border: none;
	border-color: #FFF;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-o-border-radius: 5px;
	-k-border-radius: 5px;
	border-radius: 5px;
	box-shadow: inset 0px 2px 5px #9a8ad6;
}

.ie8 .callback input {
	background-image: url('ie_callback_form_field_bg.jpg');
}

.callback input.submit
{
	border: 1px solid #000;
	background: #000;
	color: #FFF;
	cursor: pointer;
	font-family: "Times New Roman", serif;
	font-size: 26px;
	text-indent:0;
	font-weight:bold;
	box-shadow: none;
}

.callback input.submit:hover,
.callback input.submit:active
{
	background: #FFF;
	color: #000;
}

.callback img, .callback object, .callback iframe {
	display: block;
	float: left;
}

#booking .strong { color: #666; }

#booking legend {
	font-weight: bold;
}

#booking p {
	vertical-align:top;
	margin-bottom: 8px;
	width: 100%;
}

#booking p>span, #booking p>span:first-child { /*Chrome is not picking up the first declaration consistantly */
	display: inline-block;
	width: 23%;
	vertical-align: top;
}

@media screen and (max-width: 980px)
{
	#booking p > span,
	#booking p > span:first-child
	{
		display: block;
		width: auto;
	}
}

#booking p>span+span {
	width: auto;
	line-height: 1.75em;
}

#booking p>span+span label {
	margin-left: 8px;
}

#booking textarea, #booking input[type=text] {
	width: 300px;
}

@media screen and (max-width: 980px)
{
	#booking textarea,
	#booking input[type=text]
	{
		background: #f0f0f0;
		border: 0;
		box-sizing: border-box;
		margin-top: 5px;
		padding: 5px;
		width: 100%;
	}
}

#booking input#security_code {
	width: 100px;
}

#booking span label input[type=text] {
	width: 200px;
}

#booking span label input[maxlength="2"] {
	width: 30px;
	margin: 0 5px;
}

#booking input#wedding_date {
	width: 100px;
}

#booking input[type=radio], #booking input[type=checkbox] {
	padding: 0 4px;
}

#booking .required:before {
	content: '*';
	color: #F00;
}

#x_total { font-weight: bold; padding-left: 1em; }

/* float clearing */
.clear {
	display: block;
	width: 99%;
	height: 1px;
	clear: both;
}

.side-menu {
	float: left;
	margin: 0px 30px 0pt -40px;
	width: 150px;
}

@media screen and (max-width: 980px)
{
	.side-menu
	{
		float: none;
		width: auto;
		margin: 0;
	}
}

.middle-content {
	margin: 10px 0px 0pt 0pt;
	float: left;
	max-width: 600px;
}

.menu-list {
	margin-left:-20px;
	margin-top: 8px;
	line-height:1.5em;
	list-style-image: url(http://www.weddingdanceworkshops.co.uk/resources/image/template/arrow.jpg);
	list-style-type: circle;
}

.videoTest{
	width:45%;
	text-align:center;
	float:left;
}

.videoTest + .videoTest{
	float:right;
}

@media screen and (max-width: 980px)
{
	.videoTest,
	.videoTest + .videoTest
	{
		width: auto;
		float: none;
	}
}

.videoTest p{
	margin-top:25px;
}

.videoTest img{
	border: 1px solid #111 !important;
	padding: 0px !important;
	margin-bottom: 5px !important;
}

.splash {
	margin: 20px auto;
	border-radius: 5px 0 0;
	max-width:800px;
}

.splash .callback {
	position: relative;
	float: right;
	border: 1px solid #000;
	padding: 5px 10px;
	border-radius: 5px;
}

@media screen and (max-width: 980px)
{
	.splash .callback
	{
		float: none;
	}
}

.splash .callback p {
	width: 205px;
	margin: 30px auto;
	border-radius: 5px;
}

.splash iframe{
	-webkit-box-shadow: 0px 0px 3px 1px #999999;
	box-shadow: 0px 0px 3px 1px #999999;
}

@media screen and (max-width: 980px)
{
	.splash iframe
	{
		margin-bottom: 20px;
		width: 100%;
	}
}

.splash .callback a:link, .splash .callback a:visited, .splash .callback a:active {
	display: block;
	color: #FFF;
	padding: 20px 35px 20px 50px;
	background: transparent url('icon-rarrow.png') 180px center no-repeat;
	font-size: 1.65em;
	font-family: pontano_sansregular, Arial, sans-serif;
}

.splash .callback .top {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 240px;
	height: 11px;
	background: #ffa300 url('callback-top.png') left top no-repeat;
	border-radius: 5px 0 0 0;
}

.splash .callback .bImg {
	position: absolute;
	display: block;
	bottom: 0;
	left: 0;
	width: 167px;
	height: 151px;
	background: transparent url('callback-bg.png') left bottom no-repeat;
}

/* slideshow overrides */
/* ss dimensions */
.slideshow {
	position: relative;
	width: 980px;
	height: 465px;
	margin-bottom: 10px;
	left: -92px;
	z-index: 10;
}

@media screen and (max-width: 980px)
{
	.slideshow
	{
		width: calc(100vw - 20px);
		height: 47.45vw;
		left: 0;
		overflow: hidden;
	}
}

.orbit-wrapper .slideshow {

}

.slider {

}


.slider > div.slide, .slider > img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

div.orbit-wrapper {
	width: 980px !important;
	height: 465px !important;
}

@media screen and (max-width: 980px)
{
	div.orbit-wrapper
	{
		width: 100vw !important;
		height: 47.45vw !important;
	}
}

div.orbit {
	width: 953px !important;
	height: 445px !important;
	border: 10px solid #000;
	border-radius: 10px 10px 5px 5px;
}

@media screen and (max-width: 980px)
{
	div.orbit
	{
		width: calc(100vw - 37px) !important;
		height: calc(47.45vw - 20px) !important;
	}
}

div.orbit img {
	padding: 0 !important;
	border-radius: 0 !important;
}

@media screen and (max-width: 980px)
{
	div.orbit img
	{
		width: calc(100vw - 37px) !important;
		height: calc(47.45vw - 20px) !important;
	}
}

.orbit-wrapper .orbit-caption {
	bottom: 10px;
	left: auto;
	right: 17px;
	background: rgb(255,255,255);
	background: rgba(255,5255,255,0.8);
	color: #666;
	padding: 20px;
	border-radius: 10px 0 0 0;
	font-size: 20px;
	width: auto;
}


.orbit-wrapper .timer {
	display: none;
}



/* ss overlay */
/*
.slideshow:after {
	content: url('slideshow_overlay.png');
	position: absolute;
	top: 0;
	right: 0;
	z-index: 10;
}

.orbit > div {
	z-index: 0;
}
*/

/* ss nav features */
/*
div.slider-nav span {

}

div.slider-nav span.left {
	background-image: url('slider_left.png');
}

div.slider-nav span.right {
	background-image: url('slider_right.png');
}

.orbit-wrapper .orbit-caption {

}



.orbit-bullets {
	bottom: 10px;
	left: 0;
	margin: 0;
}

.orbit-bullets li {
	width: 10px;
	height: 10px;
	background: transparent url('slider_bullet.png') center center no-repeat;
	margin-left: 10px;
}

.orbit-bullets li.active {
	background-image: url('slider_active.png');
	background-position: center center;
}
*/

@media screen and (max-width: 980px)
{
	table
	{
		display: block;
		width: auto !important;
	}

	tr
	{
		display: block;
	}

	td
	{
		display: block;
		width: auto !important;
	}
}

.slideimg
{
	position: absolute;
	bottom: 8px;
	left: 8px;
	z-index: 9999;
	max-width: 150px;
}

.float-right
{
	float: right;
	margin-left: 20px;
	z-index: 9999;
}

.sidetable
{
	.side-menu
	{
		width: unset;
	}
}