/* CSS Document */
/*start of rpemery styles*/
body {
	font:90%/1.7 Verdana, Arial, Helvetica, sans-serif;
	margin:0;
	padding:0;
	background-color:#EDEDED;
    opacity:0;
}

/* ~~ Element/tag selectors ~~ */
ul,ol,dl {
/* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
padding:0;
margin:0
}

h1 {
	margin-top:0;
	/* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
padding-right:15px;
	padding-left:15px;
	/* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
font-size:140%;
	color:#511718;
	text-align:left;
	font-weight:700
}

h2 {
	color:#511718;
	text-align:left;
	padding-left:15px;
	font-size:130%
}

.articlelist {
	color:#000;
	text-align:left;
	padding-left:5px;
	font-size:115%;
	background-color: #6C3;
	width: 300px;
	margin-left: 10px;
	border: solid 1px #000;
}

h3 {
	margin-top:0;
	/* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
padding-right:15px;
	padding-left:15px;
	/* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
color:#666;
	text-align:left;
	font-size:130%;
	font-weight:700
}

h4,h5 {
margin-top:0;
color:#438011;
font-weight:700;
text-align:center;
padding-right:15px;
font-size:110%;
line-height:1.4
}
h7 {
	margin-top:0;
	color:#A61B12;
	font-weight:700;
	text-align:center;
	padding-right:15px;
	font-size:110%;
	line-height:1.4
}

h4 img {
padding-top:0;
padding-right:0;
padding-bottom:10px
}

h6 {
padding-right:15px;
padding-left:5px;
/* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
color:#FFF;
font-weight:700;
font-size:12px;
width:200px;
background-color:#006;
height:27px;
padding-top:5px
}

p {
margin-top:0;
/* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
padding-right:15px;
padding-left:15px;
/* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
text-align:justify
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
color:#006;
text-decoration:underline
/* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}

a:visited {
color:#6E6C64;
text-decoration:underline
}

a:hover,a:active,a:focus {
/* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
text-decoration:none
}

a img {
/* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
border:none
}
.blocktext {
	padding:10px 10px;
	margin: 0px 15px;
	font-style: italic;
}
.video {
border:1px solid #CCC;
padding:5px;
font:11px/1.4em Arial, sans-serif;
color:#006
}

.video-cen {
border:1px solid #CCC;
padding:5px;
font:11px/1.4em Arial, sans-serif;
color:#006;
margin-left:15px
}

.picture {
border:1px solid #CCC;
padding:15px;
font:11px/1.4em Arial, sans-serif;
color:#333
}

.picture img {
border:1px solid #CCC;
vertical-align:middle;
margin-bottom:3px
}

.right {
margin:.5em 0 .5em .8em;
float:right
}

.left {
margin:5px 10px 5px 15px;
float:left
}
.steps {
	background-color: #6C0;
	padding: 0px 5px;
	font-size: 125%;
	font-weight: bold;

}
.textInput {
    /* styles the text input elements with this class */
}
.shopinputyellow {
	font-size: medium;
	font-style: normal;
	color: #FFFFFF;
	text-align: center;
	background-color: #009900;
	font-weight: bold;
	width: 700px;
	height: 75px;
}

#submitBtn {
	background-color: #093;
	width:200px;
	color:#fff;
	font-weight: bolder;
}
#resetBtn {
	background-color: #C30;
	width:200px;
	color:#fff;
}
/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul,.content ol {
padding:0 15px 15px 40px
/* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
list-style:none;
/* this removes the list marker */
border-top:1px solid #666;
/* this creates the top border for the links - all others are placed using a bottom border on the LI */
margin-bottom:15px
/* this creates the space between the navigation on the content below */
}

ul.nav li {
border-bottom:1px solid #666
/* this creates the button separation */
}

ul.nav a,ul.nav a:visited {
/* grouping these selectors makes sure that your links retain their button look even after being visited */
padding:5px 5px 5px 15px;
display:block;
/* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
width:160px;
/*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
text-decoration:none;
background:#C6D580
}

ul.nav a:hover,ul.nav a:active,ul.nav a:focus {
/* this changes the background and text color for both mouse and keyboard navigators */
background:#ADB96E;
color:#FFF
}

