/*
	Theme Name: SDM Software
	Version: 1.0
	Author: The 108 Group, LLC
*/

/**************************************

SDM PRIMARY 		BLUE		#1378cc
SDM SECONDARY		ORANGE		#E29815
GPO GUY PRIMARY 	GREEN		#BADA55
GPO GUY SECONDARY	LAVENDAR	#a29dcc

00 globals
01 typography
02 images
03 shortcodes design
04 lists
05 design elements
06 grid

10 header
11 header - logo
12 header - nav menu (desktop)
13 header - nav menu (mobile)

20 home
21 home - slideshow
22 home - about
23 home - events
24 home - software
25 home - newsletter
26 home - gpo
27 home - products / blog

30 page 
34 page - gpo freeware download
35 page - contact
37 page - blog index
38 page - post single
39 page - forum
40 page - products
41 page - 404
42 page - FAQ
43 page - search archive
44 page - blog comments
45 page - whitepaper + newsletter CPT single
46 page - freeware reg form page
47 page - Trial Version Registration Form
48 page - Support
49 page - freeware + newsletter registration form

50 gpo
51 gpo - nav
52 gpo - showcase
53 gpo - about
54 gpo - library
55 gpo - freeware
56 gpo - forums


60 page - single product

70 sidebar

80 footer
81 footer - social
82 footer - logo
83 footer - browse site
84 footer - contact info


90 responsive
**************************************/

/**************************************
s00 global
**************************************/

body {
	background-color: #ccc;
	background-image: url('/wp-content/themes/sdmsoftware/img/noise-bg.jpg');
	background-repeat: repeat;
	font-family: 'proxima-nova', 'Open Sans', sans-serif;
}

#container {
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	width: 1400px;
}

.contain {
	box-sizing: border-box;
	float: left;
	padding: 50px 100px;
	width: 100%;
}

#content {
	box-sizing: border-box;
	float: left;
	width: 100%;
	padding: 50px;
}

#content.fullwidth {
	padding: 50px 200px;
}

#content[class*='sidebar'] #entry[class*='col'] {
    padding-right: 50px;
}

div, input, textarea {
	box-sizing: border-box;
}

select {
	display: block !important;
}


#gform_fields_1 #input_1_15 input[type="checkbox"],
#gform_fields_1 #input_1_15 input[type="radio"] {
	position: relative;
	top:26px;
    left: 0;}

/**************************************
s01 typography
**************************************/


strong, b {
	font-weight: 600;
}

i, em {
	font-style: italic;
}

a {
	text-decoration: none;
}

p {
	line-height: 1.5em;
}

#entry h1,
#entry h2, 
#entry h3, 
#entry h4, 
#entry h5, 
#entry h6 {
	color: #777;
	margin-bottom: 30px;
}

#entry h1,
#entry h2 { font-size: 28px; }
#entry h3 { font-size: 24px; }
#entry h4 { font-size: 24px; }
#entry h5 { font-size: 22px; }
#entry h6 { font-size: 20px; }

#entry p {
	font-size: 18px;
	margin-bottom: 30px;
}

#entry a {
	color: #1378cc;
	border-bottom: 0px solid #1387cc;
	/*border-bottom: 1px solid #1387cc;*/
	padding-bottom: 2px;
	-webkit-transition: all 500ms ease-in-out 0ms;
    -moz-transition: all 500ms ease-in-out 0ms;
    -o-transition: all 500ms ease-in-out 0ms;
    transition: all 500ms ease-in-out 0ms;
}

#entry a:hover {
	color: #E29815;
	border-color: #E29815;
}


#entry pre {
	background-color: #fafafa;
    border-left: 2px solid #eee;
    font-family: 'Courier New';
    font-weight: 400;
	line-height: 1.5em;
	margin-bottom: 30px;
	padding: 20px;
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
}

#entry hr {
    background-color: transparent;
    border: none;
    border-top: 2px dashed #eee;
    margin: 30px 0;
}

#entry div {
	font-size: 18px;
	line-height: 1.5em;	
}

p.wp-caption-text {
	font-size: 16px !important;
	font-style: italic;
}

code {
	background: #fafafa;
	border: 1px solid #eee;
	display: inline-block;
	font-family: 'Courier New', 'Courier', 'Lucida Sans Typewriter', 'Lucida Typewriter', 'monospace';
	font-size: 16px;
	font-weight: bold;
	padding: 10px;
}

/**************************************
s02 images
**************************************/

img {
	height: auto;
	max-width: 100%;
}

#content img {
	margin-bottom: 20px;
}

img.alignleft { 
	margin-right: 20px;
}

img.alignright {
	margin-left: 20px;
}

.wp-caption {
	text-align: center;
}

.wp-caption img {
	margin-bottom: 5px;
}


/**************************************
s03 shortcodes
**************************************/

.message {
	border-width: 1px;
	border-style: solid;
	float: left;
	margin-bottom: 30px;
	padding: 20px;
	width: 100%;
}

.message-general {
	background-color: #F0F4FD;
	border-color: #D4DAE6;
}

.message-success {
	background-color: #F0FDF2;
	border-color: #D4E6D4;
}

.alert {
	display: block;
	margin-bottom: 30px;
	padding: 20px;
	background-color: #FBEEEE;
	border: 1px solid #F1CACA;
	
}

.divider {
	background-color: transparent;
	border-top: 2px dashed #eee;
	clear: both;
	margin-top: 30px;
	margin-bottom: 30px;
	height: 1px;
	width: 100%;
}

.sdm-btn {
	margin-bottom: 20px;
}

.sdm-btn a {
	background-color: #0060a0;
	padding: 10px 20px !important;
    color: #fff !important;
    font-weight: 300;
    display: inline-block;
	-webkit-transition: background-color 500ms ease-in-out 0ms;
    -moz-transition: background-color 500ms ease-in-out 0ms;
    -o-transition: background-color 500ms ease-in-out 0ms;
    transition: background-color 500ms ease-in-out 0ms;
}

.sdm-btn a:hover {
	background-color: #E29815;
}

.spacer {
	display: none;
}

/**************************************
s04 lists
**************************************/

#entry ol,
#entry ul {
    list-style-position: outside;
	margin-bottom: 30px;
    margin-left: 30px;	
}

#entry ol li,
#entry ul li {
    font-size: 16px;
    line-height: 1.5em;
    padding-left: 20px;
}

#entry ol li {
    list-style-type: decimal-leading-zero;
}

