﻿@charset "UTF-8";
 @import url(http://fonts.googleapis.com/css?family=Lato:300,400);

@font-face {
    font-family: 'crimson';
    src: url('fonts/crimson-bold-webfont.eot');
    src: url('fonts/crimson-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/crimson-bold-webfont.woff') format('woff'),
         url('fonts/crimson-bold-webfont.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;

}




@font-face {
    font-family: 'crimson';
    src: url('fonts/crimson-bolditalic-webfont.eot');
    src: url('fonts/crimson-bolditalic-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/crimson-bolditalic-webfont.woff') format('woff'),
         url('fonts/crimson-bolditalic-webfont.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;

}




@font-face {
    font-family: 'crimson';
    src: url('fonts/crimson-italic-webfont.eot');
    src: url('fonts/crimson-italic-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/crimson-italic-webfont.woff') format('woff'),
         url('fonts/crimson-italic-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;

}




@font-face {
    font-family: 'crimson';
    src: url('fonts/crimson-roman-webfont.eot');
    src: url('fonts/crimson-roman-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/crimson-roman-webfont.woff') format('woff'),
         url('fonts/crimson-roman-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'crimson';
    src: url('fonts/crimson-semibold-webfont.eot');
    src: url('fonts/crimson-semibold-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/crimson-semibold-webfont.woff') format('woff'),
         url('fonts/crimson-semibold-webfont.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;

}




@font-face {
    font-family: 'crimson';
    src: url('fonts/crimson-semibolditalic-webfont.eot');
    src: url('fonts/crimson-semibolditalic-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/crimson-semibolditalic-webfont.woff') format('woff'),
         url('fonts/crimson-semibolditalic-webfont.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;

}

@font-face {
	font-family: 'Ezra SIL SR';
	src: url('fonts/ezrasilsr-webfont.eot?#iefix') format('embedded-opentype'),
	     url('fonts/ezrasilsr-webfont.woff') format('woff'), 
	     url('fonts/ezrasilsr-webfont.ttf')  format('truetype'),
	     url('fonts/ezrasilsr-webfont.svg#EzraSILSR') format('svg');
	}



body {
	font-family: 'crimson', Georgia, Times New Roman, serif;
	background: #fffbeb;
	margin: 0;
	padding: 0;
	color: #4a0104;
	font-size:16px;
}
/* ~~ 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, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */
	margin-bottom: 0;
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
}
p {
	padding-left:15px;
	padding-bottom:10px;
}
h1 {
	color:#a57427;
	font-style:italic;
	font-size:24px;
	font-weight:500;
	margin-bottom:15px;
	line-height:28px;
	
}

h1.section {
	font-family: 'Lato', Helvetica, Arial,  sans-serif;
	color:#4a0104;
	font-style:normal;
	font-size:19px;
	font-weight:500;
	margin-bottom:10px;
	line-height:28px;
}

h1.standalone {
	margin-bottom:10px;
}
h2 {
	font-size:20px;
	margin-top:15px;
	font-weight:600;
	margin-bottom:15px;
}
h3 {
	line-height:115%;
	margin-bottom:9px;
	margin-top:7px;
}
h3 .license {
	font-size:18px;
	font-weight:400;
	font-style:italic;
}
.title {
	font-size:16px;
	padding-bottom:0;
	margin: 15px 0 10px 15px;
	font-weight:400;
	display:block;
	line-height:110%;
	color:#a57427;
	font-weight:600;
}
.attribution {
	color: #4a0104;
	font-style:italic;
}
.resource {
	color:#a57427;
}

.ezra {
	font-family: 'Ezra SIL SR', 'Crimson', 'Times New Roman', serif;
	direction:rtl;
	text-align: right;
	font-size:1.1em;
	line-height:140%;
	}

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;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #960208;
	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: #960208;
	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;
}
/* ~~ This fixed width container surrounds all other blocks ~~ */
.container {
	width: 1000px;
	background: #fff9e3;
	border-right:1px solid #A57427;
	border-bottom:1px solid #A57427;
	border-left:1px solid #A57427;
	border-top:none;
	margin: 0 auto; /* 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. ~~ */
header {
	background: #ADB96E;
}
/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the block elements. The elements within these blocks 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 block 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 block element and place a second block element 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 block set to float right). Many times, padding can be used instead. For blocks where this rule must be broken, you should add a "display:inline" declaration to the block element'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 blocks 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 left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the blocks around in the HTML source.

*/
.sidebar1 {
	float: right;
	margin: 60px 30px 0 0;
	width: 225px;
	line-height:120%;
}

#sidenav {
	border: thin solid #cdb287;
	background: #fff8dc;
	padding:10px 10px 20px 15px;
}

.content {
	padding: 40px 28px 20px 0;
	width: 710px;
	float: right;
	line-height:140%;
}

.content_single {
    padding: 40px 28px 20px 5px;
}



/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
	padding: 0 15px 0 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. */
}

ul {
	list-style-image: url(images/bullet---.png);
}

.content ul li {
	padding-bottom:7px;
}
.content ul li ul{
	list-style-image:url(images/dash.png);
	padding-bottom:0;
	margin-bottom:0;
}

.content ul {
	padding-bottom:7px;
}

#toplinks {
	float:right;
	margin-right:40px;
}
#toplinks a, #toplinks a:visited {
	font-family:'lato', helvetica, arial, sans-serif;
	font-size:10px;
	color:#a57427;
}

/* START NAV MENU */
nav {
    z-index: 100;
    background-color: #4a0104;
    height: 51px;
}


    nav ul {
        font-family: 'Lato', sans-serif;
        color: #fff8dc;
        font-weight: 300;
        font-size: 17px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

        nav ul li {
            display: block;
            position: relative;
            float: left;
        }

    nav li ul {
        display: none;
    }

    nav ul li a, nav ul li a:link, nav ul li a:visited {
        display: block;
        text-decoration: none;
        padding: 4px 0 5px 0px;
        background: #4a0104;
        background-image: url(images/btn-bg.png);
        background-repeat: no-repeat;
        color: #fffbeb;
        margin-left: 1px;
        text-wrap: none;
        height: 41px; /* Width and height of top-level nav items */
        width: 140px;
        text-align: center;
    }

        nav ul li a.last, nav ul li a:link.last, nav ul li a:visited.last {
            background-image: none;
        }





    nav li:hover ul {
        display: block;
        position: absolute;
        height: auto;
        background-image: none;
        z-index: 100;
    }

    nav li:hover li {
        display: block;
        float: none;
        font-size: 15px;
        background: none;
        border-bottom: thin solid #a57427;
        border-left: thin solid #a57427;
        border-right: thin solid #a57427;
        width: auto;
    }


    nav li:hover a {
        height: auto; /* Height of lower-level nav items is shorter than main level */
    }

    nav li:hover li a {
        color: #4a0104;
        background-image: none;
        background-color: #fffbeb;
        text-align: left;
        height: auto;
        width: 250px;
        padding: 5px;
    }

    nav li:hover li.tools-top a {
        font-style: italic;
    }


    nav li:hover li.tools-heading {
        color: #4a0104;
        background-image: none;
        background-color: #fffbeb;
        text-align: left;
        height: auto;
        width: 250px;
        padding: 5px;
        font-weight: 400;
    }

    nav li:hover li a:hover {
        color: #a57427;
        background-image: none;
    }

    nav ul li ul li a {
        text-align: left; /* Top-level items are centered, but nested list items are left-aligned */
        background-color: none;
    }

    nav li:hover li ul li {
        margin-left: 50px;
        border-top: thin solid #a57427;
    }

   nav ul li.inverted {
        background-color: #d4a50f;
        color: #4a0104;
    }

    nav ul li.inverted a {
        background-color: #d4a50f;
        color: #4a0104;
        display: inline-block;
        text-align: center;
        vertical-align: middle;
        line-height: 44px;
    }
        nav li:hover li ul li a {
            /* ~~color:#4a0104;~~ */
            background-image: none;
            background-color: #fffbeb;
            text-align: left;
            height: auto;
            width: 250px;
            padding: 5px;
            font-style: italic;
        }


            nav li:hover li ul li a:hover {
                color: #a57427;
                background-image: none;
            }

    nav ul li:last-child ul li:hover ul {
        left: -310px;
    }

    nav ul li:hover ul li.tools {
        display: none
    }

    nav ul li ul li:hover li.tools {
        display: block;
        border: none; /* ~~ All of these border declarations are necessary because the border was being doubled on the secondary level. ~~ */
        border-bottom: thin solid #a57427;
        border-left: thin solid #a57427;
        border-right: thin solid #a57427;
        z-index: 10;
    }


        nav ul li ul li:hover li.tools:first-child {
            border-top: thin solid #a57427;
        }


    nav ul ul ul {
        position: absolute;
        left: 80%;
        top: 0;
    }




/* END NAV MENU */


/* BEGIN SIDEBAR NAV MENU */

#sidenav ul {
	list-style-type: none; !important
	display:block;
	margin:0;
	padding:0;
	font-family:'Lato', Verdana, Arial, sans-serif;
	font-size:15px;
	font-weight:300;
}
#sidenav ul li a {
	color:#654718;
	text-decoration:none;
}
#sidenav ul li a:hover {
	
	color:#a57427;
}
#sidenav li {
	display:block;
	list-style-type:none;
	margin-bottom:10px;
	color:#4a0104;
}
#sidenav li:first-child {
	font-weight:400;
}

