/*
 * COLORS
 * 
 * red: BB202B
 * green: 8DC63F
 * 
*/

/* ALL ELEMENTS */
html {
    box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; /* make sure paddings aren't added to fixed widths */
}

*, *:before, *:after {
    border: 0px;
    box-sizing: inherit; -moz-box-sizing: inherit; -webkit-box-sizing: inherit; /* make sure paddings aren't added to fixed widths */
    line-height: 125%;
    margin: 0px;
	outline: none;
    padding: 0px;
    text-align: left;
    -webkit-text-size-adjust: none; /* keep webkit from blowing up the font */
}

/* enable custom button styling in Safari */
input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;  
}

body {
    background-color: #222222;
    height: 100%;
    overflow: hidden;
}

h1 {
    font-size: 36px;
    line-height: 125%;
}

h2 {
    font-size: 30px;
    line-height: 125%;
}

a:link, a:visited, a:active {
    color: #8DC63F;
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    color: #BB202B;
    font-weight: bold;
    text-decoration: none;
    -webkit-transition: color .25s ease-out;
    -moz-transition: color .25s ease-out;
    -o-transition: color .25s ease-out;
    transition: color .25s ease-out;    
}

/* ENDOF ALL ELEMENTS */



/* GENERAL CLASSES */

.float_left {
    float: left;
    position: relative;
}

.float_right {
    float: right;
    position: relative;
}


/* ENDOF GENERAL CLASSES */



/* CONTAINER */

.container {
    background-color: #FFFFFF;
    float: left;
    height: 100vh;
    position: absolute;
    width: 100%;
}

/* ENDOF CONTAINER */








/* HEADER */

.header {
    background-color: #222222;
    border-bottom: 1px solid #FFFFFF;
    height: 185px;
    padding-top: 25px;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.header_inner_wrapper {
    margin: 0px auto 0px auto;
    width: 1200px;
}

.raymond {
    float: left;
    position: relative;
}

.mini_ray {
    display: none;
}

.site_header {
    color: #BB202B;
    float: left;
    font-family: 'Noto Sans', Verdana;
    font-size: 40px;
    font-weight: bold;
    padding: 30px 0px 0px 30px;
    position: relative;
}

/* ENDOF HEADER */








/* MAIN MENU */

#main_menu {
    color: #FFFFFF;
    float: left;
    font-family: 'Noto Sans', Verdana;
    font-size: 18px;    
    padding: 6px 0px 0px 0px;
    position: relative;
    width: 100%;
}

#main_menu .menu {
    list-style: none;
}

#main_menu .menu-item {
    display: inline;
    position: relative;
}

#main_menu .menu-item a {
    color: #666666;
    display: inline-block;
    font-weight: normal;
    padding: 10px 25px 15px 25px;
    text-decoration: none;
}

#main_menu .menu-item a:hover {
    background-color: #333333;
    border-radius: 5px 5px 0px 0px;
    color: #999999;
    -webkit-transition: background-color .25s ease-out;
    -moz-transition: background-color .25s ease-out;
    -o-transition: background-color .25s ease-out;
    transition: background-color .25s ease-out;    
}

#main_menu .current-menu-item a {
    color: #999999;
    font-weight: normal;
    text-decoration: none;
}

/* sub menus */
#main_menu .menu-item .sub-menu {
	display: none;
	list-style: none;
}

#main_menu .menu-item:hover .sub-menu {
	background-color: #222222;
	border-radius: 0px 0px 5px 5px;
	display: block;
	left: 0;
	padding: 0px 0px 10px 0px;
	position: absolute;
    width: 270px;
	z-index: 101;
    -webkit-transition: background-color .25s ease-out;
    -moz-transition: background-color .25s ease-out;
    -o-transition: background-color .25s ease-out;
    transition: background-color .25s ease-out;    
}

#main_menu .menu-item .sub-menu .menu-item {
	border-bottom: 1px solid #444444;
    display: block;
}

#main_menu .menu-item .sub-menu .menu-item a {
	color: #666666;
    display: block;
    padding: 12px 10px 12px 20px;
}