/* ~~this fixed width container surrounds the other divs~~ */
.container {
max-width:1024px;
background:#FFF;
margin:0 auto;
position:relative;
/* the auto value on the sides, coupled with the width, centers the layout */
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
#header {
	max-width: 1024px;
	position:relative;
}
#header img {
    display:block;
    width:100%;
    height:auto;
}

#header .logo {display:block;}
#header .logo-mobile {display:none;}
#header .logo-mobile-small {display:none;}

#headertext {
	margin-left:0;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	padding:0 0 0px 0px;
	color: #025BAB;
	text-align: right;
	font-size: 14px;
	font-weight: 700;
    position:absolute; 
    right:47px;
}
.big-phone {
    font-size: larger;
    color: #FF6000 !important;
    text-decoration: none;
}
/* topnav styles*/
.topnavleft {
	margin-left:0;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	background-color:#025BAB;
	padding:5px;
	color: #FFF;
	font-weight: 600;
	font-size: 12px;
}
.topnavright {
	margin-left:0;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	background-color:#025BAB;
	padding:5px;
	color: #FFF;
	text-align: right;
}
#topnavt ul {
list-style-position:outside;
list-style-type:none;
text-align:left;
padding-top:5px;
padding-bottom:5px;
margin-left:5px
}

#topnavt li {
	font-size:12px;
	color:#FFF;
	display:inline;
	margin:5px;
	padding-right:300px;
	word-spacing: normal;
}

#topnavt a:link {
font-size:12px;
color:#FFF;
font-weight:700;
padding:5px 25px 5px 5px;
text-decoration:none
}

#topnavt a:visited {
font-size:12px;
color:#FFF;
font-weight:700;
padding:5px 25px 5px 5px;
text-decoration:none
}

#topnavt a:hover,#topnav a:active,#topnav a:focus {
font-size:12px;
color:#8E8ABE;
font-weight:700;
text-decoration:none
}
/* topnav styles*/
.topnav {
	margin-left:0;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	background-color:#025BAB;
	padding:5px;
	color: #FFF;
}

.topnav ul {
list-style-position:outside;
list-style-type:none;
text-align:left;
padding-top:5px;
padding-bottom:5px;
margin-left:5px
}

.topnav li {
	font-size:12px;
	font-weight:700;
	color:#365AA8;
	display:inline;
	margin:10px;
	padding-right:15px
}

.topnav a:link {
	font-size:12px;
	color:#FFF;
	font-weight:700;
	padding:5px 35px 5px 5px;
	text-decoration:none
}

.topnav a:visited {
font-size:12px;
color:#FFF;
font-weight:700;
padding:5px 25px 5px 5px;
text-decoration:none
}

.topnav a:hover,#topnav a:active,#topnav a:focus {
	font-size:12px;
	color:#FF8402;
	font-weight:700;
	text-decoration:none
}
/* ----- Icons ----- */
.tt-icon {
padding:4px 0 20px 55px;
display:inline-block;
font-size:13px;
line-height:1.5em;
}
.tt-icon-testimonial {
padding:4px 0 0px 55px;
display:inline-block;
font-size:13px;
line-height:1.5em;
}
.article-icon {
padding:4px 0 30px 60px;
font-size:14px;
line-height:1.5em;
}
.call-icon {
	padding:30px 0 50px 75px;
	display:inline-block;
	font-size:15px;
	line-height:1.7em;
	color: #2D59A2;
}

.sidebar .tt-icon {
	padding:8px 0 20px 55px;
	font-size:12px;
}

.tt-icon span {
	font-weight:bold;
}


/* Blog Styles */
.date-of-post {
	color: #666;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #999;
}

/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/
/* ~~ Sidebar 1 -Left Hand Nav ~~ */
.sidebar1 {
	width:240px;
	background-color:#FFF;
	padding:5px 0;
    position:absolute;
    left:0;
    top:0;
}