#entry ul li {
	list-style-type: circle;
}

#entry li.icon-ok {
	background-image: url('/wp-content/themes/sdmsoftware/img/icons/dark-green-check-mark.svg');
	background-repeat: no-repeat;
	background-position: 0 2px;
	background-size: 36px;
	list-style-type: none !important;
	margin-bottom: 10px;
	padding-left: 30px;
}

/**************************************
s05 design elements
**************************************/

.alignleft {
	float: left;
	margin-right: 20px;
}

.alignright {
	float: right;
	margin-left: 20px;
}

table {
	margin-bottom: 30px;
}

/**************************************
s06 grid
**************************************/

div[class*="col"] {
	box-sizing: border-box;
	float: left;
	min-height: 1px;
}

.col1 { width: 8.33%; }
.col2 { width: 16.66%; }
.col3 { width: 25%; }
.col4 { width: 33.33%; }
.col5 { width: 41.66%; }
.col6 { width: 50%; }
.col7 { width: 58.33%; }
.col8 { width: 66.66%; }
.col9 {	width: 75%; }
.col10 { width: 83.33%; }
.col11 { width: 91.66%; }
.col12 { width: 100%; }

/**************************************
s10 header
**************************************/


#header {
	background-color: #fff;
	background-color: rgba(255,255,255,0.9);
	/* height: 300px; */
	height: 220px;
	position: relative;
	z-index: 2;
}


/**************************************
s11 header - logo
**************************************/


#logo {
	float: left;
	height: 130px;
	margin-bottom: 15px;
	margin-top: 15px;
	width: 100%;
	text-align: center;
}

#logo a {
	display: inline-block;
}

#logo img {
	display: block;
	margin: 0 auto;
	/* max-width: 380px; */
}

#logo img.sdm-logo { }

#logo img.gpo-logo {
	margin-top: 20px;
}


/**************************************
s12 header - nav menu (desktop)
**************************************/


#nav {
	float: left;
	text-align: center;
	width: 100%;
}

#nav .main_menu { }

#main_menu {
	
}

#main_menu li { }

#main_menu a {
	-webkit-transition: color 500ms ease-in-out 0ms;
	-moz-transition: color 500ms ease-in-out 0ms;
	-o-transition: color 500ms ease-in-out 0ms;
	transition: color 500ms ease-in-out 0ms;
}


.sdm-main-menu #main_menu a:hover {
	color: #1378cc;
}

.gpo-main-menu #main_menu a:hover {
	color: #BADA55;
}

#main_menu > li { 
	display: inline-block; 
	letter-spacing: 1px;
	margin-right: 30px;
}

#main_menu > li:last-of-type {
	margin-right: 0;
}

#main_menu > li > a { 
	color: #888;
	display: block;
	font-size: 24px; 
	font-weight: 600;
	line-height: 60px;
	text-decoration: none;
	text-transform: lowercase; 
}


#main_menu > li#menu-item-13594 > a {
	color: #BADA55;
	-webkit-transition: color 500ms ease-in-out 0ms;
    -moz-transition: color 500ms ease-in-out 0ms;
    -o-transition: color 500ms ease-in-out 0ms;
    transition: color 500ms ease-in-out 0ms;
}

#menu-item-13594 a:hover {
	color: #a29dcc !important;
}

#main_menu ul.sub-menu {
	display: none;
	opacity: 0;
	margin-left: -10px;
	min-width: 220px;
	position: absolute;
	-webkit-transition: all 250ms ease-in-out 0ms;
	-moz-transition: all 250ms ease-in-out 0ms;
	-o-transition: all 250ms ease-in-out 0ms;
	transition: all 250ms ease-in-out 0ms;
	z-index: 11;
}

#main_menu li:hover > ul.sub-menu {
	display: block;
	opacity: 1;
}

#main_menu ul.sub-menu li a {
	background-color: rgba(255,255,255,0.9);	
	color: #777;
	display: block;
	font-weight: bold;
	padding: 10px;
	text-align: left;
	-webkit-transition: all 250ms ease-in-out 0ms;
    -moz-transition: all 250ms ease-in-out 0ms;
    -o-transition: all 250ms ease-in-out 0ms;
    transition: all 250ms ease-in-out 0ms;
}

#main_menu ul.sub-menu li a:hover {
	background-color: #1378cc;
	color: #fff;
}

#menu_cart span {
	color: #fff;
	background-color: red;
	border-radius: 26px;
	font-size: 18px;
	width: 25px;
	height: 25px;
	display: inline-block;
	float: right;
	line-height: 24px;
	margin-left: 10px;
	margin-top: 18px;
}


/**************************************
s13 header - nav menu (mobile)
**************************************/



/**************************************
s20 home
**************************************/


#home_about h2,
#home_events h2,
#home_gpak h2,
#home_blog h2,
#home_products h2,
#home_more h2 {
	font-size: 34px;
	font-weight: 600;
	letter-spacing: 2px;
	margin-bottom: 50px;
	text-align: center;
	text-transform: uppercase;
}

#home_about h2,
#home_events h2 {
	color: #535353;
}


.home #content {
	padding-bottom: 0 !important;
}

@media only screen and (min-width: 1400px) {


.home #content  { 
	padding-top: 0;
	padding-left: 0; 
	padding-right: 0; }
}




/**************************************
s21 home - slideshow
**************************************/


#showcase {
	position: relative;
	overflow: hidden;
	min-height: 400px;
	z-index: 1;
}

#showcase .slide {
	background-color: #ccc;
	background-image: url('/wp-content/themes/sdmsoftware/img/temp-slide.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0;
	padding: 100px 200px 100px;
	position: absolute;
	top: 0;
	min-height: 400px;
	-webkit-transition: opacity 500ms ease-in-out 0ms;
    -moz-transition: opacity 500ms ease-in-out 0ms;
    -o-transition: opacity 500ms ease-in-out 0ms;
    transition: opacity 500ms ease-in-out 0ms;
}

#showcase .slide-active,
#showcase .next-slide {
	opacity: 1;
}

#showcase .slide-active {
	z-index: 10 !important;
}

#showcase .slide-1 { z-index: 9; }
#showcase .slide-2 { z-index: 8; }
#showcase .slide-3 { z-index: 7; }
#showcase .slide-4 { z-index: 6; }
#showcase .slide-5 { z-index: 5; }
#showcase .slide-6 { z-index: 4; }
#showcase .slide-7 { z-index: 3; }
#showcase .slide-8 { z-index: 1; }