#main_menu .menu-item .sub-menu .menu-item a:hover {
	background-color: #333333;
    color: #999999;
    -webkit-transition: background-color .25s ease-out;
    -moz-transition: background-color .25s ease-out;
    -o-transition: background-color .25s ease-out;
    transition: background-color .25s ease-out;    
}

#show_main_menu_mobile_div {
    display: none;
}

#close_main_menu_mobile_div {
    display: none;
}

#main_menu_mobile {
    display: none;
}

/* ENDOF MAIN MENU */








/* PAGE AND POST TITLE AND CONTENT */

.main_content {
    background-color: #FFFFFF;
    color: #222222;
    font-family: 'Noto Sans', Verdana;
    font-size: 20px;
    line-height: 150%;
    max-height: calc(100vh - 265px); /* window height minus (header height + footer height) */
    -ms-overflow-style: none;
    overflow-x: hidden;
    position: absolute;
    top: 185px;
    width: 100%;
}

.main_content_inner_wrapper {
    margin: 0px auto 0px auto;
    padding: 40px 0px 0px 0px;
    position: relative;
    width: 1200px;
}

.main_content h1 {
    color: #8DC63F;
    font-family: 'Noto Serif', Georgia;
    font-size: 30px;
    padding: 0px 0px 10px 0px;
    width: 100%;
}

.page_post_content {
    position: relative;
    float: left;
    width: 800px;
    padding: 10px 0px 40px 0px;
}

.page_post_content p {
    line-height: 150%;
}

.page_post_content ul {
    list-style: circle;
    margin: 0px 0px 0px 40px;
}

.page_post_content ol {
    margin: 0px 0px 0px 40px;
}

.page_post_content ul li,
.page_post_content ol li {
    padding: 0px 0px 5px 0px;
}

/* ENDOF PAGE AND POST TITLE AND CONTENT */








/* BLOG */

.blog_main_page_post {
    position: relative;
    float: left;
    width: 100%;
    margin: 0px 0px 60px 0px;
    padding: 0px 0px 30px 0px;
    border-bottom: 1px dotted #999999;
}

.blog_main_page_post h2 {
    font-family: 'Noto Serif', Georgia;
    margin: 0px 0px 10px 0px;
}

.blog_main_page_post h2 a {
    color: #8DC63F;
    text-decoration: none;
}

.blog_main_page_post h2 a:hover {
    color: #BB202B;
    -webkit-transition: color .25s ease-out;
    -moz-transition: color .25s ease-out;
    -o-transition: color .25s ease-out;
    transition: color .25s ease-out;    
}

.blog_main_page_post_excerpt {
    position: relative;
    float: left;
    width: 100%;
    padding: 10px 0px 20px 0px;
    line-height: 150%;
}

.blog_main_page_post_date_and_link {
    position: relative;
    float: left;
    width: 100%;
}

.blog_main_page_post_date {
    position: relative;
    float: left;
    padding: 5px 0px 0px 0px;
    font-family: 'Noto Serif', Georgia;
    font-size: 10px;
    color: #999999;
}

.blog_main_page_post_date:hover {
    color: #444444;
    -webkit-transition: color .25s ease-out;
    -moz-transition: color .25s ease-out;
    -o-transition: color .25s ease-out;
    transition: color .25s ease-out;    
}

.blog_main_page_post_link {
    position: relative;
    float: right;
}

.blog_main_page_post_link a {
    display: block;
    padding: 8px 20px 10px 20px;
    background-color: #999999;
    border-radius: 5px;
    color: #FFFFFF;
    font-weight: bold;
    text-decoration: none;
}

.blog_main_page_post_link a:hover {
    background-color: #888888;
    color: #FFFFFF;
    -webkit-transition: background-color .25s ease-out;
    -moz-transition: background-color .25s ease-out;
    -o-transition: background-color .25s ease-out;
    transition: background-color .25s ease-out;    
}

