/***********************************************
* PRIMARY STYLES                              *
* Author: Assad Ali                          *
* Project:  Certs Online                  *
********************************************/

/*********************************************
* Normalize.css                             *
********************************************/
article,aside,details,figcaption,figure,footer,header,hgroup,nav,section,summary{display:block;}audio,canvas,video{display:inline;zoom:1;}audio:not([controls]){display:none;height:0;}[hidden]{display:none;}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;}html,button,input,select,textarea{font-family:sans-serif;}a:focus{outline:thin dotted;}a:active,a:hover{outline:0;}h1{font-size:2em;margin:.67em 0;}h2{font-size:1.5em;margin:.83em 0;}h3{font-size:1.17em;margin:1em 0;}h4{font-size:1em;margin:1.33em 0;}h5{font-size:.83em;margin:1.67em 0;}h6{font-size:.75em;margin:2.33em 0;}abbr[title]{border-bottom:1px dotted;}b,strong{font-weight:700;}blockquote{margin:1em 40px;}dfn{font-style:italic;}mark{background:#ff0;color:#000;}code,kbd,pre,samp{font-family:monospace, serif;_font-family:'courier new', monospace;font-size:1em;}pre{white-space:pre-wrap;word-wrap:break-word;}q{quotes:none;}q:before,q:after{content:none;}small{font-size:80%;}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}sup{top:-.5em;}sub{bottom:-.25em;}dd{margin:0 0 0 40px;}menu,ol,ul{padding:0 0 0 40px;}nav ul,nav ol{list-style:none;list-style-image:none;}img{border:0;-ms-interpolation-mode:bicubic; vertical-align: middle;}svg:not(:root){overflow:hidden;}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em;}legend{border:0;white-space:normal;margin-left:-7px;padding:0;}button,input,select,textarea{font-size:100%;vertical-align:middle;margin:0;}button,input{line-height:normal;}button,html input[type=button],/* 1 */input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer;overflow:visible;}button[disabled],input[disabled]{cursor:default;}input[type=checkbox],input[type=radio]{box-sizing:border-box;height:13px;width:13px;padding:0;}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none;}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}textarea{overflow:auto;vertical-align:top;}table{border-collapse:collapse;border-spacing:0;}body,figure,form{margin:0;}p,pre,dl,menu,ol,ul{margin:1em 0;}


/*********************************************
* Personal Overides for Normalize.css       *
********************************************/
dd, dt, dl{margin: 0; padding:0;}
ul, ol { margin: 0 0; padding: 0; }
nav ul, nav ol { list-style: none; list-style-image: none; margin: 0; padding: 0; }
label { cursor: pointer; }
input:invalid, textarea:invalid { background-color: #f0dddd; }
td { vertical-align: top; }
form { margin: 0; }
fieldset { border: 0; margin: 0; padding: 0; }
button{border: none;}
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{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}

/*********************************************
* Personal Global Adjustments              *
********************************************/
/* When the user selects/highlights text */
::-moz-selection { background: #304149; color: #fff;}::selection { background: #304149; color: #fff;}

/* Fluid images */
img { max-width: 100%; height: auto; width: auto\9; /* ie8 */}

/* Apply a natural box layout model to all elements + polyfill https://github.com/Schepp/box-sizing-polyfill#readme */
*{-moz-box-sizing: border-box; -webkit-box-sizing:border-box; box-sizing: border-box; *behavior: url('../js/libs/boxsizing.htc');}

/*********************************************
* Layout styles                             *
********************************************/
body{
	-o-transition:all .5s ease-in-out;
	-ms-transition:all .5s ease-in-out;
	-moz-transition:all .5s ease-in-out;
	-webkit-transition:all .5s ease-in-out;
	transition:all .5s ease-in-out;
 
	font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 24px;
    
    overflow-x: hidden;
}

header{
	background: white;
	float: left;
	min-width: 100%;
}

header:after{
	content: "";
	clear: both;
	display: block;
}

/* left sidebar */
aside{
	width: 230px;
	margin-right: 20px;
	float: left;
}

footer{
	float: left;
	min-width: 100%;
}

article{
	-moz-column-width: 25em;
	-moz-column-gap: 20px;
	-moz-column-break-inside:avoid;
	
	-webkit-column-width: 25em;
	-webkit-column-gap: 20px;
	-webkit-column-break-inside:avoid;
	
	-o-column-break-inside:avoid;
	-ms-column-break-inside:avoid;
	
	column-width: 25em;
	column-gap: 20px;
	column-break-inside:avoid;
	
}

article .column{
	padding: 1%;
}

article .column:first-of-type{
	padding-left: 0%;
}


blockquote{
	background: #FAFAFA url('../img/leftQuote.png') no-repeat 5% 13%;
	padding: 35px 60px 35px 60px;
	width: 510px;
	margin-bottom: 20px;
}

blockquote p,
blockquote strong{
	font-size: 24px;
	line-height: 28px;
	color: #666666;
	font-weight: 300;
	text-align: center;
}

blockquote strong{
	font-weight: 400;
}

blockquote p:after{
	content: "";
	display: block;
	width: 36px;
	height: 31px;
	background: url('../img/rightQuote.png') no-repeat;
	float: right;
	margin: 15px -40px;
}

hr{
	background: #E5E5E5;
	height: 1px;
	min-width: 100%;
	border: none;
	margin: 20px 0px 10px 0px;
}

table td, table th{
	padding: 5px;
	border: 1px solid #cacaca;
	text-align: left;
}

table.noborders td, table.noborders th{
	padding: 5px;
	border: none;
	text-align: left;
	vertical-align: top;
}

table th{
	font-weight: 600;
}

/*********************************************
* Typography styles                         *
********************************************/
h1{
    font-size:36px;
    line-height:46px;
    color: #0E3463;
	font-weight: 300;
}

h2{
	font-size: 24px;
	line-height: 34px;
	color: black;	/*color: white;	//changed by ankisha/dmd on 12th june, 2013 to fix spread sheet issue: 1) make Heading 2 visible (at the moment it's invisible at the backend) */
	font-weight: 300;
	margin-bottom: 5px;
}

h3, h4, fieldset{
    font-size:20px;
    line-height:30px;
    color: #000;
	font-weight: 400;	
}

a, a:visited{
	-o-transition:all .5s ease-in-out;
	-ms-transition:all .5s ease-in-out;
	-moz-transition:all .5s ease-in-out;
	-webkit-transition:all .5s ease-in-out;
	transition:all .5s ease-in-out;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #0CA5ED;
    text-decoration: underline;
}

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

strong{
	font-weight: 600;
}

em{
	font-style: italic;
}

ol, ul{
	margin-left: 40px;
}

table{
	min-width: 100%;
}

table th{
	background: #efefef;
}

table th a,
table th{
	font-size: 16px;
	color: #333;
	text-decoration: none;
}

/*********************************************
* Form styles                               *
********************************************/
input, textarea, select{
    outline:none;
    border:none;
    background: #fff;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
}

label{
    font-size: 16px;
    font-weight: 300 !important;
    line-height: 26px;
    color: none;
}

input[type=text], input[type=email],input[type=password],textarea,select{
	-o-transition:all .5s ease-in-out;
	-ms-transition:all .5s ease-in-out;
	-moz-transition:all .5s ease-in-out;
	-webkit-transition:all .5s ease-in-out;
	transition:all .5s ease-in-out;
    width: 330px;
    height: 38px;
    padding: 6px 10px 6px 10px;
	border: 1px solid #ccc;
}

textarea{
	height: 122px;
}

input[type=submit], input[type=button], button{
	-o-transition:all .5s ease-in-out;
	-ms-transition:all .5s ease-in-out;
	-moz-transition:all .5s ease-in-out;
	-webkit-transition:all .5s ease-in-out;
	transition:all .5s ease-in-out;
	background: #FF6600;
    font-size: 14px;
	line-height: 24px;
	color: #fff;
	font-weight: 700;
	border: 1px solid #EBCD50;
	display: inline-block;
	padding: 6px 13px 6px 13px;
	text-align: center;
	text-transform: uppercase;
}

input::-webkit-input-placeholder,textarea::-webkit-input-placeholder,input:-moz-placeholder,textarea:-moz-placeholder{
    color: #666;
}

input:focus,textarea:focus,select:focus,input:hover,select:hover,textarea:hover{
	border-color: #20639B;
	color: #666;
}

input[type=submit]:hover, input[type=submit]:focus,
button:hover, button:focus{
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
	border: 1px solid #333;
	text-decoration: none;
	box-shadow: inset 0px 0px 10px 5px rgba(0, 0, 0, 0.2);
}








/*********************************************
* Installers modal box styles              *
********************************************/
.form-inline{
  padding: 20px;
  float: left;
}

.form-inline table{
  font-size: 14px;
}

.btn-toolbar label{
  margin-right: 5px;
}


.btn-toolbar div{
  float: left;
  margin-bottom: 10px;
  margin-right: 10px;
}

.list-footer{
  text-align: center;
  padding: 5px;
}

.list-footer select{
  width: auto;
  margin-left: 10px;
  padding: 0px;
  height: 30px;
  font-size: 12px;
}
@media only screen and (max-width: 1200px) {
#filter_search,fieldset{ width:100%!important;}table{   clear: both;
    display: block;
    max-width: 100%;  overflow:auto;
    width: 100%;}
.form-inline{width: 100%;}
	}