﻿/*Import Google Fonts*/
@import url(https://fonts.googleapis.com/css?family=Open+Sans:500,400,300&subset=latin,latin-ext);



/*#region Eric Meyer's Reset CSS v2.0 - http://cssreset.com */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,caption,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}
table,tbody,tfoot,thead,tr,th,td
{font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0;border-collapse: collapse;}
/*#endregion*/

/*#region clearfix*/
sup, sub {
           vertical-align: baseline;
           position: relative;
           top: -0.4em;
           font-size:9px;
           color:blue;
        }
        sub { top: 0.4em; }
        sup a, sub a {
           color:blue;
        }
        
i {
    font-style:italic;
}
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
 
.clearfix {
	display: inline-block;
}
 
html[xmlns] .clearfix {
	display: block;
}
 
* html .clearfix {
	height: 1%;
}
/*#endregion*/
/*#region grid*/
/*
  Simple Grid
  Project Page - http://thisisdallas.github.com/Simple-Grid/
  Author - Dallas Bass
  Site - http://dallasbass.com
*/


[class*='col-'] {
	float: left;
  min-height: 1px;
/*	padding-right: 20px;*/ /* column-space */
}

i {
    cursor:default;
}

.grid {
	width: 100%;
	max-width: 1140px;
/*	min-width: 748px;*/ /* when using padded grid on ipad in portrait mode, width should be viewport-width - padding = (768 - 20) = 748. actually, it should be even smaller to allow for padding of grid containing element */
	margin: 0 auto;
	
}

.grid:after {
	content: "";
	display: table;
	clear: both;
}

.grid-pad {
	padding-top: 20px;
	padding-left: 20px; /* grid-space to left */
	padding-right: 0; /* grid-space to right: (grid-space-left - column-space) e.g. 20px-20px=0 */
}

.push-right {
	float: right;
}

/* Content Columns */

.col-1-1 {
	width: 100%;
}
.col-2-3, .col-8-12 {
	width: 66.66%;
}

.col-1-2, .col-6-12 {
	width: 50%;
}

.col-1-3, .col-4-12 {
	width: 33.33%;
}

.col-1-4, .col-3-12 {
	width: 25%;
}

.col-1-5 {
	width: 20%;
}

.col-1-6, .col-2-12 {
	width: 16.667%;
}

.col-1-7 {
	width: 14.28%;
}

.col-1-8 {
	width: 12.5%;
}

.col-1-9 {
	width: 11.1%;
}

.col-1-10 {
	width: 10%;
}

.col-1-11 {
	width: 9.09%;
}

.col-1-12 {
	width: 8.33%
}

/* Layout Columns */

.col-11-12 {
	width: 91.66%
}

.col-10-12 {
	width: 83.333%;
}

.col-9-12 {
	width: 75%;
}

.col-5-12 {
	width: 41.66%;
}

.col-7-12 {
	width: 58.33%
}

/* Pushing blocks */

.push-2-3, .push-8-12 {
	margin-left: 66.66%;
}

.push-1-2, .push-6-12 {
	margin-left: 50%;
}

.push-1-3, .push-4-12 {
	margin-left: 33.33%;
}

.push-1-4, .push-3-12 {
	margin-left: 25%;
}

.push-1-5 {
	margin-left: 20%;
}

.push-1-6, .push-2-12 {
	margin-left: 16.667%;
}

.push-1-7 {
	margin-left: 14.28%;
}

.push-1-8 {
	margin-left: 12.5%;
}

.push-1-9 {
	margin-left: 11.1%;
}

.push-1-10 {
	margin-left: 10%;
}

.push-1-11 {
	margin-left: 9.09%;
}

.push-1-12 {
	margin-left: 8.33%
}

@media handheld, only screen and (max-width: 767px) {
	.grid {
		width: 100%;
		min-width: 0;
		margin-left: 0;
		margin-right: 0;
		padding-left: 20px; /* grid-space to left */
		padding-right: 10px; /* grid-space to right: (grid-space-left - column-space) e.g. 20px-10px=10px */
	}

	[class*='col-'] {
		width: auto;
		float: none;
		margin: 10px 0;
		padding-left: 0;
		padding-right: 10px; /* column-space */
	}

	/* Mobile Layout */

    [class*='mobile-col-'] {
        float: left;
        margin: 0 0 10px;
        padding-left: 0;
        /*padding-right: 10px;*/ /* column-space */
        padding-right: 0px; /* column-space */
        padding-bottom: 0;
    }

	.mobile-col-1-1 {
		width: 100%;
	}
	.mobile-col-2-3, .mobile-col-8-12 {
		width: 66.66%;
	}

	.mobile-col-1-2, .mobile-col-6-12 {
		width: 50%;
	}

	.mobile-col-1-3, .mobile-col-4-12 {
		width: 33.33%;
	}

	.mobile-col-1-4, .mobile-col-3-12 {
		width: 25%;
	}

	.mobile-col-1-5 {
		width: 20%;
	}

	.mobile-col-1-6, .mobile-col-2-12 {
		width: 16.667%;
	}

	.mobile-col-1-7 {
		width: 14.28%;
	}

	.mobile-col-1-8 {
		width: 12.5%;
	}

	.mobile-col-1-9 {
		width: 11.1%;
	}

	.mobile-col-1-10 {
		width: 10%;
	}

	.mobile-col-1-11 {
		width: 9.09%;
	}

	.mobile-col-1-12 {
		width: 8.33%
	}

	/* Layout Columns */

	.mobile-col-11-12 {
		width: 91.66%
	}

	.mobile-col-10-12 {
		width: 83.333%;
	}

	.mobile-col-9-12 {
		width: 75%;
	}

	.mobile-col-5-12 {
		width: 41.66%;
	}

	.mobile-col-7-12 {
		width: 58.33%
	}

	.hide-on-mobile {
		display: none !important;
		width: 0;
		height: 0;
	}
}
/*#endregion*/
/*#region global*/
a
{
    text-decoration:none;
    cursor:pointer;
    color:#444;
}

a.visited {
    color:#3dd189;
}

a:hover {
color: #FF4600;
}

b, strong {
    font-weight: bold;
}
.right
{
    float:right !important;
}

.textright {
    text-align:right !important;
}
.textcenter {
    text-align:center !important;
}


.left
{
    float:left !important;
}

