@font-face {
    font-family: "Brutal-Bold";
    src: url("../fonts/BrutalType-Bold.otf") format("opentype");
}
@font-face {
    font-family: "Brutal-Medium";
    src: url("../fonts/BrutalType-Medium.otf") format("opentype");
}
@font-face {
    font-family: "Brutal-Regular";
    src: url("../fonts/BrutalType-Regular.otf") format("opentype");
}
@font-face {
    font-family: "Brutal-Light";
    src: url("../fonts/BrutalType-Light.otf") format("opentype");
}
@font-face {
    font-family: "Brutal-Thin";
    src: url("../fonts/BrutalType-Thin.otf") format("opentype");
}
/*@font-face {
    font-family: "Gotham-Book";
    src: url("../fonts/Gotham-Book.eot?") format("eot"), 
    url("../fonts/Gotham-Book.otf") format("opentype"), 
    url("../fonts/Gotham-Book.woff") format("woff"), 
    url("../fonts/Gotham-Book.ttf") format("truetype"), 
    url("../fonts/Gotham-Book.svg#Gotham-Book") format("svg");
}*/

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body,
input,
button,
select,
textarea {
    font-family: "Brutal-Light", Arial, Helvetica, sans-serif;
}

body {
    font-size: 0.75em;
}

:invalid {
    outline-color: rgba(221, 0, 0, 0.5);
    box-shadow: none;
}

:focus {
    outline-color: #ed5d00;
}

a {
    color: #ed5d00;
}
a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4 {
    color: #000;
}

h1.homeTitle {
    padding: 30px 0 5px 0;
    font-size: 25px;
    font-family: "Brutal-Regular", Arial, Helvetica, sans-serif;;
    color: #000;
    margin-bottom: 20px;
}

/* Custom Helper Classes */
.box {
    background-color: #eeeeee;
    padding: .65em;
    margin-bottom: 2em;
    border-radius: 5px;
    color: #222;
}
.box h3 {
    /*background-color: #c4c4c4;*/
    padding: .5em;
    /*border-radius: 5px;*/
    color: #666;
    text-transform: uppercase;
    /*text-shadow: 0 1px 1px #fff;*/
}
.box p {
    padding: 1em .5em .5em;
    line-height: 1.5em;
}
.box ul {
    margin: .5em 0 0;
    padding: 1em 0 0 2em
}
.box li {
    list-style-type: square;
    padding-bottom: .75em;
}

.fontS15 {
    font-size: 15px;
}
.shadowBox {
    /*box-shadow: 0 15px 10px -10px rgba(0,0,0,.9);*/
}
.col {
    float: left;
    width: 48%;
    margin: 0 1%;
}
.threeCols .col {
    width: 31%;
}
.borderShadow {
    border: 10px solid #fff;
    box-shadow: 0 0 10px rgba(0,0,0,.5);
}
.fullImg {
    width: 100%;
}
.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}
.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tColor1 {
    color: #e45d00;
}

.tColor2 {
    color: #E3752A;
}

.tColor3 {
    color: #FFFFFF;
}

.extraTxt {
    margin: 2em 1em;
}
.extraTxt h3 {
    font-size: 1.4em;
    margin-bottom: .5em;
}
.note {
    font-style: italic;
    color: #888:;
}

.pageTitle1 {
    color: #e45d00;
    padding: 0;
    margin: 0 0 0.25em 0;
    clear:both;
    font-size: 1.5em;
    font-weight: bold;
}

.sectionTitle1,
.sectionTitle2 {
    color: #30529E;
    padding: 0;
    margin: 1em 0 0.25em 0;
    clear:both;
    font-size: 1.25em;
    font-weight: bold;
    border-bottom: 1px solid #BBBBBB;
}

.sectionTitle2 {
    margin: 0 0 0.25em 0;
    clear: none;
}

.localTitle1 {
    color: #30529E;
    padding: 0;
    margin: 0 0 0.25em 0;
    clear:both;
    font-size: 1.25em;
    font-weight: bold;
}
.tableList {
    width: 100%;
}

