@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:.9em;
}

h1 {
	font-family:Arial, Verdana, Helvetica, sans-serif;
	font-size:1.2em;
	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:1em;
	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 1004 px */
	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, NOTE: HEADER STYLES ARE ON THE ACTUAL PHP PAGES BECAUSE PHP IS NEEDED TO ROTATE THE BACKGROUND IMAGES IN THE HEADERS*/

#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: 137px;
	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: 137px;
	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: 137px;
}
/* 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 */


#leftSidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 140px; /* 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  {
	margin:-2% 0 -5% 0;
	font-family:Geneva, Arial, Helvetica, sans-serif;
	color:#000066;
	font-size:80%;
}

#mainContent {

/*First width: 611 px; second width 461px */
	width: 531px;
	min-height:760px;
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin-left: 150px;
	text-align:left;
	border:none;
} 

#fourSquares {
	width: 528px;
	height: 528px;
	margin-bottom:10px;
}


#fourSquares a:visited {  color: #fff}
#fourSquares a:active {  color: #fff}
#fourSquares a:link {  color: #fff}
#fourSquares a:hover {  color: #fff}

#fourSquares h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #fff;
	margin-top:20px;
}

#fourSquares ul {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	padding-right:15px;

}

#fourSquares ul li {
	color: #fff;
	margin: 5px 0;

}

#directory {
	width: 264px;
	height: 264px;
	float: left;
	background-image:url(/images/common/bg_directory.gif);
}

#information {
	width: 264px;
	height: 264px;
	float: left;
	background-image:url(/images/common/bg_information.gif);
}

#services {
	width: 264px;
	height: 264px;
	float: left;
	background-image:url(/images/common/bg_services.gif);
}

#community {
	width: 264px;
	height: 264px;
	float: left;
	background-image:url(/images/common/bg_community.gif);
}

#rightSidebar {
	float: right; /* since this element is floated, a width must be given */
	width: 250px; /* 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-right:20px; /* padding keeps the content of the div away from the edges */
}


#turkeyArticle {
	text-align:center;
	width:auto;
	height:auto;
	
}

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

#turkeyArticle a, #turkeyArticle a:visited {
	text-decoration:none;	
}

.alert {
	color:red;
}

#search {
	width: 310px;
	height: 36px;
	margin: 30px auto;
}

#search .searchtext {
	width: 200px;
	border: 1px solid #990000;
}

#turkeyFactsIndex {
	background-image:url(/images/common/turkey_facts_middle.gif);
	background-repeat:repeat-y;
	margin:0px;
}

#turkeyFactsIndexTopBottom {
	width:531px;
	height:13px;
	margin:0px;
}

#turkeyFact {
	width:450px;
	height:auto;
	margin:auto;
	padding:10px;
}

#bottomBanner {
	text-align:center;
	width:auto;
	height:60px;
	margin-top:30px;
	padding: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
{
	text-decoration:underline;
	color:#fff;
	padding: 0 5px 0 5px;
}

#footer a:hover
{
	color:#fff;
	padding: 0 5px 0 5px;
	font-size: 12px;
}

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

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

.Com
{
	font-family:Arial;
	font-size:12px;
	color:#fff;
}

.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;
}