#showcase .slide-heading,
#showcase .slide-text {
	display: block; }

#showcase .slide-text-dark .slide-heading,
#showcase .slide-text-dark .slide-text {
	color: #000;
}

#showcase .slide-text-light .slide-heading,
#showcase .slide-text-light .slide-text {
	color: #fff;
}

#showcase .slide-align-right .slide-heading,
#showcase .slide-align-right .slide-text,
#showcase .slide-align-right .slide-btns {
	text-align: right;
}

#showcase .slide-align-center .slide-heading,
#showcase .slide-align-center .slide-text,
#showcase .slide-align-center .slide-btns {
	text-align: center;
}

#showcase .slide-heading {
	font-size: 38px;
	font-weight: 600;
	margin-bottom: 20px;
	text-transform: uppercase;
}

#showcase .slide-text {
	font-size: 22px;
	font-weight: 300;
	line-height: 1.5em;
	margin-bottom: 20px;
}

#showcase .slide-btns { }

#showcase .slide-btns > a {
	background-color: rgba(255,255,255,0.8);
	border-width: 1px;
	border-style: solid;
	display: inline-block;
	font-size: 22px;
	font-weight: 300;
	letter-spacing: 1px;
	padding: 15px; 
	text-align: center; 
	text-decoration: none;
	text-transform: uppercase; 
	-webkit-transition: all 500ms ease-in-out 0ms;
	-moz-transition: all 500ms ease-in-out 0ms;
	-o-transition: all 500ms ease-in-out 0ms;
	transition: all 500ms ease-in-out 0ms;
}

#showcase .slide-btns > a:first-of-type {
	color: #E29815;
	border-color: #E29815;
	margin-right: 20px;
}

#showcase .slide-btns > a:first-of-type:hover {
	background-color: #E29815;
	color: #fff;
}

#showcase .slide-btns > a:last-of-type {
	color: #1378cc;
	border-color: #1378cc;
}

#showcase .slide-btns > a:last-of-type:hover {
	background-color: #1378cc;
	color: #fff;	
}

#slide_nav {
	position: absolute;
    bottom: 30px;
    height: 15px;
    z-index: 10;
    width: 100%;
    text-align: center; 
}

#slide_nav .switch-slide {
    border-radius: 15px;
    width: 25px;
    height: 25px;
    position: relative;
    margin-right: 10px;
    display: inline-block;
    border: 4px solid #fff;
    padding: 4px;
}

#slide_nav .switch-slide span {
	background: transparent;
    width: 9px;
    height: 9px;
    position: relative;
    display: block;
    border-radius: 10px;
	-webkit-transition: background 300ms ease-in-out 0ms;
    -moz-transition: background 300ms ease-in-out 0ms;
    -o-transition: background 300ms ease-in-out 0ms;
    transition: background 300ms ease-in-out 0ms;
}

#slide_nav .switch-slide-active span {
	background: #fff;
}

#slide_nav .switch-slide:not(.switch-slide-active):hover span {
	background: rgba( 255, 255, 255, 0.5 );
}

#slide_nav .switch-slide:last-of-type {
	margin-right: 0;
}

#slide_progress {
	display: none;
	background-color: rgba(255,255,255,0.5);
	height: 4px;
	width: 100%;
	position: absolute;
	bottom: 0;
	z-index: 9;
}

#slide_progress .slide-progress-bar {
	background-color: #fff;
	height: 100%;
}

/**************************************
s22 home - about
**************************************/


#home_about {
	background-color: #f5f5f5;
	background-image: url('/wp-content/uploads/2016/03/aboug-bg.png');
	background-position: left center;
	background-repeat: no-repeat;
}

#home_about p {
	color: #777;
	font-size: 21px;
	font-weight: 300;
	padding-left: 30px;
}

#home_about .about-desc {
	float: left;
	width: 820px;
}

#home_about .about-btns {
	float: right;
	margin-left: 50px;
	width: 330px;
}

#home_about .about-btns a {
	background-color: #fff;
	background-color: rgba(255,255,255,0.8);
	border-width: 1px;
	border-style: solid;
	display: block;
	font-size: 22px;
	font-weight: 300;
	letter-spacing: 1px;
    padding: 15px;
    text-align: center;
	text-transform: uppercase;
	-webkit-transition: all 500ms ease-in-out 0ms;
	-moz-transition: all 500ms ease-in-out 0ms;
	-o-transition: all 500ms ease-in-out 0ms;
	transition: all 500ms ease-in-out 0ms;	
}

#home_about .about-btns a:first-of-type {
	border-color: #E29815;
	color: #E29815;
	margin: 15px 0;
}

#home_about .about-btns a:first-of-type:hover {
	background-color: #E29815;
	color: #fff;
}

#home_about .about-btns a:last-of-type {
	border-color: #1378cc;
	color: #1378cc;
}

#home_about .about-btns a:last-of-type:hover {
	background-color: #1378cc;
	color: #fff;
}


/**************************************
s23 home - upcoming events
**************************************/


#home_events {
		
}

#home_events .event {
	float: left;
	margin-right: 2%;
	width: 49%;
	margin-bottom: 30px;
}

#home_events .event:nth-of-type(2n) {
	margin-right: 0;
}

#home_events .event .event-thumb {
	float: left;
	margin-right: 15px;
}

#home_events .event h3 {
	margin-bottom: 15px;
}

#home_events .event h3 a {
	color: #777;
	font-size: 20px;
	font-weight: 600;
	-webkit-transition: color 500ms ease-in-out 0ms;
    -moz-transition: color 500ms ease-in-out 0ms;
    -o-transition: color 500ms ease-in-out 0ms;
    transition: color 500ms ease-in-out 0ms;
}

#home_events .event h3 a:hover {
	color: #1378cc;
}

#home_events .event p {
	color: #777;
	font-size: 16px;
	margin-bottom: 15px;
}

#home_events a.event-link {
	border-bottom: 1px solid #1378cc;
	color: #1378cc;
	display: inline-block;
	padding-bottom: 5px;
	-webkit-transition: all 500ms ease-in-out 0ms;
    -moz-transition: all 500ms ease-in-out 0ms;
    -o-transition: all 500ms ease-in-out 0ms;
    transition: all 500ms ease-in-out 0ms;
}

#home_events a.event-link:hover {
	border-bottom-color: #E29815;
	color: #E29815;
}



/**************************************
s24 home - group policy software
**************************************/