/* SpryAccordion.css - version 0.4 - Spry Pre-Release 1.6.1 */
/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
/* This is the selector for the main Accordion container. For our default style,
 * we draw borders on the left, right, and bottom. The top border of the Accordion
 * will be rendered by the first AccordionPanelTab which never moves.
 *
 * If you want to constrain the width of the Accordion widget, set a width on
 * the Accordion container. By default, our accordion expands horizontally to fill
 * up available space.
 *
 * The name of the class ("Accordion") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * Accordion container.
 */
.Accordion {
border-bottom:0;
overflow:hidden
}

/* This is the selector for the AccordionPanel container which houses the
 * panel tab and a panel content area. It doesn't render visually, but we
 * make sure that it has zero margin and padding.
 *
 * The name of the class ("AccordionPanel") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel container.
*/
.AccordionPanel {
	margin:0;
	padding:0;
	width:230px;
	height:auto
}

/* This is the selector for the AccordionPanelTab. This container houses
 * the title for the panel. This is also the container that the user clicks
 * on to open a specific panel.
 *
 * The name of the class ("AccordionPanelTab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel tab container.
 *
 * NOTE:
 * This rule uses -moz-user-select and -khtml-user-select properties to prevent the
 * user from selecting the text in the AccordionPanelTab. These are proprietary browser
 * properties that only work in Mozilla based browsers (like FireFox) and KHTML based
 * browsers (like Safari), so they will not pass W3C validation. If you want your documents to
 * validate, and don't care if the user can select the text within an AccordionPanelTab,
 * you can safely remove those properties without affecting the functionality of the widget.
 */
.AccordionPanelTab {
	background-color:#CD5153;
	border-top:solid 1px #FFF;
	border-bottom:solid 1px gray;
	margin:0;
	cursor:pointer;
	text-align:left;
	font-family:Verdana, Geneva, sans-serif;
	font-weight:bolder;
	color:#FFF;
	font-size:12px;
	padding: 5px 10px;
	border-left:solid 1px #FFF;
	border-right:solid 1px gray
}

/* This is the selector for a Panel's Content area. It's important to note that
 * you should never put any padding on the panel's content area if you plan to
 * use the Accordions panel animations. Placing a non-zero padding on the content
 * area can cause the accordion to abruptly grow in height while the panels animate.
 *
 * Anyone who styles an Accordion *MUST* specify a height on the Accordion Panel
 * Content container.
 *
 * The name of the class ("AccordionPanelContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel content container.
 */
.AccordionPanelContent {
	overflow:hidden;
	margin:0;
	height:auto;
	background-color: #FDDFDF;
	line-height:100%;
	padding:0
}

.AccordionPanelContent p {
margin-bottom:0;
margin-top:0;
text-align:left
}

.AccordionPanelContent a:link {
font-size:12px;
color:#231124;
font-weight:700;
text-align:left;
text-decoration:none
}

.AccordionPanelContent a:visited {
font-size:12px;
color:#231124;
font-weight:700;
text-align:left;
text-decoration:none
}

.AccordionPanelContent a:hover,.AccordionPanelContent a:active,.AccordionPanelContent a:focus {
	font-size:12px;
	color:#722123;
	font-weight:700;
	text-align:left;
	text-decoration:none
}

.AccordionPanelContent ul {
list-style-type:disc;
list-style-position:outside;
color:#231124;
padding-bottom:5px;
margin-left:0
}

.AccordionPanelContent li {
line-height:1em;
padding:5px 5px 5px 0;
margin-left:30px
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "AccordionPanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the Accordion.
 */
.AccordionPanelOpen .AccordionPanelTab {
	background-color:#999;
	color:#000
}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.AccordionPanelTabHover {
	color:#000
}

.AccordionPanelOpen .AccordionPanelTabHover {
color:#FFF;
}

/* This is an example of how to change the appearance of all the panel tabs when the
 * Accordion has focus. The "AccordionFocused" class is programatically added and removed
 * whenever the Accordion gains or loses keyboard focus.
 */
.AccordionFocused .AccordionPanelTab {
	background-color:#CCC;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open when the Accordion has focus.
 */
.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
background-color:#006;
}

/* Rules for Printing */

@media print {

  .Accordion {
  overflow: visible !important;
  }
  
  .AccordionPanelContent {
  display: block !important;
  overflow: visible !important;
  height: auto !important;
  }
}

/* ~~ Content - middle Column and Mainbody Styles ~~ */
.content {
	padding:10px 12px 60px 0;
	background-color:#FFF
}

#mainbody {
	padding:0;
	margin:0
}