#sidenav li.side-tools {
	margin-top:15px;
	
	color:#4a0104;
	
	
}

#sidenav ul li.active-page a {
		font-weight:400;
		color:#a57427;
}






#sidenav ul li a.active-sub {
	font-weight:400;
	font-size:13px;
	margin-left:10px;
	display:block;
	color:#4a0104;
}

#sidenav ul li.active-page a:hover {
	color:#a57427;
}

#sidenav ul li a.active-sub:first-of-type {
	margin-top:6px;	
}

#sidenav ul li.active-page ul li {
	margin-bottom:6px;
}

.sidenav-title {
	text-decoration:underline;
}


/* END SIDEBAR NAV MENU */



/* ~~ The footer ~~ */
footer {
	z-index:1;
	font-size:12px;
	font-family:'Lato', Helvetica, Arial, sans-serif;
	line-height:20px;
	letter-spacing:.05em;
	padding: 10px 0;
	text-align:center;
	background: #CCC49F;
	background-image:url(images/footer-bg.png);
	background-repeat:repeat-x;
	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 */
}
footer .copyright {
	font-size:9px;
}

footer a, footer a:link, footer a:visited  {
	text-decoration:none;
	color:#4a0104;
}
footer a:hover  {
	color:#a57427;
}

/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, nav, article, figure {
	display: block;
}
.left {
	float:left;
	margin-right:12px;
	margin-bottom:10px;
}
.right {
	float:right;
	margin-left:12px;
	margin-bottom:10px;
}
img {
	border:thin solid #CDB287;
}
.noborder {
	border:none;
}