input:focus {
        outline: none;
    }


body {
    background-color: #FCFBF9;
    font-family: Arial, 'trebuchet ms', arial, sans-serif;
    font-size:13px;
    color:#444;
    /*min-width:580px;*/
    /*min-width:630px;*/
   /* background: url("http://subtlepatterns2015.subtlepatterns.netdna-cdn.com/patterns/lightpaperfibers.png");*/
}

h1
{
    font-size: 16px;
    font-family: Georgia;
    text-align:center;
}

.c444
{
    color:#444 !important;
}
.hide
{
    display:none !important;
}
.show {
    display: block !important;
}

.center
{
    text-align:center;
}

.mt20
{
    margin-top:20px !important;
}

.mb20
{
    margin-bottom:20px !important;
}

.mt40
{
    margin-top:40px !important;
}

.mt60
{
    margin-top:60px !important;
}

.mt80
{
    margin-top:80px !important;
}
.mt5 {
    margin-top:5px !important;
}

.mt8 {
    margin-top:8px !important;
}

.pt8 {
    padding-top:8px !important;
}

.pb8 {
    padding-bottom:8px !important;
}

.lh22 {
    line-height:22px !important;
}
.ml10 {
    margin-left:10px !important;
}
.mr10 {
    margin-right:10px !important;
}
.inlineblock {
    display: inline-block;
    *display: inline;
    zoom: 1;
}

.block {
display:block;
}
.bullet {
    background-image:url(../images/bullet.png);
    background-repeat:no-repeat;
    background-position:left 4px;
    padding-left:10px;
}

div.overlay {
    position:fixed;
    z-index:1000;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-image:url(../images/op.444.60.png);
}

div.loading {
    position:absolute;
    z-index:1000;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-image:url(../images/op.444.80.png);
}
    div.loading div {
        position:absolute;
        background-image:url(../images/ajax-loader.gif);
        width:16px;
        height:12px;
        top:50%;
        left:50%;
    }
.relative {
position:relative;
}

.popup {
    z-index:1001;
}

.UserWarningMessage {
    background-image:url(../images/reduyari.gif);
    background-repeat:no-repeat;
    background-position: left center;
    margin-top:6px;
    padding-left:25px;
    color:#ff0000;
}

.textbox {
    background-color:rgba(255,255,255,0.6);
    border-color:rgb(168,168,183);
    border-width:1px;
    -moz-border-radius:5px ;
    -webkit-border-radius:5px ;
    border-radius:5px ;
    border-style:solid;
    padding: 4px 3px;
    font-size:13px;
}


/*#endregion*/
/*#region styledcheckbox*/
.styledCheckboxList label
{
    font-size: 13px;
}
.checkbox, .radio {
	width: 18px;
	height: 14px;
	padding: 0 5px 0 0;
	background: url(../images/checkbox.png) no-repeat;
	display: block;
	clear: left;
	float: left;
}
.fontBold
{
	font-weight:bold !important;
	
}
.styledCheckboxList td {height:20px; font-size:13px;}
/*#endregion*/
/*#region input icons*/
input.email {
    background-image:url(../images/loginEmail.png);
    background-repeat:no-repeat;
    background-position:96% center;
}

input.password {
    background-image:url(../images/loginLock.png);
    background-repeat:no-repeat;
    background-position:95.4% center;
}

/*
input.search {
    background-image:url(../images/icon-search.png);
    background-repeat:no-repeat;
    background-position:99% center;
}
    */
/*#endregion*/
/*#region hmenu*/
ul.hmenu {
    list-style-type: none;
    max-width:762px;
    margin-left:auto;
    margin-right:auto;
}

ul.hmenu li {
    float: left;
}



/*#endregion*/


/*#region topmenu */
div.topmenu
{
    background-color: #44553C;
    height: 40px;
    padding-left:6px;
    padding-right:6px;
    z-index:500;
}

div.topmenu ul.hmenu a {
    padding-top:13px;
    padding-bottom:12px;
    padding-right: 28px;
    
    display: block;
    
    text-decoration: none;
    font-size: 12px;
    color: #fafafa;

}

    div.topmenu ul.hmenu li.right a
    {
        padding-left:16px;
        padding-right:0;
    }

    div.topmenu ul.hmenu a:hover
    {
        color:white;
        text-decoration:underline;
    }

    .userloggedin {
        background-image:url(../images/arrow.down.white.png);
        background-repeat:no-repeat;
        background-position:right 19px;
        padding-right:13px !important;
        max-width: 240px;
    }
/*#endregion*/

/*#region header */
div.header {
    padding-left: 6px;
    padding-right: 6px;
    margin-top: 30px;
    max-width: 762px;
    margin-left: auto;
    margin-right: auto;
    /*height:46px;*/
}

    div.header a.logo
    {
        display:block;
        width:250px;
        height:46px;
        background-image:url(../images/legalbank.logo.png);
        background-repeat: no-repeat;
    }

/*#endregion*/

/*#region content*/
div.content
{
    padding-left:6px !important;
    padding-right:6px !important;

    max-width:762px !important;
    margin-left:auto !important;
    margin-right:auto !important;

    margin-top:26px !important;
    /*min-height:400px;*/
}
 
/*#endregion*/

/*#region footer */
div.footer
{
    padding-left:6px;
    padding-right:6px;

    max-width:762px;
    margin-left:auto;
    margin-right:auto;

    height:175px;
    margin-top:20px;
    border-top:solid 1px #ddd;
}

div.footer ul.hmenu a {
    padding-top:12px;
    padding-bottom:12px;
    padding-right: 28px;
    
    display: block;
    
    text-decoration: none;
    font-size: 12px;
    color: #444;

}
    div.footer ul.hmenu li.right a
    {
        padding-left:28px;
        padding-right:0;
    }

    div.footer ul.hmenu a:hover
    {
        color:#000;
        text-decoration:underline;
    }

    div.footer div.copyright
    {
        margin-top:0px;
        margin-bottom:18px;
        text-align:center;
        font-family: Arial;
        font-size:12px;
    }
/*#endregion*/

/*#region mainmenu*/

div.mainmenu
{
    /*margin-bottom:25px;*/
    margin-bottom:0;
    position:relative;
}

    div.mainmenu div.line
    {
        height:1px;
        background-color:#ddd;
        position:absolute;
        left:0;
        right:0;
        bottom:0px;
        z-index:-1;
    }

