@charset "utf-8";
/* CSS Document */

* {
	box-sizing: border-box;
	margin: 0;
}
html, body {
	height: 100%;
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-size: 1em;
}
/* show external links differently */
a[href^="http://"]:not([href*="enfield-stuff.com"]):after {
    width: 16px;
    height: 16px;
    font-family: 'Font Awesome 5 Free';
    content: "\f35d";
    padding-left: 0.8em;
}

/* Default - Remodel Page
    spacer - Set new height to footer to account for removed information
    defaultContent, defaultContent p - Sets content box width to full page width, set font family to text
    defaultimg - centers image in page
    defaultBg - Sets a background for Mailing form
*/
.spacer {
    height: 100px;
}
#defaultContent {
    width: 100%;
}
#defaultContent p {
    font-family: 'Roboto', sans-serif;
}
.defaultimg {
    display: block;
    margin-right: auto;
    margin-left: auto;
}
.defaultBg {
    background-color: #eeeeee;
    padding: 20px;
}
.signupText {
    color: #aaa;
}
.signupBG {
    padding: 0px;
    margin-bottom: 0px;
}
.signupFormSpace {
    padding: 0px !important;
}

/* Global Layout Modifiers-- 
**  centerStuff: Centers entire page content at certain width
**  row: Sets two section horizontal layout, allows column stacking at small screen size
**  imgScaling: Gives all images screen size responsive scaling  
**  bg___: Background colors
**  sticky: modifies mainNav to stick to top of screen when user scrolls
**  divider: Adds horizontal line to the top of content container
**  anchor: Keeps content from disapearing behind navBar when jumped down to
*/
.floatLeft {
    float: left;
}
.floatRight {
    float: right;
}
.clear {
    clear:both;
}
.centerStuff {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}
.row {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
}
.imgScaling {
	max-width: 100%;
	height: auto;
}
.bgBlue {
	background-color: #000080;
}
.bgAqua {
	background-color: #008080;
}
.bgGreen {
	background-color: #556B2F;
}
.bgRed {
	background-color: #c8102e;
}
.bgOrange {
	background-color: #AD522D;
}
.bgYellow {
	background-color: #A5A428;
}
.bgBlack {
	background-color: #000;
}
.bgDkAqua {
	background-color: #2f4f4f;
}
.sticky {
	position: fixed;
	top: 0;
	width: 100%;
    box-shadow: 0px 1px 20px 0.5px #333;
}
.sticky + .content {
	padding-top: 70px;
}
.divider {
    border-top: 2px solid #ccc;
}
.anchor {
    display: block;
    height: 140px;
    margin-top: -140px;
    visibility: hidden;
}
ul.mybullet li {
    list-style-image: url("../images/favicon_bullet.png");
}
.mybullet {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    margin: 0px 50px;
}


/* HEADER */
.logo {
    padding-top: 40px;
    line-height: 1em;
    font-size: 3.214em;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
}
.subLogo {
    padding-bottom: 30px;
    padding-left: 6px;
    font-size: 1.429em;
    font-family: 'Roboto', sans-serif;
}

/* Main Navigation:
    navBar - background container for nav
    mainNav - container for individual nav items
    icon - hamburger menu icon for mobile
*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.menu-toggle {
  display: inline-block;
  padding: .75em 15px;
  line-height: 1em;
  font-size: 1em;
  color: #fff;
  background: #000;
  width: 100%;
}

.menu-toggle:hover,
.menu-toggle:focus {
  color: #999;
}
.topNav {
  position: absolute;
  display: none;
  left: -200px;
  top: 0;
  height: 100%;
  overflow-y: visible;
  overflow-x: visible;
  transition: left 0.3s ease,
    	box-shadow 0.3s ease;
  z-index: 999;
}
.topNav ul {
  list-style: none;
  margin: 0;
  padding: 2.5em 0 0;
  /* Hide shadow w/ -8px while 'closed' */
  -webkit-box-shadow: -8px 0 8px rgba(0,0,0,.5);
     -moz-box-shadow: -8px 0 8px rgba(0,0,0,.5);
          box-shadow: -8px 0 8px rgba(0,0,0,.5);
 /* min-height: 100%; */
  width: 200px;
  background: #1a1a1a;
}