.tableList td,
.tableList th {
    padding: 0.25em;
}

.tableList tr:nth-child(2n) td {
    background-color: rgba(0, 0, 0, 0.05);
}

.tableList tr:hover td {
    background-color: rgba(0, 0, 0, 0.1);
}

/* General Forms */

.generalForm input,
.generalForm textarea,
.generalForm select,
.generalForm select[multiple] {
    width: 100%;
    padding: 0.375em;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
    box-shadow: 2px 3px  3px rgba(0,0,0,.1) inset;
    background-color: #fff;
}


.generalForm input,
.generalForm textarea,
.generalForm select,
.generalForm .fieldSpec,
.generalForm .formfieldSpec,
.generalForm .datasetfieldSpec {
    max-width: 700px;
}

.generalForm .hasErrors input,
.generalForm .hasErrors textarea,
.generalForm .hasErrors select {
    outline-color: rgba(221, 0, 0, 0.5);
    box-shadow: 0 0 10px rgba(221, 0, 0, 0.2);
}

.generalForm .hasErrors input,
.generalForm .hasErrors textarea,
.generalForm .hasErrors select {
    border-color: #DD0000 !important;
}

.generalForm input:focus,
.generalForm textarea:focus,
.generalForm select[multiple]:focus {
    border-color:  #808080;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.generalForm select:focus {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.generalForm textarea {
    min-height: 5em;
}

/* Errors from template */

.errorText {
    color: #DD0000;
    clear: both;
}

/* Errors from wizard */

.errorMessage,
.warningMessage,
.duplicateWarningMessage {
    color: #DD0000;
    clear: both;
    font-size: .8em;
}

/* Pagination */

.searchPagination {
    text-align: right;
    margin-top: .5em;
}

.searchPagination a {
    color: #ed5d00;
    vertical-align: middle;
}

.paginationItem {
    display: inline-block;
    margin-left: 0.25em;
    text-decoration: none;
    white-space: nowrap;
    padding: 0.25em 0;
}

.paginationLink,
.paginationLink:visited {
    border: 1px solid #CCCCCC;
    padding: 0.25em 0.5em;
    background-color: #FFFFFF;
    border-radius: 2px;
}

.paginationLink:hover,
.paginationLink:active {
    border-color: #ed5d00;
    background-color: #F2F7FD;
    text-decoration: none;
}

.currentPageLink,
.currentPageLink:hover,
.currentPageLink:active,
.currentPageLink:visited {
    cursor: default;
    color: #FFFFFF !important;
    border-color: #ed5d00;
    background-color: #ed5d00;
    font-weight: bold;
}

/* Buttons */

button,
.buttonLike,
.buttonLike:visited {
    padding: 8px 5px;
    border-width: 0;
    background-color: #333;
    color: #FFFFFF;
    vertical-align: middle;
    border-radius: 5px;
    box-shadow: 0 5px 15px #666 inset;
    font-weight: bold;
    min-width: 160px;
    text-align: center;
    letter-spacing: -0.02em;
}

button:hover,
button:active,
.buttonLike:hover,
.buttonLike:active {
    background-color: #404040;
    color: #FFFFFF;
    box-shadow: 0 5px 15px #000 inset;
}

button.cancelButton,
button.cancelButton:hover,
button.cancelButton:active,
.linkLike,
.linkLike:hover,
.linkLike:active,
.linkLike:visited {
    padding: 0;
    color: #404040;
    text-decoration: none;
    background-color: transparent;
    background-image: none;
    border-width: 0;
    border-radius: 0;
    box-shadow: none;
    min-width: inherit;
    margin-right: 1em;
}

button.cancelButton:hover,
button.cancelButton:active,
.linkLike:hover,
.linkLike:active {
    color: #000000;
}

.smBtn,
.smBtn:active,
.smBtn:visited {
    background-color: #666;
    padding: 5px 40px;
    box-shadow: 0 5px 15px #aaa inset;
    text-shadow: 0 1px 1px rgba(0,0,0,.3);
}
.smBtn:hover {
    background-color: #444;
    box-shadow: 0 5px 15px #000 inset;
}
span.iconArrow {
    background-image: url(../images/arrowButton.png);
    background-repeat: no-repeat;
    background-position: 100% 2px;
    padding-right: 25px;
}