#mainbody p {
margin-top:0;
/* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
padding-right:15px;
padding-left:15px;
/* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
text-align:left;
line-height:1.7
}

#mainbody a:link {
color:#009;
text-decoration:underline
/* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}

#mainbody a:visited {
color:#306;
text-decoration:underline
}

#mainbody a:hover,#mainbody a:active,#mainbody a:focus {
/* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
color:#900;
text-decoration:underline
}
#mainbody strong {
font-weight:600
}

#mainbody b {
font-weight:600
}

#mainbody em {
}

#mainbody UL {
margin:5px 0 0 30px;
padding:0
}

#mainbody LI {
	text-align:left;
	line-height:1.7em;
	padding-bottom:10px;
	list-style-type:square;
	list-style-position:outside
}

#mainbody OL {
	list-style-type:lower-alpha;
	list-style-position:inside
}
#mainbody .articlelist-right {
	text-align: right;
	color: #C30;
}
.tick{
	margin: 0px;
	Padding-left: 50px;
}
.tick ul{
	margin: 0px 0px;
	padding-left: 0px;
	text-align: left;
	
}
.tick li{
	background-position: 0 .5em;
	padding-right: 5px;
	padding-left: 10px;
	margin: 0px;
	list-style-image: url(../images/green-tick1.jpg);
	list-style-type: disc;
	list-style-position: outside;
	line-height: 1.8;
	
}
#pinktick ul{
	margin: 0px 0px;
	padding-left: 0px;
	text-align: left;
}
#pinktick li{
	background-position: 0 .5em;
	padding-right: 15px;
	padding-left: 2px;
	margin: 0px;
	list-style-image: url(../images/tick.png);
	list-style-type: disc;
	list-style-position: outside;
	line-height: 2;
	font-size: 14px;
}
#rightlinks {
	font-size: inherit;
	padding: 5px;
	width: 180px;
	background-color: #25172E;
	margin: 0px 0px 10px 10px;
	text-align: left;
	float: right;
}
#freedoc {
text-align:justify;
padding-top:5px;
padding-right:5px;
padding-bottom:10px;
padding-left:5px
}

#content-toprightbox {
float:right;
width:150px;
margin:0 0 10px 10px;
padding:0 0 5px 5px
}

#sidebarlinks {
font-family:Verdana, Geneva, sans-serif;
font-size:inherit;
padding:5px;
width:180px;
background-color:#FFC;
margin:5px 0 10px 10px;
text-align:center;
float:right
}

/* ~~ general Styles ~~ */
.glossary a:link{
	padding: 0 10px;
}
blockquote.downloadlist {
padding:10px 0
}

ul.downloadlist {
margin:0;
list-style-type:none;
text-align:left
}

li.downloadlist {
display:inline;
list-style-type:none;
color:#438011;
font-size:larger;
font-weight:600;
padding-right:15px;
padding-left:0;
margin:0
}


.tick ul {
	margin:0;
	padding-left:20px;
	text-align:left
}

.tick li {
	background-position:0 .6em;
	padding-right:5px;
	padding-left:10px;
	margin:0;
	list-style-image:url(../images/greentick.png);
	list-style-type:disc;
	list-style-position:inside;
	line-height:1.8
}

.pinktick ul {
margin:0;
padding-left:0;
text-align:left
}

.pinktick li {
background-position:0 .5em;
padding-right:15px;
padding-left:2px;
margin:0;
list-style-image:url(../images/tick.png);
list-style-type:disc;
list-style-position:outside;
line-height:2;
font-size:14px
}