.blog_post_date {
    position: relative;
    float: left;
    width: 100%;
    padding: 0px 0px 10px 0px;
    font-family: 'Noto Serif', Georgia;
    font-size: 10px;
    color: #999999;
}

.blog_post_date:hover {
    color: #444444;
    -webkit-transition: color .25s ease-out;
    -moz-transition: color .25s ease-out;
    -o-transition: color .25s ease-out;
    transition: color .25s ease-out;
}

.blog_post_tags {
    position: relative;
    float: left;
    width: 100%;
    margin: 30px 0px 0px 0px;
    padding: 10px 0px 0px 0px;
    border-top: 1px solid #999999;
    font-size: 14px;
    line-height: 150%;
    color: #666666;
}

.blog_post_navigation {
    position: relative;
    float: left;
    width: 100%;
    font-size: 14px;
    line-height: 150%;
    color: #666666;
}


.blog_pagination {
    position: relative;
    float: left;
    
}

.blog_pagination ul {
    margin: 0px;
    list-style: none;
}

.blog_pagination ul li {
    display: inline;
}

.blog_pagination ul li a {
    padding: 5px 10px 5px 10px;
    background-color: #EAEAEA;
    border: 1px solid #CACACA;
    border-radius: 3px;
    color: #AAAAAA;
    font-weight: normal;
}

.blog_pagination ul li a:hover,
.blog_pagination ul li.active a {
    background-color: #8DC63F;
    border: 1px solid #8DC63F;
    color: #FFFFFF;
    -webkit-transition: background-color .25s ease-out;
    -moz-transition: background-color .25s ease-out;
    -o-transition: background-color .25s ease-out;
    transition: background-color .25s ease-out;
}

.blog_query_term {
    position: relative;
    float: left;
    width: 100%;
    margin: 0px 0px 30px 0px;
    padding: 10px 20px 10px 20px;
    background-color: #EAEAEA;
    border: 1px solid #CACACA;
    border-radius: 5px;
    font-style: italic;
    font-size: 16px;
}



/* ENDOF BLOG */








/* SIDEBAR */

.sidebar {
    position: relative;
    float: right;
    width: 300px;
    margin: 10px 0px 40px 0px;
    border-radius: 5px;
    font-family: 'Noto Sans', Verdana;
}

.sidebar_inner_wrapper {
    position: relative;
    float: left;
    width: 100%;
    padding: 0px 20px 30px 20px;
    background-color: #F9F9F9;
}

.sidebar:hover .sidebar_inner_wrapper {
    background-color: #F6F6F6;
    -webkit-transition: background-color .25s ease-out;
    -moz-transition: background-color .25s ease-out;
    -o-transition: background-color .25s ease-out;
    transition: background-color .25s ease-out;
}

.sidebar_section {
    padding: 30px 0px 0px 0px;
}

.sidebar h2 {
    font-size: 20px;
    color: #666666;
}

.sidebar ul {
    margin: 15px 0px 0px 0px;
    list-style: none;
}

.sidebar ul li {
    padding: 0px 0px 5px 0px;
}

.sidebar form {
    width: 100%;
    margin: 10px 0px 20px 0px;
}

.sidebar input[type=text] {
    width: 100%;
    padding: 5px 10px 5px 10px;
    margin: 0px 0px 10px 0px;
    border: 1px solid #DDDDDD;
    border-radius: 5px;
}

.sidebar input[type=text]:focus {
    border: 1px solid #BBBBBB;
}

.sidebar input[type=submit] {
    width: 100%;
    padding: 8px 10px 8px 10px;
    background-color: #999999;
    font-family: 'Noto Sans';
    color: #FFFFFF;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
}

.sidebar input[type=submit]:hover {
    background-color: #888888;
    cursor: pointer;
    -webkit-transition: background-color .25s ease-out;
    -moz-transition: background-color .25s ease-out;
    -o-transition: background-color .25s ease-out;
    transition: background-color .25s ease-out;
}

.sidebar .sidebar_contact_wrapper {
    position: relative;
    float: left;
    width: 100%;
    padding: 15px 0px 0px 0px;
}

