/*	Color #5261C6 Medium blue (menu, navigation) rgb(82, 97, 198)
        Color #080473 Very Dark blue (text, borders) rgb(8, 4, 115)
        Color #00108C Primary blue (buttons, contrast backgrounds and such) rgb(0, 16, 140)
        Color #9C9A9C Gray (highlights, hover, contrast, external background) rgb(153, 153, 153)
        Color #EAEAEA Light Gray (form background)
*/

body {
    text-align: center;
    /*font: 600 14px/24px "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", Sans-Serif;*/
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-size: 11pt;
    font-weight: 500;
    color: #080473;
    background-color: #9C9A9C;
}

.siteWrapper {
    width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.site {
    border-style: solid;
    border-color: #080473;
    border-width: 1px;
}

header {
    display: table;
    position: relative;
    overflow: hidden;
    margin: 0;
    background-color: white;
    /*	color: yellow;                           */
    width: 100%;
    min-height: 70px;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #00108C;
}

.identity {
    vertical-align: middle;
    display: table-cell;
    /*	background-color: green;        */
    width: 25%;
}

.identity p {
    margin: 0pt;
    font-style: italic;
    font-size: 8pt;
    font-weight: bold;
    text-align: center;
}

.slogan {
    vertical-align: middle;
    display: table-cell;
    /*	background-color: blue;                    */
    width: 50%;
    text-align: center;
}

.slogan p {
    margin: 0pt;
    font-style: normal;
    font-size: 14pt;
    font-weight: bold;
    text-align: center;
}

.slogan span {
    /*	margin: 0pt;*/
    font-style: italic;
    font-size: 8pt;
    font-weight: bold;
    text-align: center;
}

.logo {
    vertical-align: middle;
    display: table-cell;
    /*background-color: red;*/               
    width: 25%;
}

.logo img {
    max-width: 140px;
}

nav {
    width: 100%;
    height: auto;
    background-color: #00108C; /*#9C9A9C;*/
}

/*Strip the ul of padding and list styling*/
nav ul {
    display: flex;
    list-style-type:none;
    margin:0;
    padding:0;
    flex-wrap: wrap;
}

/*Create vertical spacing*/
nav li {
    margin-bottom: 1px;
}


/*Style for menu links*/
nav li a {
    display:block;
    min-width:120px;
    height: 28px;
    text-align: center;
    line-height: 28px;
    color: #fff;
    background-color: #00108C;
    text-decoration: none;
}

/*Hover state for top level links*/
nav li:hover a {
    background: #9C9A9C; /*#19c589;*/
}

.eventlist {
    /*width: 100%;*/
    height: auto;
    background-color: #00108C; /*#9C9A9C;*/
    background-color: yellow;
}

/*Strip the ul of padding and list styling*/
.eventlist ul {
    display: flex;
    list-style-type:none;
    margin:0;
    padding:0;
    flex-wrap: wrap;
    justify-content: center;
}

/*Create vertical spacing*/
.eventlist li {
    margin-bottom: 1px;
    /*background-color: orange;*/
}

/*Make all eventlist links full width*/
.eventlist ul li, li a {
    min-width: 120px;
}

/*Style for eventlist links*/
.eventlist li a {
    display:block;
    padding-left: 10px;
    padding-right: 10px;
    min-width:120px;
    height: 28px;
    text-align: center;
    line-height: 28px;
    color: #fff;
    color: #00108C;
    background-color: #00108C;
    background-color: yellow;
    text-decoration: none;
}

/*Hover state for top level links*/
.eventlist li:hover a {
    background: #9C9A9C; /*#19c589;*/
}

footer {
    display: table;
    overflow: hidden;
    margin: 0 auto;
    padding: 2px 0px 2px 0px;
    background-color: #00108C;
    width: 100%;
    font-size: 8pt;
    font-style: normal;
    font-weight: normal;
    color: white;
}

/*Strip the ul of padding and list styling*/
footer ul {
    display: flex;
    justify-content: center;
    list-style-type:none;
    margin:0;
    padding:0;
    flex-wrap: wrap;
}

/*Create vertical spacing*/
footer li {
    margin-bottom: 1px;
    display:block;
    min-width:120px;
    padding: 0 5px 0 5px;
    text-align: center;
    color: #fff;
    text-decoration: none;
}

/*Make all footer links full width*/
footer ul li, li a {
    min-width: 120px;
}

/*Style for footer links*/
footer li a {
    display:block;
    min-width:120px;
    padding: 0 5px 0 5px;
    text-align: center;
    color: #fff;
    text-decoration: none;
}

/*Hover state for top level links*/
footer li:hover a {
    background: #9C9A9C; /*#19c589;*/
}

footer li p {
    margin: 0px;
    text-align: center;
    text-indent: 0px;
    padding: 0 5px 0 25px;
}

.contentWrapper {
    display: block;
    overflow: hidden;
    margin: 0 0 0  0;
    min-height: 300px;
    background-color: white;
    width: 100%;
    padding: 1px 0 0 0;
    border-top-style: solid;
    border-top-color: #00108C;
    border-top-width: 1px;
/*    background-color: pink;*/
}

.contentWrapper h1 {
    margin-bottom: 5px;
    margin-top: 5px;
    /*background-color: fuchsia;*/
}

.mainWrapper {
    display: block;
    overflow: hidden;
    margin: 0 auto;
    /*min-height: 300px;*/
    background-color: white;
    /*width: 100%;*/
    padding: 5px 5px 5px 5px;
    border-top-style: solid;
    border-top-color: #00108C;
    border-top-width: 1px;
    /*background-color: pink;*/
}

.mainWrapper h1 {
    margin-bottom: 5px;
    margin-top: 5px;
    /*width: 100%;*/
    /*background-color: fuchsia;*/
}

.textWrapper {
    /*max-width: 50%;*/
    /*float: right;*/
    width: 100%;
    margin: 0 auto;
    padding: 0px 2px 5px 2px;
    /*background-color: lightgreen;*/
}

.sliderWrapper {
    /*box-sizing: border-box;*/
    margin-right: 10px;
    padding: 0 auto;
    float: left;
    width: 50%;
    border: 1px solid #080473;
    background-color: #EAEAEA;
    /*background-color: cyan;*/
}

.sliderItem {
    margin: 1px 1px 1px 1px;
    margin: 0 auto;
    padding: 2px 2px 2px 2px;
    /*padding: 0 auto;*/
    /*background-color: red;*/
}

.sliderItem img {
    text-align: center;
    width: 100%;
    color: #080473;
    border: 1px solid #080473;
}

.sliderItemText h2 {
    width: 100%;
    font-size: 14pt;
    font-weight: 600;
    text-decoration: none;
    margin-top: 2px;
    margin-bottom: 2px;
/*    color: green;
    background-color: yellow;*/
}

.sliderItemText h3 {
    width: 100%;
    font-size: 12pt;
    font-weight: 600;
    text-decoration: none;
    margin-top: 2px;
    margin-bottom: 2px;
/*    color: black;
    background-color: yellow;*/
}

.sliderNav {
    display: table;
    overflow: hidden;
    margin: 0px auto;
    padding: 0px;
    line-height: 28px;
    background-color: #00108C;
    background-color: #EAEAEA;
/*    background-color: purple;*/
    width: 100%;
}

.sliderNav p { 
    margin: 0px;
    padding: 0px;
    text-align: center;
}

.sliderNav a { 
    margin: 0px 0px 0px 0px;
    padding: 4px 10px 4px 10px;
    background-repeat: no-repeat;
    width: 28px;
    height: 28px;
}

.sliderNav a:hover { 
    margin: 0px 0px 0px 0px;
    padding: 4px 10px 4px 10px;
    font-size: 10pt;
    font-weight: 900;
    width: 28px;
    height: 28px;
}

.sliderNav a { 
    margin: 0px 0px 0px 0px;
    font-style: normal;
    font-size: 8pt;
    font-weight: 700;
    text-decoration: none;
    color: white;
}

.cattleGrid {
    clear: both;
    margin: 5px 0px 5px 0px;
    margin: 0 auto;
    padding: 5px;
    display: block;
    display: inline-block;
    /*width: 100%;*/
    /*background-color: yellow;*/
}

.cattleGridRow {
    /*display: table-row;*/
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    justify-content: center;
    /*width: 100%;*/
    margin: 5px;
    padding: 5px;
/*    border-style: solid;
    border-color: red;
    border-width: 1px;*/
    /*background-color: red;*/
}

.cattleGridItem {
    margin: 5px 5px 5px 5px;
    padding: 4px 4px 4px 4px;
    /*display: inline-block;*/
    /*float: left;*/
    text-indent: 0px;
    border: 1px solid #080473;
    /*width: 250px;*/
   /*background-color: green;*/
}

.cattleGridItem p {
    margin: 0px;
    padding: 4px;
    display: block;
    /*background-color: cyan;*/
}

.cattleGridItem img {
    margin: 0px;
    padding: 0px;
    max-width: 264px;
    text-align: center;
    border: 1px solid #080473;
    /*background-color: green;*/
}

.cattleGridItem a { 
    margin: 0px;
    font-style: normal;
    font-size: 12pt;
    font-weight: 700;
    text-decoration: none;
    color: #080473;
    /*background-color: purple;*/
}

.cattleGridItem a:hover { 
    color: #5261C6;
}

.cattleGridItem a:visited { 
    color: red;
}

span.highlightF {
    text-align: center;
    text-indent: 0px;
    text-decoration: none;
    padding: 5px 5px 5px 5px;
    background-color: yellow;
}

.highlight {
    clear: both;
    /*float: left;  */
    /*margin: 10px 10px 10px 10px;*/
    margin: 10px 25% 10px 25%;
    margin: 0 auto;
    text-align: center;
    display: table;
    /*position: relative;*/
    padding: 10px 10px 20px 10px;
    overflow: hidden;
    width: 50%;
    border: 1px solid #080473;
    background-color: yellow;
}

.highlight h1 {
    clear: both;
    text-align: center;
    text-indent: 0px;
    font-size: 16pt;
    font-weight: 600;
    font-variant: small-caps; 
    text-decoration: none;
    background-color: yellow;
    border: 1px solid #080473;
}

.highlight h2 {
    text-align: center;
    text-indent: 0px;
    font-size: 14pt;
    font-weight: 600;
    text-decoration: none;
    background-color: yellow;
    border: 1px solid #080473;
    width: 100%;
    background-color: red;
}

p.highlight4 {
    margin: 10px 0px 0px 0px;
    padding: 10px 50px 10px 50px;
    text-align: center;
    display: inline;
    /*width: 60%;*/
    font-size: 14pt;
    font-weight: 500;
    text-decoration: none;
    background-color: yellow;
    border: 1px solid #080473;
}

.highlight5 {
    clear: both;
    padding: 10px 10px 10px 10px;
    text-align: center;
    text-indent: 0px;
    font-size: 12pt;
    font-weight: 600;
    font-variant: small-caps; 
    text-decoration: none;
    border: 0px;
    background-color: yellow;
}

.detailWrapper {
    display: flex;
    /*overflow: hidden;*/
    margin: 0 0 0  0;
    min-height: 300px;
    background-color: white;
    width: 100%;
    padding: 1px 0 0 0;
    border-top-style: solid;
    border-top-color: #00108C;
}

.cattleDetail {
    margin: 0px 0px 5px 10px;
    margin: 0 auto;
    padding: 10px 7px 5px 10px;
    padding: 0 auto;
    /*display: inline-block;*/
    /*float: right;*/
    /*width: 400px;*/ 
    flex-basis: 50%;
    /*float: right;*/
    /*background-color: orange;*/
}

.cattleDetail img {
    margin: 0px;
    padding: 0px;
    display: flex;
    width: 100%;
    border: 1px solid #080473;
    /*background-color: blue;*/
}

.cattleDetailVideo {
    margin: 0px;
    padding: 0px;
    display: none;
    width: 100%;
    /*background-color: green;*/
}

.cattleDetailVideo iframe {
    margin: 0px;
    padding: 0px;
    display: flex;
    width: 100%;
    min-height: 300px;
    border: 1px solid #080473;
    /*background-color: black;*/
}

.thumbGridRow {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
}

.thumbGridItem {
    margin: 0px;
    padding: 2px 2px 2px 2px;
    text-indent: 0px;
    /*background-color: red;*/ 
}

.thumbGridItem img {
    max-width: 105px;
    border: 1px solid #080473;
}

div.thumbCaption {
    text-align: center;
    text-indent: 0px;
    font-size: 8pt;
    font-weight: 400;
    font-variant: small-caps; 
    text-decoration: none;
    margin-top: 2px;
    /*background-color: green;*/
}

div.thumbCaptionVideo {
    text-align: center;
    text-indent: 0px;
    font-size: 8pt;
    font-weight: 400;
    font-variant: small-caps; 
    text-decoration: none;
    /*border: 0px;*/
    margin-bottom: 2px;
    background-color: yellow;   /*keep the yellow*/
}

.cattleStats {
    margin: 0px 5px 5px 5px;
    margin: 0 auto;
    padding: 10px 7px 5px 10px;
/*    display: inline-block;*/
    float: left;
    flex-basis: 50%;
    /*background-color: yellow;*/
}

.cattleStats h1 {
    margin-top: 5px;
    margin-bottom: 5px;
}

.detailNav{
    /*background-color: grey;*/
    margin-bottom: 10px;
}

.prevButton {
    float: left;
}

.nextButton {
    float: right;
}

.navButton {
    margin: 0 auto;
    background-color: #00108C;
    text-align:center;
    color:#FFFFFF;
    font-size:12px;
    font-weight:bold;
    border-color: #9C9A9C;
}

.navButton:hover {
    margin: 0 auto;
    background-color: #5261C6;
    text-align:center;
    color:#FFFFFF;
    font-size:12px;
    font-weight:bold;
    border-color: white;
    text-decoration: none;
}

.spanDetailNav {
    /*color: #9C9A9C;*/
    /*color: slategray;*/
    /*color: dimgray;*/
}


.divInline {
    display: inline-block;
    /*background-color: orange;*/
    padding-top: 4px;
}

table.pedTable {
    table-layout: fixed;
    background-color: #EAEAEA;
    /*background-color: red;*/
}

td.pedTable {
    border: 0px; 
    overflow: hidden;
    white-space: nowrap;
    text-align: left;
    text-indent: 0px;
    text-decoration: none;
    /*background-color: white;*/
}

table, td, tr {
    border-collapse: collapse;
}

.contact
{
    margin: 10px 5px 5px 5px;
    padding: 2px;
    /*background: yellow;*/    
    /*text-align: left;*/
    display: inline-block;
}

.userform {
    margin: 0 auto;
    text-align: center;
    display: table;
    position: relative;
    padding: 10px 0px 0px 0px;
    overflow: hidden;
}

form {
    width: 360px;
    border:solid 1px #080473;
    background-color: #EAEAEA;
    padding: 10px 10px 10px 10px;
    text-align: center;
}

div.notice {
    display: table;
    margin: auto;
    width: 360px;
    border:solid 1px #080473;
    background-color: #EAEAEA;
    padding: 10px 10px 10px 10px;
}

p.notice {
    text-align: center;
    font-weight:normal;
    /*font-family: Arial,serif;*/
    font-style: normal;
    font-size: 9pt;
}

.note {
    /*font-family: Arial,serif;*/
    font-style: normal;
    font-size: 8pt;
    font-weight: normal;
    text-align: center;
    color:#080473;
    text-indent: 0px;
    /*background-color: red;*/
}

fieldset {
    margin: 0;
    border: 0px;
    padding: 0px 20px 10px 20px;
    /*background-color: yellow;*/
}

legend {
    display:block;
    font-weight:bold;
    /*font-family: Arial,serif;*/
    font-style: normal;
    font-size: 10pt;
    color:#080473;
    padding: 0px 0px 10px 0px;
}

form label {
    display: block;
    width: 310px;
    font-weight: normal;
    /*font-family: Arial,serif;*/
    font-style: normal;
    font-size: 10pt;
    color: #080473;
    text-align: left;
    line-height: 12px;
    padding: 0px 0px 10px 0px;
    /*	background-color: red;*/
}

form input {
    display: block;
    margin-top: 3px;
    font-weight: normal;
    /*font-family: Arial,serif;*/
    font-style: normal;
    font-size: 10pt;
    color: #080473;
    text-align: left;
}

form select {
    float: left;
    display: block;
    font-weight: normal;
    /*font-family: Arial,serif;*/
    font-style: normal;
    font-size: 10pt;
    color: #080473;
    text-align: left;
}

form label.field-name,
form label.field-phone,
form label.field-captcha,
form label.field-describe,
form label.field-business,
form label.field-address1,
form label.field-address2,
form label.field-city,
form label.field-email {
	clear: left;
	}

form label.field-name,
form label.field-describe,
form label.field-email,
form label.field-captcha,
form label.field-phone {
    float: left;
    margin: 0px 10px 0px 0px;
    width: 306px;
    }

form label.field-name input,
form label.field-email input,
form label.field-captcha input,
form label.field-phone input {
    float: left;
    width: 306px;
    padding: 0px;
    }

textarea {
    display: block;
    width: 310px;
    font-weight: normal;
    font-family: Arial,serif;
    font-style: normal;
    font-size: 10pt;
    color: #080473;
    text-align: left;
    }

form textarea {
    margin-top: 3px;
    width: 306px;
    }

.errField {
    display: block;
    position: relative;
    overflow: hidden;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 5px 0px;
    /*background-color: green;*/
    width: 310px;
    font-weight: normal;
    /*font-family: Arial,serif;*/
    font-style: normal;
    font-size: 11pt;
    color: red; /*#080473;*/
    text-align: left;
}


.button {
    clear:both;
    margin: 0 auto;
    width:95px;
    height:29px;
    background-color: #00108C;
    text-align:center;
    line-height:27px;
    color:#FFFFFF;
    font-size:12px;
    font-weight:bold;
    border-color: #9C9A9C;
}

.button:hover {
    margin: 0 auto;
    width:95px;
    height:29px;
    background-color: #5261C6;
    text-align:center;
    line-height:27px;
    color:#FFFFFF;
    font-size:12px;
    font-weight:bold;
    border-color: white;
    text-decoration: none;
}

.sitemap  {
    margin: 0;
    /*font-family: Arial,serif;*/
    font-style: normal;
    font-size: 10pt;
    font-weight: normal;
    text-align: left;
    color:#080473;
    text-indent: 0px;
    /*    	background-color: red;*/
}

.sitemap ul {
    list-style: disc;
}

.sitemap li {
    margin: 0;
    color:#080473;
    /*	background-color: red;*/
}

.sitemap li a { 
    margin: 0px;
    text-decoration: underline;
    color: #080473;
    /*	background-color: yellow;*/
}

.sitemap li a:hover { 
    margin: 0px;
    padding: 0px;
    font-weight: 700;
    text-decoration: none;
    color: #5261C6;
}

.sitemap li a:visited { 
    margin: 0px;
    padding: 0px;
    font-weight: normal;
    text-decoration: underline;
    color: #551A8B;
    color: red;
}

p.caption {
    text-align: center;
    text-indent: 0px;
    font-size: 12pt;
    font-weight: 700;
    font-variant: small-caps;
    text-decoration: none;
}

p.captionHighlight {
    text-align: center;
    text-indent: 0px;
    font-size: 12pt;
    font-weight: 700;
    font-variant: small-caps;
    text-decoration: none;
    background-color: yellow;
}

p.noticeHighlight {
    text-align: center;
    text-indent: 0px;
    font-size: 9pt;
    font-weight: 500;
    text-decoration: none;
    background-color: yellow;
    border: 1px solid #080473;
    padding: 5px 0px 5px 0px;
}

p.subcaption {
    text-align: center;
    text-indent: 0px;
    font-size: 11pt;
    font-weight: 500;
    text-decoration: none;
}

p.capnote {
    display:block;
    font-weight:normal;
    font-style: normal;
    font-size: 9pt;
    text-align:center;
    color:#080473;
    padding: 0px 0px 0px 0px;
}

p.pCenter {
    text-align: center;
    text-indent: 0px;
    /*background-color: lightgreen;*/
}

p.pPlus, span.pPlus {
    font-size: 12pt;
    font-weight: 700;
}

p.stats {
    text-indent: 0px;
    line-height: 1.5;
    padding-top: 5px;
    /*background-color: pink;*/
}

p.sold {
    text-align: center;
    text-indent: 0px;
    font-size: 16pt;
    font-weight: 600;
    font-variant: small-caps; 
    text-decoration: none;
    background-color: yellow;
    border: 1px solid #080473;
}

p.statsBottom {
    padding-bottom: 5px;
}

p.statsIndent {
    text-indent: 0px;
}

a.aPlus { 
    margin: 0px;
    font-style: normal;
    font-size: 12pt;
    font-weight: 700;
    text-decoration: underline;
    color: #080473;
}

a:hover.aPlus { 
    margin: 0px;
    padding: 0px;
    font-style: normal;
    font-size: 12pt;
    font-weight: 700;
    text-decoration: none;
    color: #5261C6;
}

h1 {
    margin: 5px 0px 5px 0px;     
    /*  font-family: Verdana;      */
    /*  font-style: normal;        */
    font-size: 16pt;
    font-weight: bold;
    text-align: center;
    font-variant: small-caps; 
    text-decoration: none;
    /*  color: #080473;       */
}

span.spanPlus {font-size: 13pt;}
span.spanCenter {text-align: center;}
span.spanEmphasize {font-weight: 700;}
span.spanCaps {font-variant: small-caps; text-decoration: none; }
span.soldSmall {
    text-align: center;
    text-indent: 0px;
    font-size: 10pt;
    font-weight: 600;
    font-variant: small-caps; 
    text-decoration: none;
    background-color: yellow;
}

p {
    margin: 0px 10px 5px 10px;
    text-align: left;
    text-indent: 1em;
}

.specialbox {
    margin: 0px auto;
    padding: 5px 20px 6px 20px;
    text-align: center;
    display: table;
    overflow: hidden;
    border:solid 5px #9C9A9C;
    background-color: #00108C;
}

.specialbox h2 {
    text-align: center;
    color: white;
}

.specialbox h3 {
    text-align: center;
    color: white;
}

.specialbox li {
    margin: 0;
    padding: 3px 0px 2px 0px;
    font-style: normal;
    font-size: 12pt;
    font-weight: normal;
    text-align: left;
    color:#ffffff;
    text-indent: 0px;
}


#content-inner {
    width:10000px;
    height: 480px;
    color: red;
}

