/**
 * Name: base.css
 * Version: 1.0.0
 *	
 *	-
 *
 *	T.O.C
 *	
 *	#CssReset
 *	#Typography
 *		#Links
 *		#Lists
 *		#Images
 *		#Tables
 *		#Forms
 *		#Misc
 */


/* ==========================================================================
   #CssReset
   ========================================================================== */
@font-face {
    font-family: 'BookAntiqua';
    src: url('<?php echo base_url("_layout/css/fontawesome/font/bookantiqua.ttf"); ?>') format('truetype');
    font-weight: normal;
    font-style: normal;
}


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 {
    line-height: 1;
}

ol, 
ul {
    list-style: none;
}

blockquote, 
q {
    quotes: none;
}

blockquote:before, 
blockquote:after,
q:before, 
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/**
 * 1. Always force vertical scroll
 * 2. Prevent iOS text size adjust after orientation change, without disabling user zoom.
 */

html { 
    font-size: 100%; 
    overflow-y: scroll; /* 1  */ 
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
    -webkit-font-smoothing: antialiased; 
}


/* ==========================================================================
   #Typography
   ========================================================================== */

body {
    background-color: #ffffff;
    color :#666;
    font: 13px 'bookantiqua', 'Open Sans', bookantiqua, bookantiqua_bold, Arial, sans-serif; 
    line-height: 22px;	
}

h1, 
h2, 
h3, 
h4, 
h5, 
h6 {
    color: #444;
    font-family: 'BookAntiqua', 'Open Sans', Arial, sans-serif; 
    font-weight: normal; 
}

h1 a, 
h2 a, 
h3 a, 
h4 a, 
h5 a, 
h6 a { 
    font-weight: inherit; 
}

h1 {
    margin-bottom: 14px; 	 
    font-size: 28px; 
    line-height: 40px;
}

h2 {
    font-family: 'BookAntiqua';
    margin-bottom: 10px;	
    font-size: 22px; 
    line-height: 40px;  
}

h3 { 
    margin-bottom: 8px;
    font-size: 18px; 
    line-height: 34px;   
}

h4 {
    margin-bottom: 4px; 
    font-size: 16px; 
    line-height: 30px;   
}

h5 { 
    font-size: 14px; 
    line-height: 24px; 
}

h6 { 
    font-size: 13px; 
    line-height: 22px; 
}

p { margin-bottom:20px; text-align: justify; }
em { font-style:italic; }
strong { font-weight:bold; }
small { font-size:90%; }

sub { 
    vertical-align: sub; 
    font-size: 75%; 
}

sup { 
    vertical-align: super; 
    font-size: 75%; 
}

abbr[title] {  
    border-bottom: 1px dotted #999; 
    cursor: help;
}

address { 
    display: block; 
    margin-bottom: 20px; 
}

blockquote {}

blockquote p { font-style: italic; }

blockquote span { 
    display: block;
    margin-top: 5px;
    color: #999999;  
}

blockquote span:before { content: '\2013 \00A0'; }

hr { 
    height: 0; 
    border: solid #efefef; 
    border-width: 1px 0 0 0;
    margin: 30px 0;
}

code, 
pre { 
    -webkit-border-radius: 3px;
    border-radius: 3px;	
    font-family: 'BookAntiqua', Monaco, Menlo, Consolas, "Courier New", monospace;			
}

code { 
    padding: 1px 4px;
    border: 1px solid #e1e1e8;
    background-color: #f7f7f7;  
    color: #d14;  
}

pre { 
    display: block;
    padding: 20px;
    border: 1px solid #e1e1e8;   
    margin-bottom: 20px;
    overflow-x: auto; 
    white-space: pre-wrap;
    background-color: #f7f7f7; 
}

/* Typography Helper Classes */

/**
 * <div class="hr"></div> acts like an <hr>
 */

.hr {
    border-top: 1px solid #d4d4d4;
    margin: 0 0 30px;
}

.text-left { text-align: left; }
.text-right { text-align: right; }
.text-center { text-align: center; }

.text-highlight { 
    padding: 1px 5px; 
    background-color: #d5edf8; 
    color: #111111; 
}

