/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag 
will be appended with the "custom" class, like so: <body class="custom">. You can use 
the "custom" class to override *any* CSS declarations contained in the style.css file.

For example, if you wish to change the default link color to green, you would add the 
following declarations to this file:

	.custom a, .custom a:visited { color: #090; }	<--- This makes links green
	.custom a:hover { color: #00f; }	<--- This makes links blue when you mouse over them

WHY THIS WORKS:

By using the "custom" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered!

More information about styling your Thesis installation using this file can be found
in the User's Guide:
	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/
*/

/* This line sets up our clickable background image based on the site title's link */
/* DIY: Adjust the height & width attributes to reflect the actual size of your image */
/* DIY: Change the filename of your image to reflect the actual header's file name */
.custom #header #logo a { display: block; height: 160px; width: 955px; background: url('http://www.wittistanbul.com/wp-content/themes/witt/custom/images/witt-istanbul-hotel-banner.png') no-repeat; outline: none; }

/* This line gets rid of the site title & tagline by casting them out to far left field */
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }

/* This line collapses the vertical space of the tagline so that there isn't unnecessary white space after the header image */

/* This is a bit of a kludge, but it seems to work. */
.custom #header #tagline { height: 0; }

/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header { position: relative; padding: 0; border-width: 0;}

/* These lines format the main navigation menu. */
custom .menu, .menu a, .menu li ul {
	border-style: none;
}

.custom .menu {
	border-bottom: 1px solid #7F7F7F;
	border-top:  1px solid #7F7F7F;
	border-left: 0;
	border-right: 0;
	display: block;
	height: 1%;
	padding: 5px 0;
}

.custom .menu ul {
	border-bottom-color: #DDD;
}

.custom .menu li {
	display: block;
	text-align: center;
	border-right: 1px solid #7F7F7F;
}

.custom .menu li.tab-5 {
	display: block;
	text-align: center;
	border-right: none;
}

.custom .menu a {letter-spacing: normal; font: 700 1.5em "Georgia","Times New Roman",serif; padding: 0 2.9em;}

/* These lines format the sub navigation menu. */

.custom #cat_tabs, #cat-tabs a, #cat_tabs li ul {
	border-style: none;
}
.custom #cat_tabs {
	border-top:  1px solid #7F7F7F;
	border-bottom:  1px solid #7F7F7F;
	border-left: 0;
	border-right: 0;
	display: block;
	height: 1%;
	padding: 5px 0;
}

.custom ul#cat_tabs { list-style: none; margin-top: 0.1em; }
	.custom ul#cat_tabs li { margin-bottom: -0.1em; float: left; }
	.custom ul#cat_tabs li.current_page_item, ul#tabs li.current-cat { padding-bottom: 0.1em; background: #fff; border-bottom: 0; }
		.custom ul#cat_tabs li a:link { display: block; line-height: 1em; color: #000; text-transform: uppercase; padding:0.545em 5.3em; }
		.custom ul#cat_tabs li a:visited { display: block; line-height: 1em; color: #000; text-transform: uppercase; padding:0.545em 5.3em; }
		.custom ul#cat_tabs li a:hover { color: #FF1600; text-decoration: none; }
		.custom ul#cat_tabs li a:active { color: #FF1600; text-decoration: none; }

/* changing the link of the current page. */
		body.contact ul#cat_tabs li a#contactnav { color: #FF1600; text-decoration: none; }
		body.press ul#cat_tabs li a#pressnav { color: #FF1600; text-decoration: none; }
		body.awards ul#cat_tabs li a#awardsnav { color: #FF1600; text-decoration: none; }
		body.about ul#cat_tabs li a#storynav { color: #FF1600; text-decoration: none; }
		body.faq ul#cat_tabs li a#faqnav { color: #FF1600; text-decoration: none; }

		.custom ul#cat_tabs li ul {position:absolute; display:none; list-style:none;}
		.custom ul#cat_tabs li:hover ul {display:block;}
			.custom ul#cat_tabs li ul li {float:none;}
