.section {
			border: 4px solid #fff;
			margin: 50px;
			padding: 20px 20px;
			overflow: hidden;
			width: 410px;

			  background-image: -moz-linear-gradient(top, #f6f2ec, #e2dbce); /* FF3.6 */
			  background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #f6f2ec),color-stop(1, #e2dbce)); /* Saf4+, Chrome */
			            filter:  progid:DXImageTransform.Microsoft.gradient(startColorStr='#f6f2ec', EndColorStr='#e2dbce'); /* IE6,IE7 */
			        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#f6f2ec', EndColorStr='#e2dbce')"; /* IE8 */
		
			     -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.35), 0 85px 180px 0 #fff, 0 12px 8px -5px rgba(0, 0, 0, 0.85); /* FF3.5+ */
			  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.35), 0 85px 810px -68px #fff, 0 12px 8px -5px rgba(0, 0, 0, 0.65); /* Saf3.0+, Chrome */
			          box-shadow: 0 0 2px rgba(0, 0, 0, 0.35), 0 85px 180px 0 #fff, 0 12px 8px -5px rgba(0, 0, 0, 0.85); /* Opera 10.5, IE 9.0 */
					  font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000;
	text-decoration: none;

		}	
		.reveal {
			     -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.35), 0 85px 180px 0 #f90, 0 12px 8px -5px rgba(0, 0, 0, 0.85); /* FF3.5+ */
			  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.35), 0 85px 810px -68px #f90, 0 12px 8px -5px rgba(0, 0, 0, 0.65); /* Saf3.0+, Chrome */
			          box-shadow: 0 0 2px rgba(0, 0, 0, 0.35), 0 85px 180px 0 #f90, 0 12px 8px -5px rgba(0, 0, 0, 0.85); /* Opera 10.5, IE 9.0 */			
		}
		
/* ----------------------------------------------------------------------------------------------------------------------------
== FOLDED CORNERS
** ---------------------------------------------------------------------------------------------------------------------------- */

.note {
    position:relative;
    width:480px;
    padding:1em 1.5em;
    margin:2em auto;
    color:#fff;
    background:#97C02F;
    overflow:hidden;
}

.note:before {
    content:"";
    position:absolute;
    top:0;
    right:0;
    border-width:0 16px 16px 0; /* This trick side-steps a webkit bug */
    border-style:solid;
    border-color:#fff #fff #658E15 #658E15; /* A bit more verbose to work with .rounded too */
    background:#658E15; /* For Opera when also applying a border-radius */
    display:block; width:0; /* Only for Firefox 3.0 damage limitation */
    /* Optional: shadow */
    -webkit-box-shadow:0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
       -moz-box-shadow:0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
            box-shadow:0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
}