.left{
	float:left;
}
.right {
	float:right;
	margin-left:15px;
	margin-bottom:10px;
}
.staff img.right {
	margin-left:50px;
}
.clear {
	clear:both;
	margin:0;
	padding:0;
}
.staff .clear {
	height:15px;
}
.emphasize {
	font-weight:600;
	padding-bottom:2px;
	margin-bottom:0;
	line-height:120%;
}

li .indent {
	margin-left:10px;
	display:block;
	margin-bottom:4px;
}

li p {
	padding-left:0;
}

ul.abc {
	list-style-type:lower-alpha;
}
strong { 
	font-weight:600; }
	
ol li {
	padding-bottom:12px;
}
ol ul {
	margin-top:7px;
}




ul.plain li  {
	list-style:none; !important
	list-style-type:none; !important
}

h4.resource-heading {
	margin-bottom:7px;
	margin-top:7px;
}
h4.non-bold {
	font-weight:100;
}
h2.events {
	margin-bottom:0;
	padding-bottom:0;
}
p.cemetery {
	margin-top:10px;
}	

.sidebar1 a.service, 
.sidebar1 a:visited.service 
.sidebar1 a:hover.service {
	font-family: 'Lato', Helvetica, Arial,  sans-serif;
	color:#a57427;
	font-size:15px;
}