.text-highlight2 { 
    padding: 1px 5px;
    background-color: #fff6bf; 
    color: #111111; 
}

.text-uppercase { text-transform: uppercase; }

.mute{ color: #aaa; }

p.last,
h1.last,
h2.last,
h3.last,
h4.last,
h5.last,
address.last { margin-bottom: 0; }

/* #Links
   ========================================================================== */

a, 
a:visited { 
    color: #346699; 
    text-decoration: none;
    
}

/**
     * 1. Remove the gray background color from active links in IE 10.
     */

a:active {
    background: transparent; /* 1 */
}

a:hover, 
a:focus { 
    text-decoration: none;
    outline: 0; 
}	

/* #Lists
   ========================================================================== */

ul, 
ol { 
    margin-bottom: 20px;
    list-style-position: inside; 
}

ul#mobile-menu.fixed {
    margin-bottom: 0px;
}

ul ul, 
ul ol, 
ol ol, 
ol ul { 
    margin-left: 30px; 
    margin-bottom: 0; 
}

li {}

ul { list-style-type: disc; }
ol { list-style-type: decimal; }

/* List Helper Classes */

ul.last,
ol.last { margin-bottom:0; }

/* #Images
   ========================================================================== */

img { 
    border: 0; 
}

/* Images Helper Classes */

.img-align-left { 
    float: left;
    margin: 5px 10px 0 0;  
}

.img-align-right { 
    float: right;
    margin: 5px 0 0 10px; 
}

/* #Tables
   ========================================================================== */

table { 
    width: 100%;
    margin-bottom: 20px; 
    border-collapse: collapse; 
    border-spacing: 0; 
    background-color: transparent; 
}

caption { 
    margin: 20px 0;
    text-align: center; 
    font-weight: bold; 
}

table th, 
table td {
    padding: 8px; 
    border-top: 1px solid #efefef;
    text-align: left; 
    vertical-align: top; 
}

table th { 
    border-top: 0;
    font-weight: bold;  
}

table thead th { vertical-align: bottom; }

/* #Forms
   ========================================================================== */

form {}

fieldset {}

form p { margin-bottom: 15px; }

label {
    display: block;
    margin-bottom: 5px;
}

label span { color: #FF0000; }

select,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="radio"],
input[type="checkbox"],
input[type="reset"],
input[type="submit"] {
    cursor: pointer;
}

input,
textarea,
select {
    display: block;
    -webkit-box-shadow: 0 1px 1px 0 rgba(180, 180, 180, 0.1);
    box-shadow: 0 1px 1px 0 rgba(180, 180, 180, 0.1);
    max-width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 6px 10px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background: #fff;
    color: #666;			 
}

input[type="text"]:focus,
textarea:focus {
    /*-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
                    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);	*/
    border-color: #cdcdcd;
    outline: 0;	
}

select { height: 32px; }

