@charset "utf-8";
/* CSS Document */

/*
	Vertical Accordions
*/

.accordion_toggle {
	display: block;
	height: 39px;
	width: 680px;
	background: url(images/accordion_toggle.jpg) no-repeat top right ;
	padding: 0 10px 0 10px;
	line-height: 39px;
	color:#FFF;
	font-weight: normal;
	text-decoration: none;
	outline: none;
	font-size: 12px;
	color: #000;
	font-weight:bold;
	border-bottom: 1px solid #cde99f;
	font-family:Helvetica, Arial, sans-serif;
	letter-spacing: 1px;
	cursor: pointer;
	margin: 0 0 0 0;
}

#toogle_header{
	color:#5E6068;
}

.accordion_toggle_active {
	background: url(images/accordion_toggle_active.jpg) no-repeat top right;
	color:#06F;
	border-bottom: 1px solid #f68263;
}

.accordion_content {
	background-color: #ffffff;
	color: #444444;
	overflow: hidden;
}
	
	.accordion_content h2 {
		margin: 15px 0 5px 10px;
		color: #0099FF;
	}
	
	.accordion_content p {
		line-height: 150%;
		padding: 5px 10px 15px 10px;
	}
	
.vertical_accordion_toggle {
	display: block;
	height: 30px;
	width: 600px;
	padding: 0 10px 0 10px;
	line-height: 30px;
	color: #ffffff;
	font-weight: normal;
	text-decoration: none;
	outline: none;
	font-size: 12px;
	color: #000000;
	border-bottom: 1px solid #cde99f;
	cursor: pointer;
	margin: 0 0 0 0;
}

.vertical_accordion_toggle_active {
	background: url(images/accordion_toggle_active.jpg) no-repeat top right;
	color: #000;
	border-bottom: 1px solid #22a3da;
}

.vertical_accordion_content {
	background-color: #ffffff;
	color: #444444;
	overflow: hidden;
}

.vertical_accordion_content h2 {
	margin: 15px 0 5px 10px;
	color: #0099FF;
}

.vertical_accordion_content p {
	line-height: 150%;
	padding: 5px 10px 15px 10px;
}
	
/*
	Horizontal Accordion
*/

.horizontal_accordion_toggle {
	/* REQUIRED */
	float: left;	/* This make sure it stays horizontal */
	/* REQUIRED */

	display: block;
	height: 100px;
	width: 30px;
	color: #ffffff;
	text-decoration: none;
	outline: none;
	border-right: 1px solid #cde99f;
	cursor: pointer;
	margin: 0 0 0 0;
}

.horizontal_accordion_toggle_active {
	background: url(images/h_accordion_toggle_active.jpg) no-repeat top left;
	border-right: 1px solid #22a3da;
}

.horizontal_accordion_content {
	/* REQUIRED */
	height: 100px;	/* We need to define a height for the accordion as it stretches the width */
	float: left;	/* This make sure it stays horizontal */
	/* REQUIRED */
	
	overflow: hidden;
	background-color: #ffffff;
	color: #444444;
}
	
.horizontal_accordion_content p {
	width: 450px;
	line-height: 150%;
	padding: 5px 10px 15px 10px;
}
		
			
/* Container styling*/
#horizontal_container {
margin: 20px auto 20px auto;
width: 680px;   
height: 200px;    
}

#vertical_nested_container {
margin: 20px auto 20px auto;
width: 620px;
}

#ankara {
	background-image:url(images/ankara.jpg);
	background-position:bottom;
	background-repeat: no-repeat;
}
#izmir {
	background-image:url(images/izmir.jpg);
	background-position:bottom;
	background-repeat: no-repeat;
}
#samsun {
	background-image:url(images/samsun.jpg);
	background-position:bottom;
	background-repeat: no-repeat;
}
#mersin {
	background-image:url(images/mersin.jpg);
	background-position:bottom;
	background-repeat: no-repeat;
}
#kayseri {
	background-image:url(images/kayseri.jpg);
	background-position:bottom;
	background-repeat: no-repeat;
}

#ulkeler {
	 background-repeat: no-repeat;
	 background-position: bottom;
	 margin-top: 20px;
	 padding-left: 10px;
	 padding-right: 10px;
	 margin-bottom: 20px;
}

#resim {
	width: 100px;
	height: 100px;
	margin: 20px;
	margin-bottom: 40px;
	float: left;
	border-bottom:#999 5px solid;
	border-left:#CCC 5px solid;
	border-top: #CCC 5px solid;
	border-right: #999 5px solid;
}

#resim a img {
	border: none;
}

#resim_buyuk {
	width: 100px;
	height: 133px;
	margin: 20px;
	margin-bottom: 40px;
	float: left;
	border-bottom:#999 5px solid;
	border-left:#CCC 5px solid;
	border-top: #CCC 5px solid;
	border-right: #999 5px solid;
}

#resim_buyuk a img {
	border: none;
}

fieldset {
	width: 560px;
	padding: 20px;
}

form fieldset legend {
	font-size:1.1em;
	font-weight: bold;
	color: #772222;
}

form label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 250px; 
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right; 
}

form input, form textarea, form select {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:auto;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:5px 0 0 10px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
}

form input#reset {
	margin-left:0px; /* set margin-left back to zero on reset button (set above) */
}