.sidebar1 p {
		font-family: 'Lato', Helvetica, Arial,  sans-serif;
		font-size:15px;
		padding-left:10px;
}

#obits_content {
	text-align: left
}

#obits_content a  {
	text-decoration:none;
	color:#4a0104;
}
#obits_content a:hover  {
	color:#a57427;
	text-decoration:underline;
}

#obits_content img {
	width:25px;
	border:thin solid #CDB287;
}

#obits_content .noObitMessage {}


div.hr{background:#CDB287;height:1px;margin: 5px 0 5px 0;}
div.hr hr{display:none;}
.hrSectionBreak{
    color: #4a0104;
    width: 25%;
    text-align: center;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #4a0104;
    padding: 0; 
}

#obitSearchForm { padding-left: 15px;text-align: left;}
#obitSearchForm table {border:0;padding: 0; text-align:left}
#obitSearchForm tr {border:0;padding: 0; text-align:left}
#obitSearchForm td {border:0;padding: 0; text-align:left}
#obitSearchForm .instructions{ padding-left: 15px;text-align: center;font-style: italic;}

/*Obit Search Results*/
#obitSearchResults { padding:5px 0 0 15px;}
#obitSearchResults a{text-decoration:none; color:#603913; }
#obitSearchResults a:hover{color:#4D2E0F; text-decoration:none;}
#obitSearchResults td {padding:5px; text-align: left;}
#obitSearchResults th {padding:5px; text-align: left; border-bottom:solid 1px #a57427; text-decoration:none;}
/*End Obit Search Results*/

/*obit search grid*/
#pastObituariesGrid{}
.GridView{color:#312E1B; text-align:center;border:0;}
.HeaderStyle{}
.RowStyle{}
.RowStyle:hover{background:#fffff6;}
.PagerStyle span {font-size: 18px; font-weight: bolder; background-color:#fffff6;}
.FooterStyle{}



.txt {
    background: none repeat scroll 0 0 #fff9e3;
    border: 1px solid #cdb287;
    color: #603913;
    font-family: Arial;
    font-size:15px;
    height: 18px;
    padding-left: 2px;
}

#serviceText { padding-left: 50px;}


/*Guestbook grid*/
.GbRowStyle {background:#fffff6;}
.GbDoneBlock { padding-left: 10px;}
.ajax__validatorcallout_icon_cell img { border: 0;}
.ajax__validatorcallout_innerdiv img { border: 0;}


/*Fixes newer IE issue with RadWindow*/
.RadWWrapperActive tbody{ height: 0 !important;}

.RadWButton { border: 0;}

.RadWIcon { border: 0;}

#yahrzeit {
	padding-left:20px;
	line-height:normal;
}

#yahrzeit img{ border: 0;}

#yahrzeit .inputBlock{margin-top: 5px;}

#yahrzeit .calendarResultLabel {
	color: #a57427;
	font-style: italic;
	font-size: 18px;
	font-weight: 200;
	padding-bottom: 3px;
}

#yahrzeit .calendarResult {
	padding-bottom: 12px;
}

#yahrzeit .calendarResult table{
	border-collapse: collapse;
}

#yahrzeit .calendarResult td{
	padding:0 7px 5px 0;
}

#yahrzeit .yzColumn{ float: left;padding-right: 24px;}

#yahrzeit .mention {
	padding-top: 3px;
	color: #927444;
	font-size:9px;
	line-height: normal;
}

#yahrzeit .mention a, #yahrzeit .mention a:link, #yahrzeit .mention a:visited  {
	text-decoration:none;
	color:#927444;
}

#yahrzeit .mention a:hover {
	color:#B38D4F;
}

div .backToTop {
    padding-left: 15px;
    text-align: right;
}