.uploadedFile {
    display: block;
    padding-top: 2px;
}

.removeFile {
    cursor: pointer;
    color: #404040;
    padding: 3px 4px;
    text-decoration: none;
    background-color: #F0F0F0;
    background-image: none;
    border-width: 0;
    border-radius: 2px;
}

.removeFile:hover,
.removeFile:active {
    background-color: #E0E0E0;
    color: #000000;
}

.removeFile input {
    display: inline !important;
}

/* STRUCTURE */
/* SearchJobs */

.searchField {
    padding-left: 9em;
    padding-bottom: 1em;
    line-height: 200%
}

.searchField:last-child {
    padding-bottom: 0.5em;
}

.searchField > label {
    float: left;
    width: 9em;
    margin-left: -9em;
    text-align: left;
}

.searchField input,
.searchField select,
.searchField textarea {
    max-width: 100%;
}

.jobList {
    padding: 0;
}

.jobList > .jobResultItem {
    border-bottom: 1px solid #CCCCCC;
    border-left: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
    padding: 1em 0.5em;
    background-color: #eeeeee;
}
.jobList > .jobResultItem:hover {
    background-color: #fff;
}

.jobResultItemDescription {
    padding-top: 0.25em;
}

.jobResultItem .col {
    width: 68%;
}
.jobResultItem .col.last {
    width: 28%;
    text-align: right;
}
.jobResultItem .col.last .smBtn {
    min-width: 100%;
}
.jobContTitle {
    background-color: rgba(0,0,0,.6);
    padding: .35em 1em;
    margin-top: 2em;
    color: #fff;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: 1.2em;
    text-shadow: 0 1px 1px #000;
}
.jobProperties {
    position: relative;
    color: #000;
}
.jobProperties .topBtn {
    position: absolute;
    right: 0;
    top: 0;
}

.countryIntro {
    margin-bottom: 3em;
}
.countryIntro h2 {
    font-size: 2em;
}
.countryIntro img {
    width: 100%;
}
.countryIntro .col {
    width: 45%;
    margin: 0 5% 0 0;
}
.countryIntro .col.last {
    width: 45%;
    margin: 0 0 0 5%;
}
/* Navigation */

.mainNav {
    padding: 0 0 1em 0;
}

.mainNavigationStatus {
    text-align: center;
    font-size: 13px !important;
}

.mainNavigationStatusAdditional {
    margin-bottom: 15px;
}

.mainNavigation{
    clear: both;
    display: block;
    min-height: 15px;
}
/* JobDetail */

.jobDetailDescription {
    margin: 1em 0 0 0;
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
    padding: 1em 0;
}

/* Register steps */

.registrationStepItem {
    float: left;
}

.registrationStepsAmount_2 .registrationStepItem {
    width: 50%;
}

.registrationStepsAmount_3 .registrationStepItem {
    width: 33%;
}

/* Upload Resume and Register */

.registrationSteps {
    border-bottom: 2px solid #CCCCCC;
    margin-bottom: 1em;
}

.uploadResumeField {
    padding: 0.25em 5em;
}

.uploadResumeField textarea {
    width: auto;
    min-height: 10em;
    min-width: 50%;
    max-width: 100%;
    resize: both;
}

.uploadResumeFieldContainer {
    border-top: 1px solid #CCCCCC;
    padding: 1em 0;
    margin-top: 1em;
}

/* Form Application Wizard */

#ApplicationForm label {
    display: block;
}

#ApplicationForm .labelText {
    clear: both;
    float: none;
    padding: 0;
    text-align: left;
    width: auto;
}

#ApplicationForm .formfieldLabel {
    display: block;
}

#ApplicationForm .formlabelText {
    font-weight: bold;
    padding-bottom: 0.25em;
}

#ApplicationForm .formfieldSpec {
    clear: both;
    min-height: 2em;
    padding: 0.75em 0;
}