#home_gpak {
	background-image: url('https://sdmnew.wpengine.com/wp-content/uploads/2016/03/group-policy-bg.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

#home_gpak.contain {
	padding: 0 !important;
}

#home_gpak_inner {
	background-color: rgba(125, 85, 15, 0.7);
	padding: 50px 100px;
	float: left;
	width: 100%;
}

#home_gpak h2 {
	color: #fff;
	text-shadow: 1px 0px 1px rgba(0,0,0,0.5);
}

#home_gpak .gp-desc {
	float: left;
	width: 670px;
}

#home_gpak .gp-desc p {
	color: #fff;
	font-size: 22px;
	font-weight: 300;
	text-shadow: 1px 0px 1px rgba(0,0,0,0.5);
}

#home_gpak .gp-info {
	background-color: #fff;
	background-color: rgba(255,255,255,0.87);
	box-sizing: border-box;
	float: left;
	margin-left: 50px;
	padding: 30px 50px;
	width: 480px;
}

#home_gpak .gp-info h3 {
	color: #555;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 15px;
	text-align: center;
	text-transform: uppercase;
}

#home_gpak .gp-info p {
	font-size: 15px;
	margin-bottom: 15px;
}

#home_gpak .gp-info .gp-links a {
	border-bottom-style: solid;
	border-bottom-width: 1px;
	display: inline-block;
	padding-bottom: 5px;
	text-align: center;
	width: 49%;
}

#home_gpak .gp-info .gp-links a:first-of-type {
	border-bottom-color: #E29815;
	color: #E29815;
}

#home_gpak .gp-info .gp-links a:last-of-type {
	border-bottom-color: #1378cc;
	color: #1378cc;
}


/**************************************
s25 home - newsletter
**************************************/


#home_newsletter {
	background-color: #1378cc;
}

#home_newsletter h3,
#home_newsletter h4 {
	color: #fff;
	text-align: center;
	margin-bottom: 15px;
}

#home_newsletter h3 {
	font-size: 36px;
	font-weight: 600;
}

#home_newsletter h4 {
	font-size: 34px;
	font-weight: 300;
}

#home_newsletter .form {
	text-align: center;
}

#home_newsletter .form input {
	border: none;
	box-sizing: border-box;
	display: inline-block;
}

#home_newsletter .form input[type="text"] {
    font-size: 18px;
    font-weight: 300;
	margin-right: 15px;
    padding: 10px;
    width: 250px;
}

#home_newsletter .form input[type="submit"] {
	background-color: #E29815;
	color: #fff;
	cursor: pointer;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 2px;
	padding: 10px 30px;
	text-transform: uppercase;
}


/**************************************
s26 home - gpo guy
**************************************/


#home_gpo {
	background-image: url(' https://sdmnew.wpengine.com//wp-content/uploads/2016/03/gpo-guy-bg.jpg');
	background-repeat: repeat;
}

#home_gpo h2,
#home_gpo h3 {
	color: #fff;	
	letter-spacing: 2px;
	text-align: center;	
}

#home_gpo h2 {
	font-size: 34px;
	font-weight: 600;
	margin-bottom: 15px;
}

#home_gpo h3 {
	font-size: 24px;
	font-style: italic;
	font-weight: 300;
	margin-bottom: 50px;
}

#home_gpo .gpo-desc,
#home_gpo .gpo-icon,
#home_gpo .gpo-links {
	float: left;
}

#home_gpo .gpo-desc {
	width: 600px;
}

#home_gpo .gpo-desc p {
	color: #fff;
	font-size: 23px;
	font-weight: 300;
	margin-bottom: 30px;
}

#home_gpo .gpo-desc a.gpo-btn {
	display: inline-block;
	color: #bada55;
	font-size: 24px;
	border-bottom: 1px solid #bada55;
	padding-bottom: 5px;
	-webkit-transition: all 500ms ease-in-out 0ms;
    -moz-transition: all 500ms ease-in-out 0ms;
    -o-transition: all 500ms ease-in-out 0ms;
    transition: all 500ms ease-in-out 0ms;
}

#home_gpo .gpo-desc a.gpo-btn:hover {
	border-bottom-color: #a29dcc;
	color: #a29dcc;
}

#home_gpo .gpo-icon {
	width: 250px;
}

#home_gpo .gpo-icon img {
	display: block;
	max-width: 150px;
	margin: 30px auto 0;
}

#home_gpo .gpo-links {
	padding-top: 8px;
	width: 300px;
}

#home_gpo .gpo-links span {
	display: block;
	margin-bottom: 17px;
}

#home_gpo .gpo-links span a {
	color: #fff;
	font-size: 18px;
	font-weight: 300;
	-webkit-transition: all 500ms ease-in-out 0ms;
    -moz-transition: all 500ms ease-in-out 0ms;
    -o-transition: all 500ms ease-in-out 0ms;
    transition: all 500ms ease-in-out 0ms;
}

#home_gpo .gpo-links span a:hover {
	color: #BADA55;
}


/**************************************
s27 home - blog + products
**************************************/


#home_more {
	
}

#home_more h2 {
	color: #777;
}

#home_blog,
#home_products {
	float: left;
	width: 49%;
}

#home_blog {
	margin-right: 2%;
}

#home_more .home-product,
#home_more .home-post {
	color: #777;
	margin-bottom: 15px;
	text-align: center;
}

#home_more h4 {
	margin-bottom: 5px;
}

#home_more h4 a {
	color: #777;
	font-size: 18px;
	font-weight: 600;
	-webkit-transition: all 500ms ease-in-out 0ms;
    -moz-transition: all 500ms ease-in-out 0ms;
    -o-transition: all 500ms ease-in-out 0ms;
    transition: all 500ms ease-in-out 0ms;
}

#home_more h4 a:hover {
	color: #1378cc;
}

#home_more p.meta {
	font-style: italic;
}

#home_more .more-btn {
	margin-top: 30px;
	text-align: center;
}

#home_more .more-btn a {
	border-bottom: 1px solid #1378cc;
	color: #1378cc;
	display: inline-block;
	font-size: 24px;
	font-weight: 600;
	padding-bottom: 5px;
	-webkit-transition: all 500ms ease-in-out 0ms;
    -moz-transition: all 500ms ease-in-out 0ms;
    -o-transition: all 500ms ease-in-out 0ms;
    transition: all 500ms ease-in-out 0ms;
}

#home_more .more-btn a:hover {
	border-bottom-color: #E29815;
	color: #E29815;
}



/**************************************
s30 page
**************************************/


