@charset "utf-8";
body {
	font: 12px "Trebuchet MS", Arial, Helvetica, sans-serif;
	background: #000 url(../layout/bg.jpg) no-repeat fixed center top;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center;
	width:100%;
}
.normal {
	background: #000 url(../layout/bg.jpg) no-repeat fixed center top;
}
img {
	border: none;
	margin-right: 0px;
	margin-left: 0px;
}
a:link, a:active, a:visited {
	color:#F97634;
	font-weight: bold;
}
a:hover {
	color:#E95107;
}
form {
	padding:0;
	margin:0;
}
input[type="submit"] {
	color: #000;
	font-size: 14px;
	border: 0px none #666;
	padding: 2px 6px;
	  background:#dbdbda;
  	-pie-background: linear-gradient(top, #fafafa, #cfd0ce);
		background-image : -moz-radial-gradient(top, #fafafa, #cfd0ce); 
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fafafa), to(#cfd0ce));
	-moz-border-radius: 4px; /* FF1+ */
	-webkit-border-radius: 4px; /* Saf3+, Chrome */
	border-radius: 4px; /* Opera 10.5, IE 9 */
	-moz-box-shadow: 0px 0px 2px #444; /* FF3.5+ */
	-webkit-box-shadow: 0px 0px 2px #444; /* Saf3.0+, Chrome */
	box-shadow: 0px 0px 2px #444; /* Opera 10.5, IE 9 */
	overflow: hidden;	border: 1px solid #fff;
	position:relative;
	behavior: url('http://www.travelchannel.co.uk/css/path-ie/PIE.htc');
	
}
input[type="submit"]:hover {
	background: #eeeeee;
		     -moz-box-shadow: 0px 0px 14px #F90; /* FF3.5+ */
  -webkit-box-shadow: 0px 0px 14px #F90; /* Saf3.0+, Chrome */
          box-shadow: 0px 0px 14px #F90; /* Opera 10.5, IE 9 */
		-pie-background: linear-gradient(top, #fff, #eeeeee); 
	  background-image : -moz-radial-gradient(top, #fff, #eeeeee); 
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#eeeeee));
border: 1px solid #f57312;
position:relative;
	behavior: url('http://www.travelchannel.co.uk/css/path-ie/PIE.htc');
}
.fxdheight_btn {
	height: 32px;
	width: 100px;
}
input[type="text"], select, textarea {
	background: #FFFFFF url(../layout/grad_2.jpg) repeat-x top;
	color: #333;
	border: 2px solid #999;
	padding: 2px;
	font: 14px "Trebuchet MS", Arial, Helvetica, sans-serif;
	-moz-border-radius: 4px; /* FF1+ */
	-webkit-border-radius: 4px; /* Saf3+, Chrome */
	border-radius: 4px; /* Opera 10.5, IE 9 */
	-moz-transition: all 0.2s ease-out;  /* FF3.7+ */
	-o-transition: all 0.2s ease-out;  /* Opera 10.5 */
	-webkit-transition: all 0.2s ease-out;  /* Saf3.2+, Chrome */
	transition: all 0.2s ease-out;
}
input[type="text"]:hover, input[type="text"]:focus, textarea:hover, select:hover, select:active {
	border: 2px solid #F90;
	-moz-box-shadow: 0px 0px 5px #F90; /* FF3.5+ */
	-webkit-box-shadow: 0px 0px 5px #F90; /* Saf3.0+, Chrome */
	box-shadow: 0px 0px 5px #F90; /* Opera 10.5, IE 9 */
}
.orange {
	color:#F79239;
}
.black {
	color:#000000;
}
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
.clearfix {
	display: inline-block;
}
html[xmlns] .clearfix {
	display: block;
}
* html .clearfix {
	height: 1%;
}
#container {
	width: 955px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	position:relative;
}
/*-----------------------------------------------------------------------------------*/
/* HEADER */
/*-----------------------------------------------------------------------------------*/
#header {
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	height: 100px;
}
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.logo {
	margin-top: 28px;
	height: auto;
}
/*-----------------------------------------------------------------------------------*/
/* WRAPPER */
/*-----------------------------------------------------------------------------------*/
#mainContent {
	padding: 0;
	clear: both;
}
/*-----------------------------------------------------------------------------------*/
/* FOOTER */
/*-----------------------------------------------------------------------------------*/


#footer {
	padding: 6px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:url(../layout/black45.png);
	font-size: 11px;
	color: #CCC;
	clear: both;
	display: block;
	margin-top: 15px;
}
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
}
/*-----------------------------------------------------------------------------------*/
/* HANGING SKYSCRAPER */
/*-----------------------------------------------------------------------------------*/

#hanging_sky120x600 {
	position:absolute;
	right:-141px;
	top:100px;
	width:120px;
	clear:both;
	height: 600px;
} /* :hack:clear both to fix absolute positioning bug in IE6 */
#hanging_sky120x600 .ad img {
	display:block;
}
#hanging_sky160x600 {
	position:absolute;
	right:-185px;
	top:100px;
	width:160px;
	clear:both;
	height: 600px;
} /* :hack:clear both to fix absolute positioning bug in IE6 */
#hanging_sky160x600 .ad img {
	display:block;
}
#columns {
	margin-top: 16px;