/* Search Agents */

.searchAgentFields label ~ label {
    display: inline-block;
    margin-top: 1em;
}

/* Login and Reset Password */

.loginSignBox {
    float: left;
    background-color: #E3E3E3;
    padding: 1em;
    width: 40%;
    border-radius: 5px;
}

.loginRegisterBox {
    padding: 1em 0;
    margin-left: 40%;
    padding-left: 3em;
}

/* Profile */

.profilePictureContainer {
    float: right;
    text-align: center;
    padding: 0 0 0 1em;
    max-width: 80px;
}

.profilePicture {
    margin: 0 auto;
}

.profilePictureLink {
    margin-top: 0.5em;
    display: block;
}

#UploadFile .labelText {
    font-weight: bold;
    padding-bottom: 0.25em;
}

#UploadFile .fieldSpec {
    padding-bottom: 0.5em;
}

.fileItem {
    padding: 0.25em;
}

.fileItem:nth-child(2n+1) {
    background-color: rgba(0, 0, 0, 0.05);
}

.fileItem:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

#filePreview {
    display: block;
    transition-property: height, opacity, margin, padding, box-shadow;
    transition-duration: 0.5s;
    transition-timing-function: ease;
    overflow: hidden;
    height: 0;
    opacity: 0;
    margin: 0 1em;
    padding: 0 10px;
    border-radius: 2px;
    background-color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.8);
}

#filePreview.fileShow {
    display: block;
    transition-property: height, opacity, margin, padding, box-shadow;
    transition-duration: 0.5s;
    transition-timing-function: ease;
    overflow: hidden;
    height: 335px;
    opacity: 1;
    margin: 0.5em 1em;
    padding: 10px;
    box-shadow: 1px 1px 3px #000000;
}

.filePreviewBar {
    text-align: right;
    height: 35px;
    line-height: 25px;
}

#filePreview iframe {
    width: 100%;
    height: 300px;
}

button.deleteFile:hover,
button.deleteFile:active {
    color: #FF0000;
}

/* Custom Layout */

body {
    /*background-color: #4a4a4a;
    background-image: url(../images/bg.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100%;*/
    color: #000;/*#676767 30.12.15*/
}

#wrapper {
    margin: 0 auto 1em;
    padding: 0 1em 1em;
    max-width: 980px;
}
#header {
    position: relative;
}
#header .logo {
    position: absolute;
    left: 3em;
    top: 10px;
    z-index: 99999;
}
#header .mainNav {
    display: block;
    clear: both;
    width: 100%;
    position: relative;
}
#header .mainNavigationStatus {
    border-left: 1px solid rgba(255,255,255,.2);
    border-right: 1px solid rgba(0,0,0,.2);
}
#header .mainNavigationStatus a {
    font-size: 1.2em;
    padding: 70px 10px 20px;
    display: block;
    float: left;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    border-right: 1px solid rgba(255,255,255,.2);
    border-left: 1px solid rgba(0,0,0,.2);
    text-transform: uppercase;
    text-shadow: 0 1px 1px #000;
}

#header .mainNavigationStatus a:hover {
    background-color: rgba(0,0,0,.2);
    text-shadow: 0 0 10px #e45d00;
}
#header .mainNavigationStatus span.statusTxt {
    position: absolute;
    right: 0;
    top: 10px;
    padding: 5px 10px;
    background-color: #000;
    color: #999;
    border-radius: 5px 0 0 5px;
}

#header .banner {
    /*background-color: rgba(0,0,0,.5);
    padding: 10px;
    margin: 8em 0 3em;*/
    margin: 0 0 2em;
}/*

#header .banner.pgHome {
    padding: 10px;
}
.body_IE7 #header .banner.pgHome {
    padding: 10px;
}*/

