/*============================================================================*/
/* styles.css - Cascading Style Sheet (CSS)                                   */
/*   Author: Dean DeBruin                                                     */
/*   Copyright (C) 2013-2020                                                  */
/*============================================================================*/

/* body */
body {
    background-color: #fff5e5;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 100%;
}

/* headers */
h1 { font-size: 1.50em; }
h2 { font-size: 1.25em; }
h3 { font-size: 1.00em; }

/* maximum width */
img, embed, iframe, object, video {
    max-width: 100%;
}

/*---------------------------------------------------------------------------*/

/* mobile header */

/* header table */
table.mheader {
    margin-left: auto;
    margin-right: auto;
    border: 0px solid black;
    border-collapse: collapse;
    padding: 5px;
}

/* header logo */
img.mlogo {
    border: 0px solid black;
    float: left;
    margin-top: 10px;
    margin-right: 10px;
    width: 100px; height: 100px;
}

/* header name */
div.mname {
/*  color: #aa1a55;  /* 170.26.85 */
    color: #800000;  /* Maroon */
    font-family: "Goudy Old Style", "Times New Roman";
    font-size: 3em;
    text-align: center;
}

/* header rule */
hr.mrule {
    border: 1px solid black;
}

/* header motto */
div.mmotto {
    font-family: "Times New Roman";
    font-size: 1.4em;
    text-align: center;
}

/* main menu rule */
hr.xrule {
    border: none;
    height: 4px;
    background-color: lightgray;
}

/*---------------------------------------------------------------------------*/

/* main menu */
div.mainmenu {
    font-size: 1.0625em;
    line-height: 200%;
    text-align: center;
}

/* sub-menu */
div.submenu {
    line-height: 200%;
    text-align: center;
}

/* picture on right */
div.ponright {
    border: 0px solid black;
    margin-left: 10px;
    margin-bottom: 10px;
    float: right;
    text-align: center;
}

/* picture on right */
img.ponright {
    border: 1px solid black;
    float: right;
    margin-left: 0px;
    margin-bottom: 5px;
    width: 320px;
}

/* picture on right portrait*/
img.ponrightportrait {
    border: 1px solid black;
    float: right;
    margin-left: 0px;
    margin-bottom: 5px;
    height: 320px;
}

/* copyright */
.copy {
    font-size: 0.8125em;
    text-align: center;
}

/*---------------------------------------------------------------------------*/

/* obit separator */
hr.obit {
    margin-top: 25px; margin-bottom: 25px;
    width: 90%;
}

/* obit picture on the right */
img.onright {
    border: 1px solid black;
    float: right;
    margin-top: 5px; margin-bottom: 5px; margin-left: 10px;
    width: 175px;
}

/* obit picture on the right, landscape mode */
img.onrightlandscape {
    border: 1px solid black;
    float: right;
    margin-top: 5px; margin-bottom: 5px; margin-left: 10px;
    height: 175px;
}

/* obit picture on the bottom */
img.onbottom {
    border: 1px solid black;
    height: 175px;
    margin: 5px;
}

/* obit picture on the bottom, portrait mode */
img.onbottomportrait {
    border: 1px solid black;
    width: 175px;
    margin: 5px;
}

/* guest book */
p.guest {
    text-align: center;
}

/*---------------------------------------------------------------------------*/

/* arrangement separator */
hr.arr {
    margin-top: 25px; margin-bottom: 25px;
    width:95%
}

/*---------------------------------------------------------------------------*/

/* PartingPro button */
.button {
  color: white;
  background-color: #3397ac;
  border: none;
  border-radius: 5px;
  padding: 7px 16px 7px 16px;
  margin: 4px 2px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  cursor: pointer;
  transition-duration: 0.15s;
}

.button:hover {
  background-color: #2a7b8c;
}

/*---------------------------------------------------------------------------*/