#margin-top: 20px;
}
#hanging_728x90 {
	position:absolute;
	right:-141px;
	top:0px;
	width:728px;
	clear:both;
	height: 90px;
} /* :hack:clear both to fix absolute positioning bug in IE6 */
#hanging_468x60 {
	position:absolute;
	right:0px;
	top:18px;
	width:468px;
	clear:both;
	height: 60px;
} /* :hack:clear both to fix absolute positioning bug in IE6 */
#mainContent h1 {
	color: #FFF;
	background-image: url(../layout/black45.png);
	padding: 10px;
	margin: 0px;
	border-left: 4px solid #f29942;
	font-size: 24px;
}
#mainContent h2 {
	color: #FFF;
	background: url(../layout/black45.png);
	padding: 10px;
	margin: 0px;
	border-left: 4px solid #F90;
	font-size: 17px;
}
.contentbg {
	background: #FFF;
	margin: 0px;
	padding: 10px;
	border-left: 4px solid #F90;
	/*border-bottom: 4px solid #F90;*/
	height: auto;
}
.contentbg ul {
	margin-bottom:10px;
}
.contentbg li {
	font-size:14px;
	font-weight: normal;
}
.contentbg2 {
	background: #FFF;
	margin: 0px;
	padding: 10px;
	border-left: 4px solid #F90;
}
tr {
	font-size:1em;
}
ul#maps-cont {
	height: 125px;
	width: 590px;
	text-align: center;
	list-style: none;
	margin: 0 auto 0 auto;
	clear: both;
	position: relative;
	margin-bottom: -1px;
}
#maps-cont li {
	position: absolute;
	text-indent: -9999px;
	top: 0;
}
#maps-cont li a {
	height: 130px;
	display: block;
	outline: none;
}
#maps-cont li.active {
	border-bottom: 1px solid #f2f2f2;
	background-position: bottom;
	height: 125px;
	width: 100px;
	z-index: 10;
}
#maps-cont li.inactive {
	background-position: top;
	border-bottom: 1px solid #ccc;
}
#maps-cont li:hover {
	list-style: none;
	background-position: 0 -153px;
	;
}
#maps-cont li.africa {
	left: 0px;
	width: 100px;
	background-image: url(http://www.travelchannel.co.uk/videoguides/maps/africa.png);
}
#maps-cont li.africa :hover {
}
#maps-cont li.americas {
	left: 115px;
	width: 100px;
	background-image: url(http://www.travelchannel.co.uk/videoguides/maps/americas.png);
}
#maps-cont li.asia-pac {
	left: 230px;
	width: 100px;
	background-image: url(http://www.travelchannel.co.uk/videoguides/maps/asia-pac.png);
}
#maps-cont li.europe {
	left:350px;
	width: 100px;
	background-image: url(http://www.travelchannel.co.uk/videoguides/maps/europe.png);
}
#maps-cont li.middle-east {
	left: 480px;
	width: 100px;
	background-image: url(http://www.travelchannel.co.uk/videoguides/maps/middle-east.png);
}
.contentbg-orange {
	background: url(../layout/orange.jpg) repeat-x bottom;
	margin: 0px 0px 15px;
	padding: 20px;
	border-left: 4px solid #F7B36F;
	height: 50px;
	color: #000;
	font-size: 18px;
	text-align: center;
}
.transparent {
	background: url(../layout/white40.png);
}
.transparent2 {
	background: url(../layout/black45.png);
}
.dark {
	background: url(../layout/black45.png);
}
.box-640x250 {
	float: left;
	height: 250px;
	width: 640px;
	margin-bottom: 20px;
	display: block;
	margin-right: 15px;
}
.box-640x350 {
	float: left;
	height: 350px;
	width: 640px;
	margin-bottom: 20px;
	display: block;
	margin-right: 15px;
}
.box-470x350 {
	float: left;
	height: 280px;
	width: 470px;
	margin-bottom: 20px;
	display: block;
	margin-right: 15px;
}
.box-460x650 {
	float: left;
	height: auto;
	width: 465px;
	margin-bottom: 20px;
	display: block;
	margin-right: 20px;
}
.box-640xxxx {
	float: left;
	width: 640px;
	margin-bottom: 20px;
	display: block;
	margin-right: 15px;
	font-size: 14px;
}
.box-series-bg {
	height: 350px;
}
.box-300x250 {
	float: left;
	height: 250px;
	width: 300px;
	margin-bottom: 20px;
	display: block;
	margin-right: 0px;
}
.box-300xxxx {
	float: left;
	width: 300px;
	margin-bottom: 20px;
	display: block;
	margin-right: 0px;
}
.box-fullwidth {
	float: left;
	margin-bottom: 20px;
	display: block;
	width: 955px;
}
/* @group box */

	.boxgrid h3 {
	padding:6px 5px 8px 3px;
	font-size:1.2em;
	font-weight:bold;
	padding-bottom:0px;
	color:#f97634;
	text-shadow: #000 1px 1px 0px !important;
}
.boxgrid {
	margin:12px;
	float:left;
	border:1px solid #fb8f62;
	background:#000;
	overflow: hidden;
	position: relative;
	width:164px;
	height:107px;
	float:left;
	background: #333;
}
.boxgrid img {
	top: 0;
	left: 0;
	border: 0;
}
.boxgrid p {
	float:left;
	margin-top:12px;
	padding: 0 10px 0 3px;
	margin-bottom:10px;
	font-weight: normal;
	line-height:1.2em;
	color:#000;
}
.boxcaption {
	float: left;
	position: absolute;
	background: #000;
	height: 150px;
	width: 164px;
	top:-30px;
	left:0;
	padding-bottom:0;
	opacity: .70;
/* For IE 5-7 */
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
	/* For IE 8 */
-MS-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}
.boxcaption p {
}
.boxcaption p a {
	font-size:1.1em;
	color:#fff;
	line-height:22px;
	padding-right:35px;
	height:10px;
	background:   url(http://www.travelchannel.co.uk/videoguides2/layout/arrows2.png) no-repeat 95px 0px;
}
.boxcaption p a:hover {
	font-size:1.1em;
	color:#f97634;
	background:   url(http://www.travelchannel.co.uk/videoguides2/layout/arrows2.png) no-repeat 95px -22px;
}
.box-309x200 {
	float: left;
	height: 200px;
	width: 300px;
	margin-bottom: 20px;
	display: block;
	margin-right: 27px;
}
.norightmargin {
	margin-right: 0px;
}
.minheight200 {
	min-height: 180px;
}
.minheight100 {
	min-height: 150px;
}
#footer p a {
	font-weight: bold;
	color: #FFF;
	text-decoration: none;
}
h2 a:link, h2 a:visited, h2 a:active {
	text-decoration: none;
	color: #FFF;
}
h2 a:hover {
	text-decoration: none;
	color: #F90;
}
h3 {
	margin: 0;
	padding: 0px;
	font-size: 16px;
	color: #333;
}
.gradbg {
	font-size: 16px;
	color: #333;
	background: url(../layout/grad_0.jpg) repeat-x;
	padding: 7px 5px;
	float: left;
	width: 288px;
	margin-right: 10px;
	margin-bottom: 12px;
	-pie-background: linear-gradient(top, #fafafa, #cfd0ce);
	background-image : -moz-radial-gradient(top, #fafafa, #cfd0ce);
	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fafafa), to(#cfd0ce));
	-moz-border-radius: 6px; /* FF1+ */
	-webkit-border-radius: 6px; /* Saf3+, Chrome */
	border-radius: 6px; /* Opera 10.5, IE 9 */
	-moz-box-shadow: 0px 0px 2px #444; /* FF3.5+ */
	-webkit-box-shadow: 0px 0px 2px #444; /* Saf3.0+, Chrome */
	box-shadow: 0px 0px 2px #444; /* Opera 10.5, IE 9 */
	border: 1px solid #fff;
	font-size:1.2em;
	font-weight:normal;
	color:#111 !important;
	text-decoration:none;
	text-transform: capitalize;
	text-shadow:0 1px 0 #fff;
	position:relative;
	behavior: url('http://www.travelchannel.co.uk/css/path-ie/PIE.htc');
}

.gradbg:hover, .presbox:hover {
	background: #ff7a00;
	-pie-background: linear-gradient(top, #fc8c26, #ec6603);
	background-image : -moz-radial-gradient(top, #fc8c26, #ec6603);
	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fc8c26), to(#ec6603));
	color:#fff !important;
	cursor:pointer;
	text-shadow: none

}
.gradbg a:hover, .presbox a:hover, .gradbg:hover a {
	text-decoration: none;
	color:#FFFFFF;
}
.gradbg a, .presbox a {
	text-decoration: none;
	color: #333;
	text-shadow: none
}
.gradbgnew {
	color: #FFF;
	background: url(../layout/newseries.jpg) repeat-x right;
}
.gradbgfull {
	background: #ECF0F1 url(../layout/grad_0.jpg) repeat-x bottom;
	padding: 10px;
	margin-bottom: 10px;
	min-height: 140px;
}
.gradbgrow {
	background: #ECF0F1 url(../layout/grad_0.jpg) repeat-x bottom;
	padding: 10px;
	margin-bottom: 10px;
	-moz-border-radius: 6px; /* FF1+ */
	-webkit-border-radius: 6px; /* Saf3-4 */
	border-radius: 6px; /* Opera 10.5, IE9, Saf5, Chrome */
}
.gradbgrow:hover {
	background: #ECF0F1;
	-moz-box-shadow: 0px 0px 4px #ccc; /* FF3.5+ */
	-webkit-box-shadow: 0px 0px 4px #ccc; /* Saf3.0+, Chrome */
	box-shadow: 0px 0px 4px #ccc; /* Opera 10.5, IE 9 */
}
.gradbgrow h3 {
	font-size:14px;
}
.gradbg_button {
	background: #ECF0F1 url(../layout/button_bg.jpg) repeat-x bottom;
	padding: 10px;
	display: block;
	width: 100px;
	font-weight:bold;
	cursor:pointer;
	text-align:center;
	margin: 5px auto;
	color: #FFF;
}
.rikybutton a {
	padding: 10px;
	display: block;
	width: auto;
	text-decoration:none;
	font-weight:bold;
	cursor:pointer;
	text-align:center;
	margin: 5px auto;
	color:#000;
	text-shadow:#fff 1px 1px 0;
	font-size: 16px;
}
.rikybutton a:hover {
	color:#0475bc;
}
.gradbg_button_wide {
	background: #FCDA93 url(../layout/button_bg.jpg) repeat-x bottom;
	padding: 10px;
	display: block;
	width: auto;
	font-weight:bold;
	cursor:pointer;
	text-align:center;
	margin: 5px auto;
	color: #FFF;
	font-size: 16px;
}
.gradbg_button_wide a {
	color: #000000;
	text-decoration:none;
}
.presbox {
	font-size: 16px;
	color: #333;
	background: url(../layout/pr_grad_0.jpg) repeat-x bottom;
	padding: 5px;
	float: left;
	width: 210px;
	margin-right: 10px;
	margin-bottom: 10px;
	-moz-border-radius: 6px; /* FF1+ */
	-webkit-border-radius: 6px; /* Saf3+, Chrome */
	border-radius: 6px; /* Opera 10.5, IE 9 */
	-moz-box-shadow: 0px 2px 4px #ccc; /* FF3.5+ */
	-webkit-box-shadow: 0px 2px 4px #ccc; /* Saf3.0+, Chrome */
	box-shadow: 0px 2px 4px #ccc; /* Opera 10.5, IE 9 */
	border: 1px solid #B4B4B4;
}
.presbox img {
	float: left;
	margin-right: 5px;
}

.contentbg h2 {
	background: none;
	border-width: 0px;
	border-style: none;
}
.grey {
	font-size: 15px;
	color: #999;
}
.leftcol {
	padding: 0px;
	float: left;
	width: 620px;
	margin-right: 15px;
}
.rightcol {
	margin: 0px;
	padding: 0px;
	float: left;
	width: 320px;
}
.serieslink {
	font-size: 14px;
	background: url(http://www.travelchannel.co.uk/images/ie/bg1.jpg) top left repeat-x;
	background-image : -moz-radial-gradient(top, #fafafa, #cfd0ce);
	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fafafa), to(#cfd0ce));
	-moz-border-radius: 6px; /* FF1+ */
	-webkit-border-radius: 6px; /* Saf3+, Chrome */
	border-radius: 6px; /* Opera 10.5, IE 9 */
	-moz-box-shadow: 0px 0px 2px #444; /* FF3.5+ */
	-webkit-box-shadow: 0px 0px 2px #444; /* Saf3.0+, Chrome */
	box-shadow: 0px 0px 2px #444; /* Opera 10.5, IE 9 */
	border: 1px solid #fff;
	font-size:1.2em;
	font-weight:normal;
	color:#111 !important;
	text-decoration:none;
	text-transform: capitalize;
	text-shadow:0 1px 0 #fff;
	padding: 8px;
	margin-bottom: 5px;
	display: block;
	float: left;
	width: 130px;
	margin-left: 0px;
	margin-right: 5px;
}
.serieslink:hover, .active {
	background: url(../layout/grad_1.jpg) repeat-x bottom;
}
.serieslink a {
	text-decoration: none;
	color: #333;
}
.bmargin {
	margin-bottom: 15px;
}
.contentbg h3 a {
	text-decoration: none;
}
.weekday {
	background: #a5a5a5 url(../layout/black_0.jpg) repeat-x bottom;
	padding: 9px;
	float: left;
	height: 70px;
	width: 70px;
	margin-right: 5px;
	margin-bottom: 20px;
	text-align: center;
	color: #CCC;
	-moz-box-shadow: 0px 0px 2px #999; /* FF3.5+ */
	-webkit-box-shadow: 0px 0px 2px #999; /* Saf3.0+, Chrome */
	box-shadow: 0px 0px 2px #999; /* Opera 10.5, IE 9 */
	-moz-border-radius: 4px; /* FF1+ */
	-webkit-border-radius: 4px; /* Saf3-4 */
	border-radius: 4px; /* Opera 10.5, IE 9, Saf5, Chrome */
	border: 1px solid #666;
}
.weekday:hover {
	background: #bbbbbb url(../layout/black_1.jpg) repeat-x bottom;
	cursor:pointer;
}
.today {
	background: #fbf1c8 url(../layout/orange.jpg) repeat-x bottom;
	color:#333;
}
.onnow {
	background: #fbf1c8 url(../layout/orange.jpg) repeat-x bottom;
	border: 1px solid #666;
	padding: 6px 0px 6px 6px;
	float: left;
	height: 78px;
	margin-bottom: 20px;
	clear: right;
	margin-left: 10px;
	width: 150px;
	-moz-box-shadow: 0px 0px 2px #999; /* FF3.5+ */
	-webkit-box-shadow: 0px 0px 2px #999; /* Saf3.0+, Chrome */
	box-shadow: 0px 0px 2px #999; /* Opera 10.5, IE 9 */
	-moz-border-radius: 4px; /* FF1+ */
	-webkit-border-radius: 4px; /* Saf3-4 */
	border-radius: 4px; /* Opera 10.5, IE 9, Saf5, Chrome */
}
.onnowsearch {
	background: #fbf1c8 url(../layout/orange.jpg) repeat-x bottom;
	border: 1px solid #666;
	padding: 6px;
	float: right;
	height: 100px;
	margin-left: 10px;
	width: 250px;
	-moz-box-shadow: 0px 0px 2px #999; /* FF3.5+ */
	-webkit-box-shadow: 0px 0px 2px #999; /* Saf3.0+, Chrome */
	box-shadow: 0px 0px 2px #999; /* Opera 10.5, IE 9 */
	-moz-border-radius: 4px; /* FF1+ */
	-webkit-border-radius: 4px; /* Saf3-4 */
	border-radius: 4px; /* Opera 10.5, IE 9, Saf5, Chrome */
	font-size: 10px;
}

.imgsearch {
	border: 1px solid #666;
	padding: 6px;
	float: right;
	margin-left: 10px;
	width: 250px;
	-moz-box-shadow: 0px 0px 2px #999; /* FF3.5+ */
	-webkit-box-shadow: 0px 0px 2px #999; /* Saf3.0+, Chrome */
	box-shadow: 0px 0px 2px #999; /* Opera 10.5, IE 9 */
	-moz-border-radius: 4px; /* FF1+ */
	-webkit-border-radius: 4px; /* Saf3-4 */
	border-radius: 4px; /* Opera 10.5, IE 9, Saf5, Chrome */
}
.clearboth {
	clear: both;
	display: block;
}
.whatson {
	font-size:11px;
}
.whatson a {
	color:#000;
	text-decoration:none;
	font-size:13px;
}
.whatson a:hover {
	color: #0094C3;
	text-decoration:none;
	font-size:13px;
}
.blue {
	color: #0094C3;
}
.featureimg {
	background: no-repeat center center;
	margin: 28px;
	height: 115px;
	width: 140px;
	border: 4px solid #CCC;
	float: left;
}
.frameimg {
	margin: 5px auto;
	border: 4px solid #CCC;
}
.capitaliseme {
	text-transform:capitalize;
}
.links-v a {
	font-weight:none;
	font-size:1.1em;
	padding:5px 20px 6px 0;
}
.onnow p a {
	color: #666;
	text-decoration: none;
}
.contentbg h5 {
	font-size: 24px;
	margin: 0px 0px 20px;
	padding: 0px;
}
.contentbg-orange a {
	color: #000;
	text-decoration: none;
}
.contentbg-orange:hover {
	cursor:pointer;
}
#searchbox {
	float: right;
	padding: 10px;
	text-align: right;
	width: 330px;
}
#bigsearchbox {
	padding: 40px;
	text-align: center;
}
#searchbox #programmesearch #search, #searchbox #episodesearch #search {
	color: #ddd;
	background: #414141;
	padding: 3px;
	margin: 0px;
	border: 1px solid #555;
}
#searchbox #programmesearch #button, #searchbox #episodesearch #button {
	margin: 0px;
}
#bigsearchbox #episodesearch #button {
	font-size: 14px;
	padding: 8px;
	border: 2px solid #666;
	color: #333;
}
#bigsearchbox #episodesearch #epsearchme #search {
	padding: 8px;
	background: #E8E8E8;
	border: 2px solid #999;
	font-size: 14px;
	font-weight: bold;
}
.smalltext {
	font-size: 10px;
}
.size-paragraph {
	font-size:20px;
	line-height:31px;
}
::selection {
	background: #5cabf5;
}
::-moz-selection {
 background: #fcb671;
}
.video-534x320 {
	clear: right;
	float: right;
	height: 292px;
	width: 460px;
	margin-top:0px;
	margin-right: 10px;
	margin-left:25px;
	/* [disabled]-moz-border-radius: 6px;
*/ /* FF1+ */
	/* [disabled]-webkit-border-radius: 6px;
*/ /* Saf3+, Chrome */
	/* [disabled]border-radius: 6px;
*/ /* Opera 10.5, IE 9 */
	-moz-box-shadow: 0px 5px 18px #333; /* FF3.5+ */
	-webkit-box-shadow: 0px 1px 8px #333; /* Saf3.0+, Chrome */
	box-shadow: 0px 1px 8px #333; /* Opera 10.5, IE 9 */
	border: 2px solid #fff;
	padding:10px;
	position:relative;
	behavior: url('http://www.travelchannel.co.uk/css/path-ie/PIE.htc');
}
.video2 {
	clear: right;
	float: right;
	height: 292px;
	width: 480px;
	margin-top:20px;
	margin-right: 10px;
	margin-left:25px;
	-moz-border-radius: 6px; /* FF1+ */
	-webkit-border-radius: 6px; /* Saf3+, Chrome */
	border-radius: 6px; /* Opera 10.5, IE 9 */
	-moz-box-shadow: 0px 5px 18px #333; /* FF3.5+ */
	-webkit-box-shadow: 0px 1px 8px #333; /* Saf3.0+, Chrome */
	box-shadow: 0px 1px 8px #333; /* Opera 10.5, IE 9 */
	border: 2px solid #fff;
	padding:10px;
	position:relative;
	behavior: url('http://www.travelchannel.co.uk/css/path-ie/PIE.htc');
}
.img-about {
	-moz-box-shadow: 0px 5px 18px #333; /* FF3.5+ */
	-webkit-box-shadow: 0px 1px 8px #333; /* Saf3.0+, Chrome */
	box-shadow: 0px 1px 8px #333; /* Opera 10.5, IE 9 */
	border: 2px solid #fff;
	background: #fff;
	position:relative;
	behavior: url('http://www.travelchannel.co.uk/css/path-ie/PIE.htc');
}
#personalinfo {
	width: auto;
	border-style: none;
}
#mediaspace {
	background: url(../layout/white40.png);
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}
.contentbg.minheight200.transparent h2 {
	font-size: 14px;
	background: url(none);
}
#container #mainContent .rightcol .bmargin .contentbg.minheight200.transparent h2 {
	font-size: 14px;
	background: url(none);
	margin: 5px 0px 0px;
	padding: 0px;
	border-style: none;
}
#container #mainContent .leftcol div .contentbg.clearfix h2 {
	font-size: 16px;
	background: url(none);
	color: #333;
	margin: 10px 0px 0px;
	padding: 0px;
	border-style: none;
}
#container #mainContent .leftcol div .contentbg.clearfix h1 {
	background: url(none);
	margin: 0px 0px 10px;
	padding: 0px;
	border-style: none;
	color: #333;
	font-size: 18px;
}
#container #mainContent .box-300x250 .contentbg.minheight200.transparent h2 {
	font-size: 14px;
	font-weight: normal;
	background: url(none);
	margin: 10px 0px 0px;
	padding: 0px;
	border-style: none;
	color: #000;
}
#container #mainContent .rightcol .bmargin .contentbg.transparent h2 {
	font-size: 14px;
	color: #000;
	background: url(none);
	margin: 5px 0px 0px;
	padding: 0px;
	border-style: none;
}
.white {
	color: #FFF;
}
#smallfooter {
	font: 9px Verdana, Arial, Helvetica, sans-serif;
	color: #666;
	text-align: center;
	font-weight: normal;
	color: #CCC;
	width:870px;
	margin: 5px auto;
	padding-right: 20px;
	padding-left: 20px;
}
#smallfooter p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
	font: 10px Arial, Helvetica, sans-serif;
	color: #666;
	text-align: center;
	font-weight: normal;
	color: #666;
}
#smallfooter p a {
	color: #333;
	text-decoration: none;
	font-weight:normal;
	font: 10px Arial, Helvetica, sans-serif;
}
#container #mainContent .box-fullwidth .contentbg .clearfix .weekday h3 {
	font-size: 14px;
}
.orangebutton {
	background: url(../layout/button_bg.jpg) repeat-x center;
	font-weight: bold;
	color: #FFF;
	font-size: 16px;
	border: 0px none #666;
	padding: 10px 10px;
	height:auto;
	width: auto;
}
.centred {
	text-align: center;
}
.rightmargin {
	margin-right: 20px;
}
.leftmargin {
	margin-left: 20px;
}
.small {
	font-size: 9px;
	color: #666;
}
.giveawayimg {
	background:  no-repeat center top;
	float: left;
	height: 140px;
	width: 120px;
	margin-right: 10px;
}
.compimg {
	background:  no-repeat right bottom;
	float: right;
	height: 200px;
	width: 420px;
	margin-left: 10px;
	margin-bottom: 10px;
}
#container #mainContent .leftcol div .contentbg.clearfix h1 strong a {
	text-decoration: none;
}
.buttonlike {
	background: url(../layout/orange.jpg) repeat-x;
	margin: 4px;
	display: block;
	width: 130px;
	color: #FFF;
	text-align: center;
	padding: 10px;
	background:#dbdbda;
	-pie-background: linear-gradient(top, #fafafa, #cfd0ce);
	background-image : -moz-radial-gradient(top, #fafafa, #cfd0ce);
	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fafafa), to(#cfd0ce));
	-moz-border-radius: 6px; /* FF1+ */
	-webkit-border-radius: 6px; /* Saf3+, Chrome */
	border-radius: 6px; /* Opera 10.5, IE 9 */
	-moz-box-shadow: 0px 1px 5px #444; /* FF3.5+ */
	-webkit-box-shadow: 0px 1px 5px #444; /* Saf3.0+, Chrome */
	box-shadow: 0px 1px 5px #444; /* Opera 10.5, IE 9 */
	border: 1px solid #fff;
	color:#222 !important;
	text-decoration:none;
	text-transform: capitalize;
	text-shadow:0 1px 0 #fff;
	position:relative;
	behavior: url('http://www.travelchannel.co.uk/css/path-ie/PIE.htc');
}
.buttonlike:hover {
	background: #ff7a00;
	-pie-background: linear-gradient(top, #fc8c26, #ec6603);
	background-image : -moz-radial-gradient(top, #fc8c26, #ec6603);
	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fc8c26), to(#ec6603));
	-moz-box-shadow: 0px 1px 5px #999; /* FF3.5+ */
	-webkit-box-shadow: 0px 1px 5px #999; /* Saf3.0+, Chrome */
	box-shadow: 0px 1px 5px #999; /* Opera 10.5, IE 9 */
	color:#fff !important;
	text-shadow:0 1px 0 #333;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	behavior: url('http://www.travelchannel.co.uk/css/path-ie/PIE.htc');
}
.hpbuttons {
	background: #C3CAD0 url(../layout/grad_0.jpg) repeat-x top;
	padding: 3px;
	margin-bottom: 3px;
	margin-top: 4px;
	-moz-border-radius: 6px; /* FF1+ */
	-webkit-border-radius: 6px; /* Saf3+, Chrome */
	border-radius: 6px; /* Opera 10.5, IE 9 */
	-moz-box-shadow: 0px 2px 4px #ccc; /* FF3.5+ */
	-webkit-box-shadow: 0px 2px 4px #ccc; /* Saf3.0+, Chrome */
	box-shadow: 0px 2px 4px #ccc; /* Opera 10.5, IE 9 */
	border: 1px solid #B4B4B4;
}
.hpbuttons:hover {
	background: #fca149;
}
.hpbuttons a {
	color: #333;
	padding-left:3px;
	text-decoration: none;
	font-size: 14px;
	font-weight: normal;
}
.hpbuttons a:hover {
	color: #000;
}
#superheader {
	font-size: 9px;
	color: #666;
	position: absolute;
	top: 0px;
	width: 150px;
	text-align: left;
	left: 20px;
	height: 25px;
}
#superheader p {
	margin: 0px;
	padding: 0.2em 0.75em 0.2em 0em;
	display: inline;
	float: left;
}
#superheader p strong {
	color: #CCC;
}
#superheader #MenuBar2 li .MenuBarSubmenuVisible li a img {
	margin: 0px 4px;
}
.thscomp {
	background: #FFF url(../theholidayshow/thscomp_header.jpg) no-repeat left top;
}
.whatson p {
	color: #666;
}
#container #mainContent .box-fullwidth .contentbg.minheight200.thscomp h2 {
	background: url(none);
	margin: 0px 0px 10px 150px;
	padding: 0px;
	border-style: none;
	color: #333;
	font-size: 16px;
}
#container #mainContent .box-fullwidth .contentbg.minheight200.thscomp h3 a {
	margin: 0px 0px 10px 150px;
	border-style: none;
	color: #FFF;
	font-size: 16px;
	-moz-border-radius: 8px; /* FF1+ */
	-webkit-border-radius: 8px; /* Saf3+, Chrome */
	border-radius: 8px; /* Opera 10.5, IE 9 */
}
h6 {
	font-size: 14px;
	margin: 0px 0px 2px;
	padding: 0px;
	text-transform: capitalize;
	text-decoration: none;
}
#container #mainContent .box-309x200 .contentbg.thscomp h4 a {
	color: #333;
	font-size: 16px;
	text-decoration: none;
}
#container #mainContent .box-309x200 .contentbg.thscomp h4 {
	margin: 6px 0px;
}
h6 a {
	text-decoration: none;
}
.whatson_box {
	background: url(../layout/white40.png);
	padding: 3px;
	float: left;
	height: 88px;
	width: 130px;
	margin-bottom: 10px;
	overflow: hidden;
}
.whatson_newsletter {
	background: url(../layout/white40.png);
	padding: 5px;
	height: 58px;
	overflow: hidden;
	clear: both;
	text-align: center;
}
.leftmargin {
	margin-left:0px;
}
.white80 {
	background-image:url(../layout/white80.png)
}
#rotator {
	overflow: hidden;
	position: relative;
	width: 316px;
	height: 240px;
	text-align:center;
}
#rotator img {
	border: 0;
}
.button-css {
	margin:6px auto 0;
	text-align:center;
	width: auto;
	display: block;
}
.microsite_left {
	display: block;
	float: left;
	background: url(../layout/microsite_left.gif) no-repeat;
	width: 52px;
	height: 41px;
	margin-left: 50px;
}
.microsite_centre {
	display: block;
	float: left;
	background: url(../layout/microsite_back.gif) repeat-x;
	height: 33px;
	text-align:center;
	color:#C60;
	text-decoration:none;
	padding:8px 28px 0;
	font-size:12px;
	width: 350px;
	clear: none;
}
.microsite_right {
	display: block;
	float: left;
	background: url(../layout/microsite_right.gif) no-repeat;
	width: 51px;
	height: 41px;
}
#container #mainContent .leftcol div .contentbg.clearfix.transparent table tbody tr td h3 a {
	color: #FFF;
}
.holidayshow #container #mainContent .box-fullwidth .contentbg.clearfix p {
	font-size: 14px;
}
.contentbg p {
	margin-bottom: 8px;
	margin-top: 0px;
	padding: 0px;
}
.compimg-small {
	border: 3px solid #CCC;
	float: right;
	margin-bottom: 10px;
	margin-left: 10px;
}
.hpbuttons h6 a {
	font-weight: bold;
	margin: 0px;
	padding: 0px;
}
.hpbuttons h6 {
	margin: 0px;
	padding: 0px;
}
.sponsored {
	margin: 0px 12px;
	float: left;
	height: 25px;
	width: auto;
	color: #FFF;
}
.sponsored h3 {
	margin: 0px;
	padding: 0px;
	color: #FFF;
}
.tab a {
	background: url(../layout/black_1.jpg) repeat-x center;
	margin: 5px;
	padding: 4px 8px;
	border: 1px solid #666;
	-moz-box-shadow: 0px 0px 2px #999; /* FF3.5+ */
	-webkit-box-shadow: 0px 0px 2px #999; /* Saf3.0+, Chrome */
	box-shadow: 0px 0px 2px #999; /* Opera 10.5, IE 9 */
	-moz-border-radius: 4px; /* FF1+ */
	-webkit-border-radius: 4px; /* Saf3-4 */
	border-radius: 4px; /* Opera 10.5, IE 9, Saf5, Chrome */
	color: #999;
	font-size: 12px;
}
.tab a:hover {
	background: url(../layout/black_0.jpg) repeat-x center;
}
.tab .on {
	background: url(../layout/orange.jpg) repeat-x center;
	color: #FFF;
}
.spanish {
	clear:both;
	position:relative;
	overflow:auto;
	padding-bottom:20px;
}
.spanish ul {
	padding-left:0;
	font-size:1.1em;
	width:610px;
	height:auto;
}
.spanish li img {
	float:left;
	display:block;
}
.spanish li {
	list-style:none;
	border:1px solid #ddd;
	display:block;
	padding:10px;
	margin-right:18px;
	margin-left:10px;
	height:155px;
	margin-bottom:23px;
	width:150px;
	float:left;
}
.spanish li:hover {
	background:#ffe327;
	border:1px solid #fff;
	-moz-box-shadow:0 5px 20px #444;
	box-shadow:0 5px 20px #444;
	-webkit-box-shadow: 0 5px 20px #444;
	background-image: -moz-linear-gradient(100% 100% 90deg, #ffe327, #ef2902);
	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ef2902), to(#ffe327));
}
}
.spanish span {
	padding-top:5px;
	width:160px;
	float:left
}
.leftimg {
	margin-right: 10px;
}
.rightimg {
	left: 10px;
}
#imgleft {
	margin-right: 10px;
}
#imgleft {
	left: 10px;
}
#imgright {
	margin-left: 10px;
}
.sub-nav-container p {
	font-size:1.1em;
	line-height:18px;
}
p {
	font-size:14px;
	line-height:24px;
}
.contentbg1 {
	background: #FFF;
	margin: 0px;
	padding: 6px 2px;
	border-left: 4px solid #F90;
	/*border-bottom: 4px solid #F90;*/
	height: auto;
	-moz-box-shadow: 0px 0px 4px #000000; /* FF3.5+ */
	-webkit-box-shadow: 0px 0px 4px #000000; /* Saf3.0+, Chrome */
	box-shadow: 0px 0px 4px #000000; /* Opera 10.5, IE 9.0 */
}
.scheduleitem h3 {
	font-size:15px !important;
}
.CollapsiblePanelContent {
	font-size:1.2em !important;
	line-height:24px;
}
.container-footer {
	marging-top:40px;
}
.three-cont {
	width:960px;
	height:auto;
	float:left;
	margin:10px 0;
}
.competition-title {
	margin-right:28px;
	width:300px;
	float:left;
	font-size:1.1em;
	height:40px;
	color:#CCC;
}
.competition-title h2 a, .reviews-title h2 a, .shop-title h2 a {
	color: #FFFFFF;
	font-size: 17px;
	margin: 0;
	padding: 0px;
}
.competition-image {
	clear: right;
	float: right;
	background:#000;
	margin-top:20px;
	margin-right: 10px;
	margin-left:25px;
	-moz-border-radius: 6px; /* FF1+ */
	-webkit-border-radius: 6px; /* Saf3+, Chrome */
	border-radius: 6px; /* Opera 10.5, IE 9 */
	-moz-box-shadow: 0px 5px 18px #333; /* FF3.5+ */
	-webkit-box-shadow: 0px 1px 8px #333; /* Saf3.0+, Chrome */
	box-shadow: 0px 1px 8px #333; /* Opera 10.5, IE 9 */
	border: 2px solid #fff;
	padding:10px;
	position:relative;
	behavior: url('http://www.travelchannel.co.uk/css/path-ie/PIE.htc');
}
.reviews-title {
	margin-right:28px;
	width:300px;
	font-size:1.1em;
	float:left;
	height:40px;
	color:#CCC;
}
.shop-title {
	width:300px;
	float:left;
	font-size:1.1em;
	height:40px;
	color:#CCC;
}
.competition-box {
	width:296px;
	background:#fff;
	height:400px;
	border-left: 4px solid #FF9900;
	float:left;
	margin-right:28px;
}
.competition-box img {
	padding-bottom:15px;
}
.competition-box a {
	padding-left:10px;
	font-size:16px;
	color:#444;
	text-decoration:none;
}
.shop-box a {
	font-size:14px;
	color:#444;
	text-decoration:none;
}
.competition-box a:hover, .shop-box a:hover {
	color:#E95107;
}
.competition-box p {
	padding-top:15px;
	padding-left:10px;
}
.reviews-box {
	width:296px;
	background:#fff;
	height:400px;
	border-left: 4px solid #F90;
	float:left;
	margin-right:28px;
}
.reviews-month {
	padding:10px 5px;
	color:#666;
	height:20px;
	font-size:1.5em;
}
.reviews-month p {
	font-size:16px;
	color:#666;
	padding-top:10px;
	padding-left:5px;
	font-weight:bold;
}
.shop-box {
	width:296px;
	background:#fff;
	border-left: 4px solid #F90;
	height:auto;
	float:left;
	padding: 10;
	margin-bottom: 25px;
}
.shop-box .title-dvd {
	font-size:16px;
	color:#666;
	font-weight:bold;
	margin-bottom: 15px;
}
.shop-box p {
}
.shop-box h3 {
	position:absolute;
	width:100px;
	;
}
.reviews-box ul, .competition-box ul {
	width:290px;
	float:left;
	padding-left:0;
	list-style:none !important;
}
.buttons-reviews a {
	width:260px;
	display:block;
	list-style:none;
	background:#dbdbda;
	height:auto;
	-pie-background: linear-gradient(top, #fafafa, #cfd0ce);
	background-image : -moz-radial-gradient(top, #fafafa, #cfd0ce);
	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fafafa), to(#cfd0ce));
	padding: 7px 5px 7px;
	margin:11px 6px 11px 12px;
	-moz-border-radius: 6px; /* FF1+ */
	-webkit-border-radius: 6px; /* Saf3+, Chrome */
	border-radius: 6px; /* Opera 10.5, IE 9 */
	-moz-box-shadow: 0px 0px 4px #444; /* FF3.5+ */
	-webkit-box-shadow: 0px 0px 4px #444; /* Saf3.0+, Chrome */
	box-shadow: 0px 0px 4px #444; /* Opera 10.5, IE 9 */
	border: 1px solid #fff;
	font-size:1.2em;
	font-weight:normal;
	color:#111 !important;
	text-decoration:none;
	text-transform: capitalize;
	text-shadow:0 1px 0 #fff;
	position:relative;
	behavior: url('http://www.travelchannel.co.uk/css/path-ie/PIE.htc');
}
.buttons-reviews a:hover {
	background: #ff7a00;
	-pie-background: linear-gradient(top, #fc8c26, #ec6603);
	background-image : -moz-radial-gradient(top, #fc8c26, #ec6603);
	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fc8c26), to(#ec6603));
	-moz-box-shadow: 0px 0px 2px #999; /* FF3.5+ */
	-webkit-box-shadow: 0px 0px 2px #999; /* Saf3.0+, Chrome */
	box-shadow: 0px 0px 2px #999; /* Opera 10.5, IE 9 */
	color:#fff !important;
	text-shadow:0 1px 0 #333;
	behavior: url('http://www.travelchannel.co.uk/css/path-ie/PIE.htc');
}
.buttons-go {
	margin-top:20px;
}
.buttons-go a {
	background:#dbdbda;
	-pie-background: linear-gradient(top, #fafafa, #cfd0ce);
	background-image : -moz-radial-gradient(top, #fafafa, #cfd0ce);
	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fafafa), to(#cfd0ce));
	padding: 7px 15px 7px 15px;
	margin:21px 6px;
	-moz-border-radius: 6px; /* FF1+ */
	-webkit-border-radius: 6px; /* Saf3+, Chrome */
	border-radius: 6px; /* Opera 10.5, IE 9 */
	-moz-box-shadow: 0px 0px 4px #444; /* FF3.5+ */
	-webkit-box-shadow: 0px 0px 4px #444; /* Saf3.0+, Chrome */
	box-shadow: 0px 0px 4px #444; /* Opera 10.5, IE 9 */
	border: 1px solid #fff;
	font-size:14px;
	color:#222 !important;
	text-decoration:none;
	text-transform: capitalize;
	text-shadow:0 1px 0 #fff;
	position:relative;
	behavior: url('http://www.travelchannel.co.uk/css/path-ie/PIE.htc');
}
.buttons-go a:hover {
	background: #ff7a00;
	-pie-background: linear-gradient(top, #fc8c26, #ec6603);
	background-image : -moz-radial-gradient(top, #fc8c26, #ec6603);
	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fc8c26), to(#ec6603));
	-moz-box-shadow: 0px 0px 4px #999; /* FF3.5+ */
	-webkit-box-shadow: 0px 0px 4px #999; /* Saf3.0+, Chrome */
	box-shadow: 0px 0px 4px #999; /* Opera 10.5, IE 9 */
	color:#fff !important;
	text-shadow:0 1px 0 #333;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	behavior: url('http://www.travelchannel.co.uk/css/path-ie/PIE.htc');
}
.whatson_box1 {
	float:left;
	margin-right:4px;
	height: 88px;
	width: 130px;
	border-right:1px solid #fff;
	margin-bottom: 10px;
	overflow: hidden;
}
.whatson_box2 {
	float:left;
	height: 88px;
	width: 128px;
	margin-bottom: 10px;
	overflow: hidden;
}
.whatson_newsletter1 {
	margin-left:-2px;
	background:#dbdbda;
	-pie-background: linear-gradient(top, #fafafa, #cfd0ce);
	background-image : -moz-radial-gradient(top, #fafafa, #cfd0ce);
	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fafafa), to(#cfd0ce));
	padding: 5px;
	height: 50px;
	/* [disabled]-moz-border-radius: 4px;
*/ /* FF1+ */
	/* [disabled]-webkit-border-radius: 4px;
*/ /* Saf3+, Chrome */
	/* [disabled]border-radius: 4px;
*/ /* Opera 10.5, IE 9 */
	-moz-box-shadow: 0px 0px 2px #444; /* FF3.5+ */
	-webkit-box-shadow: 0px 0px 2px #444; /* Saf3.0+, Chrome */
	box-shadow: 0px 0px 2px #444; /* Opera 10.5, IE 9 */
	overflow: hidden;
	border: 1px solid #fff;
	clear: both;
	text-align: center;
	position:relative;
	behavior: url('http://www.travelchannel.co.uk/css/path-ie/PIE.htc');
}
.whatson_newsletter1:hover {
	background: #eeeeee;
	-pie-background: linear-gradient(top, #fff, #eeeeee);
	background-image : -moz-radial-gradient(top, #fff, #eeeeee);
	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#eeeeee));
	border: 1px solid #f57312;
	position:relative;
	behavior: url('http://www.travelchannel.co.uk/css/path-ie/PIE.htc');
}
.leftmargin1 {
	margin-left:0px;
}
.tab-box {
	float:left;
	padding: 0 3px;
	background: url(http://www.travelchannel.co.uk/images/ie/bg3.jpg) top left repeat-x;
	-pie-background: linear-gradient(top, #fafafa, #cfd0ce);
	background-image : -moz-radial-gradient(top, #fafafa, #cfd0ce);
	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fafafa), to(#cfd0ce));
	padding: 0px 3px;
	margin-bottom:12px;
	border: 1px solid #fff;
	float: left;
	/* [disabled]-moz-border-radius: 4px;
*/ /* FF1+ */
	/* [disabled]-webkit-border-radius: 4px;
*/ /* Saf3+, Chrome */
	/* [disabled]border-radius: 4px;
*/ /* Opera 10.5, IE 9 */
	-moz-box-shadow: 0px 0px 2px #444; /* FF3.5+ */
	-webkit-box-shadow: 0px 0px 2px #444; /* Saf3.0+, Chrome */
	box-shadow: 0px 0px 2px #444; /* Opera 10.5, IE 9 */
	text-shadow:0 1px 0 #fff;
	position:relative;
	behavior: url('http://www.travelchannel.co.uk/css/path-ie/PIE.htc');
}
.tab-box:hover {
	background: #eeeeee;
	-pie-background: linear-gradient(top, #fff, #eeeeee);
	background-image : -moz-radial-gradient(top, #fff, #eeeeee);
	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#eeeeee));
	border: 1px solid #f57312;
	position:relative;
	behavior: url('http://www.travelchannel.co.uk/css/path-ie/PIE.htc');
}
.title-dvd a {
	text-decoration: none;
}
.orangeborder {
	border: 1px solid #612F05;
}
.msgbox {
	background: #ffffff; /* Old browsers */
	background: -moz-linear-gradient(top, #ffffff 0%, #f1f1f1 50%, #e1e1e1 51%, #f6f6f6 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(50%,#f1f1f1), color-stop(51%,#e1e1e1), color-stop(100%,#f6f6f6)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #ffffff 0%,#f1f1f1 50%,#e1e1e1 51%,#f6f6f6 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #ffffff 0%,#f1f1f1 50%,#e1e1e1 51%,#f6f6f6 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #ffffff 0%,#f1f1f1 50%,#e1e1e1 51%,#f6f6f6 100%); /* IE10+ */

filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f6f6f6',GradientType=0 ); /* IE6-9 */
	background: linear-gradient(top, #ffffff 0%,#f1f1f1 50%,#e1e1e1 51%,#f6f6f6 100%); /* W3C */
	padding: 7px 6px;
	margin:5px 0px;
	-moz-border-radius: 6px; /* FF1+ */
	-webkit-border-radius: 6px; /* Saf3+, Chrome */
	border-radius: 6px; /* Opera 10.5, IE 9 */
	-moz-box-shadow: 0px 0px 9px #999; /* FF3.5+ */
	-webkit-box-shadow: 0px 0px 9px #999; /* Saf3.0+, Chrome */
	box-shadow: 0px 0px 9px #999; /* Opera 10.5, IE 9 */
	border: 1px solid #fff;
	font-size:17px;
	color:#444 !important;
	text-decoration:none;
	text-shadow:0 1px 0 #fff;
	position:relative;
	behavior: url('http://www.travelchannel.co.uk/css/path-ie/PIE.htc');
	text-align: center;
}
.msgbox-orange {
background: #ff9123; /* Old browsers */
background: -moz-linear-gradient(top, #ff9123 0%, #ffa73d 50%, #ff7c00 51%, #ff993a 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff9123), color-stop(50%,#ffa73d), color-stop(51%,#ff7c00), color-stop(100%,#ff993a)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #ff9123 0%,#ffa73d 50%,#ff7c00 51%,#ff993a 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #ff9123 0%,#ffa73d 50%,#ff7c00 51%,#ff993a 100%); /* Opera11.10+ */
background: -ms-linear-gradient(top, #ff9123 0%,#ffa73d 50%,#ff7c00 51%,#ff993a 100%); /* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9123', endColorstr='#ff993a',GradientType=0 ); /* IE6-9 */
background: linear-gradient(top, #ff9123 0%,#ffa73d 50%,#ff7c00 51%,#ff993a 100%); /* W3C */
color:#FFF !important;
	padding: 7px 6px;
	margin:5px 0px;
	-moz-border-radius: 6px; /* FF1+ */
	-webkit-border-radius: 6px; /* Saf3+, Chrome */
	border-radius: 6px; /* Opera 10.5, IE 9 */
	-moz-box-shadow: 0px 0px 9px #999; /* FF3.5+ */
	-webkit-box-shadow: 0px 0px 9px #999; /* Saf3.0+, Chrome */
	box-shadow: 0px 0px 9px #999; /* Opera 10.5, IE 9 */
	border: 1px solid #fff;
	font-size:17px;
	text-decoration:none;
	text-shadow:0 1px 0 #F60;
	position:relative;
	behavior: url('http://www.travelchannel.co.uk/css/path-ie/PIE.htc');
	text-align: center;
}
.msgbox a { color:#444; text-decoration:none }
.msgbox-orange a { color:#fff; text-decoration:none  }
.highlightimg {
	background: no-repeat center center;
	height: 300px;
}
.onnowsearch p {
	font-size: 12px;
	margin: 4px 10px;
}