#page_title {
	background-color: #eee;
	clear: both;
	float: left;
	padding: 50px 0;
	width: 100%;
}

#page_title h1 {
    color: #BFBFBF;
    font-size: 44px;
    font-weight: 300;	
    padding: 0 30px;
    text-align: center;
}

#content {
	background: #fff;
}



/**************************************
s34 page - gpo freeware download
**************************************/

#freeware_download {
    margin: 0 0 0 10px;
}

#freeware_download li {
    padding: 15px;
    background: #fafafa;
    list-style-type: none !important;
    margin-bottom: 20px;
}

/**************************************
s35 page - contact
**************************************/


.gform_body ul {
	margin-left: 0 !important;
	padding-left: 0 !important;
}

.gform_heading {
	padding-bottom: 30px;
	border-bottom: 2px dashed #eee;
	margin-bottom: 30px; 
}

.gform_fields { 
	margin: 0 !important;
	padding: 0 !important;
}

.gform_fields li {
	list-style-type: none !important;
	padding-left: 0 !important;
	margin-bottom: 30px;
}

.gform_fields input:not([type=checkbox]):not([type=radio]),
.gform_fields select,
.gform_fields textarea {
	border: 1px solid #ddd;
	border-radius: 0;
	box-sizing: border-box;
	width: 100%;
	padding: 10px;
	background: #f9f9f9;
	font-size: 18px;
}

.gform_fields textarea {
	min-height: 150px;
}

.gform_fields label {
	color: #444 !important;
	display: block;
	font-size: 18px;
	margin-bottom: 10px;
	font-weight: bold;
}


.gform_fields select {
	display: block !important;
	height: 44px;
	padding: 0 5px;
}

#gform_fields_2 #input_2_8 option:last-child {
	border-bottom: 1px solid #aaa !important;
}


input[type="text"]:focus, 
input[type="email"]:focus, 
input[type="tel"]:focus, 
textarea:focus {
	border: 1px solid #ddd;
	border-bottom: 1px solid #ddd !important;
}

.gform_fields input[type="checkbox"] {
    display: inline-block;
    float: left;
    width: 25px;
    height:18px;
}

.gf_right_half {
	margin-right: 2%;
}

.gf_right_half {
	width: 49%;
}

.validation_message,
.validation_error {
	color: red;
}

.gform_footer .gform_button {
	display: block;
    width: 100%;
    border: none;
    background-color: #1378cc;
    color: #fff;
    text-transform: lowercase;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    margin-bottom: 30px;
}

/**************************************
s37 page - blog index
**************************************/

#posts {
	padding-right: 50px;
}

#posts .post-item {
	border-bottom: 2px dashed #eee;
	float: left;
	margin-bottom: 30px;
	padding-bottom: 30px;
	width: 100%;	
}

#posts .post-item:last-of-type {
	border-bottom: none;
	padding-bottom: 0;
}

#posts h2.post-title {	
	font-weight: 600;
	margin-bottom: 10px;
}

#posts h2.post-title a {
	color: #444;
	font-size: 24px;
	padding-left: 10px;
}

#posts .post-meta {
	border-left: 2px solid #eee;
	float: left;
	margin-bottom: 10px;
    padding-top: 10px;
    padding-bottom: 10px;	
    padding-left: 10px;
	width: 100%;
}

#posts .post-meta > div {
    background-position: left center;
    background-repeat: no-repeat;
	background-size: 16px;
    float: left;
	font-size: 14px;	
	margin-right: 10px;
	padding: 2px 0 2px 26px;
}

#posts .post-meta .post-cats {
    background-image: url('/wp-content/themes/sdmsoftware/img/icons/list-icon.png');
    background-position: 10px 5px;
	float: left;	
	margin-right: 0;	
    margin-left: -10px;
    padding-bottom: 10px;
    padding-left: 39px;
	width: 100%;	
}

#posts .post-cats a {
	background-color: #1378cc;
	color: #fff;
	float: left;
	font-size: 14px;
	margin-right: 5px;
	margin-bottom: 10px;
	padding: 5px 10px;
	-webkit-transition: background-color 500ms ease-in-out 0ms;
    -moz-transition: background-color 500ms ease-in-out 0ms;
    -o-transition: background-color 500ms ease-in-out 0ms;
    transition: background-color 500ms ease-in-out 0ms;
}

#posts .post-cats a:hover {
	background-color: #E29815;
}

#posts .post-author {
    background-image: url('/wp-content/themes/sdmsoftware/img/icons/pencil-icon.png');
}

#posts .post-time {
	background-image: url('/wp-content/themes/sdmsoftware/img/icons/calendar-icon.png');
}

#posts .post-comments {
	background-image: url('/wp-content/themes/sdmsoftware/img/icons/comment-icon.png');
}

#posts .post-excerpt {
	float: left;
	padding-left: 10px;
	width: 100%;
}

.posts-nav {
	float: left;
	width: 100%;
	margin-bottom: 50px;
}

.posts-nav .nav-next {
	float: left;
}

.posts-nav .nav-previous {
	float: right;
}

.posts-nav a {
	border-bottom: 1px solid #1378cc;
	color: #1378cc;
	font-size: 24px;
	text-transform: lowercase;
	-webkit-transition: all 500ms ease-in-out 0ms;
    -moz-transition: all 500ms ease-in-out 0ms;
    -o-transition: all 500ms ease-in-out 0ms;
    transition: all 500ms ease-in-out 0ms;
}

.posts-nav a:hover {
	color: #E29815;
	border-bottom-color: #E29815;
}



/**************************************
s38 page - post single
**************************************/


#post_meta {
	background-color: #1378cc;
	clear: both;
	float: left;
	padding: 30px 0;
	text-align: center;
	width: 100%;
}

#post_meta span {
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 24px;
	color: #fff;
	display: inline-block;
    font-size: 18px;
    font-weight: 300;	
	margin-right: 10px; 
    padding-top: 3px;
    padding-bottom: 3px;
	padding-left: 34px;
}

#post_meta .post-author {
	background-image: url('/wp-content/themes/sdmsoftware/img/icons/pencil-icon-white.png');
}

#post_meta .post-time {
	background-image: url('/wp-content/themes/sdmsoftware/img/icons/calendar-icon-white.png');
}

#post_meta .post-comments {
	background-image: url('/wp-content/themes/sdmsoftware/img/icons/comment-icon-white.png');
}

#post_nav {
	background-color: #eee;
	float: left;
    padding: 20px 50px;
    width: 100%;
}