.topNav a {
  display: block;
  padding: 1.2em 15px;
  line-height: 1em;
  font-size: 1em;
  color: #fff;
  text-decoration: none;
}
.topNav li {
   border-bottom: 1px solid #383838; 
}
.topNav li:first-child {
    margin-top: 15px;
  border-top: 1px solid #383838;
}
.topNav a:hover,
.topNav a:focus {
  background: #333;
  text-decoration: underline;
}
.topNav .menu-close {
  position: absolute;
  right: 0;
  top: 0;
}

/* ENABLE on SMALL SCREENS */
.topNav:target,
.main-menu[aria-expanded="true"]{
  display: block;
  left: 0;
  outline: none;
  -moz-box-shadow: 3px 0 12px rgba(0,0,0,.25);
  -webkit-box-shadow: 3px 0 12px rgba(0,0,0,.25);
  box-shadow: 3px 0 12px rgba(0,0,0,.25);
}

.topNav:target .menu-close, 
.main-menu[aria-expanded="true"] .menu-close{
  z-index: 1001;
}

.topNav:target ul,
.main-menu[aria-expanded="true"] ul{
  position: relative;
  z-index: 1000;
}
.topNav:target + .backdrop,
.main-menu[aria-expanded="true"] + .backdrop{
  position: absolute;
  display: block;  
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
  background: #000;
  background: rgba(0,0,0,.85);
  cursor: default;
}

@supports (position: fixed) {
  .topNav,
  .topNav:target + .backdrop,
    .main-menu[aria-expanded="true"] + .backdrop{
    position: fixed;
  }
}

/* DISABLE on LARGE SCREENS */
@media (min-width: 768px) {
  .topNav, .topNav .menu-close, #main-menu-toggle {
    display: none;
  }
  /* Undo positioning of off-canvas menu */
  .topNav {
    background: #000;
    position: relative;
    left: auto;
    top: auto;
    height: 60px;
    display: block;
  }
  .topNav ul {
    display: flex;
    /* Undo off-canvas styling */
    padding: 0 0 0 10%;
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
    height: 60px;
    width: auto;
    background: none;
  }
    .topNav ul li {
        border-right: 1px solid #666;
    }
    .topNav ul li:first-child {
        margin-top: 0;
        border-left: 1px solid #666;
    }
  .topNav a { 
    color: #fff;
    padding: 20px;
    border: 0 !important; /* Remove borders from off-canvas styling */
  }
  .topNav a:hover,
  .topNav a:focus {
    background: #888;
    color: #fff;
    text-decoration: none;
  }
}



/* PAGE CONTENT WRAPPER */
#wrapper {
	width: 100%;
	min-height: calc(100vh - 425px);
	margin: 0 auto;
}
.content {
    padding: 0px;
}


/* MAIN CONTENT AREA:
    mainContent - container for left side content
    textBlock - text area in mainContent container
    sectionTitle - page title with colored background
*/
#mainContent {
	flex: 70%;
	background-color: #ffffff;
	padding-top: 25px;
    padding-bottom: 60px;
    padding-right: 25px;
    padding-left: 25px;
}
#mainContent p {
    font-family: 'Roboto', sans-serif;
}
.textBlock {
    padding: 30px 20px 40px 20px;
}
.sectionTitle {
    color: #fff;
    padding: 10px;
    width: 100%;
}
.header-img {
    display: block;
}

/* Homepage Only Content:
    pageBlocks - container for individual blocks of content
    codesBlock, etc. - block of content linked to specific pages
    blockTitle - title for each block
    blockSections - container for image and text pairs of Dispatches and For Sale
    imgList - Puts image on left of text
    imgText - Sets the font size for section text
    blockLinks - Removes link decoration
*/
#pageBlocks {
    padding-bottom: 50px;
}
#codesBlock, #oilersBlock, #nesoiBlock, #riflesBlock, #dispatchesBlock, #forsaleBlock {
    flex: 50%;
    padding: 40px 10px 0px 10px;
}
.blockTitle {
    padding: 10px;
    color: #fff;
    text-transform: uppercase;
}
.blockSections {
    padding: 10px 0px;
    clear: both;
}
.imgList {
    padding-right: 5px;
    float: left;
}
.imgText {
    font-size: 14px;
}
.blockLinks {
    text-decoration: none;
    color: #000;
}