.note.red {background:#C93213;}
.note.red:before {border-color:#fff #fff #97010A #97010A; background:#97010A;}

.note.blue {background:#53A3B4;}
.note.blue:before {border-color:#fff #fff transparent transparent; background:transparent;}

.note.taupe {background:#999868;	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #fff;
	text-decoration: none;}
.note.taupe:before {border-color:#fff #fff #BDBB8B #BDBB8B; background:#BDBB8B;}

/* ROUNDED CORNERS VERSION
 * All modern browsers can produce this effect with a single pseudo-element.
 * However, they all have bugs (mainly to do with border-radius) that make this a bit tricky.
 * As far as I can tell, this is the only cross-browser method for the moment.
 * Can't use this method for the simple effect because Opera 11 will only show backgrounds
 * through transparent borders if there is a border-radius applied.
 */
 
.note.rounded {
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
}

.note.rounded:before {
    border-width:8px; /* Triggers a 1px 'step' along the diagonal in Safari 5 (and Chrome 10) */
    border-color:#fff #fff transparent transparent; /* Avoids the 1px 'step' in webkit. Background colour shows through */
    -webkit-border-bottom-left-radius:5px;
    -moz-border-radius:0 0 0 5px;
    border-radius:0 0 0 5px;
}

.note p {margin:0;}
.note p + p {margin:1.5em 0 0;}


textarea {
	resize:none;
  display: inline-block;
  margin: 0;
  padding-left: 8px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-top: 1px solid #c0c0c0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  }
textarea:hover  {

  border: 1px solid #b9b9b9;
  border-top: 1px solid #a0a0a0;
  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  }
  
 textarea:focus {
  outline: none;
  border: 1px solid #4d90fe;
  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
  -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
  }
  
input[type=email],
  input[type=number],
  input[type=password],
  input[type=text],
  input[type=url] {
  display: inline-block;
  height: 25px;
  line-height: 15px;
  margin: 0;
  padding-left: 8px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-top: 1px solid #c0c0c0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  }
  input[type=email]:hover,
  input[type=number]:hover,
  input[type=password]:hover,
  input[type=text]:hover,
  input[type=url]:hover {
  border: 1px solid #b9b9b9;
  border-top: 1px solid #a0a0a0;
  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  }
  input[type=email]:focus,
  input[type=number]:focus,
  input[type=password]:focus,
  input[type=text]:focus,
  input[type=url]:focus {
  outline: none;
  border: 1px solid #4d90fe;
  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
  -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
  }
  input[type=email][disabled=disabled],
  input[type=number][disabled=disabled],
  input[type=password][disabled=disabled],
  input[type=text][disabled=disabled],
  input[type=url][disabled=disabled] {
  border: 1px solid #e5e5e5;
  background: #f5f5f5;
  }
  input[type=email][disabled=disabled]:hover,
  input[type=number][disabled=disabled]:hover,
  input[type=password][disabled=disabled]:hover,
  input[type=text][disabled=disabled]:hover,
  input[type=url][disabled=disabled]:hover {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  }
  input[type=checkbox].form-error,
  input[type=email].form-error,
  input[type=number].form-error,
  input[type=password].form-error,
  input[type=text].form-error,
  input[type=url].form-error {
  border: 1px solid #dd4b39;
  }
  
.LV_validation_message{
    font-weight:bold;
    margin:0 0 0 5px;
}

.LV_valid {
    color:#00CC00;
}
	
.LV_invalid {
    color:#CC0000;
}
    
.LV_valid_field,
input.LV_valid_field:hover, 
input.LV_valid_field:active,
textarea.LV_valid_field:hover, 
textarea.LV_valid_field:active {
    border: 1px solid #00CC00;
}
    
.LV_invalid_field, 
input.LV_invalid_field:hover, 
input.LV_invalid_field:active,
textarea.LV_invalid_field:hover, 
textarea.LV_invalid_field:active {
    border: 1px solid #CC0000;
}


.petit {
	FONT-FAMILY: Verdana; FONT-SIZE: 10px
}

.px10 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
	text-decoration: none;
}

.verdana10x {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #6e6e5f;
	text-decoration: none;
}

.verdana12x {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	FONT-WEIGHT: bold;
	color: #6e6e5f;
	text-decoration: underline;
}

.verdana11 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	FONT-WEIGHT: bold;
	color: #000;
}

.verdana12 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	FONT-WEIGHT: bold;
	color: #000;
}

.cerceve {
	BORDER-RIGHT: #2c2c2c 1px solid;
	BORDER-TOP: #2c2c2c 1px solid;
	BORDER-LEFT: #2c2c2c 1px solid;
	BORDER-BOTTOM: #2c2c2c 1px solid;
	text-align: justify;
}

.cercevegurur {
 border: #a0afc3 1px solid; 	
}
.cerceve_admin {
	BORDER-RIGHT: #000000 1px solid; BORDER-TOP: #000000 1px solid; BORDER-LEFT: #000000 1px solid; BORDER-BOTTOM: #000000 1px solid
}

.cerceve_yanli {
	BORDER-RIGHT: #6e6e5f 1px solid; BORDER-TOP: #2c2c2c 0px solid; BORDER-LEFT: #6e6e5f 1px solid; BORDER-BOTTOM: #2c2c2c 0px solid
}

.cerceveipucu {
	BORDER-RIGHT: #c6c6c6 1px solid; BORDER-TOP: #c6c6c6 0px solid; BORDER-LEFT: #c6c6c6 1px solid; BORDER-BOTTOM: #c6c6c6 1px solid
}


.cerceveresim {
	BORDER-RIGHT: #333 1px solid; BORDER-TOP: #333 1px solid; BORDER-LEFT: #333 1px solid; BORDER-BOTTOM: #333 1px solid
}

.petit-link-siyah {
	FONT-FAMILY: Verdana;
	FONT-SIZE: 10px;
}
.petit-link-siyah a {
	color:black;
	FONT-FAMILY: Verdana; FONT-SIZE: 10px;
	text-decoration:none;
}
.petit-link-siyah a:hover{
	color:black;
	FONT-FAMILY: Verdana;
	FONT-SIZE: 10px;
	text-decoration:underline;
	text-align: center;
}

.petit-link-mavi {
	color:#277DC9;
	FONT-FAMILY: Verdana; FONT-SIZE: 11px;
}
.petit-link-mavi a {
	color:#277DC9;
	FONT-FAMILY: Verdana; FONT-SIZE: 11px;
	text-decoration:none;
}
.petit-link-mavi a:hover{
	color:#277DC9;
	FONT-FAMILY: Verdana; FONT-SIZE: 11px;
	text-decoration:none;
}

.petit-link-gri {
	FONT-FAMILY: Verdana; FONT-SIZE: 10px;
}
.petit-link-gri a {
	color:RGB(44,44,44);
	FONT-FAMILY: Verdana; FONT-SIZE: 10px;
	text-decoration:none;
}
.petit-link-gri a:hover{
	color:RGB(44,44,44);
	FONT-FAMILY: Verdana; FONT-SIZE: 10px;
	text-decoration:underline;
}
.cerceve_admin tr td .petit-link-siyah tr td #form1 .petit-link-siyah tr td {
	color: #000;
	font-weight: bold;
}

.cerceve2 {
	BORDER-RIGHT: #a0afc3 1px solid;
	BORDER-TOP: #a0afc3 0px solid;
	BORDER-LEFT: #a0afc3 1px solid;
	BORDER-BOTTOM: #a0afc3 1px solid;
	text-align: justify;
}

.cerceveflash {
	BORDER-RIGHT: #a0afc3 1px solid; BORDER-TOP: #a0afc3 1px solid; BORDER-LEFT: #a0afc3 1px solid; BORDER-BOTTOM: #a0afc3 1px solid
}

.ay_adi {
	font-family: Verdana, Geneva, sans-serif;
	font-weight: bold;
	font-size: 11px;
	color: #060;
}

.cal_event, a.cal_event 
{
 background-color: #DDDDDD;
 color:            #000000;
 font-family:      Verdana, Geneva, sans-serif;
 font-size:        10;
 font-weight:      bold;
 font-style:       normal;
}

.cal_today
{
 background-color: #FFF;
 color:            #F00;
 font-family:      Verdana, Geneva, sans-serif;
 font-size:        10;
 font-weight:      bold;
 font-style:       normal;
}

.cal_days /*darussol*/
{
 background-color: #FFF;
 color:            #000;
 font-family:      Verdana, Geneva, sans-serif;
 font-size:        10;
 font-weight:      bold;
 font-style:       normal;
}

#pages_container
	{
		text-align		: center;
	}
 
#pages
	{
		margin-left		: 0;
		font			: bold 12px Arial, sans-serif;
	}
	
#pages li
	{
		list-style		: none;
		margin			: 0;
		display			: inline;
	}

#pages li span
	{
		padding			: 3px 0.5em;
		margin-left		: 3px;
		background		: #FFC;
		border			: 1px solid #9fc3f3;
		text-decoration	: none;
		color:#000
	}
	
#pages li a
	{
		padding			: 3px 0.5em;
		margin-left		: 3px;
		background		: white;
		border			: 1px solid #9fc3f3;
		text-decoration	: none;
	}
	
#pages li a:link 
	{
		color			: #006cff; 
	}
	
#pages li a:visited 
	{
		color			: #006cff; 
	}
	
#pages li a:hover
	{
		background		: #E1E1E1;
		border-color	: #9fc3f3;
	}
	
#pages li a#current
	{
		border			: 1px solid #9fc3f3;
		background		: #fafafa;
	}
	

.event	a{	FONT-FAMILY: Verdana; FONT-SIZE: 10px;color:#348;text-decoration:none;outline:none;}
.event 	a:hover{	FONT-FAMILY: Verdana; FONT-SIZE: 10px;color:#67a;}

.ddmarkermenu{
list-style-type: none;
margin: 0;
margin-bottom: 0px;
padding: 0;
}

.ddmarkermenu li{
padding-bottom: 2px;
}

.ddmarkermenu li a{
color: #aa2716;
background: url(arrowbullet.png) no-repeat center left;
display: block;
padding: 10px 0;
padding-left: 32px;
text-decoration: none;
font-weight: bold;
border-bottom: 1px solid #dadada;
font-size: 90%;
}

.ddmarkermenu li a:visited{
color: #aa2716;
}

.ddmarkermenu a:hover{
background-color: #F3F3F3;
color: #aa2716;
}

.baslik {
	font-size: 10.0pt; 
	font-family: Trebuchet MS; 
	font-weight: 700;
	color:#FF0000;
}

.baslik a {
	text-decoration:none;
		font-size: 10.0pt; 
	font-family: Trebuchet MS; 
	font-weight: 700;
	color:#FF0000;
}

.baslik a:hover {
	text-decoration:underline;
		font-size: 10.0pt; 
	font-family: Trebuchet MS; 
	font-weight: 700;
	color:#FF0000;
}

.baslik a:visited {
	text-decoration:none;
		font-size: 10.0pt; 
	font-family: Trebuchet MS; 
	font-weight: 700;
	color:#FF0000;
}

.yazi {
  font-size:10.0pt;
  font-family:Trebuchet MS;
  color:black;
}


.yazi a {
  font-size:10.0pt;
  font-family:Trebuchet MS&quot;
  color:black;
  text-decoration:none;
}

.yazi a:hover {
  	text-decoration:underline;	
  font-size:10.0pt;
  font-family:Trebuchet MS&quot;
  color:black;
}

.yazi a:visited {
  font-size:10.0pt;
  font-family:Trebuchet MS&quot;
  color:black;
  text-decoration:none;
}

.yazi img {
 margin-left: 5px;
 margin-right: 5px;
 margin-top: 5px;
 margin-bottom: 5px;
 padding: 2px;
 BORDER-RIGHT: #a0afc3 1px solid; BORDER-TOP: #a0afc3 1px solid; BORDER-LEFT: #a0afc3 1px solid; BORDER-BOTTOM: #a0afc3 1px solid
}
