/* ----------------------------------

   01 RESET 

   02 GENERAL
      - Fonts
	  - Link
	  - Input
	  - Text
	  - Columns
	  
	03 CONTENT 
      
   ----------------------------------*/

/* __________________________________

   01 RESET 
   __________________________________*/

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,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    /*vertical-align: baseline;*/
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    font-family: MyCustomFont;
    color: #656565;
    font-size: 12px;
}


ol, ul {
    list-style: none;
    vertical-align: middle;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.clear {
    clear: both;
}

/* __________________________________

   02 GENERAL
   __________________________________*/

/************************************
	Fonts
*************************************/

@font-face {
    font-family: MyCustomFont;
    font-weight: 300;
    src: url("../Font/OpenSans-Light.eot"); /* EOT file for IE */
}

@font-face {
    font-family: MyCustomFont;
    font-weight: 300;
    src: url("../Font/OpenSans-Light.ttf"); /* TTF file for CSS3 browsers */
}

@font-face {
    font-family: MyCustomFont;
    font-weight: 400;
    src: url("../Font/OpenSans-Regular.eot"); /* EOT file for IE */
}

@font-face {
    font-family: MyCustomFont;
    font-weight: 400;
    src: url("../Font/OpenSans-Regular.ttf"); /* TTF file for CSS3 browsers */
}

@font-face {
    font-family: MyCustomFont;
    font-weight: 500;
    font-style: normal;
    src: url("../Font/OpenSans-Semibold.eot"); /* EOT file for IE */
}

@font-face {
    font-family: MyCustomFont;
    font-weight: 500;
    font-style: normal;
    src: url("../Font/OpenSans-Semibold.ttf"); /* TTF file for CSS3 browsers */
}

@font-face {
    font-family: MyCustomFont;
    font-weight: 700;
    src: url("../Font/OpenSans-Bold.eot"); /* EOT file for IE */
}

@font-face {
    font-family: MyCustomFont;
    font-weight: 700;
    src: url("../Font/OpenSans-Bold.ttf"); /* TTF file for CSS3 browsers */
}

@font-face {
    font-family: MyCustomFont;
    font-weight: 800;
    font-style: normal;
    src: url("../Font/OpenSans-ExtraBold.eot"); /* EOT file for IE */
}

@font-face {
    font-family: MyCustomFont;
    font-weight: 800;
    font-style: normal;
    src: url("../Font/OpenSans-ExtraBold.ttf"); /* TTF file for CSS3 browsers */
}

/************************************
	Link
*************************************/

a {
    color: #222;
    text-decoration: none;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}

/************************************
	Input
*************************************/

input {
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
    padding: 0;
    margin: 0;
}

    input[type="number"] {
        text-align: right;
    }

textarea {
    font-family: MyCustomFont;
    width: 98%;
    height: auto;
    background-color: #fff;
    border: 1px solid #ddd;
    color: #555;
    padding: 7px 1%;
    outline: none;
    margin-left: -1px;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}

    textarea:focus {
        border: 1px solid #45c9ef;
    }


/************************************
	Text
*************************************/

.Text {
    color: #656565;
    font-size: 14px;
    padding: 20px;
}

/************************************
	Columns
*************************************/

.Column_100 {
    float: left;
    width: 100%;
    height: auto;
}
.Column_87 {
    float: left;
    width: 87%;
    height: auto;
}
.Column_75 {
    float: left;
    width: 75%;
    height: auto;
}

.Column_50 {
    float: left;
    width: 50%;
    height: auto;
}

.Column_45 {
    float: left;
    width: 45%;
    height: auto;
}

.Column_33 {
    float: left;
    width: 33.3%;
    height: auto;
}

.Column_35 {
    float: left;
    width: 35%;
    height: auto;
}

.Column_30 {
    float: left;
    width: 30%;
    height: auto;
}

.Column_25 {
    float: left;
    width: 25%;
    height: auto;
}

.Column_20 {
    float: left;
    width: 20%;
    height: auto;
}

/* __________________________________

   03 CONTENT
   __________________________________*/

/************************************
	Computer
*************************************/

/*@media only screen and (min-width:1024px){  */

/* Content */

.Content {
    width: 1280px;
    height: auto;
    margin: 25px auto 0;
    display: block;
    min-width: 1000px;
}

/* Header */

.Header {
    position: relative;
    width: 1280px;
    height: auto;
    margin: auto;
    background-color: #FFF;
    -webkit-box-shadow: 0px 0px 10px #bbb;
    -moz-box-shadow: 0px 0px 10px #bbb;
    box-shadow: 0px 0px 10px #bbb;
}

.Line_10 {
    width: 100%;
    height: 1px;
    margin: 14px 0 10px 0;
    background-color: #ddd;
}

.Logo {
    float: left;
    width: auto;
    height: 32px;
    margin: -30px 10px 48px 10px;
}

    .Logo img {
        width: auto;
        height: 100%;
    }

/* Menu */

.Menu {
    position: absolute;
    width: 1010px;
    left: -9px;
    z-index: 2;
    height: 60px;
    margin-top: 15px;
    padding-left: 8px;
    background-image: url('../images/menu-bg.png');
}

    .Menu li {
        float: left;
    }

        .Menu li a {
            float: left;
            position: relative;
            font-size: 13px;
            color: #fff;
            text-decoration: none;
            font-family: MyCustomFont;
            padding: 7px 10px;
            margin-top: 13px;
            margin-left: 5px;
            display: block;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            border-radius: 5px;
            cursor: pointer;
        }

.Active {
    color: #000 !important;
    background-color: #f4f4f4 !important;
}

.Menu li a:hover {
    color: #000;
    background-color: #f4f4f4;
}

.HeaderBottomMenu {
    width: 1000px;
    height: auto;
    margin: 25px auto 0;
    background-color: #fff;
    border: 3px solid #f4f4f4;
}

/* Konfik */

.Konfik {
    display: block;
    width: 1250px;
    height: auto;
    margin: 10px auto;
    background-color: #fff;
    border: 3px solid #f4f4f4;
    padding: 15px;
}

#jqueryGrid {
    float: left;
    width: 300px;
}