#mainContent {
    /*background-color: #fff;
    border: 5px solid rgba(0,0,0,.5);
    background-image: url(../images/bgPage.png);
    background-repeat: repeat-y;
    background-position: center top;
    background-size: 100%;
    box-shadow: 0 0 10px rgba(0,0,0,.7);*/
}
#mainContent .bgContainer {
/*    background-image: url(../images/bgBottom.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100%;*/
}
#mainContent .bgContainer .mainBox {
    /*padding: 2em 2em 4em 2em;
    background-image: url(../images/bgTop.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100%;
    box-shadow: 0 0 10px rgba(0,0,0,.3) inset;
    border: 1px solid #000;*/
}


#footer {
    /*background-image: url(../images/bgFooter.gif);
    background-repeat: repeat-x;*/
}

#footer .container {
    max-width: 940px;
    margin: auto;
    text-align: center;
    color: #262626;
}
#footer .socialBar {
    background-image: url(../images/logoFooter.png);
    background-repeat: no-repeat;
    background-position: 0 5px;
    text-align: right;
    margin-bottom: 1em;
}
#footer p {
    margin-bottom: 1em;
}

#footer ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
#footer .socialBar li {
    display: inline-block;
    padding: 5px;
}
#footer .socialBar li a {
    opacity: .5;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: url(grayscale.svg); /* Firefox 4+ */
    filter: gray; /* IE 6-9 */
}
#footer .socialBar li a:hover {
    opacity: 1;
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
    filter: none;
}

.icon24 {
    display: inline-block;
    overflow: hidden;
    width: 0;
    height: 0;
    vertical-align: middle;
    padding: 0 0 24px 24px;
    background-position: 0 0;
}
.iconFacebook24 {background-image: url('../images/facebook.png');}
.iconYoutube24 {background-image: url('../images/youtube.png');}
.iconTwitter24 {background-image: url('../images/twitter.png');}


/* internal pages */
.topContent {
    margin-bottom: 3em;
    clear: both;
}
.mainColumn {
    float: left;
    width: 65%;
}
.sidebar {
    float: right;
    width: 30%;
}

/* map */
.mapContainer {
    position: relative;
    background-color: #242424;
}
.mapLinks {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.mapLinks .mapItem {
    display: block;
    background-position: 0 0;
    width: 3.7%;
    height: 36px;
    position: absolute;
}
.mapLinks .mapItem span {
    margin-left: -99999px;
}
.mapLinks .mapItem.item1 {
    left: 17.5%;
    top: 37%;
    width: 20px;
    height: 20px;
}
.mapLinks .mapItem.item2 {
    left: 16.5%;
    top: 29%;
    width: 24px;
    height: 20px;
}
.mapLinks .mapItem.item3 {
    left: 25%;
    top: 40%;
    width: 24px;
    height: 20px;
}
.mapLinks .mapItem.item4 {
    left: 45%;
    top: 19%;
    width: 24px;
    height: 30px;
}
.mapLinks .mapItem.item5 {
    left: 50%;
    top: 24%;
    width: 24px;
    height: 20px;
}
.mapLinks .mapItem.item6 {
    left: 78%;
    top: 41%;
    width: 14px;
    height: 20px;
}
.mapLinks .mapItem.item7 {
    left: 80%;
    top: 35%;
    width: 24px;
    height: 40px;
}
.mapLinks .mapItem.item8 {
    left: 67%;
    top: 35%;
    width: 100px;
    height: 60px;
}
.mapLinks .txtMsg span {
    color: #F7921C;
}
.mapLinks .txtMsg {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1em 2em;
    color: #fff;
    font-weight: bold;
    font-size: 1.4em;
    background-color: #111;
    background-color: rgba(0,0,0,.6);
    border-top-right-radius: 30px;
}
.tooltipster-default {
    border-radius: 5px;
    border: 1px solid #666 !important;
    background: #111 !important;
    color: #fff;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,.7);
}
.tooltipster-default b {
    color: #F7921C;
    display: block;
}

.bx-wrapper .bx-caption {
    background-color: rgba(0,0,0,.85) !important;
    width: auto !important;
    border-radius: 3px;
    /*left: 10px !important;
    bottom: 20px !important;*/
    right: 0px;
    text-align: right;
}
.bx-wrapper .bx-caption span {
    color: #fff;
    display: inline-block !important;
    font-size: 1.3em !important;
    padding: .5em 2em .5em !important;
}

/* specific browser fixes */
.body_IE6 button,
.body_IE7 button {
    padding-top: 0;
    padding-bottom: 0;
}
.body_IE6 #search,
.body_IE7 #search,
.body_IE6 .searchField #location,
.body_IE7 .searchField #location {
    width: 97%;
}
.body_IE7 .jobContTitle,
.body_IE8 .jobContTitle {
    background-color: #606060;
}
.body_IE6 .registrationStepsAmount_2 .registrationStepItem,
.body_IE7 .registrationStepsAmount_2 .registrationStepItem {
    width: 49%;
}
.body_IE6 .registrationStepsAmount_3 .registrationStepItem,
.body_IE7 .registrationStepsAmount_3 .registrationStepItem {
    width: 32%;
}
.body_IE6 #filePreview.fileShow,
.body_IE7 #filePreview.fileShow,
.body_IE8 #filePreview.fileShow {
    border: 1px solid #DDDDDD;
}