#post_nav a {
	color: #1378cc;
	font-size: 14px;
}

#post_nav .next-post {
	float: left;
}
	
#post_nav .prev-post {
	float: right;
	text-align: right;
}

.et_monarch .et_social_networks ul.et_social_icons_container {
	margin: 30px 0 !important;
}



/**************************************
s39 page - forum
**************************************/

#entry #bbpress-forums ul {
	margin-left:0;
}

#entry #bbpress-forums ol li, #entry #bbpress-forums ul li {
	padding-left:0;
	list-style: none;
}

#entry #bbpress-forums li.bbp-header {
  	padding-left: 10px;
}

#entry #bbpress-forums a {
	border-bottom:0;
	text-decoration: none;
}

.wp-editor-container textarea.wp-editor-area,
#bbpress-forums div.bbp-the-content-wrapper textarea.bbp-the-content {
  	border: 1px solid #999;
}


#subscription-toggle {
	float: right;
}

#subscription-toggle a {
	background: #eee;
	display: inline-block;
	padding: 5px 10px;
	margin-bottom: 15px;
}

#wp-bbp_topic_content-wrap #bbp_topic_title {
	box-sizing: border-box;
	width: 100%;
}

#wp-bbp_topic_content-wrap textarea {
	min-height: 150px;
	font-size: 18px;
}

.bbp-submit-wrapper {
	float: left !important;
}

#bbp_topic_submit {
	background-color: #1378cc;
	border: none;
	color: #fff;
	cursor: pointer;
	font-weight: 300;
	text-transform: uppercase;
	float: left;
	min-width: 200px;
	text-align: center;
}

/**************************************
s40 page - products
**************************************/


.page-id-262 #entry .row {
	border-bottom: 2px dashed #eee;
	padding-bottom: 30px;
	margin-bottom: 30px;
}


/**************************************
s41 page - 404
**************************************/

#fourohfour {
	text-align: center;
}

/**************************************
s42 page - FAQ
**************************************/

#gpo_faq ol li:not(:last-of-type) {
	margin-bottom: 5px;
	border-bottom: 1px solid #eee;
	padding-bottom: 5px;
}

#gpo_faq br {
	display: none;
}

#gpo_faq h4 {
	color: #1378cc;
}

/**************************************
s43 page - search archive
**************************************/

span.search-instance {
	font-weight: bold;
	background: #FFFFDF;
	padding: 2px;
	display: inline-block;
	text-transform: capitalize;
}

/**************************************
s44 blog comments
**************************************/

#comments {
	float: left;
	width: 100%;
}

#comments ol { 
	margin-left: 0 ;
}

#comments ol li {
	list-style-type: none;
}	

#comments .comment-body {
	background: #fafafa;
	padding: 30px;
	margin-bottom: 20px;
}

.comment-author {
	float: left;
	width: 100%;
}

.comment-author img {
	float: left;
	margin-bottom: 0;
	margin-right: 20px;
}

.comment-author cite, 
.comment-author span {
	float: left;
	margin-top: 10px;
	margin-right: 5px;
}

.comment-author cite {
	font-weight: bold;
}

#comments .comment-form-comment {
	margin-bottom: 0;
}

#comments #submit {
	border: none;
	background: #1378cc;
	color: #fff;
	font-weight: bold;
	padding: 10px;
	text-transform: uppercase;
}

#comments .comment-meta a {
	font-size: 14px;
	color: #444;
	text-style: italic;
	margin-bottom: 20px;
}

#comments .comment-body p {
	margin-bottom: 15px;
}

#comments #comment {
	min-height: 150px;
}

/**************************************
s45 page - whitepaper + newsletter CPT single
**************************************/

.whitepaper-btn a {
	background: #1378cc;
	border: none;
	box-sizing: border-box;
	color: #fff !important;
	cursor: pointer;
	float: left;
	text-transform: lowercase;
	-webkit-transition: background-color 500ms ease-in-out 0ms;
	-moz-transition: background-color 500ms ease-in-out 0ms;
	-o-transition: background-color 500ms ease-in-out 0ms;
	transition: background-color 500ms ease-in-out 0ms;
	display: block;
	width: 100%;
	text-align: center;
	padding: 10px !important;
	font-weight: 300;
	font-size: 24px; 
}

.whitepaper-btn a:hover {
	background-color: #E29815;
}

/**************************************
s46 page - freeware reg form
**************************************/

#gform_8 .gform_heading {
	padding-bottom: 30px;
	border-bottom: 2px dashed #eee;
	margin-bottom: 30px; 
}

#gform_8 #gform_fields_2 { 
	margin: 0 !important;
	padding: 0 !important;
}

#gform_fields_8 li {
	list-style-type: none !important;
	padding-left: 0 !important;
	margin-bottom: 30px;
}

#gform_fields_8 input:not([type=checkbox]):not([type=radio]),
#gform_fields_8 select,
#gform_fields_8 textarea {
	border: 1px solid #ddd;
	border-radius: 0;
	box-sizing: border-box;
	width: 100%;
	padding: 10px;
}

#gform_fields_8 textarea {
	min-height: 150px;
}

#gform_fields_8 label {
	color: #444 !important;
	display: block;
	font-size: 18px;
	margin-bottom: 10px;
	font-weight: bold;
}

#gform_fields_8 select {
	display: block !important;
}

#gform_fields_8 #field_8_8 input {
	margin-bottom: 0px !important;
}

#gform_fields_8 #field_8_8 .gfield_label {
	margin-bottom: 30px;
}

#gform_fields_8 #field_8_8 label:not(.gfield_label) {
	margin-bottom: 30px;
	font-weight: 400 !important;
	font-style: italic;
}

#gform_submit_button_3,
#gform_submit_button_2,
#gform_submit_button_1,
#gform_submit_button_8 {
    display: block;
    width: 100%;
    border: none;
    background-color: #1378cc;
    color: #fff;
    text-transform: lowercase;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    margin-bottom: 30px;
}


/**************************************
s47 page - Trial Version Registration Form
**************************************/

label {
  color: #333 !important;}



#gform_fields_1 input:not([type=checkbox]):not([type=radio]),
#gform_fields_3 input:not([type=checkbox]):not([type=radio]) {
  border: 1px solid #ccc !important;
  padding: 5px 10px;
  background: #f9f9f9 !important;
}

#gform_fields_1,
#gform_fields_3 {
	margin: 0 0 20px 0 !important;
	padding: 0;}