.button {
   
    background: #76541c;
   background: -webkit-gradient(linear, left top, left bottom, from(#a57527), to(#76541c));
   background: -webkit-linear-gradient(top, #a57527, #76541c);
   background: -moz-linear-gradient(top, #a57527, #76541c);
   background: -ms-linear-gradient(top, #a57527, #76541c);
   background: -o-linear-gradient(top, #a57527, #76541c);
   padding: 5px 20px;
   -webkit-border-radius: 6px;
   -moz-border-radius: 6px;
   border-radius: 6px;
   -webkit-box-shadow: rgba(0,0,0,.5) 0 1px 0;
   -moz-box-shadow: rgba(0,0,0,.5) 0 1px 0;
   /*box-shadow: rgba(0,0,0,.5) 0 1px 0;*/
   text-shadow: rgba(0,0,0,.4) 0 1px 0;
   color: #fff8dc !important;
   font-size: 14px;
   font-family: "Lato",Verdana,Arial,sans-serif;
   text-decoration: none !important;
   vertical-align: middle;
   }
.button:hover {
   opacity: 0.8;
    filter: alpha(opacity=80); /* For IE8 and earlier */
   color: #fff8dc !important;
   }
.button:active {
   opacity: 0.8;
    filter: alpha(opacity=80); /* For IE8 and earlier */
	color: #fff8dc !important;
   }
.button-holder {
	margin-bottom:25px;
		text-align:right;
}

.gsc-results .gsc-cursor-box .gsc-cursor-current-page {
	background-color: white !important;
	color: #4A0104 !important;
}


/* The following styles have been added for the donation form on donate.php on 8/22/2017 by Lisa. The class ".donate-page" is a body class for this page. */

.donateform {
    margin-bottom: 1.5em;
}

/* If we stick with not using radio buttons or checkboxes, these styles aren't needed 

input[type=checkbox]:not(old),
input[type=radio   ]:not(old){
  width   : 28px;
  margin  : 0;
  padding : 0;
  opacity : 0;
}

input[type=checkbox]:not(old) + label,
input[type=radio   ]:not(old) + label{
  display      : inline-block;
  margin-left  : -28px;
  padding-left : 28px;
  background   : url('checks.png') no-repeat 0 0;
  line-height  : 24px;
}

input[type=checkbox]:not(old):checked + label{
  background-position : 0 -24px;
}

input[type=radio]:not(old):checked + label{
  background-position : 0 -48px;
}
*/


.donate-page input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]) {
    font-family: inherit;
    font-size: 17px;
    letter-spacing: normal;
    padding: 2px 4px;
    color: #977331;
}



.donate-page form {
    margin-bottom: 60px;
}

.donate-page .button,
.donate-page input[type=submit] {
    background: #76541c;
    background: -webkit-gradient(linear, left top, left bottom, from(#a57527), to(#76541c));
    background: -webkit-linear-gradient(top, #a57527, #76541c);
    background: -moz-linear-gradient(top, #a57527, #76541c);
    background: -ms-linear-gradient(top, #a57527, #76541c);
    background: -o-linear-gradient(top, #a57527, #76541c);
    padding: 5px 20px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: rgba(0,0,0,.5) 0 1px 0;
    -moz-box-shadow: rgba(0,0,0,.5) 0 1px 0;
    /*box-shadow: rgba(0,0,0,.5) 0 1px 0;*/
    text-shadow: rgba(0,0,0,.4) 0 1px 0;
    color: #fff8dc !important;
    font-size: 15px;
    font-family: "Lato",Verdana,Arial,sans-serif;
    text-decoration: none !important;
    vertical-align: bottom;
}

    .donate-page .button:hover,
    .donate-page input[type=submit]:hover {
        opacity: 0.8;
        filter: alpha(opacity=80); /* For IE8 and earlier */
        color: #fff8dc !important;
    }

    .donate-page .button:active,
    .donate-page input[type=submit]:active {
        opacity: 0.8;
        filter: alpha(opacity=80); /* For IE8 and earlier */
        color: #fff8dc !important;
    }

.donate-page .special-projects {
    height: 25px;
    margin-left: 40px;
}

    .donate-page .special-projects input[type=submit] {
        margin-left: 60px;
        vertical-align: bottom;
    }

        .donate-page .special-projects input[type=submit].membership {
            float: right;
        }

.project-name {
    font-weight: bold;
    font-size: 18px;
}

.legacy {
    text-align: justify;
}

form.version1 {
    margin-top: 20px;
}

.donate-page form.version1 input[type="submit"] {
    margin-top: 17px;
}

.donate-page form.membership {
    margin-bottom: 30px;
}

    .donate-page form.membership.last {
        margin-bottom: 105px;
    }

.membership-container {
    width: 600px;
}
.donate-page input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]) {
    color:#4a0104;
}


.donate-page .button,
.donate-page input[type=button] {
    background: #76541c;
    background: -webkit-gradient(linear, left top, left bottom, from(#a57527), to(#76541c));
    background: -webkit-linear-gradient(top, #a57527, #76541c);
    background: -moz-linear-gradient(top, #a57527, #76541c);
    background: -ms-linear-gradient(top, #a57527, #76541c);
    background: -o-linear-gradient(top, #a57527, #76541c);
    padding: 5px 20px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: rgba(0,0,0,.5) 0 1px 0;
    -moz-box-shadow: rgba(0,0,0,.5) 0 1px 0;
    /*box-shadow: rgba(0,0,0,.5) 0 1px 0;*/
    text-shadow: rgba(0,0,0,.4) 0 1px 0;
    color: #fff8dc !important;
    font-size: 15px;
    font-family: "Lato",Verdana,Arial,sans-serif;
    text-decoration: none !important;
    vertical-align: bottom;
}

    .donate-page .button:hover,
    .donate-page input[type=button]:hover {
        opacity: 0.8;
        filter: alpha(opacity=80); /* For IE8 and earlier */
        color: #fff8dc !important;
    }

    .donate-page .button:active,
    .donate-page input[type=button]:active {
        opacity: 0.8;
        filter: alpha(opacity=80); /* For IE8 and earlier */
        color: #fff8dc !important;
    }
    
/* The following styles have been added for the CASKET PRICE LIST SECTION IN MARCH 2018 by Lisa.  */

#toplinksleft {
    float: left;
    margin-right: 40px;
    font-size:14px;
    padding-left:17px;
}
#toplinksleft a {
    padding:0 10px;
    border-right: 1px solid #960208;
    color:#960208
}
#toplinksleft a:last-child {
    border-right:none;
}
div#toplinksleft a:first-of-type {
    padding-left:0;
}

#column-wrap {
    width:570px;
    margin:0 auto;
    font-size:13px;
}
#left_col {
    float:left;
    width:350px;
    margin:12px 0;
}
#right_col {
    float:right;
    width:220px;
    margin:12px 0;
}

.casket-line-one {
    font-weight:600;
}
.casket-title {
    text-decoration:underline;
}
.odd {
    background-color:#fff8db;
    border-bottom:1px solid #c8a86a;
    padding:10px 0 10px 0;
    margin-left:17px;
}
.even {
    background-color:#fffbeb;
    border-bottom:1px solid #c8a86a;
    padding:10px 0 10px 0;
    margin-left:17px;
}
.price {
    float:right;
    padding-right:10px;
}
h2.casket-heading {
    margin-top:40px;
}


    
/* The following styles are for the casket gallery.  */

/*  SECTIONS  */
.section {
    clear: both;
    padding: 0px;
    margin: 0px;
}

/*  COLUMN SETUP  */
.col {
    display: block;
    float:left;
    margin: 1% 0 1% 1.6%;
}
.col:first-child { margin-left: 0; }

/*  GROUPING  */
.group:before,
.group:after { content:""; display:table; }
.group:after { clear:both;}
.group { zoom:1; /* For IE 6/7 */ }
/*  GRID OF THREE  */
.span_3_of_3 { width: 100%; }
.span_2_of_3 { width: 66.13%; }
.span_1_of_3 { width: 32.26%; }

/*  GO FULL WIDTH BELOW 480 PIXELS */
@media only screen and (max-width: 480px) {
    .col {  margin: 1% 0 1% 0%; }
    .span_3_of_3, .span_2_of_3, .span_1_of_3 { width: 100%; }
}

.casket-description {
    margin: 10px;
    line-height: 1.2;
}

.location-divider {
    position: relative;
    background-color: #966B24;
    height: 30px;
    margin-left: 10px;
    color: #FFF9E3;
    line-height: 30px;
}