div.mainmenu ul.hmenu a {
    display: block;
    
    text-decoration: none;
    font-size: 13px;
    color: #0072AC;

    padding:10px 20px 10px 20px;
    
   /* border-bottom:solid 1px #ddd;*/
    
}

    div.mainmenu ul.hmenu li.active a
    {
        color:black;
        border:solid 1px #ddd;
        border-bottom:0;
        /*
        -moz-border-radius:5px ;
        -moz-border-bottom-left-radius:5px ;
        -moz-border-bottom-right-radius:5px ;

        -webkit-border-radius:5px ;
        -webkit-border-bottom-left-radius:5px ;
        -webkit-border-bottom-right-radius:5px ;

        border-radius:5px ;
        border-bottom-left-radius:0px ;
        border-bottom-right-radius:0px ;
            */

    /*    background-color:white;*/
    background-color:#F9F7F2;

    }

    div.mainmenu ul.hmenu li.right a
    {
        padding-left:28px;
        padding-right:0;
    }

    div.mainmenu ul.hmenu a:hover
    {
        color:#000;
        text-decoration:underline;
    }

/*#endregion*/

/*#region buttons*/

.btn {

    margin: 0;
    text-transform: none;
    font-weight: 100;
    letter-spacing: 0.01em;
    display: inline-block;
    zoom: 1;
    line-height: normal;
    white-space: nowrap;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 14px;
    padding: 8px 22px;
    border: 0 rgba(0,0,0,0);

    text-decoration: none;
    color: white;
    border-radius: 4px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.btn-green {
  background: rgb(28, 184, 65);
}

.btn-green:hover {
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#1a000000', GradientType=0);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(transparent),color-stop(40%,rgba(0,0,0,.05)),to(rgba(0,0,0,.1)));
    background-image: -webkit-linear-gradient(transparent,rgba(0,0,0,.05) 40%,rgba(0,0,0,.1));
    background-image: -moz-linear-gradient(top,rgba(0,0,0,.05) 0,rgba(0,0,0,.1));
    background-image: -o-linear-gradient(transparent,rgba(0,0,0,.05) 40%,rgba(0,0,0,.1));
    background-image: linear-gradient(transparent,rgba(0,0,0,.05) 40%,rgba(0,0,0,.1));
}
/*
.btn-search {
    background-image:url(../images/icon-search.png);
    background-repeat:no-repeat;
    background-position:99% center;
}*/
/*#endregion*/

/*#region mainsearchbox*/
div.mainsearchboxcontainer {
    padding:25px 0px ;
    background-color: #F9F7F2;
    border: solid 1px #ddd;
    border-top:0;
}
div.dizincontainer {
    padding:25px 25px ;
    background-color: #F9F7F2;
    border: solid 1px #ddd;
    border-top:0;
}

div.gelismisaramacontainer {
    padding:25px 25px ;
    background-color: #F9F7F2;
    border: solid 1px #ddd;
    border-top:0;
}

div.mainsearchbox
{    box-sizing: border-box;
    margin-top:0px;
    width:620px;
    position:relative;
    margin-left:auto;
    margin-right:auto;
    z-index:50;
}

div.mainsearchbox.mainsearchbox-main {
    margin-top:60px;
    margin-bottom:150px;
}

div.mainsearchbox div.mainsearchinput
{
        box-sizing: border-box;
    background-color:rgba(255,255,255,0.6);
    width:540px;
    /*height:24px;*/
    border-color:#A8A8B7;
    border-width:1px;
    -moz-border-radius:0 ;
    -webkit-border-radius:0;
    border-radius:0 ;
    border-style:solid;
}

div.mainsearchbox div.mainsearchinput.mainsearchinput-focus {
    border-color:#0072AC !important;
    
}

    div.mainsearchbox div.mainsearchinput input.textbox
    {
        width: 354px; 
        border:0;
        
        font-size:16px;
        line-height:16px;
        height:20px;
        padding:10px 10px 10px 10px;
    }

    div.mainsearchbox div.mainsearchinput.fullwidth input.textbox {
        width: 518px;
    }

div.mainsearchbox a.mainsearchordermenu {
    display: block;
    color: #444444;
    font-size: 12px;
    position: absolute;
    top: 1px;
    height: 20px;
    right: 80px;
    bottom: 0;
    padding-top: 14px;
    padding-bottom: 7px;
    padding-right: 10px;
    width: 135px;
    background-image: url(../images/arrow.down.png);
    background-repeat: no-repeat;
    background-position: 125px center;
    text-align: center;
    border-left: solid 1px #A8A8B7;
}

        div.mainsearchbox a.mainsearchordermenu:hover
        {
            color:rgb(255, 70, 0);
        }
    div.mainsearchbox div.mainsearchordermenuitems
    {
        display:none;

        position:absolute;
        top:30px;
        right:92px;
        padding-top:6px;
        padding-bottom:6px;
        
        
        background-color:white;
        background-color:rgb(255,255,255);

        border-color:rgb(100,100,115);
        border-width:1px;
        -moz-border-radius:1px;
        -webkit-border-radius:1px;
        border-radius:1px;
        border-style:solid;
        -moz-box-shadow:0px 0px 5px 0px rgba(100,100,115,0.25);
        -webkit-box-shadow:0px 0px 5px 0px rgba(100,100,115,0.25);
        box-shadow:0px 0px 5px 0px rgba(100,100,115,0.25);
        z-index:100;

    }

        div.mainsearchbox div.mainsearchordermenuitems a
        {
            display:block;
            padding:8px 12px 8px 12px;
            color:#444;
        }

            div.mainsearchbox div.mainsearchordermenuitems a:hover
            {
                background-color:#0072AC;
                color:white;
                
            }
        
    div.mainsearchbox div.mainsearchbutton
    {
        position:absolute;
        top:5px;
        right:0;
    }
/*#endregion*/

/*#region mainsearchcategories*/

div.mainsearchcategories
{
    margin-top:20px;
    /*width:572px;*/
    position:relative;
    margin-left:auto;
    margin-right:auto;
    font-family:Arial;
    font-size:12px;
    z-index:40;
}
/*#endregion*/


/*#region GelismisArama*/

div.mainsearchadvanced {
    padding-top: 6px;
    text-align: left;
    padding-right: 69px;
    
}

#apopupgelismisarama {
    display:none;
}

    div.mainsearchadvanced a {
        color:#0072AC;
        text-decoration:none;
    }

    div.mainsearchadvanced a:hover {
        color: #000;
        text-decoration: underline;
    }

    div.mainsearchcategories .groupheader
    {
        margin-bottom:14px;
    }

    div.mainsearchcategories div.col2
    {
        position:absolute;
        left:221px;
        top:0;
    }

    div.mainsearchcategories div.col3
    {
        position:absolute;
        left:366px;
        top:0;
    }

    div.mainsearchcategories div.col4
    {
        position:absolute;
        left:529px;
        top:0;
    }

    div.mainsearchcategories div.col5
    {
        position:absolute;
        left:675px;
        top:0;
    }

