/*########### CSS reset ############*/

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
    margin: 0;
    padding: 0;
}

html, body {
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset, img {
    border: 0;
}

address, caption, cite, code, dfn, th, var {
    font-style: normal;
    font-weight: normal;
}

ol, ul {
    list-style: none;
}

caption, th {
    text-align: left;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal;
}

q:before, q:after {
    content: '';
}

abbr, acronym {
    border: 0;
}

section, header {
    display: block;
}

/*############ General ###########*/

body {
    overflow-y: scroll;
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    line-height: 20px;
    color: #666;
    background: #fff;
    background-image: -webkit-radial-gradient(100% 100%, center, #fff, #fff);
    background-image: radial-gradient(100% 100% at center, #fff, #fff);
}

hr {
    display: block;
    padding: 0;
    border: 0;
    border-top: 1px solid #e5e5e5;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

* + p, * + hr, * + ul, * + ol, * + dl, * + blockquote, * + pre, * + address, * + fieldset, * + figure {
    margin-top: 15px;
}

p, hr, ul, ol, dl, blockquote, pre, address, fieldset, figure {
    margin: 0 0 15px;
}

code {
    color: #05B5D6;
    font-size: 12px;
    white-space: nowrap;
    padding: 0 4px;
    border: 1px solid #e5e5e5;
    background: #fafafa;
}

pre code {
    color: inherit;
    white-space: pre-wrap;
    padding: 0;
    border: 0;
    background: 0 0;
}

code, kbd, pre, samp {
    font-size: 1em;
    font-family: 'Inconsolata', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: middle;
}

button, input:not([type=radio]):not([type=checkbox]), select {
    vertical-align: middle;
}

input {
    line-height: normal;
}

button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 15px;
    font-family: 'Cuprum', sans-serif;
    font-weight: 300;
    color: #222;
    text-transform: none;
}

* + h1, * + h2, * + h3, * + h4, * + h5, * + h6 {
    margin-top: 25px;
}

ul, ol {
    padding-left: 30px;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #333;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
}

/****************************************/

* + .eli-margin {
    margin-top: 15px;
}

.eli-margin {
    margin-bottom: 15px;
}

* + .eli-margin-extra {
    margin-top: 30px;
}

.eli-margin-extra {
    margin-bottom: 30px;
}

* + .eli-divider {
    margin-top: 25px;
}

.eli-divider {
    margin-bottom: 25px;
    border-color: #e5e5e5;
}

.eli-float-right {
    padding: 15px 10px;
    float: right;
}

.clearfix:before,
.clearfix:after {
    content: ".";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

* {
    box-sizing: border-box;
    -web-kit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

/*######## Code ########*/

pre .tag, pre .tag .title, pre .rules .property, pre .django .tag .keyword {
    color: #000080;
    font-weight: normal;
}

pre .title, pre .id {
    color: #900;
    font-weight: bold;
}

pre .attribute, pre .variable, pre .lisp .body {
    color: #008080;
}

pre .string, pre .tag .value, pre .phpdoc, pre .tex .formula {
    color: #d14;
}

/*######## Heading   [ <H1> ... <H6> ] ########*/

h1, .eli-h1 {
    font-size: 38px;
    line-height: 42px;
}

h2, .eli-h2 {
    font-size: 26px;
    line-height: 30px;
}

h3, .eli-h3 {
    font-size: 20px;
    line-height: 24px;
}

h4, .eli-h4 {
    font-size: 18px;
    line-height: 22px;
}

h5, .eli-h5 {
    font-size: 16px;
    line-height: 20px;
}

h6, .eli-h6 {
    font-size: 14px;
    line-height: 18px;
}

/*############  List   [ <ul> <li> ] ###########*/

.eli-list > li:before, .eli-list > li:after {
    content: " ";
    display: table;
}

.eli-list > li:after {
    clear: both;
}

.eli-list {
    padding: 0;
    list-style: none;
}

/* List Brindle*/

.eli-list-brindle > li:first-child {
    border-top: 1px solid #e5e5e5;
}

.eli-list-brindle > li:nth-of-type(odd) {
    background: #fafafa;
}

.eli-list-brindle > li {
    padding: 5px;
    border-bottom: 1px solid #e5e5e5;
}

/*############ Paragraph   [ <p> ] ############*/

.eli-paragraph:before, .eli-paragraph:after {
    content: " ";
    display: table;
}

.eli-paragraph:after {
    clear: both;
}

.eli-paragraph-title {
    font-size: 36px;
    line-height: 42px;
    font-weight: 300;
    text-transform: none;
}

.eli-paragraph-desc {
    font-size: 12px;
    line-height: 18px;
    color: #999;
}

.eli-paragraph-lead {
    color: #222;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}

.eli-lb-title {
    text-transform: capitalize;
    padding-left: 6px;
    border-left: 3px solid #1FA2D6;
    font-size: 16px;
    line-height: 16px;
}

.eli-text-small {
    font-size: 11px;
    line-height: 16px;
}

.eli-text-large {
    font-size: 20px;
    line-height: 26px;
    font-weight: 300;
}

.eli-text-header {
    font-size: 80px;
    line-height: 70px;
    font-weight: 700;
}

.eli-text-bold {
    font-weight: 700;
}

.eli-text-left {
    text-align: left !important;
}

.eli-text-right {
    text-align: right !important;
}

.eli-text-center {
    text-align: center !important;
}

.eli-text-justify {
    text-align: justify !important;
}

/*############ Panel ###########*/

.eli-panel {
    display: block;
    position: relative;
    padding: 15px;
    background: #fafafa;
    color: #666;
    border: 1px solid #e5e5e5;
}

.eli-panel .eli-panel-title {
    color: #666;
}

.eli-panel-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    text-transform: none;
    color: #666;
}

.eli-box-center {
    margin: 10px auto;
    display: block;
}

.eli-box-center:before,
.eli-box-center:after {
    content: ".";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

/*############ Form ###########*/

.eli-form select, .eli-form textarea, .eli-form input:not([type]), .eli-form input[type=text], .eli-form input[type=password], .eli-form input[type=datetime], .eli-form input[type=datetime-local], .eli-form input[type=date], .eli-form input[type=month], .eli-form input[type=time], .eli-form input[type=week], .eli-form input[type=number], .eli-form input[type=email], .eli-form input[type=url], .eli-form input[type=search], .eli-form input[type=tel], .eli-form input[type=color] {
    height: 30px;
    max-width: 100%;
    padding: 4px 6px;
    border: 1px solid #e5e5e5;
    background: #fff;
    color: #666;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
}

.eli-form-row:before,
.eli-form-row:after {
    content: ".";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

.eli-form > :last-child {
    margin-bottom: 0;
}

.eli-form-row + .eli-form-row {
    margin-top: 15px;
}

.eli-form legend {
    width: 100%;
    padding-bottom: 15px;
    font-size: 18px;
    line-height: 30px;
}

/*############ Image   [ <img> ] ############*/

.eli-thumbnail-wrapper {
    padding: 15px 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.eli-thumbnail-wrapper:before,
.eli-thumbnail-wrapper:after {
    content: ".";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

.eli-thumbnail-cover {
    float: left;
    padding: 10px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.eli-thumbnail-cover:before,
.eli-thumbnail-cover:after {
    content: ".";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

.eli-thumbnail {
    display: inline-block;
    width: 100%;
    height: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 4px;
    border: 1px solid #e5e5e5;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
}

.eli-thumbnail img {
    width: 100% !important;
}

.eli-thumbnail-caption {
    padding-top: 4px;
    text-align: center;
    color: #666;
}

img.img-left {
    float: left;
    margin: 10px 20px 15px 20px;
}

img.img-right {
    float: right;
    margin: 10px 20px 15px 20px;
}

img.eli-image {
    margin: 0 auto;
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
}

.eli-logo {
    margin: 10px 0 20px 0;
}

/*############  a   [ <a> ] ###########*/

a, .eli-link {
    color: #1d8acb;
    text-decoration: none;
    cursor: pointer;
}

a:hover, .eli-link:hover {
    color: #0b5f90;
    text-decoration: underline;
}

.eli-button:hover, .eli-button:focus {
    background-color: #fafafa;
    color: #666;
    outline: 0;
    text-decoration: none;
    background-image: none;
}

.eli-button {
    display: inline-block;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: middle;
    text-decoration: none;
    text-align: center;
    border: none;
    line-height: 28px;
    min-height: 30px;
    font-size: 13px;
    padding: 0 12px;
    background: #f7f7f7;
    color: #666;
    border: 1px solid rgba(0, 0, 0, .2);
    text-shadow: 0 1px 0 #fff;
}

.eli-button:disabled {
    background-color: #fafafa;
    color: #999;
    border-color: rgba(0, 0, 0, .2);
    background-image: none;
    box-shadow: none;
    text-shadow: 0 1px 0 #fff;
}

.eli-button-primary {
    background-color: #00ACE6;
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
}

.eli-button-primary:hover, .eli-button-primary:focus {
    background-color: #00aff2;
    color: #fff;
    background-image: none;
}

.eli-button-success {
    background-color: #32CD32;
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
}

.eli-button-success:hover, .eli-button-success:focus {
    background-color: #8fce48;
    color: #fff;
    background-image: none;
}

.eli-button-danger {
    background-color: #F23B3B;
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
}

.eli-button-danger:hover, .eli-button-danger:focus {
    background-color: #e33551;
    color: #fff;
    background-image: none;
}

.eli-button-link, .eli-button-link:hover, .eli-button-link:focus, .eli-button-link:active, .eli-button-link.eli-active, .eli-button-link:disabled {
    border-color: transparent;
    background: 0 0;
    box-shadow: none;
    text-shadow: none;
}

.eli-button-link:hover, .eli-button-link:focus, .eli-button-link:active, .eli-button-link.eli-active {
    color: #0b5f90;
    text-decoration: underline;
}

.eli-button-mini {
    min-height: 20px;
    padding: 0 6px;
    line-height: 18px;
    font-size: 11px;
}

.eli-button-small {
    min-height: 25px;
    padding: 0 10px;
    line-height: 23px;
    font-size: 12px;
}

.eli-button-large {
    min-height: 40px;
    padding: 0 15px;
    line-height: 38px;
    font-size: 16px;
}

.eli-button-shop {
    margin: 5px 0 15px 0;
    box-shadow: 1px 1px 1px rgba(0,0,0,0.1);
    background: #fff;
    border: none;
    color: #2ba3d4 !important;
    min-height: 50px;
    padding: 0 30px;
    line-height: 50px;
    font-size: 18px;
}

/*############  Table ###########*/

.eli-table {
    width: 100%;
    margin-bottom: 15px;
}

.eli-table caption {
    text-align: left;
    color: #999;
}

.eli-table caption, .eli-table tfoot {
    font-size: 12px;
    font-style: italic;
}

.eli-table td {
    vertical-align: top;
}

.eli-table th, .eli-table td {
    padding: 8px;
    border-bottom: 1px solid #e5e5e5;
}

.eli-table thead th {
    vertical-align: bottom;
}

.eli-table th {
    text-align: left;
    font-weight: bold;
}

/*############## Structure ##############*/

.eli-container {
    max-width: 1200px;
    padding: 0 35px;
    margin-right: auto;
    margin-left: auto;
}

.eli-container-center {
    margin-left: auto;
    margin-right: auto;
}

.eli-container:before,
.eli-container:after {
    content: ".";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

.eli-row {
    margin: 0 0 0 -35px;
    padding: 0;
    list-style: none;
}

.eli-row:before,
.eli-row:after {
    content: ".";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

.eli-row > * {
    padding-left: 35px;
    margin: 0;
    float: left;
}


p.grid-demo {
    background-color: #fafafa;
    border: 1px solid #e5e5e5;
    padding: 4px 7px;
}

.eli-sidebar {
    margin-right: -1px !important;
    border-right: 1px solid #E5E5E5;
}

.eli-main {
    padding-left: 50px !important;
    border-left: 1px solid #E5E5E5;
}

.eli-middle {
    background: #fff;
    padding: 120px 0;
}

.eli-footer, .eli-footer a,
.eli-header, .eli-header a {
    color: #ddd !important;
}

.eli-footer,
.eli-header {
    padding: 120px 0;
    background-color: #1a1a1a;
}

.eli-header {
    padding: 150px 0;
    background-color: #019875;
    text-shadow: 2px 2px 13px #4C4C4C;
    color: #fff !important;
}

/*[class*=eli-size] {*/
/*-moz-box-sizing: border-box;*/
/*box-sizing: border-box;*/
/*width: 100%;*/
/*float: left;*/
/*padding-right: 10px;*/
/*padding-left: 10px;*/
/*}*/

[class*=eli-size] {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%;
}

.eli-size-1-1 {
    width: 100%;
}

.eli-size-1-2, .eli-size-2-4, .eli-size-3-6, .eli-size-5-10 {
    width: 50%;
}

.eli-size-1-3, .eli-size-2-6 {
    width: 33.333%;
}

.eli-size-2-3, .eli-size-4-6 {
    width: 66.666%;
}

.eli-size-1-4 {
    width: 25%;
}

.eli-size-3-4 {
    width: 75%;
}

.eli-size-1-5, .eli-size-2-10 {
    width: 20%;
}

.eli-size-2-5, .eli-size-4-10 {
    width: 40%;
}

.eli-size-3-5, .eli-size-6-10 {
    width: 60%;
}

.eli-size-4-5, .eli-size-8-10 {
    width: 80%;
}

.eli-size-1-6 {
    width: 16.666%;
}

.eli-size-5-6 {
    width: 83.333%;
}

.eli-size-1-10 {
    width: 10%;
}

.eli-size-3-10 {
    width: 30%;
}

.eli-size-7-10 {
    width: 70%;
}

.eli-size-9-10 {
    width: 90%;
}

/*############## Nav ##############*/

.eli-nav, .eli-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.eli-nav-header {
    padding: 3px 15px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    color: #222;
    font-weight: normal;
}

.eli-nav > li > a {
    padding: 3px 15px;
    text-transform: capitalize;
}

.eli-nav li > a {
    display: block;
    text-decoration: none;
}

.eli-sub-nav {
    padding: 0;
    list-style: none;
    font-size: 0;
}

.eli-sub-nav > li, .eli-sub-nav > li > a, .eli-sub-nav > li > span {
    display: inline-block;
}

.eli-sub-nav > li {
    position: relative;
    font-size: 1rem;
    vertical-align: top;
}

.eli-sub-nav > li > a {
    color: #1d8acb;
}

.eli-sub-nav > li, .eli-sub-nav > li > a, .eli-sub-nav > li > span {
    display: inline-block;
}

.eli-sub-nav > li:nth-child(n+2) {
    margin-left: 10px;
}

/*############## Navigation ##############*/

.eli-navigation {
    position: relative;
    padding: 0 70px;
    background: #000000;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.eli-navigation ul {
    margin: 0;
    padding: 0;
}

.eli-navigation ul li {
    float: left;
    padding-left: 20px;
    padding-right: 20px;
}

.eli-navigation ul li a {
    display: block;
    width: 100%;
    line-height: 65px;
    font-size: 14px;
    color: #CECECE;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.eli-navigation ul li:hover a {
    text-decoration: none;
    color: #fff;
}

.eli-navigation:before,
.eli-navigation:after,
.eli-navigation ul:before,
.eli-navigation ul:after {
    content: ".";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

/*############## Accordion ##############*/

.eli-accordion {
    display: block;
    text-align: left;
    overflow: hidden;
    width: 100%;
}

.eli-accordion input {
    display: none !important;
}

/**********  Label   [ <label> ] **********/

.eli-accordion label {
    text-transform: uppercase;
    font-size: 14px;
    height: 44px;
    line-height: 46px;
    border-bottom: 1px solid rgba(52, 52, 52, 0.1);
    overflow: hidden;
    display: block;
    position: relative;
    padding: 0 20px;
    cursor: pointer;
    z-index: 20;
    transition: background-color .7s;
    -webkit-transition: background-color .7s;
    -moz-transition: background-color .7s;
    -o-transition: background-color .7s;
    -ms-transition: background-color .7s;
}

.eli-label-separator label {
    margin-bottom: 7px;
}

.eli-label-separator .content {
    margin-top: -7px;
    margin-bottom: 7px;
}

/*^^^^ Label Size ^^^^*/
.eli-label-small label {
    font-size: 12px;
    height: 33px;
    line-height: 35px;
}

.eli-label-normal label {
    height: 44px;
    line-height: 46px;
}

.eli-label-large label {
    font-size: 17px;
    height: 60px;
    line-height: 64px;
}

.eli-label-xlarge label {
    font-size: 20px;
    height: 85px;
    line-height: 90px;
}

/*^^^^ Label Icon ^^^^*/
.eli-accordion i {
    font-size: 18px;
    margin-right: 16px;
}

.eli-label-small i {
    font-size: 15px;
    margin-right: 12px;
    line-height: 35px !important;
}

.eli-label-normal i {
    font-size: 18px;
    margin-right: 16px;
}

.eli-label-large i {
    font-size: 20px;
    margin-right: 18px;
    line-height: 63px !important;
}

.eli-label-xlarge i {
    font-size: 24px;
    margin-right: 22px;
    line-height: 90px !important;
}

/*^^^^ Icon Left ^^^^*/

.eli-accordion div label i {
    display: none;
}

.eli-accordion.eli-icon-left div label i {
    display: inline-block;
}

/*^^^^ Icon Right ^^^^*/

.eli-accordion label i.eli-icon-right-1,
.eli-accordion label i.eli-icon-right-2 {
    float: right;
    margin-right: 15px;
    transition: all .7s;
    -webkit-transition: all .7s;
    -moz-transition: all .7s;
    -o-transition: all .7s;
    -ms-transition: all .7s;
}

/* !!! Change Icon Padding for every label classes */

.eli-accordion label i.eli-icon-right-1,
.eli-accordion label i.eli-icon-right-2 {
    line-height: 49px;
}

.eli-accordion.label-small i.eli-icon-right-1,
.eli-accordion.label-small i.eli-icon-right-2 {
    line-height: 33px;
}

.eli-accordion.label-normal i.eli-icon-right-1,
.eli-accordion.label-normal i.eli-icon-right-2 {
    line-height: 44px;
}

.eli-accordion.label-large i.eli-icon-right-1,
.eli-accordion.label-large i.eli-icon-right-2 {
    line-height: 60px;
}

.eli-accordion.label-xlarge i.eli-icon-right-1,
.eli-accordion.label-xlarge i.eli-icon-right-2 {
    line-height: 85px;
}

/********** .content **********/

.eli-content {
    position: relative;
    margin-top: -1px;
    height: auto;
    overflow: hidden;
    z-index: 10;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 22px 27px;
    background-color: #F8F8FF;
}

.eli-content .eli-row {
    margin-right: 0;
    margin-left: 0;
}

.eli-cnt-scroll {
    overflow-y: scroll;
}

/********** Background And Color **********/

.eli-accordion a, .eli-accordion p {
    color: #333333;
}

.eli-accordion h1,
.eli-accordion h2,
.eli-accordion h3,
.eli-accordion h4,
.eli-accordion h5,
.eli-accordion h6 {
    color: #333333;
}

.eli-accordion .default,
.eli-accordion .clicked {
    color: #FFFFFF;
}

.eli-accordion .hover {
    color: #333333;
}

/*<<<<<<<<<<<<< Default Theme >>>>>>>>>>>>>>>>*/

.eli-accordion .default {
    background: #34A8C8;
}

.eli-accordion .hover,
.eli-accordion .clicked {
    /*Color Two*/
    background: #7CBF42;
}

/*<<<<<<<<<<<<< Theme 2 >>>>>>>>>>>>>>>>*/

.eli-accordion.eli-color-violet .default {
    background: #9b59b6;
}

.eli-accordion.eli-color-violet .hover,
.eli-accordion.eli-color-violet .clicked {
    /*Color Two*/
    background: #7f8c8d;
}

/*<<<<<<<<<<<<< Theme 3 >>>>>>>>>>>>>>>>*/

.eli-accordion.eli-color-green .default {
    background: #16a085;
}

.eli-accordion.eli-color-green .hover,
.eli-accordion.eli-color-green .clicked {
    /*Color Two*/
    background: #2980b9;
}

/*<<<<<<<<<<<<< Theme 4 >>>>>>>>>>>>>>>>*/

.eli-accordion.eli-color-orange .default {
    background: #d35400;
}

.eli-accordion.eli-color-orange .hover,
.eli-accordion.eli-color-orange .clicked {
    /*Color Two*/
    background: #7f8c8d;
}

/*<<<<<<<<<<<<< Theme 5 >>>>>>>>>>>>>>>>*/

.eli-accordion.eli-color-asphalt .default {
    background: #34495e;
}

.eli-accordion.eli-color-asphalt .hover,
.eli-accordion.eli-color-asphalt .clicked {
    /*Color Two*/
    background: #7f8c8d;
}