/* konfigTable */

#konfigTableDiv {
    float: left;
    width: 530px;
    min-height: 453px;
    height: auto;
    margin-left: 115px;
    padding: 15px 0 15px 15px;
    border: 3px solid #f4f4f4;
}

#konfigTable {
    width: 97%;
}

    #konfigTable tr {
        height: 30px;
    }

.konfigTableDivBaslik {
    font-size: 16px;
    display: block;
    text-align: center;
    font-weight: 400;
    margin-right: 17px;
    margin-bottom: 15px;
    padding: 7px 0;
    background-color: #eee;
    border-bottom: 1px solid #eee;
    min-height: 20px;
    font-weight: bolder;
}

#konfigTableToplam {
    width: 97%;
    margin-top: 15px;
}

    #konfigTableToplam tr {
        height: 30px;
        font-weight: bolder;
    }

/* Language */

.Language {
    float: right;
    padding: 10px 8px 14px 8px;
    margin-right: 10px;
    border-top: none;
    -webkit-border-radius: 0 0 3px 3px;
    -moz-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
}

    .Language li {
        float: left;
        margin: 0 2px;
    }

        .Language li a {
            float: left;
            display: block;
        }

            .Language li a img {
                height: 16px;
            }


/* Series Preferences */

.Box {
    position: relative;
    border: 3px solid #f1f1f1;
    display: block;
    padding: 45px 15px 26px 15px;
    background: #fff;
    /* YAZI ALANLARI YÜKSEKLİĞİ */
}

.Right_10 {
    margin-right: 10px;
    /* YAZI ALANLARI ENİ */
}

.Left_10 {
    margin-left: 10px;
    /* KUTU ARALIKLARI (EN) */
}

.Top_10 {
    margin-top: 20px;
    /* KUTU ARALIKLARI (YUKSEKLİK) */
}

.Top_30 {
    margin-top: 20px;
    /* KUTU ARALIKLARI (YUKSEKLİK) */
}

.SeriesPreferences h1 {
    position: absolute;
    top: 8px;
    /* BANTLAE(YUKSEKLİK) */
    left: 0;
    width: 100%;
    font-size: 14px;
    line-height: 30px;
    height: 30px;
    display: block;
    text-align: center;
    font-weight: 400;
    background-color: #eee;
    border-top: 1px solid #eee;
    -webkit-box-shadow: 0px 0px 10px #bbb;
    -moz-box-shadow: 0px 0px 10px #bbb;
    box-shadow: 0px 0px 10px #bbb;
}