/* Codes & Marks Page
    source-title - formatting for title of Notes & Sources
    source-title:after - separator bar
*/
.source-title {
    text-align: center;
    margin-bottom: 20px;
}
.source-title:after {
    content: "";
    display: block;
    margin: 0 auto;
    width: 40%;
    padding-top: 10px;
    border-bottom: solid 2px #888;
}
#codesTextArea a {
    color: #000080;
}
#codesTextArea p {
    padding-bottom: 20px;
}
#wrapperflex {
  display: flex;
}

#left {
  flex: 0 0 50%;
    margin-right: 10px;
}

#right {
  flex: 1;
}

/* Codes & Marks Sub-Pages:
    tblDivide - Divides table rows
    tblGroup - Content headings
    contDrpDwn - Makes headings not look like links
    tblSpace - Adds space to the top and bottom of last item in each group
    colLeft - Sets flex space for images
    colRight - Sets flex space for text
    hide - Hides content block until toggled otherwise
    toSide - Pushes dropdown icon to right side
    bgLightGrey - Adds a background and padding to visible content
    leftSide - Sets flex space for visible content text
    rightSide - Sets flex space for visible content image
*/
.tblDivide {
    border-bottom: 1px solid #cccccc;
    padding-top: 10px;
    padding-bottom: 5px;
}
.tblGroup {
    border-bottom: 2px solid #000080;
    margin-bottom: 0;
    background-color: #EFEFEF;
    padding: 5px 10px;
    
}
.tblGroupHeading1 {
    border-bottom: 2px solid #000080;
    margin-bottom: 0;
    background-color: #EFEFEF;
    padding: 5px 5px;
    
}
.contDrpDwn {
    text-decoration: none;
    color: #000080;
}
.tblSpace {
    padding-top: 10px;
    padding-bottom: 5px;
}
.colLeft {
    flex: 30%;
    min-width: 140px;
}
.colRight {
    flex: 70%;
    padding-bottom: 10px;
}
.hide {
    display: none;
    width: 95%;
    margin-right: auto;
    margin-left: auto;
}
.toSide {
    float: right;
}
.bgLightGrey {
    background-color: #cccccc;
    padding: 10px;
}
.leftSide {
    flex: 55%;
    min-width: 300px;
    padding-bottom: 10px;
}
.rightSide {
    flex: 45%;
    padding-left:10px;
}

/* Oilers Page 
    table-width - Width of table
    table-rows - Formatting for individual rows
    table-rows-heading - Table header container
    img-col-heading - Heading label for image columns
    img-col - Formatting for the columns containing images
    details-col-headering - Heading label for column containing text
    details-col - Formatting for the column containing text
    td a - Details link
    oiler-returnLink - Link that returns user to Oilers main page
    back2Top - Formatting for back to top button
    oilerSearch - Container for quick link section
*/
.table-width {
    width: 800px;
    border-collapse: collapse;
}
.table-rows {
    border-bottom: 2px solid #ccc;
}
.table-rows-heading {
    background-color: #ccc;
}
.img-col-heading {
    border-right: 2px solid #bbb;
}
.img-col-heading, .details-col-heading {
    padding: 10px 0px;
}
.img-col-heading, .img-col {
    width: 200px;
}
.details-col-heading, .details-col {
    width: 400px;
}
.img-col {
    padding: 10px 0px 5px 0px;
}
.details-col {
    padding: 10px 0px;
    text-align: center;
}
.details-col a {
    margin-top: 30px;
    padding-left: 10px;
}
.oiler-returnLink {
    color: #556B2F;
}
#back2Top {
    width: 40px;
    line-height: 40px;
    overflow: hidden;
    z-index: 999;
    display: none;
    cursor: pointer;
    -moz-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    position: fixed;
    bottom: 50px;
    right: 0;
    margin-right: 50px;
    background-color: #DDD;
    color: #555;
    text-align: center;
    font-size: 30px;
    text-decoration: none;
}
#back2Top:hover {
    background-color: #556B2F;
    color: #000;
}
#oilersSearch {
    margin-bottom: 30px;
}
#oilersSearch p {
    padding-bottom: 20px;
    font-family: 'Cinzel', sans-serif;
    font-size: 15px;
    font-weight: 600;
}
.col-jumps {
    text-align: center;
    flex: 25%;
    padding: 0px 20px; 
}
.col-jumps a {
    padding: 10px 20px;
    border: solid 2px #bbb;
    border-radius: 10px;
}
@media only screen and (max-width: 850px) and (min-width: 560px) {
    .table-width {
        width: 100%;
        border-collapse: collapse;
    }
    .img-col-heading, .img-col {
        width: 25%;
    }
    .details-col-heading, .details-col{
        width: 50%;
    }
}
/* Oilers Image Pages */
.oilerinfoImg {
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 50px;
}