#rightlinks {
font-size:inherit;
padding:5px;
width:180px;
background-color:#25172E;
margin:0 0 10px 10px;
text-align:left;
float:right
}

.floatleft {
float:left;
padding-top:2px;
padding-right:20px;
padding-bottom:5px;
padding-left:0
}

.floatleftvideo {
float:left;
padding-top:0;
padding-right:0;
padding-bottom:0;
padding-left:0;
margin-top:2px;
margin-right:7px;
margin-bottom:2px;
margin-left:0
}

.floatrightvideo {
float:right;
padding-top:0;
padding-right:0;
padding-bottom:0;
padding-left:15px;
margin-top:2px;
margin-right:7px;
margin-bottom:2px;
margin-left:0
}

.floatright {
float:right
}

.floatrightpad {
float:right;
padding-top:2px;
padding-right:5px;
padding-bottom:5px;
padding-left:20px
}

.lightyellowhighlighter {
background-color:#FF9;
margin:0 10px;
padding:10px
}

.goldhighlighter {
background-color:#D1A547;
margin:0 10px;
padding:10px
}

/* ~~ Right Hand Nav  ~~ */
.sidebar2 {
	width:172px;
	padding:10px 0;
	margin-right:0;
	color: #002C69;
    position:absolute; 
    right:0; 
    top:0;
}

.sidebar2 a:link {
color:#7B0344;
text-decoration:underline;
/* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
font-weight:700
}

.sidebar2 a:visited {
color:#7B0344;
text-decoration:underline;
font-weight:700
}

.sidebar2 a:hover,.sidebar2 a:active,.sidebar2 a:focus {
/* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
text-decoration:none
}
.blog {
	color:#090;
	text-align:left;
	padding-left:15px;
	font-size:140%;
	font-weight:700
}
.blog-centre-text {
	text-align:center;
}
.testimonial {
font-style:italic;
color:#000;
background-color:#E4E4E4;
width:85%;
border:solid #333 2px;
margin-left:20px;
padding:5px
}

.sidebar2 p {
text-align:left
}

#banner {
	display:block;
	text-align:justify;
	width:140px;
	font-style:italic;
	color:#25172E;
	padding-top:30px;
	padding-bottom:10px;
	font-weight:600
}

.addthis {
margin:5px
}
#social {
    margin: 5px;
}    
div .plusone, .twitter, .fb-like {
    font-size: 1px;
    display: inline-block;
	margin: 2px 10px;
}
div .fb_reset {
    display: inline;
} 
.style2 {
font-size:x-small
}

.smallred {
color:#900;
font-weight:700
}

.alphabet-heading {
color:#620441;
font-weight:700;
text-transform:uppercase;
font-size:110%;
margin-left:60px
}

/* ~~ The footer ~~ */
.footer {
	padding:10px 0 0;
	position:relative;
	/* this gives IE6 hasLayout to properly clear */
clear:both;
	/* this clear property forces the .container to understand where the columns end and contain them */
background-color:#E1E1E1
}

.footer img {
    display:block;
    max-width:100%;
    height:auto;
}

#footertext {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#25172E;
	padding-top:15px;
	padding-right:15px;
	padding-left:15px;
    padding-bottom:35px;
	margin-bottom:0
}
#footertext:after {content:""; display:table; clear:both;}

#footertext p {
color:#000;
text-align:center
}

#footertext ul {
	list-style-position:outside;
	list-style-type:none;
	text-align:center;
	padding-top:2px;
	padding-bottom:2px;
	margin-left:10px
}

#footertext li {
	font-size:12px;
	font-weight:700;
	display:inline;
	margin:2px 35px;
	padding-right:25px
}
#footertext h2 {
	color:#025BAB;
	text-align:left;
	padding-left:20px;
	font-size:115%
}
#footertext a:link {
	text-decoration:none;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#CCC;
	font-weight:700
}

#footertext a:visited {
	text-decoration:none;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#333;
	font-weight:700
}