.myTable {
    border-collapse: inherit;
    border-spacing: 0;
    width: 60%;
}

    .myTable table tr td {
        padding-left: 3%;
        vertical-align: middle;
        padding-bottom: 3%;
        width: 100%;
        margin: 1px;
        height: 50px;
    }

    .myTable table tr {
        border: 0;
    }

.SeriesPreferencesTrBosluk {
    border-left: none !important;
    border-right: none !important;
}


.SeriesPreferences table tr td img {
    width: 100%;
    display: block;
    margin: 10px auto;
    /* RESİM ORANTISI */
}

.h1_Left {
    float: left;
    margin-left: -10px;
    margin-top: -7px;
}

.h1_Right {
    float: right;
    margin-right: -7px;
    margin-top: -7px;
}

.SeriesPreferences table tr td {
    float: left;
    /*width:100%;*/
    padding-left: 3%;
    vertical-align: middle;
}

.SeriesPreferences table tr {
    border: 1px solid #e5e5e5;
}

.SeriesPreferencesTrBosluk {
    border-left: none !important;
    border-right: none !important;
}


.SeriesPreferences table tr td img {
    width: 100%;
    display: block;
    margin: 10px auto;
    /* RESİM ORANTISI */
}

/* Veri Girişi */

.Row {
    font-size: 13px;
    color: #656565;
    margin-top: 5px;
    font-weight: 400;
    line-height: 18px;
}

.KonfigRow {
    font-size: 13px;
    color: #656565;
    vertical-align: middle;
    font-weight: 400;
    text-align: right;
    border: 1px solid #e5e5e5;
    padding-right: 5px;
    width: 80px;
}
/* KUTU ARALIKLARI (YÜKSEKLİK)*/

.Row input[type="number"] {
    font-family: MyCustomFont;
    width: 94%;
    height: auto;
    background-color: #fff;
    border: 1px solid #bbb;
    color: #555;
    padding: 2px 2%;
    outline: none;
    margin: 0;
    /* KUTU ARALIKLARI (en)*/
}

    .Row input[type="number"]:focus {
        border: 1px solid #45c9ef;
    }

.Row input[type="text"] {
    font-family: MyCustomFont;
    font-size: 13px;
    width: 94%;
    height: auto;
    background-color: #fff;
    border: 1px solid #bbb;
    color: #555;
    padding: 2px 2%;
    outline: none;
    margin: 0;
}

    .Row input[type="text"]:focus {
        border: 1px solid #45c9ef;
    }

.Row select {
    font-family: MyCustomFont;
    font-size: 13px;
    width: 94%;
    height: auto;
    background-color: #fff;
    border: 1px solid #bbb;
    color: #555;
    padding: 2px 1%; /* kutu yüksekliği*/
    outline: none;
    margin: 0;
}

.RowSelectFull select {
    font-family: MyCustomFont;
    font-size: 13px;
    width: 97%;
    height: auto;
    background-color: #fff;
    border: 1px solid #bbb;
    color: #555;
    padding: 2px 1%; /* kutu yüksekliği*/
    outline: none;
    margin: 0;
}


.RowSelectFull input[type="number"] {
    font-family: MyCustomFont;
    font-size: 13px;
    width: 97%;
    height: auto;
    background-color: #fff;
    border: 1px solid #bbb;
    color: #555;
    padding: 2px 1%; /* kutu yüksekliği*/
    outline: none;
    margin: 0;
}

.Space_10 {
    width: 100%;
    height: 10px;
}