.divgelismisarama {
    
    position:relative;
}
#divgelismisarama {
    padding:20px 10px 0px 0px;
    display:none;
}

.divgelismisarama>.grid>div {
    
}

.divgelismisarama>.grid>div>label {
    font-weight: bold;
    text-align: left;
    display:block;
}
    .divgelismisarama > .grid > div > input, .divgelismisarama > .grid > div > table input {
        border: solid 1px #ABADB3;
        padding: 4px;
        width: 90%
    }
    .divgelismisarama > .grid > div > select, .divgelismisarama > .grid > div > table select {
        border: solid 1px #ABADB3;
        padding: 3px;
        width: 96%
    }

.divgelismisarama >.grid .advancedsearchbutton {
    position:absolute;
    top:31px;
    right:-68px;
}
    .divgelismisarama>.grid .advancedsearchbutton input {
        border:0;
    }

    .divadvancedsearchlink{
        margin-top:10px;
    }
/*#endregion*/
/*#region dizin*/

a.expandable {
    background-image:url(../images/expand.png);
    background-repeat:no-repeat;
    background-position:left 3px;
    padding-left:13px;
}

a.expanded {
    background-image:url(../images/collapse.png);
    background-repeat:no-repeat;
    background-position:left 3px;
    padding-left:13px;
}

div.dizin
{
    /*margin-top:70px;*/    
}

    div.dizin h1
    {
        height:22px;
        border-bottom:solid 1px #ddd;
        width:100%;
        margin-bottom:12px;
    }

    div.dizin div.section {
        padding-bottom:40px;
    }
    div.dizin div.section div {
        padding-left:10px;
    }

    div.dizin h2
    {
        font-family: Georgia;
        margin-bottom:4px;
        font-weight:bold;
        padding-left:13px;
    }

    div.dizin.twocols div.col1
    {
        width:350px;
        float:left;
    }

    div.dizin.twocols div.col2
    {
        width:390px;
        float:right;
    }

    div.dizin.threecols div.col1
    {
        width:252px;
        float:left;
    }

    div.dizin.threecols div.col2
    {
        width:200px;
        float:left;
    }

    div.dizin.threecols div.col3
    {
        width:288px;
        float:right;
    }

    div.dizin a
    {
        display:block;
        font-size:13px;
        
        padding-bottom:3px;
        /*background-image:url(../images/bullet.png);
        background-repeat:no-repeat;
        background-position:left 4px;*/
        padding-left:13px;
    }



    div.dizin a:hover
    {
        color:rgb(255, 70, 0);
    }

        div.dizin a.alllink
        {
            margin-top:4px;
            background-image:none;
            text-align:right;
        }

/*#endregion*/

/*#region SearchResult*/
div.searchresult {
    margin-top:20px;
    position:relative;
    line-height: 20px;
}
div.searchresultheader {
    padding-bottom:7px;
    margin-bottom:14px;
    border-bottom:solid 1px #ddd;
    color:#444;
    display:none;
}

div.searchresult table td {
    padding-top:6px;
}


div.searchresult .searchmaincategories {
    margin-top:40px;
    margin-bottom:20px; 
    background-color:#fafafa;
    padding:10px 0px 10px 0px;  
}


div.searchresult .searchmaincategories a {
    color: #0072AC;
    padding:10px;
    margin: 2px 8px 0;
    padding: 0 8px;
    display:inline-block;
    font-family: arial,sans-serif;
    font-size:13px;
}

    div.searchresult .searchmaincategories a.current {
        font-weight:bold;
        color:#777;

    }


div.searchresult .searchcategories {
    position:absolute;
    top:-33px;
    left:-240px;
    width:220px;
    
}

    div.searchresult .searchcategories.searchpaketler {
        right: -240px;
        left: auto;
    }

div.searchresult .searchcategories h2 {
    font-size:12px;
    font-weight:bold;
    border-bottom:solid 1px #ccc;
    padding-bottom:4px;
    margin-bottom:0px;
    margin-top:10px;
}

    div.searchresult .searchcategories h2 a {
        color: #333;
    }
    
    div.searchresult .searchcategories h2 span {
        float: right;
    }
    div.searchresult .searchcategories h2 span a {
        display:inline-block;
        padding:0;
        margin-left:6px;
        color:#ccc;

        font-size: 14px;
        
    }
    div.searchresult .searchcategories h2 span a.current {
        color:#333;
    }

div.searchresult .searchcategories h3 {

}

div.searchresult .searchcategories div a {
    font-size:12px;
    font-weight:normal;
    
    padding:5px;
    padding-left:10px;
    display:block;
    color: #0072AC;

    border: solid 1px #eee;
    border-top: 0;
    background-color:#fff;
    
}
div.searchresult .searchcategories div a:last-child {
 /*   border-bottom:solid 1px #eee;*/
}

div.searchresult .searchcategories div a.disabled {
    color:#e0dede;
}

div.searchresult .searchcategories div a:hover {
      color: #000;
      text-decoration:underline;
}



div.searchresult .searchFilterButtons {
    display:none;
}

