<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**********************************************/
/*******        Helper Classes          *******/
/**********************************************/
/* @group region*/

/* Removes Padding of Columns Inside This Row  */
.relative {
    position: relative;
}

/* Removes Padding of Columns Inside This Row So They Touch The Edge Of Container */
.row-nopad {
    margin-right: -15px;
    margin-left: -15px;
}

.row-nopad &gt; * {
    padding-right: 0;
    padding-left: 0;
}

.row-nopad:before,
.row-nopad:after {
    display: table;
    content: " ";
}

.row-nopad:after {
    clear: both;
}
.nopad-md{padding: 0;}

@media (min-width: 992px) {
    .nopad-md{
        padding-right: 15px;
        padding-left: 15px;
    }
}

/* Disables Textarea Resize that Messes with Design */
textarea {
    resize: none;
}

/* Force Block Elements To Stack Horizontally */
/* Ex: Span Around A Phrase So It drops Down */
/* As a Whole When Responding  */
.inline-block {
    display: inline-block
}

/* Prevents Flicker On Transition */
.carousel {
    position: relative;
    z-index: 1000;
}

/* Always Displays a Scrollbar even if page does not need to scroll */
html {
    font-size: 16px;
    height: 100%;
    min-height: 100%;
    overflow-y: scroll;
    scroll-behavior: smooth;
}
/* @endregion*/

/**********************************************/
/*******        Fonts Classes           *******/
/**********************************************/

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: clarendon-text-pro, serif;
    font-weight: 700;
    margin-top: 0;
}

h1 {
    margin-bottom: 20px;
    text-align: center;
}

.bold {
    font-weight: 700;
}

.italic {
    font-style: italic;
}

/**********************************************/
/*******       Template Classes         *******/
/**********************************************/

