@charset "UTF-8";

/* THIS IS THE STYLE SHEET WHICH CONTROLS EVERYTHING, ON EVERY PAGE OF TURKEY CENTRAL, SUCH AS THE BODY, CONTAINER, AND TEXT RULES.  SPECIALIZED PAGES, SUCH AS THE MAPS AND CITY GUIDE PAGES, WILL HAVE ADDITIONAL SPECIALIZED STYLE SHEETS IN ADDITION TO THIS ONE. */

body {
	background: #CCCCCC;
	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;
}

td {
	font-family:Arial, Helvetica, sans-serif;
}

th {
	font-family:Arial, Helvetica, sans-serif;
}

p {
	font-family:Arial, Helvetica, sans-serif;
	font-size:1em;
}

h1 {
	font-family:Arial, Verdana, Helvetica, sans-serif;
	font-size:1.6em;
	color:#000066;
	text-align:center;
}

h2 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:1em;
	color:#000066;
	text-align:left;
}

h3 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:.9em;
	color:#000066;
	text-align:left;
}

li {
	font-family:Arial, Verdana, Helvetica, sans-serif;
	font-size:.9em;
	color:#000000;
}

a:visited {  color: #333399}
a:active {  color: #333399}
a:link {  color: #333399}
a:hover {  color: #aa0000}

/*Styles for breadcrumbs */

.crumb {
  font-size: 9px;
}

#container {

/*old width was 1004px */

	width: 960px;
	background: #FFFFFF;
	margin: 20px auto;
	text-align: center; /* this overrides the text-align: center on the body element. */
	position:relative;
} 

/*BEGIN STYLES FOR THE HEADER ON ALL PAGES*/

#header {
	width:auto;
	height:123px;
	background:url(/images/common/bg_turkey/cesme_beach.jpg) top repeat-x;
	text-align:left;
	margin:0;
}

#topBanner {
	width:auto;
	height:90px;
	text-align:left;
	margin: 10px 0;
	padding-left:10px;
}

.clear {
	clear:both;
}

/*SPRY NAVIGATION MENU */
/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: auto;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: center;
	cursor: pointer;
	width: 191px;
	float: left;
}
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	width: 191px;
	position: absolute;
	left: -1000em;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width: 191px;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: -5% 0 0 95%;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
{
	border: 1px solid #FFF;
}

ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	border: 1px solid #FFF;
	background-color: #990000;
	padding: 0.5em 0.75em;
	font-weight: bold;
	color: #FFF;
	text-decoration: none;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	background-color: #33C;
	color: #FFF;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	background-color: #33C;
	color: #FFF;
}

/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenu
{
	background-image: url(/SpryAssets/SpryMenuBarDown.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
{
	background-image: url(/SpryAssets/SpryMenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
	background-image: url(/SpryAssets/SpryMenuBarDownHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
{
	background-image: url(/SpryAssets/SpryMenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarHorizontal iframe
{
	position: absolute;
	z-index: 1010;
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
}

/* END SPRY NAVIGATION MENU */

/* Clear div makes sure things below it clear everything above it */

.clear {
	clear:both;
}

#leftSidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	/* the background color will be displayed for the length of the content in the column, but no further */
	padding-left: 10px; /* padding keeps the content of the div away from the edges */
}

#leftSidebar h1  {
	font-family:Geneva, Arial, Helvetica, sans-serif;
	color:#000066;
	font-size:16px;
}

#rightSidebar {
	float: right; /* since this element is floated, a width must be given */
	width: 150px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0; /* padding keeps the content of the div away from the edges */
}

.turkey_articles {
	text-align:center;
	width:auto;
	height:auto;	
}

.turkey_articles a, .turkey_articles a:visited {
	text-decoration:none;	
}

.turkey_articles img {
	border:none;
}

.alert {
	color:red;
}

.turkey_facts {
	text-align:center;
	width:auto;
	height:auto;
}

#mainContent {
	width: 611px;
	min-height:950px;
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin-left: 170px;
	text-align:left;
	border:1px solid #99CCFF;
} 

#bottomBanner {
	text-align:center;
	width:auto;
	height:60px;
	margin:10px auto;
}

#textLinks {
	text-align:center;
	padding:auto;
}

#footer
{
	width: 880px;
	height:65px;
	background-color:#fff;
	background-image:url(/images/common/bg_footer.gif);
	background-position:top left;
	background-repeat:no-repeat;
	font-family: Arial, Helvetica, sans-serif;
	color:fff;
	font-size: 12px;
	text-align:center;
	padding: 5px 40px 0 40px;
}

#footer a, #footer a:visited
{
	font-size:12px;
	text-decoration:underline;
	color:#fff;
	padding: 0 5px 0 5px;
}

#footer a:hover
{
	color:#fff;
	padding: 0 5px 0 5px;
}

#copy
{
	color:#fff;
	text-align:right;
	margin-right:10px;
}

.Turkey
{
	font-family:'Arial Black', Arial;
	font-size:16px;
	color:#990000;
}
.Central
{
	font-family:Arial;
	font-style:italic;
	font-size:16px;
	font-weight:bold;
	color:#000099;
}

.TurkeyWhite {
	font-family:'Arial Black', Arial;
	font-size:16px;
	color:#fff;
}

.CentralWhite {
	font-family:Arial;
	font-style:italic;
	font-size:16px;
	font-weight:bold;
	color:#fff;
}