@media handheld, only screen and (max-width: 1270px) {
    div.searchresult .searchFilterButtons {
        display: block;
        margin-bottom:16px;
    }

    div.searchresult .searchFilterLeftButton, div.searchresult .searchFilterRightButton {
        display: inline-block;
        padding: 8px 10px 10px 8px;
        width: 100%;
        max-width: 250px;
        background-color: white;
        border: solid 1px #ccc;
        background-image: url(../images/arrow.down.png);
        background-repeat: no-repeat;
        background-position: right 10px center;
        text-align: left;
        transition: background 0.2s;
    }

    div.searchresult .searchcategories {
        
        position: static;
        top: 0px;
        left: 0px;
        width: 100%;
    }

    div.searchresult .filter-left, div.searchresult .filter-right {
        display:none;
    }

        div.searchresult .filter-left.open, div.searchresult .filter-right.open {
            display: block;
            
        }

    div.searchresult .searchFilterLeftButton.open, div.searchresult .searchFilterRightButton.open {
        /*background: #fff url(data:image/gif;base64,R0lGODlhBwAHAIAAAP///5KSkiH5BAAAAAAALAAAAAAHAAcAAAIMTICmsGrIXnLxuDMLADs=) no-repeat right -10px center;*/
        
        background-image: url(data:image/gif;base64,R0lGODlhBwAHAIAAAP///5KSkiH5BAAAAAAALAAAAAAHAAcAAAIMTICmsGrIXnLxuDMLADs=);
    }
}
@media handheld, only screen and (max-width: 767px) {
    div.searchresult .searchFilterRightButton 
    {
        margin-right:20px;
    }
    div.searchresult .searchFilterLeftButton {
        margin-left:-20px;
    }
}















    div.searchresults .result {
        border: solid 1px #e0e0e0;
        border-top: 0;
        background-color: rgb(254,255,254);
        padding: 0px;
    }

        div.searchresults .result:first-child {
            border-top: solid 1px #e0e0e0;
        }


        div.searchresults .result.anabelge {
            border-color: #9B8F71;
        }



        div.searchresults .result h2 {
            font-size: 14px;
            margin-bottom: 0px;
            background-color: #F9F7F2;
            display: block;
            padding: 8px;
            border-bottom: solid 1px #efefef;
        }

            div.searchresults .result h2 a {
                color: #44553C;
                font-weight: bold;
            }

                div.searchresults .result h2 a:hover {
                    color: #FF4600;
                    text-decoration: underline;
                }
				
				div.searchresults .result h2 a:visited {
                    color: #359566;
                   
                }

        div.searchresults .result .kavramlar {
            padding: 10px 10px 0px 10px;
        }

            div.searchresults .result .kavramlar .kavram {
                padding: 4px;
            }

        div.searchresults .result .icerik {
            padding: 10px 10px 10px 10px;
        }

        div.searchresults .result .aramakelimesibold {
            font-weight: bold;
        }

        div.searchresults .result .aramakelimesiitalic {
            font-style: italic;
        }

    /*#endregion*/




    /*#region Pager*/
    div.pager {
        margin-top: 40px;
        margin-bottom: 40px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

        div.pager a, div.pager span {
            padding: 5px;
            border: solid 1px #bfbfbf;
            color: #666;
            font-family: Arial;
            /*margin-left:3px;*/
            margin-bottom: 8px;
            display: inline-block;
        }

    div.searchresult a:hover {
        color: rgb(255, 70, 0);
    }

    div.pager a.pager-pagesize, div.pager a.pager-info {
        background-image: url(../images/arrow.down.r5.png);
        background-repeat: no-repeat;
        background-position: right center;
        text-align: center;
        padding-right: 18px;
    }

    div.pager a.pager-active {
        border-color: #000;
        color: #000;
    }

    div.pager div.pagesizeselector {
        position: absolute;
        width: 115px;
        top: 25px;
        left: 0;
        background-color: white;
        border: solid 1px #BFBFBF;
    }

        div.pager div.pagesizeselector a {
            display: block;
            margin-bottom: 0px;
            border: 0;
            border-bottom: solid 1px #BFBFBF;
        }
    /*#endregion*/

    /*#region legalbanklist*/

    .legalbanklist {
        position: relative;
        z-index: 999;
    }

        .legalbanklist table {
            border-width: 0px;
            border-collapse: collapse;
        }

            .legalbanklist table td, .legalbanklist table th {
                border-bottom: solid 1px #ddd;
                font-size: 11px;
                font-family: Arial;
            }

            .legalbanklist table th {
                padding: 5px 7px;
                font-weight: bold;
                text-align: center;
            }

                .legalbanklist table th input, .legalbanklist table td input {
                    border: solid 1px #ABADB3;
                    padding: 2px;
                }

                .legalbanklist table th select, .legalbanklist table td select {
                    border: solid 1px #ABADB3;
                    padding: 1px;
                    -webkit-appearance: none;
                    -moz-appearance: none;
                    appearance: none;
                    background-image: url(../images/arrow.down.r5.png);
                    background-position: right center;
                    background-repeat: no-repeat;
                    padding-right: 13px;
                    padding-right: 0px\9;
                    padding-right: 0px\0/;
                }

        .legalbanklist h1 {
            margin-bottom: 20px;
        }

            .legalbanklist h1 a {
                background-image: url(../images/arrow.down.r5.png);
                background-repeat: no-repeat;
                background-position: right center;
                text-align: center;
                padding-right: 18px;
            }

    div.popupdizin, div.popupdizin, div.popuparamaipuclari, div.popupbelge, div.popuppaketonay, div.popupusersettings {
        /*display:none;*/
        z-index: 1002;
        background-color: white;
        /*position: absolute;*/
        position: fixed;
        top: 175px;
        left: 50%;
        margin-left: -387px;
        padding: 20px;
        border: solid 1px #DDD;
        width: 740px;
    }

        div.popupbelge.fullscreen {
            /*display:none;*/
            position: fixed;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            padding: 20px;
            width: auto;
            margin-left: 0;
        }

    div.popupgelismisarama {
        z-index: 1002;
        background-color: white;
        position: absolute;
        padding: 20px;
        border: solid 1px #DDD;
        width: 240px;
        top: 264px;
    }

    div.popupbelge {
        position: fixed;
        top: 80px;
        bottom: 80px;
    }

        div.popupdizin a.closepopupdizinbutton, div.popuparamaipuclari a.closepopupdizinbutton, div.popupbelge a.closepopupdizinbutton, div.closepopuppaketonaybutton a.closepopupdizinbutton, div.popupusersettings a.closepopupusersettingsbutton {
            text-decoration: none;
            font-size: 13px;
            color: #0072AC;
        }

    .legalbanklist table td a {
        display: block;
        padding: 6px 7px;
    }

    a.tip700 {
        background-image: url(/images/tip700.png) !important;
        background-repeat: no-repeat !important;
        background-position: 5px center !important;
        padding-left: 62px !important;
    }

    a.tip1200 {
        background-image: url(/images/tip1200.png) !important;
        background-repeat: no-repeat !important;
        background-position: 5px center !important;
        padding-left: 62px !important;
    }

    a.tip0 {
        background-image: url(/images/tip0.png) !important;
        background-repeat: no-repeat !important;
        background-position: 5px center !important;
        padding-left: 62px !important;
    }

    .legalbanklist a:hover {
        color: #FF4600;
    }

    .legalbanklist tr:hover td {
        color: #FF4600;
    }

    .legalbanklist tr:hover a {
        color: #FF4600;
    }
    /*#endregion*/


    /*#region UserMenu*/
    #popupusermenu {
        position: absolute;
        right: 0;
        top: 39px;
        background-color: rgb(255,255,255);
        max-width: 396px;
        /*height:160px;*/
        border-color: rgb(100,100,115);
        border-width: 1px;
        -moz-border-radius: 1px;
        -webkit-border-radius: 1px;
        border-radius: 1px;
        border-style: solid;
        -moz-box-shadow: 0px 0px 5px 0px rgba(100,100,115,0.25);
        -webkit-box-shadow: 0px 0px 5px 0px rgba(100,100,115,0.25);
        box-shadow: 0px 0px 5px 0px rgba(100,100,115,0.25);
    }

        #popupusermenu .userloginbox {
            padding: 26px 38px;
        }

            #popupusermenu .userloginbox input.textbox {
                background-color: rgba(255,255,255,0.6);
                width: 191px;
                /*height:23px;*/
                border-color: rgb(168,168,183);
                border-width: 1px;
                -moz-border-radius: 5px;
                -webkit-border-radius: 5px;
                border-radius: 5px;
                border-style: solid;
                padding-left: 3px;
            }

            #popupusermenu .userloginbox label {
                width: 114px;
                display: inline-block;
            }

            #popupusermenu .userloginbox div {
                margin-bottom: 6px;
            }

        #popupusermenu a {
            padding: 0;
            display: inline-block;
            color: #0072AC;
            font-size: 11px;
        }

        #popupusermenu .userMenu {
            padding: 15px 32px;
        }

            #popupusermenu .userMenu a {
                display: block;
                color: #444444;
                font-family: 'Times New Roman';
                font-size: 14px;
                margin-bottom: 15px;
                padding-left: 22px;
                background-position: left center;
                background-repeat: no-repeat;
            }

                #popupusermenu .userMenu a:hover {
                    text-decoration: underline;
                }

                #popupusermenu .userMenu a.menuabonelikbilgileri {
                    padding-top: 3px;
                    background-image: url(../images/menu.abonelik.bilgileri.png);
                }

                #popupusermenu .userMenu a.menuarsivim {
                    padding-top: 1px;
                    background-image: url(../images/menu.arsivim.png);
                }

                #popupusermenu .userMenu a.menusongezilenler {
                    background-image: url(../images/menu.son.gezilenler.png);
                }

                #popupusermenu .userMenu a.menusifredigistir {
                    background-image: url(../images/menu.sifre.degistir.png);
                    background-position-x: 2px;
                }

                #popupusermenu .userMenu a.menulogout {
                    background-image: url(../images/menu.sifre.degistir.png);
                    background-position-x: 2px;
                }
    /*#endregion*/
    /*#region iletisimformu*/
    .iletisimformu td {
        vertical-align: middle;
    }

    .iletisimformu {
        width: 450px;
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
    }

        .iletisimformu label {
            width: 120px;
            display: inline-block;
        }

        .iletisimformu .textbox {
            width: 300px;
        }
    /*#endregion*/


    /*
Back to top button 
*/
    #back-top {
        position: fixed;
        bottom: 15px;
        /*margin-left: -200px;*/
        right: 20px;
        display: none;
    }

        #back-top a {
            width: 108px;
            display: block;
            text-align: center;
            font: 11px/100% Arial, Helvetica, sans-serif !important;
            text-transform: uppercase;
            text-decoration: none;
            color: #bbb !important;
            /* background color transition */
            -webkit-transition: 1s;
            -moz-transition: 1s;
            transition: 1s;
        }

            #back-top a:hover {
                color: #000 !important;
            }
        /* arrow icon (span tag) */
        #back-top span {
            width: 108px;
            height: 108px;
            display: block;
            margin-bottom: 7px;
            background: #f1f1f1 url(../images/scrollup-arrow.png) no-repeat center center;
            /* rounded corners */
            -webkit-border-radius: 15px;
            -moz-border-radius: 15px;
            border-radius: 15px;
            /* background color transition */
            -webkit-transition: 1s;
            -moz-transition: 1s;
            transition: 1s;
        }

        #back-top a:hover span {
            background-color: #777;
        }

    .nounderlinetable td {
        border: 0 !important;
    }











    /**********/

    .paketlercontainer h1 {
        text-align: left;
        position: relative;
    }

    .paketlercontainer input.searchbox, .mevzuatpaketleri input.searchbox {
        float: right;
        top: -3px;
        border: solid 1px #ddd;
        width: 200px;
        background-image: url(../images/searchSmall.png);
        background-position: 186px center;
        background-repeat: no-repeat;
    }

    .paketlercontainer .col1 {
        width: 245px;
        float: left;
    }

    .paketlercontainer .col2 {
        width: 263px;
        float: left;
    }

    .paketlercontainer .col3 {
        width: 254px;
        float: left;
    }



    .paketButton {
        -moz-box-shadow: inset 0px 1px 0px 0px #ffffff;
        -webkit-box-shadow: inset 0px 1px 0px 0px #ffffff;
        box-shadow: inset 0px 1px 0px 0px #ffffff;
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ffffff), color-stop(1, #f6f6f6));
        background: -moz-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
        background: -webkit-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
        background: -o-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
        background: -ms-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
        background: linear-gradient(to bottom, #ffffff 5%, #f6f6f6 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f6f6f6',GradientType=0);
        background-color: #ffffff;
        border: 1px solid #dcdcdc;
        display: inline-block;
        color: #666666;
        font-family: arial;
        font-size: 12px;
        /*font-weight:bold;*/
        padding: 5px 24px;
        text-decoration: none;
        text-shadow: 0px 1px 0px #ffffff;
        margin: 2px;
        float: left;
        width: 211px;
        height: 21px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        /* display: inline-block !important;*/
    }

        .paketButton:hover {
            background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #f6f6f6), color-stop(1, #ffffff));
            background: -moz-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
            background: -webkit-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
            background: -o-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
            background: -ms-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
            background: linear-gradient(to bottom, #f6f6f6 5%, #ffffff 100%);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6f6f6', endColorstr='#ffffff',GradientType=0);
            background-color: #f6f6f6;
        }

        .paketButton:active {
            position: relative;
            top: 1px;
        }




    .kavram:before {
        content: "•";
        font-size: 16px;
        padding-right: 10px;
    }

    .kavramsep:before {
        /*content:"\2217";*/
        content: " ― ";
    }



    .clearable {
        background: #fff url(data:image/gif;base64,R0lGODlhBwAHAIAAAP///5KSkiH5BAAAAAAALAAAAAAHAAcAAAIMTICmsGrIXnLxuDMLADs=) no-repeat right -10px center;
        transition: background 0.4s;
    }

        .clearable.x {
            background-position: right 10px center;
        }

        .clearable.onX {
            cursor: pointer;
        }

        .clearable::-ms-clear {
            display: none;
            width: 0;
            height: 0;
        }



    .listresult h1 {
        font-family: Arial, "trebuchet ms", arial, sans-serif;
        font-size: 12px;
        font-weight: bold;
        text-align: left;
        border-bottom: solid 1px #ccc;
        padding-bottom: 4px;
        margin-bottom: 0px;
        margin-top: 10px;
    }

    .listresult a {
        font-size: 11px;
        font-weight: normal;
        padding: 5px;
        padding-left: 10px;
        display: block;
        color: #0072AC;
        border: solid 1px #eee;
        border-top: 0;
        background-color: #fff;
    }

        .listresult a:hover {
            color: #FF4600;
            text-decoration: underline;
        }

    /*.solcol {
    padding-right:4px;
}
.sagcol {
    padding-left:4px;
}*/

    .paketmultiselect .ms-drop {
        width: 130% !important;
    }


    .mevzuatpaketleri p {
        padding: 10px;
    }

    div.searchresults.mevzuatpaketleri .listresult h2 {
        font-family: Arial, "trebuchet ms", arial, sans-serif;
        font-size: 12px;
        font-weight: bold;
        text-align: left;
        border-bottom: solid 1px #ccc;
        padding-bottom: 4px;
        margin-bottom: 3px;
        margin-top: 10px;
        background-color: white;
        padding-left: 10px;
    }
    /*
.mevzuatpaketleri  .solcol a {
   border-left:0;
}

.mevzuatpaketleri .sagcol a {
   border-right:0;
}*/

    .mevzuatpaketleri a {
        -moz-box-shadow: inset 0px 1px 0px 0px #ffffff;
        -webkit-box-shadow: inset 0px 1px 0px 0px #ffffff;
        box-shadow: inset 0px 1px 0px 0px #ffffff;
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ffffff), color-stop(1, #f6f6f6));
        background: -moz-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
        background: -webkit-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
        background: -o-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
        background: -ms-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
        background: linear-gradient(to bottom, #ffffff 5%, #f6f6f6 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f6f6f6',GradientType=0);
        background-color: #ffffff;
        border: 1px solid #dcdcdc;
        display: inline-block;
        color: #666666;
        font-family: arial;
        font-size: 12px;
        /*font-weight:bold;*/
        padding: 8px 14px;
        text-decoration: none;
        text-shadow: 0px 1px 0px #ffffff;
        margin: 2px;
        width: 217px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .paketheader {
        border-top: solid 2px rgb(28, 184, 65);
    }

        .paketheader > div {
            max-width: 762px;
            margin-left: auto;
            margin-right: auto;
        }

            .paketheader > div > h1 {
                text-shadow: 0 0 1px #f6f6f6;
                display: inline-block;
                font-family: 'Open Sans', sans-serif;
                font-size: 16px;
                padding: 0 14px;
                line-height: 34px;
                font-weight: 300;
                float: right;
                color: white;
                background-color: rgb(28, 184, 65);
                border-bottom-left-radius: 4px;
                border-bottom-right-radius: 4px;
            }

            .paketheader > div > a {
                padding-right: 3px;
                color: #555;
                float: right;
                font-size: 16px;
                padding: 5px 7px 5px 11px;
                background-color: #F9F7F2;
                border: solid 1px #E0E0E0;
                border-bottom-left-radius: 4px;
                border-top: 0;
                border-right: 0;
                height: 18px;
                width: 16px;
            }

                .paketheader > div > a:hover {
                    background-color: #E6E6E6;
                    border-color: #d0d0d0;
                    color: #000;
                }

    .mevzuatpaketleri .listresult a {
        font-size: 12px;
    }

    .legalbanklist .dizinresults {
        border: solid 1px #ddd;
    }

    .legalbanklist .dizinresults {
        border: solid 1px #ddd;
    }

        .legalbanklist .dizinresults .headertablecontainer {
            background-color: #F9F7F2;
            border-bottom: solid 1px #efefef;
        }

        .legalbanklist .dizinresults .tablecontainer tr:nth-child(even) {
            background-color: #f8f8f8;
        }


    .searchresults .paketlist {
        /*background-color: #fdfdfc;
    border-top: solid 1px #efefef;*/
        margin: 6px;
    }

        .searchresults .paketlist a {
            /*padding: 6px 8px;
        display: inline-block;
        font-size: 12px;
        color: #44553C;
        font-family:"Open Sans", Arial
        */
            margin: 4px;
        }






    .searchresults .paketlist {
        /* background-color: #fdfdfc;
    border-top: solid 1px #efefef;*/
        padding-left: 4px;
        padding-right: 4px;
    }

        .searchresults .paketlist a {
            display: inline-block;
            /*   padding: 6px 8px;
        font-size: 12px;
        color: #44553C;
        font-family:"Open Sans", Arial
        margin:4px;
        
*/
        }






        .searchresults .paketlist a {
            -moz-box-shadow: inset 0px 1px 0px 0px #ffffff;
            -webkit-box-shadow: inset 0px 1px 0px 0px #ffffff;
            box-shadow: inset 0px 1px 0px 0px #ffffff;
            background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ffffff), color-stop(1, #f6f6f6));
            background: -moz-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
            background: -webkit-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
            background: -o-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
            background: -ms-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
            background: linear-gradient(to bottom, #ffffff 5%, #f6f6f6 100%);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f6f6f6',GradientType=0);
            background-color: #ffffff;
            border: 1px solid #ffd2d2;
            display: inline-block;
            color: #666666;
            font-family: arial;
            font-size: 11px;
            /*font-weight:bold;*/
            padding: 0px 4px;
            text-decoration: none;
            margin: 2px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            opacity: 0.6;
        }

            .searchresults .paketlist a:hover {
                opacity: 1;
            }

            .searchresults .paketlist a.abone {
                border-color: #1dcc0b;
                opacity: 1;
            }

                .searchresults .paketlist a.abone:hover {
                    color: green;
                }


    .popuppaketonay .searchresults .paketlist a {
        padding: 4px 9px;
    }

    .searchresult .belgeinfo {
        background-color: #fdfdfc;
        border-bottom: solid 1px #efefef;
    }

        .searchresult .belgeinfo span {
            background-color: #f2f2f2;
            display: inline-block;
            padding: 0px 4px;
            margin: 2px 2px;
            font-size: 11px;
            font-family: Arial
        }

            .searchresult .belgeinfo span.guncel {
                color: white;
                background-color: #9594e3;
            }

            .searchresult .belgeinfo span.degistiren {
                color: white;
                background-color: #cbb661;
            }

            .searchresult .belgeinfo span.mulga {
                color: white;
                background-color: #e79491;
            }


    .paket0 {
        color: #00AC72 !important;
    }

    .paket1 {
        /*color: green !important;*/
    }

    .paket2 {
        color: #ccc !important;
    }

        .paket0:hover, .paket1:hover, .paket2:hover {
            color: #FF4600 !important;
        }



    .paketgheader {
    }

    .grid .solcol {
        margin-right: 5px;
    }

        .grid .solcol .solcolx {
            margin-bottom: 10px;
            margin-top: 10px;
        }

    .grid .sagcol {
        margin-left: 5px;
    }

        .grid .sagcol .sagcolx {
            margin-bottom: 10px;
            margin-top: 10px;
        }

    .paketgheader img {
        width: 90%;
        margin: 10px;
    }

    .paketgheader h1 {
    }

    .paketgcontent {
        padding: 6px;
        background-color: white;
        margin: 6px;
    }

    .mevzuatpaketleri .paketgcontent a {
        display: block;
        width: auto;
        display: block;
        width: auto;
        white-space: normal;
        padding: 8px 14px;
    }

    div.searchresults.mevzuatpaketleri .paketgheader h2 {
        background-color: transparent;
        border: 0;
        text-align: center;
        font-family: Georgia;
        font-size: 16px;
        font-weight: normal;
        padding-left: 5px;
        padding-right: 5px;
        padding-bottom: 20px;
    }



    @media handheld, only screen and (max-width: 767px) {
        div .mainsearchbox {
            width: 100%;
        }

        .result .grid, .grid.searchresults {
            padding-left: 0;
            padding-right: 0;
        }

            .grid.searchresults .col-1-2, .grid.searchresults .col-6-12 {
                padding-right: 0;
            }

            .grid.searchresults .result {
                margin: 0 !important;
            }

        .listresult a {
            padding: 10px 5px;
        }

        #back-top {
            display: none !important;
        }

        .mevzuatpaketleri a {
            display: block;
            width: auto;
            margin: 10px;
        }

        div.belge {
            padding: 10px;
        }
    }

    @media handheld, only screen and (max-width: 450px) {
        .iletisimmenu {
            display: none;
        }
    }


    .listresult a.ellipsis-3line {
        max-height: 33px;
        overflow: hidden;
    }

    .mevzuat-list a.ellipsis-3line {
        max-height: 46px;
        overflow: hidden;
        box-sizing: content-box !important;
    }


    .ellipsis-3line.show-ellipsis {
        position: relative;
    }

        .ellipsis-3line.show-ellipsis:after {
            content: '...';
            position: absolute;
            right: 0;
            bottom: 0;
            width: 47px;
            background-color: white;
            z-index: 10;
            font-size: 14px;
        }


    .mevzuat-list a.ellipsis-3line.show-ellipsis:after {
        bottom: 8px;
        width: auto;
        right: 16px;
    }

    .mevzuat-list a.ellipsis-3line.show-ellipsis:before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        height: 8px;
        bottom: 0;
        background-color: white;
        z-index: 10;
    }

    .gaKanunAramadiv, .gaYayinAramadiv, .gaYazarAramadiv {
        position: relative;
    }

        .gaKanunAramadiv .fa-spinner, .gaYayinAramadiv .fa-spinner, .gaYazarAramadiv .fa-spinner {
            position: absolute;
            right: 26px;
            top: 21px;
            background-color: white;
            display: none;
        }

        .gaKanunAramadiv.spin .fa-spinner, .gaYayinAramadiv.spin .fa-spinner, .gaYazarAramadiv.spin .fa-spinner {
            display: block;
        }










.mainpage-footer {
    background-color: #252525;
    color: #EDEDED;
    min-height: 400px;
    padding-bottom: 40px;
}

    .mainpage-footer h2 {
        font-size: 14px;
        font-weight: bold;
    }
    .mainpage-footer a {
        color: #0071BF;
    }

.footer-logo {
    width: auto !important;
}

.footer-paketler > div {
    min-height: 40px;
    margin-top: 40px;
}

.footer-paketler a {
    display: block;
    color: #ddd;
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
}

    .footer-paketler a:hover {
        color: #fff;
    }

.footer-paketler > div > div {
    padding-left: 20px;
}

    .footer-paketler > div > div > a {
        font-size: 12px;
        font-weight: normal;
    }

.mainpage-footer p {
    line-height: 20px;
    color: #ddd;
}




.searchresults .etiketler {
    margin: 10px;
}

    .searchresults .etiketler span {
        display: inline-block;
        padding: 2px 8px 2px 8px;
        border: solid 1px #ebebeb;
        background-color: #f5f5f5;
        margin: 2px;
        font-size: 12px;
        font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    }