.sidebar .sidebar_contact_image {
    position: relative;
    float: left;
}

.sidebar .sidebar_contact_info {
    position: relative;
    float: left;
    padding: 0px 0px 0px 10px;
}

/* ENDOF SIDEBAR */








/* CONTACT FORM */

.contact_form {
    width: 100%;
    margin: 0px 0px 40px 0px;
    padding: 0px 0px 20px 0px;
    border-bottom: 1px solid #CCCCCC;
    font-family: 'Noto Sans';
    font-size: 20px;
}

.contact_form input, .contact_form textarea {
    border-radius: 5px;
}

.contact_form input[type=text] {
    width: 100%;
    border: 1px solid #CCCCCC;
    margin: 0px 0px 20px 0px;
    padding: 10px 15px 10px 15px;
    font-family: 'Noto Sans';
    font-size: 20px;
    color: #888888;
}

.contact_form input[type=text]:focus {
    border: 1px solid #AAAAAA;
    color: #444444;
}

.contact_form textarea {
    width: 100%;
    min-height: 200px;
    border: 1px solid #CCCCCC;
    margin: 0px 0px 20px 0px;
    padding: 10px 15px 10px 15px;
    resize: vertical;
    font-family: 'Noto Sans';
    font-size: 20px;
    line-height: 150%;
    color: #888888;
}

.contact_form textarea:focus {
    color: #444444;
}

.contact_form input[type=submit] {
    padding: 10px 20px 10px 20px;
    background-color: #999999;
    font-family: 'Noto Sans';
    color: #FFFFFF;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
}

.contact_form input[type=submit]:hover {
    background-color: #888888;
    cursor: pointer;
    -webkit-transition: background-color .25s ease-out;
    -moz-transition: background-color .25s ease-out;
    -o-transition: background-color .25s ease-out;
    transition: background-color .25s ease-out;
}

.contact_form_error {
    display: none;
    color: #BB202B;
    font-size: 16px;
    margin: -20px 0px 20px 0px;
    padding: 5px 15px 5px 15px;
}

.contact_form_success {
    display: none;
    border-radius: 5px;
    background-color: #8DC63F;
    color: #FFFFFF;
    font-size: 16px;
    margin: 0px 0px 20px 0px;
    padding: 10px 15px 10px 15px;
}

.contact_form_success a {
    color: #FFFFFF;
    font-weight: bold;
    text-decoration: none;
}

.contact_form_success a:hover {
    color: #FFFFFF;
    text-decoration: underline;
    -webkit-transition: color .25s ease-out;
    -moz-transition: color .25s ease-out;
    -o-transition: color .25s ease-out;
    transition: color .25s ease-out;
}

/* CONTACT FORM */








/* GOOGLE MAPS */

#map_canvas {
    position: relative;
    float: left;
    width: 100%;
    height: 400px;
    margin-top: 20px;
}

/* ENDOF GOOGLE MAPS */








/* FOOTER */

.footer {
    background-color: #222222;
    border-top: 1px solid #FFFFFF;
    bottom: 0px;
    height: 80px;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.footer_inner_wrapper {
    position: relative;
    width: 1200px;
    margin: 0px auto 0px auto;
    padding: 30px 20px 0px 20px;
    font-family: 'Noto Sans', Verdana;
    color: #666666;
    font-size: 16px;
    text-align: center;
}

.footer_inner_wrapper a:link, .footer_inner_wrapper a:active, .footer_inner_wrapper a:visited {
    color: #888888;
    font-weight: normal;
    text-decoration: none;
}

.footer_inner_wrapper a:hover {
    color: #BB202B;
    -webkit-transition: color .25s ease-out;
    -moz-transition: color .25s ease-out;
    -o-transition: color .25s ease-out;
    transition: color .25s ease-out;
}

/* ENDOF FOOTER */








/* GENERAL CLASSES */

.float_left {
    float: left;
    position: relative;
}

.float_right {
    float: right;
    position: relative;
}

.display_none {
    display: none;
}

.display_inline {
    display: inline;
}

.display_block {
    display: block;
}






