
/*
Tipue Search 5.0
Copyright (c) 2015 Tipue
Tipue Search is released under the MIT License
http://www.tipue.com/search
*/


#tipue_search_content
{
     max-width: 50em;
     padding-top: 15px;
     margin: 0;
}
#tipue_search_warning
{
     font-size: 18px;
     font-weight: normal;
     line-height: 1.7em;
     color: inherit;
     margin: 7px 0;
}
#tipue_search_warning a
{
     color: var(--accent, rgb(0, 136, 204));
     text-decoration: none;
}
#tipue_search_warning a:hover
{
     color: var(--accent-hover, rgb(0, 85, 128));
}
#tipue_search_results_count
{
     font-size: 18px;
     font-weight: normal;
     line-height: 1.7em;
     color: inherit;
}
.tipue_search_content_title
{
     font-family: "Futura","Trebuchet MS",sans-serif;
     font-size: 20px;
     font-weight: normal;
     line-height: 24px;
     color: var(--text, #2d2d2d);
     margin-top: 23px;
     display: inline-block;
     margin-right: 10px;
}
.tipue_search_content_title a
{
     color: inherit;
     text-decoration: none;
}
.tipue_search_content_title a:hover
{
     color: var(--accent-hover, #898988);
}
.tipue_search_content_url
{
     font-size: 14px;
     font-weight: normal;
     line-height: 1.5em;
     color: var(--accent, rgb(0, 136, 204));
     display: inline-block;
     word-wrap: break-word;
     hyphens: auto;
}
.tipue_search_content_url a
{
     color: inherit;
     text-decoration: none;
}
.tipue_search_content_url a:hover
{
     color: var(--accent-hover, rgb(0, 85, 128));
}
.tipue_search_content_text
{
     font-size: 18px;
     line-height: 1.7em;
     font-weight: normal;
     color: inherit;
     word-wrap: break-word;
     hyphens: auto;
     margin-top: 8px;
}
.tipue_search_content_debug
{
     font-size: 18px;
     font-weight: normal;
     color: inherit;
     margin: 5px 0;
}
.h01
{
     color: inherit;
     font-weight: bold;
}

#tipue_search_foot
{
     margin: 51px 0 21px 0;
}
#tipue_search_foot_boxes
{
     padding: 0;
     margin: 0;
     font-size: 18px;
     font-weight: normal;
}
#tipue_search_foot_boxes li
{
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline;
}
#tipue_search_foot_boxes li a
{
     padding: 10px 17px 11px 17px;
     background-color: var(--bg-elev-1, #fff);
     border: 1px solid var(--rule, #e2e2e2);
     border-radius: 1px;
     color: inherit;
     margin-right: 7px;
     text-decoration: none;
     text-align: center;
}
#tipue_search_foot_boxes li.current
{
     padding: 10px 17px 11px 17px;
     background: var(--bg-elev-2, #f6f6f6);
     border: 1px solid var(--rule, #e2e2e2);
     border-radius: 1px;
     color: inherit;
     margin-right: 7px;
     text-align: center;
}
#tipue_search_foot_boxes li a:hover
{
     background: var(--bg-elev-2, #f6f6f6);
}


/* spinner */


.tipue_search_spinner
{
     padding: 31px 0;
     width: 50px;
     height: 28px;
}
.tipue_search_spinner > div
{
     background-color: #777;
     height: 100%;
     width: 3px;
     display: inline-block;
     margin-right: 2px;
     -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
     animation: stretchdelay 1.2s infinite ease-in-out;
}
.tipue_search_spinner .tipue_search_rect2
{
     -webkit-animation-delay: -1.1s;
     animation-delay: -1.1s;
}
.tipue_search_spinner .tipue_search_rect3
{
     -webkit-animation-delay: -1.0s;
     animation-delay: -1.0s;
}
@-webkit-keyframes stretchdelay
{
     0%, 40%, 100%
     {
          -webkit-transform: scaleY(0.4)
     }  
     20%
     {
          -webkit-transform: scaleY(1.0)
     }
}
@keyframes stretchdelay
{
     0%, 40%, 100%
     { 
          transform: scaleY(0.4);
          -webkit-transform: scaleY(0.4);
     }
     20%
     { 
          transform: scaleY(1.0);
          -webkit-transform: scaleY(1.0);
     }
}