.body_IE7 #wrapper,
.body_IE8 #wrapper {
    max-width: 956px;
}

.body_IE7 #header .mainNavigationStatus,
.body_IE8 #header .mainNavigationStatus {
    border-left: 1px solid #777;
    border-right: 1px solid #333;
}
.body_IE7 #header .mainNavigationStatus a,
.body_IE8 #header .mainNavigationStatus a {
    border-left: 1px solid #333;
    border-right: 1px solid #777;
}
.body_IE7 #header .mainNavigationStatus a:hover,
.body_IE8 #header .mainNavigationStatus a:hover {
    background-image: url(../images/px05.png);
}
.body_IE7 #header .banner,
.body_IE8 #header .banner {
    background-image: url(../images/px05.png);
}
.body_IE7 #mainContent,
.body_IE8 #mainContent {
    border: 5px solid #333;
}
.body_IE7 .buttonLike,
.body_IE8 .buttonLike,
.body_IE7 button,
.body_IE8 button {
    padding: 5px 0px;
}
.body_IE7 .buttonLike.smBtn,
.body_IE8 .buttonLike.smBtn {
    min-width: 100px !important;
    padding: 5px 20px;
}
.body_IE7 #header .banner {
    margin-top: 0;
}
.body_IE7 #footer .socialBar li {
    display: inline;
}
.body_IE7 .bigBtn,
.body_IE8 .bigBtn {
    min-width: 230px;
}
.body_IE7 .bgContainer {
    background-position: 50% 98%;
}
.body_IE7 .icon14,
.body_IE7 .icon16,
.body_IE7 .icon32 {
    background-position: 0 0;
}
.body_IE7 .mainNav {
    min-height: 100px;
}

/*IE MAP*/
.body_IE .mapLinks a{
    color: transparent;
}
.body_IE .mapLinks .mapItem span{
    margin-left: 0px;
    padding: 0px 25px 25px 0px;
    width: 0px !important;
    height: 0px !important;
    display: block;
    overflow: hidden;
}
.body_IE .mapLinks .mapItem.item8,
.body_IE .mapLinks .mapItem.item8 span {
    padding: 0px 90px 60px 0px !important;
    font-size: 40px;
}
.body_IE7 .mapLinks .mapItem span,
.body_IE8 .mapLinks .mapItem span {
    background-image: url(../images/px.png);
    text-indent: -99999px;
    cursor: pointer;
}
.body_IE .sliderSmall .bx-viewport {
    height: auto !important;
}

.body_Firefox #footer .socialBar li a {
    filter: none
}
#footer .socialBar li {
    width: 35px;
}
/*IE MAP*/

