/* Start of CMSMS style sheet 'Master CSS Layout: Left sidebar + 1 column' */
/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/
* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/
img, div, input { behavior: url("iepngfix.htc") }
body {
	text-align: left;
	background-attachment: scroll;
	background-image: url(assets/image/bodybkg.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	margin: 0px;
	padding: 0px;
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: underline;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #18507C; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #18507C;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   background-color: #C3D4DF;
   color: #385C72;
}

/*****************
basic layout 
*****************/
body {
}

/* center wrapper, min max width */
div#pagewrapper {
	;
	width: 960px;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/

div#header {
	height: 113px;
	background-attachment: scroll;
	background-image: url(assets/image/logobar.jpg);
	background-repeat: no-repeat;
	width: 960px;
}

div#search {
	width: 300px;     /* enough width for the search input box */
	text-align: right;
	line-height: 70px;
	vertical-align: middle;
	margin-top: 20;
	margin-right: 1em;
	margin-bottom: 0;
	color: #8a8a8a;
	height: 30px;
	position: absolute;
	left: 650px;
	top: 15px;
}
#motto {
	background-attachment: scroll;
	background-repeat: no-repeat;
	height: 249px;
	width: 960px;
}


div.breadcrumbs {
	font-size: 12px;
	background-attachment: scroll;
	background-image: url(assets/image/crumbsbkg.jpg);
	background-repeat: no-repeat;
	background-position: left bottom;
	height: 30px;
	width: 920px;
	padding-right: 20px;
	padding-left: 20px;
	font-family: "lucida sans Unicode", verdana, sans-serif;
	line-height: 24px;
	font-weight: normal;
	vertical-align: middle;
	color: #8A8A8A;
	letter-spacing: -1px;
}

 div.breadcrumbs span.lastitem { 
   font-weight:bold; 
 } 

 ndiv#content {
   margin: 1.5em auto 2em 0; /* some air above and under menu and content */
}
#gallery a img {
	float: left;
	border: 3px solid #333333;
	margin-right: 4px;
	margin-bottom: 4px;
}
td.fancyTitle {
	font-family: "lucida sans Unicode", verdana, sans-serif;
	font-size: 14px;
	color: #FFFFFF;
}

div#main {
	margin-left: 20px; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
	margin-right: 0px; /* and some air on the right */
	float: left;
	width: 650px;
}
div#main ul {
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 30px;
	list-style-type: lower-roman;
}
div#main ul li {
	font-family: "lucida sans Unicode", verdana, sans-serif;
	font-size: 13px;
	line-height: 1.5em;
	color: #8a8a8a;
	letter-spacing: -1px;
}


div#sidebar {
	float: left;  /* set sidebar on the left side. Change to right to float it right instead. */
	width: 250px;    /* sidebar width, if you change this please also change #main margins */
	display: inline;  /* FIX ie doublemargin bug */
	margin-left: 0;
	padding-bottom: 20px;
}

/* if sidebar doesnt include menu but content add class="hascontent" */
div#sidebar.hascontent {
	padding: 0 1%;
	width: 250px;  /* make width smaller if there's padding, or it will get too wide for the floated divs in IE */
}
#rightbar {
	float: right;
	width: 150px;
	margin-left: 15px;
}
marquee {
	height: 200px;
	width: 150px;
	padding-top: 20px;
	padding-bottom: 20px;
}

div#footer {
	clear:both;       /* keep footer below content and menu */
	color: #fff;
	background-color: #E2E2E2; /* same bg color as in header */
	width: 99%;
	padding-left: 1%;
}

div#footer p {
	font-size: 11px;
	padding: 1.5em;      /* some air for footer */
	text-align: left; /* centered text */
	margin:0;
	font-family: "Times New Roman", Times, serif;
	font-variant: small-caps;
	color: #333333;
	letter-spacing: 0px;
	line-height: 16px;
	clear: both;
}

div#footer p a {
	color: #000000; /* needed becouse footer link would be same color as background otherwise */
	font-weight: bold;
}
#footer ul {
	list-style-type: none;
	clear: both;
}
#footer ul li {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	font-variant: small-caps;
	float: left;
	padding-top: 10px;
	padding-right: 8px;
	padding-bottom: 10px;
	padding-left: 8px;
	background-attachment: scroll;
	background-image: url(assets/image/dotdividor.gif);
	background-repeat: no-repeat;
	background-position: right center;
	display: block;
}
#footer ul li a {
	color: #666666;
	text-decoration: none;
	display: block;
}
#footer ul li a:hover {
	color: #FF6600;
	display: block;
	text-decoration: underline;
	background-color: transparent;
}


/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   margin: 1em;
   border-bottom: 1px dotted black;
}

/* relational links under content */
div.left49 {
	float: left;
	width: 49%;  /* 50% for both left and right might lead to rounding error on some browser */
	display: none;
}

div.right49 {
	float: right;
	width: 49%;
	text-align: right;
	display: none;
}




/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
div#content h1 {
	font-size: 24px;  /* font size for h1 */
	line-height: 40px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
	color: #996633;
	vertical-align: middle;
	padding-top: 20px;
	padding-bottom: 10px;
}
#logos img {
	margin-right: 5px;
	margin-bottom: 5px;
	border: 1px solid #999999;
}

div#content h2 {
	color: #333333;
	font-size: 16px;
	text-align: left;
	line-height: 1.5em;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0em;
	margin-left: 0;
	letter-spacing: -1px;
}
div#content h3 {
   color: #294B5F; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div#content h4 {
   color: #294B5F; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h5 {
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p {
	font-size: 13px;
	margin: 0 0 1.5em 0;  /* some air around p elements */
	line-height:1.4em;
	padding: 0;
	font-family: "lucida sans Unicode", verdana, sans-serif;
	color: #333333;
	letter-spacing: -1px;
}
blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
pre {
   font-family: monospace;
   font-size: 1.0em;
}
strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}

/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 1em;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%;   /* smaller font size, as these are usually not so important data */
}
label {
	font-family: "lucida sans Unicode", verdana, sans-serif;
	font-size: 12px;
	line-height: 18px;
	color: #333333;
	letter-spacing: -1px;
}
div#main /* END TEXT */

/* LISTS */
 ol,
div#main  dl
  {
  font-size: 1.0em;
   line-height:1.4em;
   margin: 0 0 1.5em 0;
}
div#main  ol  li
   {
   margin: 0 0 0.25em 3em;
}

div#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}
div#dl dd {
   margin: 0 0 0 3em;
}
/* END LISTS */
.haberbaslik {
	color: #333333;
	font-size: 16px;
	text-align: left;
	line-height: 1.5em;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 15px;
	letter-spacing: -1px;
}
.graphlinks {
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: 10px;
}

/* End of 'Master CSS Layout: Left sidebar + 1 column' */

