@charset "utf-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
div, input, textarea{
    box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
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%;
}
a{
    text-decoration: none;
    outline:0;
    margin: 0;
    padding: 0;
    border: 0;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
hr{
    color: rgb(255, 255, 255);
}
table {
    table-layout: fixed;
}
table td {
    vertical-align: top;
}
div > img{
    width: auto;
}
img{
    max-width: 100%;
    height: auto;
}

div{
    background-repeat: no-repeat;
}

.ui-tooltip-content {
    font-size: 10px;
    max-width: 200px;
}
.ui-tooltip{
    padding: 2px 7px 5px 7px !important;
    border: 1px solid #C6CFCF !important;
}

.fancybox_on_start img{
    max-width: 100%;
    height: auto !important;
}



input[type='text'], input[type='password'], input[type='number'], textarea, select, option{
    font-family: 'Open Sans';
}

input[type='text'], input[type='password'], input[type='number']{
    padding: 5px 8px;
    color: #686868;
    width:100%;
    border: thin solid rgb(203, 203, 203);
}
input[type='submit']{
    cursor: pointer;
    white-space: normal;
    border: 0;
    padding: 0px 12px;
    font-size: 16px;
    height:33px;
    color:white;
    background-color: #23428d;
    transition: 0.15s all ease-in-out;
}
input[type='submit']:hover, input[type='submit']:focus{
    border:0;
    -webkit-box-shadow: 0px 0px 7px 1px rgba(0,0,0,0.6);
    -moz-box-shadow: 0px 0px 7px 1px rgba(0,0,0,0.6);
    box-shadow: 0px 0px 7px 1px rgba(0,0,0,0.6);
    color:#fcec1d;
}
textarea{
    width: 100%;
    max-width: 100%;
    min-height: 100px;
    padding: 5px 8px;
    border: thin solid rgb(203, 203, 203);
}
textarea:hover{
    border: thin solid rgb(29,78,154);
}

input:hover, input:focus, textarea:hover,textarea:focus{
    border: thin solid rgb(93, 153, 245);
}

select{
    padding: 0 3px ;
}
option{
    padding: 5px;
}



#content .mod_static ol,
.editable_text ol{
    list-style: decimal;
    margin: 10px 0 0 25px;
}
#content .mod_static ul,
.editable_text ul{
    margin: 10px 0 0 25px;
    list-style: initial;
}
#content .mod_static ol li,
.editable_text ol li
#content .mod_static ul li,
.editable_text ul li{
    margin: 0 0 5px 0;
}

/********************************HOVER EFFECTS*********************************/
.img_zoom_hover:hover{
    -webkit-transform:scale(1.25); /* Safari and Chrome */
    -moz-transform:scale(1.25); /* Firefox */
    -ms-transform:scale(1.25); /* IE 9 */
    -o-transform:scale(1.25); /* Opera */
     transform:scale(1.25);
     transition: 0.7s all;
}

.img_rotate_hover{
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.img_rotate_hover:hover{
    -webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
}