/* Mobile Redefinitions */
@media all and (max-width: 720px) {
    .loginSignBox {
        float: none;
        padding: 0;
        margin: 0;
        width: auto;
        background-color: transparent;
    }

    .loginRegisterBox {
        padding: 0;
        margin: 1em 0 0 0;
    }

    .uploadResumeField {
        padding: 0;
    }

    .uploadResumeField > label {
        padding: 0.5em 0;
        display: block;
    }

    .uploadResumeField textarea {
        width: 100%;
    }
    .mainColumn,
    .sidebar {
        float: none;
        width: 100%;
    }
    .sidebar {
        margin-top: 3em
    }
    .mapContainer {
        min-height: 130px;
    }
    .mapLinks {
        top: inherit;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0,0,0,.6);
        padding: 10px;
        text-align: center;
    }
    .mapLinks .mapItem {
        position: relative;
        top: inherit !important;
        left: inherit !important;
        width: auto !important;
        height: auto !important;
        padding: 5px 10px;
        display: inline-block;
        bottom: inherit;
    }
    .mapLinks .mapItem span {
        margin:0;
    }
    .mapLinks .txtMsg {
        display: none;
    }
}

@media all and (max-width: 600px) {
    h1.homeTitle {
        font-size: 1.5em;
    }

    button,
    .buttonLike,
    .buttonLike:visited {
        min-width: 33%;
        text-align: center;
    }

    button.cancelButton,
    button.cancelButton:hover,
    button.cancelButton:active,
    .linkLike,
    .linkLike:hover,
    .linkLike:active,
    .linkLike:visited {
        min-width: 0;
        text-align: left;
    }

    .mainNavigationStatus {
        margin-right: 0.25em;
    }

    .mainNavigationStatus,
    .mainNavigationStatusAdditional {
        text-align: left;
        margin-bottom: 0.5em;
    }

    .jobPaginationLegend {
        display: inline-block;
        width: 100%;
        margin-bottom: 0.25em;
    }

    .paginationItem {
        margin-top: 0.25em;
        margin-bottom: 0.25em;
        padding: 0.5em 0;
    }

    .paginationLink,
    .paginationLink:visited {
        padding: 0.5em 0.75em;
    }

    .searchField {
        padding: 0;
        margin: 0 0 1em 0;
        line-height: normal;
    }

    .searchField > label {
        float: none;
        display: block;
        width: auto;
        margin: 0;
        text-align: left;
    }

    .profilePictureContainer {
        float: none;
        padding: 0.5em 0 1em 0;
    }

    .profilePicture {
        margin: 0;
    }

    .profilePictureLink {
        display: none;
    }

    .fileItem {
        padding: 0.5em 0;
    }

    .tableList th,
    .tableList td:empty {
        display: none;
    }

    .tableList,
    .tableList thead,
    .tableList tbody,
    .tableList tr,
    .tableList td {
        display: block;
    }

    .tableList thead,
    .tableList tbody,
    .tableList tr,
    .tableList td {
        width: auto;
    }

    .tableList td:last-child {
        border-bottom: 2px solid #CCCCCC;
    }
    .fontS15 {
        font-size: 13px;
    }

}
@media all and (max-width: 500px) {
    h1.homeTitle {
        font-size: 1.2em;
    }
    .col {
        width: 100% !important;
    }
    .col.last {
        width: 100%;
        text-align: left !important;
    }
    .col .fullImg {
        float: left;
        margin: 0 10px 10px 0;
    }
    .threeCols .col {
        margin-bottom: 2em;
    }
    .jobResultItem .col.last .smBtn {
        min-width: 160px;
    }
    #header .logo {
        left: 0
    }
    #header .logo img {
        width: 90px;
    }
    #header .banner {
        padding: 5px;
        /*margin: 7em 0 1.5em;*/
    }
    #header .mainNavigationStatus a {
        font-size: 1em;
        padding: 60px 10px 20px;
    }
    #mainContent .bgContainer .mainBox {
        padding: 10px
    }
    .jobProperties .topBtn {
        position: inherit;
        padding-top: 1em;
    }
    .countryIntro .col {
        width: 100%;
        margin: 0 !important;
    }

}
html{
    background-color: #5f5f5f;
}
body {
    width: 100%; 
    margin: 0;
    height: 100%;
}
.bxslider{
    padding: 0px !important;
    margin: 0px !important
}
.w1 {
    width: 100%;
}
.w2 {
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 100px 0 0;
    background: url(../images/gradientBkgrd-min.jpg) no-repeat center;
    background-size: cover;
}
.copyright {
    color: #898989;
    margin: 10px auto 0;
    text-align: center;
    max-width: 820px;
}
.copyright a{
    color:white;
}
.logo a {
    display: block;
    height: 100%;
    position: relative;
    text-indent: -9999px;
}
.logo{
    float: left;
    background: url(../images/EG_logov2.svg) no-repeat;
    background-size: 54px auto;
    background-position: center center;
    width: 90px;
    height: 100px;
    overflow: hidden;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
    filter: alpha(opacity=75);
    -moz-opacity: 0.75;
    -khtml-opacity: 0.75;
    opacity: 0.75;
    transition: opacity .3s ease-in-out;
}
.logo:hover {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
}
.headerBlack{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 10000;
    height: 100px;
    background-color: #2a2a2a;
}
.nav{
    margin: 0;
    padding: 0 2px 0 0;
    float: left;
    list-style: none;
    height: 100px;
    overflow: hidden;
}
.nav li {
    float: left;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .0125em;
    line-height: 15px;
    display: block;
}
.nav li .first-child {
    border-left: 1px solid #4f4e4e;
}
.nav li .last-child {
    border-right: 1px solid #4f4e4e;
}
.nav li a {
    color: #fff;
    margin: 30px 0;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
    transition: opacity .2s ease-in-out;
    font-family: "Arial", Helvetica, sans-serif;
}
.nav li a:hover {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
}
.mainNav .mainNavigationStatus{
    margin: 38px;
    font-size: 14px;
}
#wrapper{
    background-color: #fff;
    padding: 0 2em 5em;
}