body {
    font-family: franklin-gothic-atf, sans-serif;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6;
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

main {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
}

.wood-bg {
    background: center top / 1200px auto repeat-x url('../images/template/wood-bg.jpg');
    color: #fff;
    text-shadow: 1px 1px 2px rgb(32 29 21 / 95%);
}

.logo {
    padding: 40px 15px;
    text-align: center;
}

.logo-inner {
    display: inline-block;
    vertical-align: top;
}

.hero img {
    width: 100%;
}

.section-pad {
    padding-top: 40px;
    padding-bottom: 40px;
}

.shadow-section {
    position: relative;
    -webkit-box-shadow: 0 0 12px 0 rgb(32 29 21 / 85%);
            box-shadow: 0 0 12px 0 rgb(32 29 21 / 85%);
}

.welcome {
    font-size: 1.75rem;
}

.about .welcome {
    font-size: 1.5rem;
}

footer {
    background: #044577;
    color: #fff;
    font-size: .875rem;
    padding: 30px 15px;
    text-align: center;
}

footer a, footer a:hover, footer a:focus {
    color: #fff;
}

.sm-pad&gt;.col-xs-6 {
    padding-right: 5px;
}

.sm-pad&gt;.col-xs-3 {
    padding-left: 5px;
    padding-right: 5px;
}

.sm-pad&gt;.col-xs-3:last-child {
    padding-right: 15px;
}

.form-control {
    background-color: #f7f7f7;
    border-color: #d3d3d3;
    border-radius: 0;
    padding: 6px;
}

.checkbox {
    margin-top: 0;
}

input[type=checkbox] {
    margin-top: 8px;
}

.btn-primary {
    padding: 7px 15px;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    background: #ac1c30;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    color: #fff;
    background: #c72238;
}

.about-carousel {
    margin: 0 auto 10px;
}

.carousel-fade .item {
    opacity: 0;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
}

.carousel-fade .next.left,
.carousel-fade .prev.right,
.carousel-fade .item.active {
    opacity: 1;
}

.carousel-fade .active.left,
.carousel-fade .active.right {
    left: 0;
    opacity: 0;
    z-index: 1;
}

/* Safari Fix */
@media all and (transform-3d),
(-webkit-transform-3d) {

    .carousel-fade .carousel-inner&gt;.item.next,
    .carousel-fade .carousel-inner&gt;.item.active.right {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .carousel-fade .carousel-inner&gt;.item.prev,
    .carousel-fade .carousel-inner&gt;.item.active.left {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .carousel-fade .carousel-inner&gt;.item.next.left,
    .carousel-fade .carousel-inner&gt;.item.prev.right,
    .carousel-fade .carousel-inner&gt;.item.active {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.img-border {
    position: relative;
}

.img-border::before, .img-border::after {
    content: '';
    position: absolute;
    width: 48%;
    height: 42%;
    z-index: -1;
}

.img-border::before {
    left: -6px;
    top: -6px;
    border-top: 6px solid #044577;
    border-left: 6px solid #044577;
}

.img-border::after {
    right: -4px;
    bottom: -4px;
    border-right: 4px solid #ac1c30;
    border-bottom: 4px solid #ac1c30;
    width: 35%;
    height: 35%;
}

.img-shadow {
    -webkit-box-shadow: 1px 2px 14px 0 rgb(32 29 21 / 40%);
            box-shadow: 1px 2px 14px 0 rgb(32 29 21 / 40%);
}

.sale-section h2, .sale-section h3, .sale-section h4 {
    line-height: 1.5;
}

/**********************************************/
/*******      Navigation Classes        *******/
/**********************************************/

.navbar {
    background: #ac1c30;
    border: none;
    border-bottom: 4px solid #044577;
    border-radius: 0;
    margin-bottom: 0;
}

.navbar-nav {
    margin-bottom: 0;
}

.nav &gt; li &gt; a {
    color: #fff;
    font-family: clarendon-text-pro, serif;
    font-variant: small-caps;
    font-weight: 700;
    letter-spacing: 1px;
    -webkit-transition: background .2s ease-in-out;
    -o-transition: background .2s ease-in-out;
    transition: background .2s ease-in-out;
}

.nav &gt; li &gt; a:hover, .nav &gt; li &gt; a:focus {
    background: #044577;
}

.social-container ul {
    list-style-type: none;
    margin-bottom: 0;
    padding-left: 0;
}

.social-container a {
    color: #fff;
    display: block;
    font-size: 1.75rem;
    padding: 0 15px;
    -webkit-transition: background .2s ease-in-out;
    -o-transition: background .2s ease-in-out;
    transition: background .2s ease-in-out;
}

.social-container a:hover, .social-container a:focus {
    background: #044577;
}

.navbar-toggle .icon-bar {
    border-radius: 0;
    width: 35px;
    height: 3px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.navbar-toggle .icon-bar+.icon-bar {
    margin-top: 5px;
}

.navbar-toggle.collapsed:hover .icon-bar,
.navbar-toggle .icon-bar {
    background-color: #044577;
}

.navbar-toggle.collapsed {
    background: transparent;
}

.navbar-toggle.collapsed .icon-bar {
    background-color: #fff;
}

/**********************************************/
/*******        Animal Classes          *******/
/**********************************************/

.animals&gt;div {
    margin-bottom: 35px;
}

.animals&gt;div img,
#case img {
    margin-bottom: 8px;
}

.animals a:hover img {
    -webkit-box-shadow: 1px 2px 10px 0 rgb(32 29 21 / 55%);
            box-shadow: 1px 2px 10px 0 rgb(32 29 21 / 55%);
}

.PedAnmName {
    display: none;
}

.PedCalvedRow,
.PedTable,
.divEpdTbl {
    font-size: 1rem;
}

.divEpdTbl caption {
    background-color: #044577;
    border-color: #ccc;
    color: #fff;
}

.divEpdTbl tbody {
    background-color: #fcfcf7;
}

.divEpdTbl thead {
    background-color: #ececec;
}

.animal-caption p {
    color: #999;
    line-height: 1.1;
    margin-bottom: 0;
}

/**********************************************/
/********        Form Classes          ********/
/**********************************************/

label {
    font-weight: 400;
}

.btn-form:disabled {
    opacity: .65;
    cursor: not-allowed;
    pointer-events: all;
}

.btn-form[disabled],
.btn-form[disabled]:hover,
.btn-form[disabled]:focus,
.btn-form[disabled]:active {
    background-color: #ac1c30;
    outline: none;
}

.btn-form {
    -webkit-transition: outline .25s ease-in-out;
    -o-transition: outline .25s ease-in-out;
    transition: outline .25s ease-in-out;
}

.btn-form:focus,
.btn-form:active:focus {
    outline-offset: 2px;
    outline: 2px solid #f3a36a;
}

.form-control:focus {
    border-color: #86b7fe;
    -webkit-box-shadow: 0 0 0 2px #86b7fe;
    box-shadow: 0 0 0 2px #86b7fe;
}

.breederFormError,
.form-control.breederFormError {
    border-color: #d64947;
}

.breederFormError:focus,
.form-control.breederFormError:focus {
    -webkit-box-shadow: 0 0 0 2px #d64947;
    box-shadow: 0 0 0 2px #d64947;
}

.breederFormErrorMesssage {
    display: none;
    position: relative;
    color: #d64947;
    font-size: 12px;
    font-style: italic;
    white-space: nowrap;
}

.breederFormError~.breederFormErrorMesssage {
    display: block;
    margin-left: 2px;
    top: 1px;
}

.breederFormOptional {
    font-size: 85%;
    color: #888;
}

.sm-pad-3-col&gt;.col-xs-6 {
    padding-right: 5px;
}

.sm-pad-3-col&gt;.col-xs-3 {
    padding-left: 5px;
    padding-right: 5px;
}

.sm-pad-3-col&gt;.col-xs-3:last-child {
    padding-right: 15px;
}

.sm-pad-2-col&gt;.col-xs-6:first-child {
    padding-right: 5px;
}

.sm-pad-2-col&gt;.col-xs-6:last-child {
    padding-left: 5px;
}

.breederEmailHeading,
.breederEmailHeadingC {
    display: none;
}

.grow-wrap {
    display: grid;
}

.grow-wrap::after {
    content: attr(data-replicated-value) " ";
    white-space: pre-wrap;
    visibility: hidden;
}

.grow-wrap&gt;textarea {
    resize: none;
    overflow: hidden;
}

/* Match the other input field styles */
.grow-wrap&gt;textarea,
.grow-wrap::after {
    border: 1px solid #d3d3d3;
    border-radius: 0;
    font-size: 14px;
    color: #555;
    min-height: 100px;
    padding: 6px;
    grid-area: 1 / 1 / 2 / 2;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

.g-recaptcha {
    margin-bottom: 10px;
}

/* Checkbox and Radio Styles. Remove if form doesn't have either element*/
.checkbox,
.form-radio {
    --selection-color: #ac1c30;
}

.checkbox input,
.form-radio input {
    width: auto;
    opacity: 0.00000001;
    position: absolute;
    left: 0;
}

/* Begin Checkbox */
.checkbox {
    position: relative;
    margin-bottom: 15px;
    margin-top: 0;
}

.checkbox label {
    position: relative;
    cursor: pointer;
    text-align: left;
    display: inline-block;
    padding-left: 30px;
}

.checkbox input {
    width: auto;
    opacity: 0.00000001;
    position: absolute;
    left: 0;
}

.checkbox input[type=checkbox] {
    margin-left: 0;
}

.checkbox .checkbox-helper {
    position: absolute;
    top: 4px;
    left: 0;
    width: 18px;
    height: 18px;
    background: #f7f7f7;
    z-index: 0;
    border: 1px solid #d3d3d3;
    border-radius: 0;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.checkbox input:focus+.checkbox-helper,
.checkbox input:checked:focus+.checkbox-helper {
    -webkit-box-shadow: 0 0 0 2px #86b7fe;
    box-shadow: 0 0 0 2px #86b7fe;
}

.checkbox input:checked+.checkbox-helper {
    background: var(--selection-color);
    border-color: var(--selection-color);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.checkbox .checkbox-helper::before,
.checkbox .checkbox-helper::after {
    content: '';
    position: absolute;
    height: 0;
    width: 3px;
    background-color: #fff;
    display: block;
    opacity: 0;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transition: opacity 0.2s ease, height 0s linear 0.2s;
    -o-transition: opacity 0.2s ease, height 0s linear 0.2s;
    transition: opacity 0.2s ease, height 0s linear 0.2s;
}

.checkbox .checkbox-helper::before {
    top: 14px;
    left: 5px;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.checkbox .checkbox-helper::after {
    top: 9px;
    left: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.checkbox:hover .checkbox-helper {
    border-color: var(--selection-color);
}

.checkbox input:checked~.checkbox-helper {
    border-color: var(--selection-color);
}

.checkbox input:checked~.checkbox-helper::after,
.checkbox input:checked~.checkbox-helper::before {
    opacity: 1;
    -webkit-transition: height 0.2s ease;
    -o-transition: height 0.2s ease;
    transition: height 0.2s ease;
}

.checkbox input:checked~.checkbox-helper::after {
    height: 7px;
}

.checkbox input:checked~.checkbox-helper::before {
    height: 15px;
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

/* End Checkbox */

/**********************************************/
/*******        Helper Classes          *******/
/**********************************************/

.mb-0 {
    margin-bottom: 0;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-70 {
    margin-bottom: 70px;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.img-cover {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
}

/**********************************************/
/*******      Media Query Classes       *******/
/**********************************************/

@media screen and (min-width: 768px) {
    .navbar-nav {
        float: none;
        display: table;
        table-layout: fixed;
    }

    .navbar-collapse.collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .nav &gt; li &gt; a {
        font-size: .875rem;
        padding: 16px 6px 14px;
    }

    .social-container li {
        display: inline-block;
    }

    .social-container li a {
        display: inline-block;
        padding: 3px 5px 2px;
    }

    .animals {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .animals::before,
    .animals::after {
        content: none;
    }

    .about-carousel {
        margin: 20px 20px 0 -5px;
    }
        
    .flex-sm {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (min-width: 992px) {
    .section-pad {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .nav &gt; li &gt; a {
        font-size: 1.125rem;
        padding-left: 12px;
        padding-right: 12px;
    }

    .social-container li a {
        padding: 3px 10px 2px;
    }

    .about-carousel {
        margin: 20px 20px 0 -60px;
    }
            
    .flex-md {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (min-width: 1200px) {
    .section-pad {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

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

}

@media screen and (max-width: 991px) {
    .mb-5-md {
        margin-bottom: 5px;
    }

    .mb-10-md {
        margin-bottom: 10px;
    }

    .mb-20-md {
        margin-bottom: 20px;
    }

    .mb-30-md {
        margin-bottom: 30px;
    }

    .mb-40-md {
        margin-bottom: 40px;
    }

    .mb-50-md {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 767px) {
    .navbar-collapse {
        clear: both;
    }

    .social-container ul {
        margin-left: -15px;
        margin-right: -15px;
    }

    .about .welcome {
        font-size: 1.25rem;
    }
    
    .about-carousel.pull-left {
        float: none !important;
        max-width: 425px;
    }

    .mb-5-sm {
        margin-bottom: 5px;
    }

    .mb-10-sm {
        margin-bottom: 10px;
    }

    .mb-20-sm {
        margin-bottom: 20px;
    }

    .mb-30-sm {
        margin-bottom: 30px;
    }

    .mb-40-sm {
        margin-bottom: 40px;
    }

    .mb-50-sm {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 549px) {
    .logo-inner {
        max-width: 75%;
    }
}
</pre></body></html>