.custom ul#cat_tabs:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }

.custom #cat_tabs a {letter-spacing: normal; font: 700 1.2em "Georgia","Times New Roman",serif; }

.custom .headline_area h1 { font-size: 3.6em; }
.custom h3 { font-size: 1.8em; }
.custom .format_text a { text-decoration: none;}
.custom .format_text a:hover { text-decoration: underline;}

/* deleting home page items. */
.custom.myopening .headline_area, .custom.myopening #comments {display:none;}
.custom.myopening .post_box {padding-top: 0;}
.custom.myopening .format_text p {margin-bottom: 1em;}
.custom.myopening #cat_tabs {border-bottom: 0;}
.custom.myopening #comments {margin-top: 0;}
/* end deleting home page items. */

/* Getting rid of the notification and space in case comments are closed. */
.custom .comments_closed {margin-top: 0; margin-bottom: 1.6em;}
.custom .comments_closed p {display: none;}

.custom #comments { margin-top: 0; }

.custom #sidebars {border-top: 0;}
.custom ul.sidebar_list {padding-top: 0;}

/*---------------------------------*/
/* WIDGETIZED FOOTER               */
/* Mike Nichols - October 17, 2009 */
/*---------------------------------*/

.custom #footer {
color: #ffffff;
border-width: 0;
padding-top: 10px;
}

.custom #footer a, .custom #footer a:hover {
color: #ffffff;
border-bottom: 0;
}

/* footer widget area setup */
.custom #footer_setup {
	/* widgetized footer background (not footer background) */
	background: #2A2929;
	/* margin at bottom of widgets */
	margin-bottom: 25px;
	/* do not change this! */
	overflow: hidden;
}

/* widget title setup */
.custom #footer_setup .footer_title {
	background: #545454;
	border-bottom: 1px solid #424242;
	display: block;
	float: none;
	padding: 35px 479px 17px 20px;
	position: relative;
	width: auto;
}

.custom .footer_title a.to_top {
	background-image: url("http://www.wittistanbul.com/wp-content/themes/witt/custom/images/up-arrow.gif");
	background-position: right center;
	background-repeat: no-repeat;
	color: #FFFFFF;
	display: block;
	font-size: 11px;
	font-weight: normal;
	padding-right: 10px;
	position: absolute;
	right: 15px;
	text-align: right;
	text-transform: uppercase;
	top: 15px;
	width: 80px;
}

.custom .footer_title a.to_top:hover {
	background-color: transparent;
}

.custom .footer_title a.logo {
	background-image: url("http://www.wittistanbul.com/wp-content/themes/witt/custom/images/witt-istanbul-footer-banner.png");
	background-position: left top;
	background-repeat: no-repeat;
	display: block;
	line-height: 1px;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 11px;
	left: 15px;
	height: 30px;
	width: 335px;
}

.custom .footer_title a.logo:hover {
	background-color: transparent;
}

/* widget item setup */
.custom #footer_setup .footer_items {
	/* contents alignment */
	text-align: left;
	/* widget width */
	width: 210px;
	/* space between widgets */
	padding-right: 10px;
	padding-left: 10px;
	/* text color */
	color: #ffffff;
	/* do not change these! */
	display: inline-block;
	float: left;
	height: 100%;
}

.custom .footer_items_r {
	/* contents alignment */
	text-align: left;
	/* widget width */
	width: 450px;
	/* space between widgets */
	padding-right: 10px;
	padding-left: 10px;
	/* text color */
	color: #ffffff;
	/* do not change these! */
	display: inline-block;
	float: left;
	height: 100%;
}

/* do not change these! */
.custom #footer_setup .footer_items ul li { list-style: square inside none; }
.custom #footer_setup .footer_items ul { margin: 0px; padding: 0px; }

/* links column in footer */
.custom #flinks {position: relative; margin-top: 7px;}
.custom #flinks h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #fff;
	font-style: normal;
	font-weight: bold;
	padding-bottom: 3px;
	margin-bottom: 5px;
}

