/**************** General Widget CSS****************/


/**************** Register / Login Box ****************/



/**************** Search Box ****************/
.search {
    position: relative;
    list-style: none;
}
.search label{
    text-transform: uppercase;
}
.search input {
    position: absolute;
    right: 40px;
    top: 8px;
    width: 6px;
    height: 6px;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
     background: #fff;
     font-size: 0.5em;
     font-style: italic;     
     color: #695c54;
     border: 1px solid #984c37;
     -webkit-appearance: none;
}
.search:hover input ,  .search input:focus {
    top: 2px;
    width: 130px;
    height: auto;
    padding:5px 8px;
    font-size: 1em;
}       
.search input:focus {
    background: #fff;
    color: #984c37;
}
/**************** Rotator ****************/
.cs-prev, .cs-next {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 1em;
    font-weight: bold;
    padding: 10px 20px;
    text-decoration: none;
    text-transform: uppercase;
}
.cs-prev {
    left: 20px;
    border-radius: 0 4px 4px 0;
}
.cs-next {
    right: 20px;
    border-radius: 4px 0 0 4px;
}
.cs-buttons {
    margin-top: -40px;
}
.cs-buttons a {
    background: #fff;
    color: #fff;
    margin: 0 8px;
    padding: 4px;
    border-radius: 10px;
    font-size: 0.1em;
    text-decoration: none;
    
}
.cs-buttons a:first-child {
    margin: 0 8px 0 0;
}
/**************** Home Highlight ****************/
#home_highlight .widget h3{
    line-height: 1em;
    font-family: 'Bebas Neue';
    font-size: 3.5em;
    color: #4b392b;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 #fff;
}
#home_highlight .widget h4{
    line-height: 1.08em;
    font-family: 'Bebas Neue';
    font-size: 3.3em;
    color: #4b392b;
    text-transform: uppercase;
}
#home_highlight .widget p {
   overflow: hidden;
   text-overflow: ellipsis; /* adds break ... */
   display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 7;   /* number of lines to show */
   line-height: 1.5em;        /* fallback */
   max-height: 9em;       /* fallback */   
}

/**************** Footer ****************/
#footer .widget h3 {
    font-family: "Trebuchet MS", Helvetica, sans-serif;
    font-weight: 700;
    text-transform: none;
    color: #6a7621;
}
#footer .widget a,
#copyright a{
    color: #6d4b34;
    text-decoration: none;
}
#footer .widget a:hover,
#copyright a:hover{
    color: #984c37;
    text-decoration: underline;
}
#footer .widget ul {
    margin: 0;
    padding: 0;
}
#footer .widget li {
    list-style: none;
}