.whiteBtn{
    border: 1px solid #000;
    padding: 10px 22px;
    font-size: 14px;
    text-decoration: none
}

.generalForm input, 
.generalForm textarea, 
.generalForm select, 
.generalForm select[multiple]{
    box-shadow: none;
}

.slicknav_menu {
    display:none;
}
#menu-desktop li a{
    display:block;
}
/*#menu-mobile .slicknav_menu{
    display:none;
}*/
.mainNav{
    float: right;
}
.banner ul.menu {
    margin: 0;
    padding: 0;
    float: left;
    margin-bottom: 30px;
}
.banner ul.menu li {
    display: block;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0.1%;
    width: 20%;
    list-style: none;
}
.banner ul.menu .buttonLike {
    width: 100%;
    border-radius: 0;  
    box-shadow: none;
}
@media all and (max-width: 1180px) {
    .nav li a {
      margin: 30px 5px;
      font-size: 10px;
      padding: 10px 5px;
    }
    .mainNav .mainNavigationStatus {
      margin: 40px 15px;
      font-size: 12px;
    }
    .bx-wrapper .bx-prev{
        left: 5px !important;
    }
    .bx-wrapper .bx-next{
        right: 5px !important;
    }
}

@media screen and (max-width: 968px) {/*40em*/
    .js #menu-desktop {
        display:none;
    }
    .js .slicknav_menu {
        display:block;
    }

    #menu-mobile .mainNav{
        float: left;
        margin: 0px;
        padding: 0px;
        width: 100%;
    }
    #menu-mobile .mainNav .mainNavigationStatus{
        margin: 0px;
        text-align: left;
        float: left;
        width: 100%;
    }
    .statusTxt{
        margin: 10px;
        display: block;
        text-transform: uppercase;
        font-weight: bold;
    }

    .bx-wrapper .bx-controls-direction a{
        margin-top: -25px;
    }
    .bx-wrapper .bx-prev{
        left: 5px !important;
    }
    .bx-wrapper .bx-next{
        right: 5px !important;
    }
    .whiteBtn{
        width: 100%;
        display: block;
        margin: 0px 0px 20px;
    }

    .banner ul.menu li{
        width: 50%;
    }
    .banner ul.menu .buttonLike{
        padding: 13px 20px;
    }

}
@media screen and (max-width: 650px) {
    .banner ul.menu li {
        width: 100%;
        padding: 0.12%;
    }
}