.custom #footer_setup .footer_items ul li {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #fff;
	font-style: normal;
	padding-bottom: 5px;
}

.custom #footer_setup .footer_items ul li a:hover { color: #FF1600; text-decoration: none; }

/* social media in footer */
.custom #social-media { position: relative; margin-top: 10px; margin-left: 10px; }
.custom  a.twitter { position: absolute; left: 8px; padding: 0.2em 0 0 0;}
.custom  a.twitter { display: block; width: 30px; height: 30px; background: url('images/twitter.png') no-repeat; text-indent: -9999px; outline: none; }
.custom  a.flickr { position: absolute; left: 43px; padding: 0.2em 0 0 0;}
.custom  a.flickr { display: block; width: 30px; height: 30px; background: url('images/flickr.png') no-repeat; text-indent: -9999px; outline: none; }
.custom  a.google { position: absolute; left: 78px; padding: 0.2em 0 0 0;}
.custom  a.google { display: block; width: 30px; height: 30px; background: url('images/google.png') no-repeat; text-indent: -9999px; outline: none; }
.custom  a.delicious { position: absolute; left: 113px; padding: 0.2em 0 0 0;}
.custom  a.delicious { display: block; width: 30px; height: 30px; background: url('images/delicious.png') no-repeat; text-indent: -9999px; outline: none; }
.custom #TA_rated1 {margin-top: 48px;}

/* design hotels in footer */
.custom #design-hotels { position: relative; margin-top: 8px; margin-left: 450px; }
.custom  a.designpic { position: absolute; right: 8px; padding: 0.2em 0 0 0;}
.custom  a.designpic { display: block; width: 160px; height: 45px; background: url('images/dh_member.png') no-repeat; text-indent: -9999px; outline: none; }
.custom #fcredits {margin-top: 125px;}
.custom #fcredits p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #fff;
	font-style: normal;
	text-align: right;
	margin-top: 125px;
}

.ddet_div {
  margin: 8px 0 0 12px;
  padding: 8px;
  border: 1px solid #DDDDDD;
}

div.toc {
	border: 1px solid #ccc;
	font-size: .75em;
}

div.toc.toc-left {
	max-width: 22em;
	float: left;
	margin: 5px 5px 5px 0;
}

div.toc.toc-right {
	max-width: 22em;
	float: right;
	margin: 5px 0 5px 5px;
}

div.toc a.toc-header {
	display: block;
	background-color: #000000;
	border-top: 1px solid #fcfcfc;
	border-left: 1px solid #fcfcfc;
	border-bottom: 1px solid #f0f0e0;
	border-right: 1px solid #f0f0e0;
	color: #ffffff;
	/** Styling regarding TOC title: **/
	padding: 1px 2px;
	text-align: left;
	font-size: 1.25em;
	font-weight: bold;
}

div.toc a.toc-header:hover {
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	border-bottom: 1px solid #fcfcfc;
	border-right: 1px solid #fcfcfc;
}

div.toc ul {
	list-style: none;
	margin: 0;
	padding: 5px;
	background-color: #ffffff;
	overflow: hidden;
	white-space: nowrap;
}

div.toc.auto-collapse ul {
	display: none;
}

div.toc li a {
	text-decoration: none;
	border: 0 none;
	color: #000000;
}

div.toc li.toc-level-1 {
	font-weight: bold;
}

div.toc li.toc-level-2 {
	font-weight: bold;
	padding-left: .25em;
}

div.toc li.toc-level-3 {
	padding-left: .5em;
}

div.toc li.toc-level-4 {
	padding-left: 1.5em;
}

/* styling the contact form */
.custom #gform_1 h3.gform_title {
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-size: 25px;
	font-weight: normal;
	margin-bottom: 1.05em;
}

.custom #gform_1 .gform_description {
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-size: 14px;
	font-weight: normal;
}