/*
Design by Free CSS Templates
http://www.freecsstemplates.org
Released for free under a Creative Commons Attribution 2.5 License
*/

:root {
  --appColor: #009d9e;
  --menuHovertext: White;
}

body {
	margin: 0;
	padding: 0;
/*
	background: #F4F4F4 url(images/img01.jpg) repeat-x left top;
*/
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #000000;
}

h1, h2, h3 {
	margin-top: 0;
	color: gray;
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 1.6em;
}

h3 {
	font-size: 1em;
}
/*

ul {
	list-style-image: url(images/img07.gif);
*/
}

a {
	text-decoration: none;
	border-bottom: 1px dashed #CCCCCC;
/*
	color: #6E6C00;
*/
	color: #FF4E00;
}a

a:hover {
        color: var(--menuHovertext);
	border-bottom: none;
}

a img {
	border: none;
}

img.left {
	float: left;
	margin: 0 20px 0 0;
}

img.right {
	float: right;
	margin: 0 0 0 20px;
}

/* Header */

#logo {

	background: var(--appColor); 
/*	background: #645143; */
/*	background: linear-gradient(0.3turn,#645143,#87CEEB,#645143); */
/*	background: linear-gradient(0.3turn,#4d151b,#87CEEB,#4d151b); */
/*	background: linear-gradient(0.3turn,#79300f,#87CEEB,#79300f);*/

/*	background: #bf865a;*/
	/*width: 1000px;*/
	height: 80px;
	margin: 0 auto;
	padding: 0 10px;
/*
    border-bottom: #ff4e00 3px solid;
*/
    border-bottom: skyBlue 6px solid;
}

#logo h1, #logo p {
	float: left;
	margin: 0;
	color: #FFFFFF;
}

#logo h1 {
	padding: 3px 0 0 0;
	text-transform: lowercase;
	font-weight: normal;
	font-size: 3em;
}

#logo p {
	text-transform: uppercase;
	padding: 52px 0 0 3px;
	font-size: 10px;
	color: #FFFFFF;
}

#logo a {
	border: none;
	text-decoration: none;
	color: #FFFFFF;
}

/* Menu */

#menu,
#menu ul,
#menu ul li,
#menu ul li a {
  -webkit-transition: all ease .3s;
  -o-transition: all ease .3s;
  -moz-transition: all ease .3s;
  -ms-transition: all ease .3s;
  transition: all ease .3s;
}

#menu:before, 
#menu:after,
#menu > ul:before,
#menu > ul:after {
  content: '';
  display: table;
}
#menu:after,
#menu > ul:after {
  clear: both;
}
#menu a {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

#menu ul {
  background: #3E3F3A;
  border-radius: 3px;
  border: 1px solid #3E3F3A;
  border: 1px solid #3E3F3A;
  -webkit-box-shadow: 0 1px 2px rgba(2, 2, 2, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  -o-box-shadow: 0 1px 2px rgba(2, 2, 2, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  -moz-box-shadow: 0 1px 2px rgba(2, 2, 2, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  -ms-box-shadow: 0 1px 2px rgba(2, 2, 2, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  box-shadow: 0 1px 2px rgba(2, 2, 2, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

#menu ul > li {
  float: left;
  list-style: none;
}
#menu ul > li > a {
  display: block;
  text-decoration: none;
  /*padding: 15px 44px;*/
  position: relative;
}
#menu ul > li > a:hover {
/*
  background: #c7c7c7;
*/
  background: var(--appColor);
  -webkit-box-shadow: inset 0 0 1px #adadad;
  -o-box-shadow: inset 0 0 1px #adadad;
  -moz-box-shadow: inset 0 0 1px #adadad;
  -ms-box-shadow: inset 0 0 1px #adadad;
  box-shadow: inset 0 0 1px #adadad;
  -webkit-transition: all ease .3s;
  -o-transition: all ease .3s;
  -moz-transition: all ease .3s;
  -ms-transition: all ease .3s;
  transition: all ease .3s;
}
#menu ul > li > a:hover:before {
  content: '';
  z-index: 2;
  position: absolute;
  border: 1px solid white;
  border-top: 0;
  border-bottom: 0;
  border-right: 0;
  width: 100%;
  height: 100%;
  top: -20;
  left: -1px;
  opacity: .2;
}


#menu ul > li > a:hover:after {
  content: '';
  z-index: 2;
  position: absolute;
  border: 1px solid white;
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  right: -1px;
  opacity: .2;
}
#menu > ul > li > ul {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
#menu > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  position: absolute;
  border-radius: 0 0 3px 3px;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
}

#menu > ul > li > ul {
  width: 200px;
  position: absolute;
}
#menu > ul > li > ul > li {
  float: none;
  position: relative;
}
#menu > ul > li > ul > li > ul {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
#menu > ul > li > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  position: absolute;
}
#menu > ul > li > ul > li > ul {
  left: 200px;
  top: 1px;
  width: 200px;
}
#menu > ul > li > ul > li > ul > li {
  float: none;
}