#gform_fields_1 li,
#gform_fields_3 li {
	list-style-type: none !important;
	margin-bottom: 15px;
	padding-left: 0 !important;}

#gform_fields_1 li ul#input_1_15 li,
#gform_fields_3 li ul#input_3_15 li {
	margin-bottom: 0;
}

#gform_1 select,
#gform_3 select {
	  display: block !important;
	  background-color: #f9f9f9;
	  border: 1px solid #ccc;
	  border-radius: 0;
	  height: 34px;
	  padding: 5px;
	  width: 100%;
	  font-size:14px !important;
}

input:focus:not([type]):not([readonly]), input[type="text"]:focus:not([readonly]), input[type="password"]:focus:not([readonly]), input[type="email"]:focus:not([readonly]), input[type="url"]:focus:not([readonly]), input[type="time"]:focus:not([readonly]), input[type="date"]:focus:not([readonly]), input[type="datetime-local"]:focus:not([readonly]), input[type="tel"]:focus:not([readonly]), input[type="number"]:focus:not([readonly]), input[type="search"]:focus:not([readonly]), textarea.materialize-textarea:focus:not([readonly]) {
  
  box-shadow: none !important;
}

.gform_footer.top_label {
	margin-bottom: 50px;
}

/*#gform_submit_button_1 {
  font-size: 20px;
  font-weight: bold;
  width: 100%;
  padding: 10px 10px 7px;
  text-align: center;
  text-transform: uppercase;
}
*/
.ginput_container_address span {
	display: block;
	margin-bottom:20px;
	overflow: hidden;
}

.ginput_container_address span input:not([type=checkbox]):not([type=radio]),
.ginput_container_address span select {
	width:60% !important;
	float:left;
	margin-right: 10px;
}
#field_1_10.gfield.field_sublabel_below,
#field_3_10.gfield.field_sublabel_below {
	margin-top:30px;
	margin-bottom: 30px;
	overflow: hidden;
}


/**************************************
s48 page - Support
**************************************/

#support .support-statement {
	background-color: #fafafa;
	font-size: 20px;
    font-style: italic;
	padding: 20px;
	text-align: center;
}

#support .support-download {
	display: block;
	text-align: center;
	margin-bottom: 30px;
}

#support .support-download a {
    display: block;
    color: #fff;
    background: #1378cc;
    padding: 20px;
	font-size: 24px;
	font-weight: 600;
	text-align: center;
}

#support .support-hours {
	padding: 20px;
    background: #fafafa;
    text-align: center;
    font-weight: 600;
    font-size: 20px;
    color: #555;
}

#support .support-hours p {
	margin-bottom: 0;
}


/**************************************
s49 page - newsletter + freeware reg form
**************************************/

#choice_9_15_0,
#choice_10_15_0 {
    display: inline-block;
    float: left;
    width: inherit;
	margin-right: 20px;
}

#label_10_15_0,
#label_9_15_0 {
    display: inline-block;
    float: left;
}

#input_10_15 {
	margin-bottom: 0 !important;
}

#field_10_15,
#input_10_15,
#field_9_15 {
	width: 100%;
	float: left;
}

#field_10_20 {
	clear: both;
}


/**************************************
s50 gpo - home page
**************************************/

.page-id-12886 #content {
	padding: 0 !important;
}

#gpo_home h2 {
	color: #777;
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
}



/**************************************
s51 gpo - nav
**************************************/

.gpo-main-menu #main_menu #menu-item-13604 a {
	color: #1378cc !important;
}


/**************************************
s52 gpo - showcase
**************************************/


#gpo_showcase {

}

#gpo_showcase .slide {
	background-image: url('https://sdmnew.wpengine.com/wp-content/themes/sdmsoftware/img/temp-slide.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	margin-top: -300px;
	padding: 400px 200px 100px;
}

#gpo_showcase .slide-heading,
#gpo_showcase .slide-text {
	color: #fff;
	display: block;
}

#gpo_showcase .slide-heading {
	font-size: 38px;
	font-weight: 600;
	margin-bottom: 20px;
	text-transform: uppercase;
}

#gpo_showcase .slide-text {
	font-size: 22px;
	font-weight: 300;
	line-height: 1.5em;
	margin-bottom: 20px;
}

#gpo_showcase .slide-btns { }

#gpo_showcase .slide-btns > a {
	background-color: rgba(255,255,255,0.8);
	border-width: 1px;
	border-style: solid;
	display: inline-block;
	font-size: 22px;
	font-weight: 300;
	letter-spacing: 1px;
	padding: 15px; 
	text-align: center; 
	text-decoration: none;
	text-transform: uppercase; 
	-webkit-transition: all 500ms ease-in-out 0ms;
	-moz-transition: all 500ms ease-in-out 0ms;
	-o-transition: all 500ms ease-in-out 0ms;
	transition: all 500ms ease-in-out 0ms;
}

#gpo_showcase .slide-btns > a:first-of-type {
	color: #E29815;
	border-color: #E29815;
	margin-right: 20px;
}

#gpo_showcase .slide-btns > a:first-of-type:hover {
	background-color: #E29815;
	color: #fff;
}

#gpo_showcase .slide-btns > a:last-of-type {
	color: #1378cc;
	border-color: #1378cc;
}

#gpo_showcase .slide-btns > a:last-of-type:hover {
	background-color: #1378cc;
	color: #fff;	
}




/**************************************
s53 gpo - about
**************************************/

#gpo_about {
	background-color: #f5f5f5;
	background-image: url('/wp-content/themes/sdmsoftware/img/gpo-guy-icon-lg.png');
	background-position: left center;
	background-repeat: no-repeat;
}
#gpo_about p {
	color: #777;
	font-size: 21px;
	font-weight: 300;
	padding-left: 30px; 
}

/**************************************
s54 gpo - library
**************************************/

#gpo_library {
	background-color: #BADA55;
	background-image: url('/wp-content/themes/sdmsoftware/img/fabric-of-squares.png');
}

#gpo_library .col4 {
	padding: 20px;
	margin-bottom: 0;
}

#gpo_library h2 {
	color: #fff;
}

#gpo_library h3 {
	color: #fff;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

#gpo_library p {
	color: #fff !important;
	font-size: 19px;
	font-weight: 300;
	margin-bottom: 20px;
}

#gpo_library .gpo-library-btn a {
	color: #fff;
	background-color: #a29dcc;
	display: block;
	padding: 10px;
	text-align: center;
    font-size: 22px;
    font-weight: 300;
}