/* NESOI page
    articleLinkGroup - creates space between article links
    articleLink - Spcaes link text from image
*/
.articleLinkGroup {
    padding-bottom: 20px;
    padding-top: 20px;
    overflow: auto;
}
.articleLink {
    padding: 15px;
}
.adjustText {
    vertical-align: middle;
}

/* Dispatches Page
    read-newsletter - formatting for link to full newsletter
    newsletter_preview - formatting for newsletter container
    previewCont - adds space to top of image and text
    dispatchPrev-img - left-side container for image
    dispatchPrev-text - right-side container for text and text formatting
    dispatchPrev-heading - formatting for newsletter title text
*/
.read-newsletter {
    font-size: 14px;
    float: right;
    padding: 30px 5px 0px 0px;
    color:#1B5A45;
}
.newsletter_preview {
    border-top: 3px solid #ccc;
    margin-top: 15px;
    padding: 10px;
}
.previewCont {
    padding-top: 10px;
}
.dispatchPrev-img {
    flex: 30%;
    min-width: 140px;
}
.dispatchPrev-text {
    flex: 70%;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
}
.dispatchPrev-heading {
    color: #fff;
    float: right;
    padding-right: 20px;
}

/* Dispatch Subpages 
    newsletter_group - container for all newsletter contents
    newsletter-img - removes white space below heading image
    date-box - container for dispatch date
    dispatch - formatting for 'Dispatch' 
    dispatch-date - formatting for the date
    ma-image - Main Article section containting the image
    ma-text - Main Article section containing the text
    heading-text - Formatting for the Article titles
    read-fullarticle - Formatting for 'READ FULL ARTICLE' link
    nfu-img - Subarticle section containing the image
    nfu-text - Subarticle section containing the text and 'READ MORE'
    complete - Hides rest of text until toggled otherwise
    fs-image - For Sale section containing the image
    fs-textlinks - For Sale section containing the links
    fs-textlinks a - Formatting for the links
*/
.newsletter_group {
    border: 5px solid #555;
    padding: 10px;
}
.newsletter-img {
    display: block;
}
.date-box{
    padding: 10px 10px;
    border: 1px solid #2f4f4f;
    background: linear-gradient(90deg, #fff 0px, #fff 230px, #2f4f4f 230px, #2f4f4f 100%);
}
.dispatch {
    font-size: 18px;
    font-family: 'Special Elite', cursive !important;
}
.dispatch-date{
    font-family: 'Special Elite', cursive !important;
    padding-left: 25px;
}
.ma-image {
    flex: 30%;
    min-width: 140px;
    clear: both;
}
.ma-text {
    flex: 70%;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-top: 5px;
}
.heading-text {
    font-family: 'Special Elite', cursive !important;
    font-size: 20px;
    padding-top: 25px;
    padding-bottom: 0;
    margin: 0;
    border-bottom: none;
}
.read-fullarticle {
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    float: right;
    padding: 10px 5px 0px 0px;
    color: #1B5A45;
}
.nfu-img {
    flex: 30%;
    min-width: 140px;
}
.nfu-text {
    flex: 70%;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
}
.complete {
    display: none;
}
.more {
    font-family: 'Roboto', sans-serif;
    color: #1B5A45;
    float: right;
    padding: 20px;
}
.fs-image {
    flex: 20%;
    min-width: 100px;
}
.fs-textlinks {
    flex: 80%;
    padding-left: 20px;
}
.fs-textlinks a {
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    color: #1B5A45;
}
.dispatches-returnLink {
    color: #1B5A45;
}
/* Printable Section
    In the works. Not implemented.
*/
.newsletter-print {
    display: none;
}
.print-text {
    font-family: 'Roboto', sans-serif !important; 
}
.print-textlinks {
    flex: 80%;
    padding-left: 20px;
}
.print-textlinks a {
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    color: #1B5A45;
}
@media print {
    .newsletter-screen {
        display: none;
    }
    .newsletter-print {
        display: block;
    }
}

/* Dispatches Main Article 
    article-heading - formatting for article title
    articleimg-left - arranges img to the left w/ text wrapping
    articleimg-right - arranges img to the right w/ text wrapping
    article-text p - adds space between paragraphs
*/
.article-heading {
    margin-bottom: 0px;
    margin-top: 30px;
}
.articleimg-left {
    float: left;
    padding: 20px 20px 20px 10px;
}
.articleimg-right {
    float: right;
    padding: 10px 20px 20px 20px;
}
.article-text p {
    padding-top: 20px;
}

/* Notes and Sources page */
.bookgroup-header {
    padding-top: 50px;
}
.booktable {
    width: 800px;
    border-collapse: collapse;
}
.booktable-items {
    width: 800px;
    border-collapse: collapse;
}
.booktable-rows{
    border-bottom: 2px solid #ccc;
}
.booktable-rows:last-child {
    border-bottom: none;
}
.bookimg-col {
    width: 20%;
    padding: 10px 0px 10px 25px;
	
}
.bookimg-image {
	width: 140px;
	height: 140px;
	object-fit: contain;
	
}
.bookimg-image-item {
	width: 240px;
	height: 240px;
	object-fit: contain;
	
}
.bookimg-image-gallery {
	width: 400px;
	height: 400px;
	object-fit: contain;
	
}
.bookdetails-col {
    width: 80%;
    padding: 20px 2% 20px 0;
    text-align: left;
}

.bookdetails-col h4 {
	padding-left: 10px;
	margin-top: 0px;
	margin-bottom: 5px;
}
.tblGroup.txtGreen {
    border-bottom: 2px solid #556b2f;
}
.tblGroup.txtRed {
    border-bottom: 2px solid #c8102e;
}
.tblGroup.txtOrange {
    border-bottom: 2px solid #a0522d;
}
.tblGroup.txtAqua {
    border-bottom: 2px solid #008080;
}
@media only screen and (max-width: 850px){
    .booktable {
        width: 100%;
        border-collapse: collapse;
    }
    .bookimg-col {
        width: 18%;
    }
    .bookdetails-col {
        width: 82%;
        padding-left: 3%;
    }
}


/* Level I Subpage Content
    textBlock ul, li, a - Text formatting for page links
    txtBlue..etc. - Page link color, used in accordance with specific page
*/
.textBlock ul {
    padding: 0;
}
.textBlock li {
    list-style: none;
    padding: 6px 0px;
}
.textBlock a {
    text-decoration: none;
    font-weight: 600;
}
.txtBlue, .txtBlue a {
    color: #000080;
}
.txtGreen, .txtGreen a {
    color: #556b2f;
}
.txtRed, .txtRed a {
    color: #c8102e;
}
.txtOrange, .txtOrange a {
    color: #a0522d;
}
.txtAqua, .txtAqua a {
    color: #008080;
}

/* Level II Subpage Content
    h3 - Sets the size and weight of H3 
    h4 - Sets the size, color, and adds decorative bottom border to H4 headings
    p - sets the size and adjusts left padding for paragraph text
*/
h3 {
    font-size: 21px;
    font-weight: 600;
}
h4 {
    font-size: 17px;
    color: #555;
    margin-top: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
}
p {
    font-size: 14px;
    padding-left: 10px;
}

/* SIDE SECTION */
aside {
	flex: 20%;
    min-height: 900px;
	background-color: #eee;
	padding: 20px;
}

/* Side Navigation
    sideNav - main container for sidebar navigation
    sideNav ul,li,a - sets spacing, font weight, and removes text decorations
    sideNav search - Search bar formatting
    sideBlack...etc. - Sets the color for the bar next to each side nav item
    sideBlack a...etc. - Sets the text color for each side nav item
    button - Adds formatting to Previous Page button so it matches other link formatting
    sideBg - Formatting to allow slide in background hover effect
*/
#sideNav {
    margin-top: 50px;
	height: 100%;
}
#sideNav ul {
    padding-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
}
#sideNav li {
    list-style: none;
    padding-top: 10px;
    padding-right: 0px;
    padding-left: 10px;
    padding-bottom: 10px;
    margin-bottom: 50px;
    margin-right: 0px;
}
#sideNav a {
    font-weight: 600;
	text-align: center;
	text-decoration: none;
}
#sideNav #search {
    border: none;
    width: 79%;
    padding: 15px 10px;
    margin-left: 5px;
}
.sideBlack {
    border-left: 9px solid #000;
}
.sideBlack a {
    color: #000;
}
.sideAqua {
    border-left: 9px solid #008080;
}
.sideAqua a {
    color: #008080;
}
.sideDkAqua {
    border-left: 9px solid #2f4f4f;
}
.sideDkAqua a {
    color: #2f4f4f;
}
.sideYellow {
    border-left: 9px solid #A5A428;
}
.sideYellow a {
    color: #A5A428;
}
.button {
    color: #000;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Cinzel', serif;
}
.sideBg {
    background: linear-gradient(to right, #ccc 50%, #eee 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: all 0.5s ease-out;
}
.sideBg:hover {
    background-position: left bottom;
}

/* FOOTER
    footerTitle - Formatting for footer section titles
    footerNavSec, contactInfo, rightSection - sets the widths and divides into three sections
    footerNav ul,li,a - formatting for footer navigation links
*/
footer {
	width: 100%;
	/*height: 360px;*/
	background-color: #505050;
}
.footerTitle {
    font-size: 18px;
    color: #888;
    padding-bottom: 3px;
    border-bottom: 1px solid #888;
}
#footerNavSec, #contactInfo, #rightSection {
    flex: 30%;
    min-width: 200px;
    padding-top: 50px;
}
#footerNavSec, #contactInfo {
    padding-right: 50px;
}