select:focus {
    outline: thin dotted #333;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

textarea { 
    min-height: 100px; 
    overflow: auto; 
}

.radio,
.checkbox {
    min-height: 18px;
    padding-left: 18px;
}

.radio input[type="radio"],
.checkbox input[type="checkbox"] {
    float: left;
    margin-left: -18px;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: #ccc;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #ccc;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #ccc;
}

/* #Misc
   ========================================================================== */


/* Job details*/
.job_details_heading .job_title{
    color: #444;
    font-size: 16px;
    text-transform: capitalize;
}
.job_details_heading .company_title{
    color: #0066b1;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}
.job-details-area{
    margin-bottom: 15px;
}
.job-details-area > h3 {
    color: #666;
    font-size: 14px;
    font-weight: bold;
    line-height: 14px;
}
.job-details-area > p {
    color: #5c5c5c;
    line-height: 24px;
    margin: 0;
    padding: 0 0 0 20px;
}

.job-details-area ul{
    margin: 0 0 0 20px;
    padding: 0;
}
.job-details-area ul li{
    color: #5c5c5c;
    line-height: 20px;
    padding-bottom: 5px;
}

.recent-jobs {
    padding:5px 0;
    margin-left:0px;
    border-bottom:1px solid #999;
    -webkit-transition: .4s;
    -moz-transition:  .4s;
    -o-transition:  .4s;
    transition:  .4s;
}
.recent-jobs:hover {
    background:#eaeaea !important;
    -webkit-transition:  .4s;
    -moz-transition: .4s;
    -o-transition:  .4s;
    transition:  .4s;
    padding-left:5px;	
}
.recent-jobs p {
    margin-left:0px !important;	
}
.job-list {
    background: none repeat scroll 0 0 #ffffff;
    box-shadow: 0px 0px 4px #9f9f9f;
    margin: 0px 0px 10px 0px;
    padding: 10px 10px 5px;
}
.job-list h4 {
    color: #008fd5;
    font-weight: 600;
    margin: 0 auto;
    padding: 0;
    line-height:10px;
    font-size: 14px;
}
.job-list h3 {
    font-weight: 600;
    line-height: 18px;
    margin-bottom: 10px;
    padding: 6px 0 0;
}

.job-list h3 a{
    color:#666;
}

.job-list span {
    color: #666;
    font-size: 13px;
}
.job-list > p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #444;
}
.apply-section{
    margin-top:20px;
    text-align:center !important;	
}
.apply-section .apply-instruction{
    color: #5c5c5c;
    font-weight: bold;
    text-decoration: underline;
    margin: 12px 0 10px;
    font-size: 15px;
}
a.apply-button {
    background: none repeat scroll 0 0 #008fd5;
    border: 1px solid #008fd5;
    color: #ffffff;
    font-weight: bold;
    padding: 10px 23px;
    margin: auto;
    display: block;
    width: 150px;
}
.apply-button:hover {
    background:#0383b2;
}
.apply-section > p {
    color: #444;
    margin: 0;
    text-align: center;
    font-size: 14px;
}
.apply-section span {
    color: #ff0000;
}
.job-preview h5 {
  color: #5c5c5c;
  font-weight: bold;
  margin: 10px 0 6px;
}
.job-preview .company-info {
  border-top: 1px solid #e0e0e0;
  float: left;
  margin: 40px 0 20px;
  width: 100%;
}
.job-preview .company-info .information {
  float: left;
  padding: 0;
  text-align: justify;
}
.job-preview .company-info span {
  color: #5c5c5c;
  display: block;
}
.job-preview .company-info .company_title{
    font-size: 14px;
    font-weight: 600;
}

#tab-3.tabs-menu li a {
    padding: 14.5px !important;
}
#tab-3.tabs-menu li {
    margin-left: 1px !important;
}
#tab-3.tabs-menu {
    float: left !important;
}
.careerTitle2 {
    border-bottom: 1px solid #10218b;
    color: #10218b;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 20px;
    text-align: left;
    width: 612px;
}
.careerTblstep1 {
    text-align: center;
    width: 613px;
}
.careerTitle2 {
    border-bottom: 1px solid #10218b;
    color: #10218b;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 20px;
    text-align: left;
    width: 612px;
}
.content td {
    font-family: 'BookAntiqua', Verdana;
    font-size: 11px;
}
.careerTbl span {
    color: #ff0000;
    padding-left: 2px;
}
.careerTbl input[type="text"], select, textarea {
    border: 1px solid #a8acad;
    float: left;
    margin-right: 10px;
}

.careerTbl span {
    color: #ff0000;
    padding-left: 2px;
}
.careerInputTxt {
    height: 40px;
    width: 98%;
    margin-bottom: 0px !important;
}
table {
    width: 100% !important;
}
input, textarea, select {
    background: none repeat scroll 0 0 #ffffff;
    border: 1px solid #dddddd;
    border-radius: 3px;
    box-sizing: border-box;
    display: block;
    margin-bottom: 6px;
    float: left;
}
table th, table td {
    border: 0px solid #efefef;
    padding: 8px;
    text-align: left;
    vertical-align: middle;
}
.select_day {
    height: 40px;
    width: 31.5%;
}
.select_day:last-child{
    margin-right:0px;	
}
.select_date2 {
    height: 40px;
    width: 48%;
}	
.text_area_c{
    width: 98%;
    height: 150px;
}