#menu {
        /*width: 1000px;*/
        height: 30px;
        margin: 0 auto;
        padding-top: 5px;
}

#menu ul {
        margin: 0;
        padding: 0;
        list-style: none;
}


#menu li {
        display: inline;
}

#menu a {
        display: block;
        float: left;
        margin: 0 3px 0 0;
        /*background: url(images/img02.gif) no-repeat left 50%;*/
        padding: 5px 15px 10px 15px;
        border: none;
        text-decoration: none;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 14px;
        color: white;
}

#menu a:hover {
        margin: 0 3px 0 0;
        padding: 5px 15px 5px 15px;
        color: var(--menuHovertext);
}

#menu .current_page_item a {
        background: none;
        margin: 0 3px 0 0;
        padding: 10px 15px 10px 0px;
        /*color: #000000;*/
}



/* Wrapper */

#wrapper {
        min-height: 650px;
}

/* Page */

#page {
	width: 1000px;
	margin: 0 auto;
	padding: 30px 0;
}

#page-bg {
	padding: 11px 24px;
	background: url(images/img03.jpg) no-repeat;
}


/* Content #3E3F3A */

#content {
	float: left;
	width: 80%;
}


.post {
	margin-bottom: 20px;
	padding-bottom: 15px;
	line-height: 200%;
}

.post h1 {
	font-weight: normal;
	font-size: 30px;
}

.post h2 {
	font-size: 24px;
}

.title {
	margin: 0;
	padding-bottom: 6px;
	font-weight: normal;
}

.title a {
	border-bottom: none;
}

.title a:hover {
	border-bottom: 1px dashed #CCCCCC;
}

.byline {
	border-top: 1px dashed #8D8D8D;
	margin: 0 0 20px 0;
	text-transform: uppercase;
}

.entry {
}

.links {
	border-bottom: 1px dashed #8D8D8D;
	font-size: 11px;
}

.links a {
	display: block;
	border: none;
	color: #FFFFFF;
}

.links a:hover, .internal_link:hover{
 color: var(--menuHovertext); 
 background:var(--appColor);

}

.links .more {
	float: left;
	padding-left: 25px;
	padding-right: 15px;
	background: #A49D3C url(images/img04.jpg) no-repeat left 50%;
	text-transform: uppercase;
}

.links .comments {
	float: left;
	padding-left: 20px;
	background: url(images/img04.jpg) no-repeat left top;
}


/* Footer */

#footer {
	background: var(--appColor);
	height: 80px;
	border-bottom: skyBlue 6px solid;
}

#footer p {
	margin: 0;
	padding: 40px 0 0 0;
	text-align: center;
	/*text-transform: uppercase;*/
	font-size: 11px;
	color: #FFFFFF;
}

#footer a {
	color: #FFFFFF;
}


/* customize inputs */

textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
}

select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
    border-radius: 4px;
    color: #555;
    display: inline-block;
    font-size: 14px;
    height: 30px;
    line-height: 50px;
    margin-bottom: 0px;
    float: left;    
    padding: 4px 6px;
    vertical-align: top;
}

.radio, .checkbox {
    min-height: 20px;
    margin-bottom: 10px;    
}

.btn {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background-color: #f5f5f5;
    background-image: linear-gradient(to bottom, #fff, #e6e6e6);
    background-repeat: repeat-x;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) #b3b3b3;
    border-image: none;
    border-radius: 4px;
    border-style: solid;
    border-width: 1px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgba(0, 0, 0, 0.05);
    color: #333;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
    padding: 4px 12px;
    text-align: center;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
    vertical-align: middle;
}


input[type="button"], input[type="submit"] {
    margin-right: 8px;
}

label {
    display: inline-block;
    font-weight: bold;
    margin-bottom: 5px;
    max-width: 100%;
}

.form-horizontal .control-label {
    margin-bottom: 0;
    padding-bottom: 20px;
    height: 50px;    
    vertical-align: middle;    
    text-align: right;
}

.form-control-label {
    margin-bottom: 0;
    padding-bottom: 20px;
    height: 50px;    
    vertical-align: top;    
    text-align: right;
}

.col-sm-3 {
    width: 25%;
}

.form-group::before, .form-horizontal .form-group::after {
    content: " ";
    display: table;
    clear: both;
     
}

.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
}
* {
    box-sizing: border-box;
}

table TR {
background-color:#e0e0e0;
font-size:14px;
}

table THEAD TR {
text-align:left;
}


.btn:hover, .btn:focus, .btn.focus {
 color: var(--menuHovertext);
 background:var(--appColor);
}
        
web2py-menu {

}

hr {border: 2px solid var(--appColor);}

.email {text-transform: lowercase}


/*
 * ===================================================================================================
Changes of default
*  ===================================================================================================
*/

h1 {text-Transform:none !important}