/* Footer Navigation Section */
#footerNav ul {
    padding-top: 15px;
    padding-left: 15px;
}
#footerNav li {
    list-style: none;
}
#footerNav a {
    color: #aaa;
    text-decoration: none;
}

/* Footer Contact Section and Footer Right Section */
#footerContact{
    padding-top: 15px;
    padding-left: 15px;
}
#footerContact p, #footerRight p {
    color: #aaa;
}

/* Footer Copyright
    copyright - Text formatting for copyright section
*/
#copyright {
    padding-top: 40px;
    padding-bottom: 20px;
    background-color: #505050;
}
#copyright p {
    color: #888;
    text-align: center;
    font-size: 14px;
}

/* Misc mailchimp subscribe form id to change text */
#mc_embed_signup {
	clear:left; 
	font:14px Helvetica,Arial,sans-serif; 
}

/* Adjust content and navigation for Small Screens */
@media only screen and (max-width: 768px) {
    html, body {
        font-size: 0.9em;
    }
    
    #mainContent {
        padding-top: 0px;
        padding-bottom: 60px;
        padding-right: 0px;
        padding-left: 0px; 
    }
    .table-width {
        width: 100%;
    }
    #oilersSearch a {
        padding: 2px 10px;
    }
    .col-jumps {
        padding: 0 5px;
    }
    #sideNav ul {
        margin-left: 8%;
    }
    footer {
        height: auto;
    }
}
@media only screen and (max-width: 560px) {
    .resizeBlock {
        min-width: 300px;
        padding-left: 10px;
    }
}