#footertext a:hover,#footertext a:active,#footertext a:focus {
	text-decoration:none;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#000;
	font-weight:700
}
#leftFooterNavLinks {
	/* left hand side nav menu container, contains .navItems */
    float:left;
	width:32%; margin-right:2%;
}

#midFooterNavLinks {
	/* middle side nav menu container, contains .navItems */
float:left;
	float:left;
	width:32%; margin-right:2%;
}

#rightFooterNavLinks {
	/* right hand side nav menu container, contains .navItems */
float:right;
	float:left;
	width:32%;
}

#farrightFooterNavLinks {
/* right hand side nav menu container, contains .navItems */
float:right;
height:270px;
width:180px
}

#footerbottom {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#FFF;
	padding-top:15px;
	padding-right:0;
	margin:0;
	background-color: #CD5153;
}

#footerbottom p {
color:#FFF;
text-align:center
}

/* ~~ Miscellaneous float/clear classes ~~ */
.fltrt {
/* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
float:right;
margin-left:8px
}

.fltlft {
/* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
float:left;
margin-right:8px
}

.clearfloat {
/* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the .container) if the .footer is removed or taken out of the .container */
clear:both;
height:0;
font-size:1px;
line-height:0
}

.leftpadding {
margin-left:60px
}

#searchbox {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:10px;
text-align:left;
padding-top:5px;
padding-bottom:5px
}

#searchbox .text {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:13px;
width:170px;
margin-right:3px;
background-color:#fff;
color:#000;
height:20px;
margin-left:5px;
border:solid #CCC 2px
}
#searchboxm {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:10px;
text-align:left;
padding-top:5px;
padding-bottom:5px
}

#searchboxm .text {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:13px;
width:170px;
margin-right:3px;
background-color:#fff;
color:#000;
height:20px;
margin-left:5px;
border:solid #CCC 2px
}

#nav-blurb {
margin:0;
padding:5px 5px 8px;
background-color:#620441;
width:200px;
color:#FFF;
font-weight:700;
border:solid 1px #FFF
}

form {
margin:0;
padding:0
}

.search-box-lhnav {
	/*outer background*/
height:30px;
	padding:0px 0px 7px 15px;
	width:220px
}

input.search-field {
	/*input field */
float:left;
	border:0;
	margin:0;
	font-family:verdana;
	font-size:12px;
	font-weight:700;
	padding:0 0 0 2px;
	height:18px;
	width:170px;
	border:solid 2px #000;
	background-color:#FFF
}

input.search-go {
/*search icon */
float:left;
border:0;
margin:0;
padding:0;
margin-left:5px;
height:24px;
width:25px;
background:url(/images/search-icon.png) no-repeat top left;
cursor:pointer
}

/* Shop
 */
input {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:100%;
color:#333;
background-color:#FFF
}

/* Search page
 */
#searchForm {
font-size:10px;
float:right;
clear:both
}
/* Sitemap-style
 */
.data {
font-weight:700
}
.lhead {
background-color:#fff;
padding:3px;
font-weight:bold;
font-size:16px;
}
.lpart {
	padding:0px;
}
.lpartpages {
padding-bottom:25px;
}
.lpage {
font:normal 12px verdana;
}
.lcount {
background-color:#00AEEF;
color:#fff;
padding:2px;
margin:2px;
font:bold 12px verdana;
}
a.aemphasis {
color:#009;
font-weight:bold;
}



.container-wrapper {position:relative; padding:0 0 0 240px; overflow-x:hidden;}
.container-wrapper img {display:block; max-width:100%; height:auto;}

#mobile-menu-button {
	display:none;
	text-decoration:none;
	color:#CD5153;
	background: transparent url(/images/mobile-menu-icon.png) no-repeat left 10px;
	padding:4px 0 4px 38px;
	position:absolute;
	right:0;
	top:50%;
	font-size:20px;
	margin-top:-15px;
	font-weight:bold;
}
#mobile-menu-button.active {background: transparent url(/images/mobile-menu-icon-close.png) no-repeat left 10px;}

#footer-social-icons {position:relative; display:none;}