.Button {
    float: right;
    width: 10.7%;
    height: auto;
    background-color: #0072c6;
    border: 0;
    color: #eee;
    outline: none;
    cursor: pointer;
    line-height: 32px;
    margin: 10px 1% 0 1%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

    .Button:hover {
        background-color: #005696;
        color: #eee;
        font-weight: bolder;
    }

.ButtonActive {
    background-color: #005696;
    color: #eee;
    font-weight: bolder;
}

.SearchBox {
    float: left;
    position: relative;
    width: 50%;
    border: 1px solid #f1f1f1;
    padding: 14px;
    background-color: #fff;
    margin-top: 20px;
}

.MinMax {
    position: relative !important;
    padding-top: 50px !important;
}

.SearchButton {
    margin-top: 15px;
}

    .SearchButton input {
        width: 120px;
        margin-left: 10px;
        margin-top: 10px;
    }

.Content_Bottom {
    width: 1000px;
    height: auto;
}

.AramaBaslik {
    background-color: #f4f4f4;
    padding: 8px;
    margin: 8px 0;
    color: #333;
    font-size: 17px;
    font-weight: 300;
}

.AramaSonuc {
    border-bottom: 1px solid #fff;
    background-color: #fff;
}

    .AramaSonuc tr td {
        padding: 5px;
    }

.AramaSonucBaslik {
    border: 1px dashed #aaa;
    border-bottom: 1px dashed #aaa;
    text-align: center;
    font-weight: 500;
}

    .AramaSonucBaslik td {
        border-left: 1px dashed #aaa;
        padding: 5px 0 !important;
    }

.AramaSonucRow {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    border-bottom: 1px dashed #aaa;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
    cursor: pointer;
}

.AramaSonucRowBg {
    background-color: #f4f4f4;
}

.AramaSonucRow:hover {
    background-color: #f4f4f4;
}


/* __________________________________

   04 FOOTER 
   __________________________________*/

.Footer {
    width: 1270px;
    height: auto;
    margin: 15px auto 0;
    /*padding: 10px;*/
    background: #fff;
    border: 3px solid #f4f4f4;
}

    .Footer p {
        float: left;
        width: auto;
        height: auto;
        font-size: 13px;
        line-height: 60px;
        padding-left: 10px;
        color: #666;
    }

        .Footer p a {
            text-decoration: none;
            color: #666;
        }

            .Footer p a:hover {
                color: #000;
                text-decoration: underline;
            }

.footer_top {
    width: 1000px;
    margin: -70px auto 0;
    display: block;
}

/* Socials */

.social {
    float: right;
    width: auto;
    height: auto;
}

.socials ul {
    float: right;
    margin: 14px 2px 0 0;
}

    .socials ul li {
        float: left;
        display: inline-block;
        position: relative;
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        border-radius: 100%;
        margin-right: 2px;
        border: 1px solid #888;
    }

        .socials ul li a {
            background-image: url(../images/social-icons.png);
            background-repeat: no-repeat;
            display: block;
            width: 35px;
            height: 35px;
            text-indent: -9999px;
            -khtml-transition: background .2s ease, color .2s ease;
            -webkit-transition: background .2s ease, color .2s ease;
            -moz-transition: background .2s ease, color .2s ease;
            -ms-transition: background .2s ease, color .2s ease;
            -o-transition: background .2s ease, color .2s ease;
            transition: background .2s ease, color .2s ease;
            -webkit-border-radius: 100%;
            -moz-border-radius: 100%;
            border-radius: 100%;
        }

.socials li.social-twitter a {
    background-position: 9px 8px;
}

    .socials li.social-twitter a:hover {
        background-color: #2daae1;
    }

.socials li.social-facebook a {
    background-position: -17px 8px;
}

    .socials li.social-facebook a:hover {
        background-color: #3c5b9b;
    }

.socials li.social-youtube a {
    background-position: -48px 8px;
}

    .socials li.social-youtube a:hover {
        background-color: #cf3427;
    }
.newspaper-Fan {
    font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
    font-size: 12px;
    width: 800px;
    text-align: left;
    margin: 10px;
    height: 150px;
    vertical-align: top;
}

    .newspaper-Fan tr {
        font-size: 100%;
        /*vertical-align: baseline;*/
        margin: 0;
        padding: 0;
        /*outline: 0;*/
        background: 0 0;
        margin-bottom: 10px;
    }

    .newspaper-Fan th {
        font-weight: normal;
        font-size: 14px;
        color: #000000;
        padding: 8px 17px;
    }

    .newspaper-Fan tbody tr:hover td {
        color: #339;
        background: #d0dafd;
    }

    .newspaper-Fan td {
        color: #000000;
        padding: 1px 5px;
    }