/* Adjust Content width for Wide Screens */
@media only screen and (min-width: 1300px) {
    #wrapper {
        width: 80%;
    }
}

/* CONTACT PAGE
    .ohnohoney class = class to hide honeypot fields to trap spam bot submissions and reduce spam
*/
.ohnohoney{
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        height: 0;
        width: 0;
        z-index: -1;
    }


/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #000;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  font-family: 'Cinzel', serif;
  font-size: 1em;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #45a049;
}

/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

/* FOR SALE PAGE
    .forsalebutton class = copy of the Submit input button. Mainly used for the 'Order Now' and the 'Terms and Cond' buttons on each For Sale Item
*/
.forsalebutton{
  background-color: #008080;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  font-family: 'Cinzel', serif;
  font-size: .75em;
	margin-bottom: 5px;
	width: 116px;
}
#forsaledetailcontainer{
	overflow: hidden;
}
#forsaledetailleft {
	float: left;
}

#forsaledetailright {
	float: right;
}
#gallerycontainer{
    margin: 0 auto;
}


#gallerycontainer .gallery a img {
  float: left;
  width: 20%;
  height: auto;
  border: 2px solid #fff;
  -webkit-transition: -webkit-transform .15s ease;
  -moz-transition: -moz-transform .15s ease;
  -o-transition: -o-transform .15s ease;
  -ms-transition: -ms-transform .15s ease;
  transition: transform .15s ease;
  position: relative;
}

#gallerycontainer .gallery a:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  z-index: 5;
}

#ordernow {
	position: relative;
}
.clear {
  clear: both;
  float: none;
  width: 100%;
}