#header-search-mobile {
	background-color:#CD5153;
	display:none;
	padding:5px 15px 5px 15px;
	margin:0 15px;
}
#header-search-mobile form label {float:left; font-size:16px; font-weight:bold; color:#fff; margin-right:25px;}
#header-search-mobile form a {float:left; text-decoration:none; color:#ff933b; font-size:16px; margin-right:25px;}
#header-search-mobile form a:hover {color:#000000;}
#header-search-mobile form input[type="text"] {float:right; text-align:center; color:#000000; border:2px solid #999999; background-color:#ffffff; height:26px; line-height:26px;}
#header-search-mobile form input[type="submit"] {display:none;}

/***** BLOG STYLES *****/
.container.blog-container .container-wrapper {padding:0 310px 0 0;}
.container.blog-container .container-wrapper .content {border-right:1px solid #260f39;}
.container.blog-container .container-wrapper .sidebar2 {width:310px;}
.container.blog-container .container-wrapper .sidebar2 p.blog {color:#090; font-size: 140%; font-weight: 700;} 
.container.blog-container .container-wrapper .sidebar2 p strong {color:#000000;}
.container.blog-container .hidden-sidebar {display:none;}

/***** Media Queries *****/
@media screen and (max-width: 1500px){
    #at4-follow {display:none !important;}
}

@media screen and (max-width: 1200px){
    #at4-share {display:none !important;}
}

@media screen and (max-width: 860px){
    #headertext {position:relative; right:auto !important; top:auto !important; text-align:center; padding-bottom:10px; text-align:left; margin-top:-10px; margin-left:5%;}
    #headertext br {display:none;}
    
    .topnavleft {display:none;}

    #header {padding-top:10px; margin:0 15px;}
    
    .topnav {display:none;}
    
    .container-wrapper {position:relative; padding:0 0 0 0; min-height:1px !important;}
    
    .content {padding-right:0; padding-bottom:30px;}
    
    .sidebar1 {position:absolute; width:100%; left:100%; top:auto; padding:0 15px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; z-index:99999;}
    .sidebar1 .AccordionPanel {width:100%;}
    .sidebar1 .AccordionPanel:first-of-type {display:none;}
    
    .sidebar2 {position:relative; width:100%; right:auto; top:auto; text-align:center;}
    .sidebar2 .icon-shield, .sidebar2 .icon-download, .sidebar2 .icon-easy-to-follow, .sidebar2 .icon-reuse, .sidebar2 br, .sidebar2 #banner {display:none;}
    .sidebar2 p {display:inline-block; padding:18px 0 18px 55px; margin:0 5px;}
    .sidebar2 img {display:block; margin:0 auto;}
     #sidebarpostlinks {
    	display: none;
    }
    
    .container.blog-container .container-wrapper {position:relative; padding:0 0 0 0; min-height:1px !important;}
    .container.blog-container .container-wrapper .content {border-right:none; padding-bottom:0px;}
    .container.blog-container .container-wrapper .sidebar2 {position:relative; width:100%; right:auto; top:auto; text-align:center; padding:0 15px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}
    .container.blog-container .container-wrapper .sidebar2 p {display:block; padding-left:0; padding-right:0;}
	
    #mobile-menu-button {display:block;}
    
    .footer {padding-top:0;}
    #footertext {padding:3px 15px 8px 15px;}
    #footertext ul {padding-left:0 !important; margin-left:0 !important; padding-right:0 !important; margin-right:0 !important;}
    #footertext ul li {padding-left:0 !important; margin-left:0 !important; padding-right:0 !important; margin-right:0 !important;}
    #footertext ul li a {padding-left:0 !important; margin-left:0 !important; padding-right:0 !important; margin-right:0 !important;}
    #footertext h2 {padding-left:0 !important; margin-left:0 !important; padding-right:0 !important; margin-right:0 !important;}
    #leftFooterNavLinks {display:none;}
    #midFooterNavLinks {width:47.5%; margin-right:5%;}
    #rightFooterNavLinks {width:47.5%; text-align:right !important;}
    #rightFooterNavLinks * {text-align:right !important;}
    
    #footerbottom {padding-top:6px;}
    
    .footer #footer-social-icons {display:block; float:right; text-align:left !important; padding-top:10px;}
    .footer #footer-social-icons * {text-align:left !important;}
    #footer-social-icons .at-follow-label {float:left; margin:2px 10px 0 0;}
    #footer-social-icons #at4-follow {display:block !important;}
    #footer-social-icons .at4-follow-inner, #footer-social-icons .at-follow-open-control {border:none;}
    #footer-social-icons .at4-follow-close-control {display:none;}
    
    #header-search-mobile {display:block;}
    
    #header .logo {display:none;}
    #header .logo-mobile {display:block;}
	.container.blog-container .hidden-sidebar {display:block;}
}

@media screen and (max-width: 640px){
    #headertext {top: 25px !important; right: 0px !important;margin-top: 0px; position: absolute;}
    #headertext span.small {display:none;}
    #headertext span.big-phone {display:block; font-size:18px;}
    #mobile-menu-button {margin-top: 0px;}
}

@media screen and (max-width: 540px){
    #header-search-mobile form {text-align:center;}
    #header-search-mobile form label {font-size:14px; margin:0 10px; display:inline-block; float:none;}
    #header-search-mobile form a {font-size:14px; margin:0 10px; display:inline-block; float:none;}
    #header-search-mobile form input[type="text"] {float:none; width:100%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; margin-top:6px;}
    
    .sidebar2 p {width:135px;}

    #mobile-menu-button {font-size: 15px;}
    #headertext {top: 20px !important;}
    #headertext span.big-phone {font-size: 14px;}
}

@media screen and (max-width: 440px){
    /*#mobile-menu-button {background: transparent url(../images/mobile-menu-icon.png) no-repeat left 6px; background-size:20px 15px; padding:4px 0 4px 27px; font-size:14px; margin-top:-10px;}*/
    #mobile-menu-button {background: none; background-size:20px 15px; padding:4px 0 4px 27px; font-size:12px; margin-top: 5px;}
    #mobile-menu-button.active {background: transparent url(/images/mobile-menu-icon-close.png) no-repeat left 6px; background-size:20px 15px;}
    #headertext {padding-bottom:3px;}
    
    .footer * {text-align:center !important;}
    #rightFooterNavLinks {padding:20px 0;}
    #rightFooterNavLinks * {text-align:center !important;}
    #midFooterNavLinks {width:100%; margin-right:0; text-align:center !important;}
    #rightFooterNavLinks {width:100%; text-align:center !important;}
    
    .footer #footer-social-icons {float:none;}
    .footer #footer-social-icons * {text-align:center !important;}
    #footer-social-icons .at4-follow-container {width:100% !important; float:none !important; text-align:center !important;}
    #footer-social-icons .at4-icon-left {display:inline-block !important; float:none !important; margin:0 3px;}
    #footer-social-icons .at-follow-label {float:none; margin-right:0; text-align:center; display:block; padding-bottom:5px;}
    #footer-social-icons a {display:inline-block !important; float:none !important; margin:0 2px;}
}

@media screen and (max-width: 404px){

    #header .logo-mobile {display:none;}
    #header .logo-mobile-small {display:block; width: 65%; margin-bottom: 10px;}

    #mobile-menu-button {
    	background: none;
    	margin-top: 5px;
    	font-size: 13px;
    }

    #headertext {
    	position: absolute;
    	top: 20px !important;
    	right: 0px !important;
    }

    #headertext span.big-phone {
    	font-size: 11px;
    }
 #content-toprightbox {
    	width: 79px;
    	margin: 0px 15px 10px 10px;
    }

    #content-toprightbox form {
    	width: 79px;
		margin: 0px auto;
    }

    #content-toprightbox form a {
    	width: 79px;
    }

    #content-toprightbox form a img {
    	margin: 0 auto;
    }

    #content-toprightbox h4 {
    	font-size: 61%;
    	padding-right: 0px;
    }
	 #mainbody .picture.right {
	display: none;
    }
}