/**************************************
s55 gpo - freeware
**************************************/

#gpo_freeware {
	background-image: url('/wp-content/themes/sdmsoftware/img/gpo-freeware-bg.jpg');
}

#gpo_freeware .freeware-desc {
	float: left;
	width: 820px;
}

#gpo_freeware .freeware-desc p {
	color: #777;
    font-size: 21px;
    font-weight: 300;
    padding-left: 30px;
}

#gpo_freeware .freeware-items {
	float: right;
	margin-left: 50px;
	width: 330px;
}

#gpo_freeware .freeware-items li {
	margin-bottom: 10px;
}

#gpo_freeware .freeware-items li:first-of-type {
	font-weight: bold !important;
    font-size: 20px;
	color: #777;
    font-weight: 300;
	margin-bottom: 30px;
}

#gpo_freeware .freeware-items li:last-of-type {
	margin-bottom: 0;
	margin-top: 20px;
}

#gpo_freeware .freeware-items li a {
    font-size: 20px;
    font-weight: 300;
}

#gpo_freeware .freeware-items li:last-of-type a {
	font-weight: bold;
}

/**************************************
s56 gpo - forums
**************************************/

#gpo_forums {
	background-image: url('/wp-content/themes/sdmsoftware/img/gpo-guy-forum-bg.jpg');
    border-bottom: 2px solid #bada55;
	text-align: center;
}

#gpo_forums p {
    font-size: 27px;
    font-weight: 300;
    text-align: center;
	margin-bottom: 30px;
}

#gpo_forums .forums-btn a {
    color: #fff;
    background-color: #a29dcc;
    display: inline-block;
    padding: 10px 20px;
    text-align: center;
    font-size: 22px;
    font-weight: 300;
}

/**************************************
s60 woocommerce
**************************************/

nav.woocommerce-breadcrumb {
	display: none !important;
}

.woocommerce a.button {
	background-color: #1378cc !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 0 !important;
    font-weight: 400 !important;
    text-transform: lowercase;
}

/**************************************
s61 woocommerce - single product
**************************************/



.type-product .price .amount {
    font-weight: 600;
    font-size: 24px;
}

.type-product .quantity {
	display: block;
	margin-bottom: 30px !important;
}

.type-product .quantity::before {
	content: 'Quantity: ';
}

.type-product .single_add_to_cart_button {
    display: block !important;
    width: 100%;
	border-radius: none;
    font-size: 18px !important;
    background-color: #1378cc !important;
    text-transform: lowercase;
}


/**************************************
s62 woocommerce - cart page
**************************************/


/**************************************
s63 woocommerce - checkout page
**************************************/

.woocommerce-billing-fields {
	
}

.woocommerce-billing-fields input[type="text"],
.woocommerce-billing-fields input[type="tel"],
.woocommerce-billing-fields input[type="email"] {
	padding: 10px;
	font-size: 18px;
}

.woocommerce-billing-fields select {
	display: block !important;
}

.woocommerce-billing-fields #s2id_billing_country,
.woocommerce-billing-fields #s2id_billing_state {
	display: none !important; 
}

/**************************************
s70 sidebar
**************************************/

#sidebar > div {
	float: left;
	width: 100%;
}

#sidebar #searchform {
	margin-bottom: 30px; 
}

#sidebar h2.widgettitle {
	float: left;
	font-size: 18px;
	font-weight: 600;
	margin-top: 20px;
	margin-bottom: 20px;
	width: 100%;
}

#sidebar h2.widgettitle:first-of-type {
	margin-top: 0;
}

#sidebar a {
	color: #1378cc;
	-webkit-transition: all 500ms ease-in-out 0ms;
    -moz-transition: all 500ms ease-in-out 0ms;
    -o-transition: all 500ms ease-in-out 0ms;
    transition: all 500ms ease-in-out 0ms;
}

#sidebar a:hover {
	color: #E29815;
}


#sidebar p,
#sidebar li {
	font-size: 16px;
	line-height: 1.5em;
}

#sidebar li {
	margin-bottom: 10px;	
}

#sidebar li a {
	display: block;
	padding-bottom: 2px;
}

#sidebar .post-date {
	display: block;
	font-style: italic;
}

#sidebar .tagcloud a {
	display: inline-block;
	margin-bottom: 10px;
}

#sidebar #searchform {
	clear: both;
	float: left;
	width: 100%;
}

#sidebar #searchform label.screen-reader-text {
	display: none;
}

#sidebar #s {
    border: 1px solid #ddd;
    display: block;
    float: left;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 5px;
    margin-right: 10px;
    padding: 10px 5px;
    max-width:205px;	
}

#sidebar #searchsubmit {
    background: #1378cc;
    border: none;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;		
    display: block;
    float: left;	
    font-size: 18px;
    height: 43px;
    padding: 0;
    text-transform: lowercase;
    width: 110px;
	-webkit-transition: background-color 500ms ease-in-out 0ms;
    -moz-transition: background-color 500ms ease-in-out 0ms;
    -o-transition: background-color 500ms ease-in-out 0ms;
    transition: background-color 500ms ease-in-out 0ms;
}

#sidebar #searchsubmit:hover {
	background-color: #E29815;
}

.textwidget a img {
	margin-left: 0; 
}


/**************************************
s80 footer
**************************************/

#footer {
    background-color: #1378cc;
    float: left;
    min-height: 300px;
    width: 100%;
}

#footer .col4 {
	padding: 20px;
	text-align: center;
}

#footer h2 {
    color: #fff;
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 30px;
    letter-spacing: 2px;
	text-align: center;
}

/**************************************
s81 footer - social
**************************************/

#footer_social {
	margin-bottom: 30px;
}

#footer_social img {
	border: 1px solid #fff;
	display: inline-block;
    max-width: 42px;
    margin-right: 10px;
}

/**************************************
s82 footer - logo
**************************************/

#footer_logo {
	margin-top: 50px;
}

/**************************************
s83 footer - browse site
**************************************/


#footer_browse li {
	margin-bottom: 10px;
}

#footer_browse li a {
	color: #fff;
	font-size: 16px;
}

/**************************************
s84 footer - contact info
**************************************/

#contact_info p {
	color: #fff !important;
	font-size: 20px;
	line-height: 1.8em !important;
}

#contact_info p a {
	color: #fff !important;
	border-bottom: 1px dashed #fff;
	padding-bottom: 5px;
}

/**************************************
s90 responsive
**************************************/