.page {
    width: 900px;
    height: 480px;
    float: left;
}



@media only screen and (max-width: 900px) {
    .siteWrapper {
        width: 100%;
    }

    header {
        display: none;
    }

    .detailWrapper {
        flex-wrap: wrap;
    }
    
    .cattleDetail {
        flex-basis: 100%;
        /*background-color: fuchsia;*/
    }

    .cattleStats {
        flex-basis: 100%;
    }

    .mainWrapper {
/*        background-color: black;
        color: white;*/
    }
    
}

@media only screen and (max-width: 650px) {

    .mainWrapper {
        /*background-color: green;*/
    }

    .sliderWrapper {
        width: auto;
        margin-right: 0px;
        margin-bottom: 10px;
        /*background-color: fuchsia;*/
    }

    form {
        width: 250px;
    }

    form label {
        width: 200px;
    }

    form label.field-name,
    form label.field-describe,
    form label.field-email,
    form label.field-captcha,
    form label.field-phone {
        width: 200px;
    }

    form label.field-name input,
    form label.field-email input,
    form label.field-captcha input,
    form label.field-phone input {
        width: 200px;
    }

    textarea {
        width: 200px;
    }

    form textarea {
        width: 200px;
    }

    .errField {
        width: 200px;
    }

    div.notice {
        width: 200px;
    }


}



