/*
    Title:	Live Twitter Search
    Date: 24th July 2009
	Author: Andrew Mason 
    Contact: a.w.mason at gmail.com
    
    URL: http://analoguesignal.com/
    
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
*/

/* RESET */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}


/* Basic HTML
-------------------------------------------------------------------------- */
HTML BODY {
    height: 100%;
}

BODY {
    font-size: 0.83em;
    background-color: #EEE;
    background-image: url(../images/pause_info.png);
    background-position: center 1em;
    background-repeat: no-repeat;
    height: 100%;
}

/* Structure
-------------------------------------------------------------------------- */
#container {
    width: 40em;
    margin: 0 auto;
}


/* Trends
-------------------------------------------------------------------------- */
#trends {
    overflow: hidden;
    font-family: verdana;
    min-height: 6em;
}

#inner_trends {
    text-align: center;
    margin-right: 50px;
}

#trends A:link,
#trends A:visited
{
    display: block;
    float: left;
    padding: 0.5em;
    font-size: 0.8em;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background-color: #49C;
    margin: .3em;
    color: #FFF;
    text-decoration: none;
}

#trends A:hover,
#trends A:active
{
    background-color: #059;
}


/* Info
-------------------------------------------------------------------------- */
#info {
    overflow: hidden;
    margin: .5em 0;
    font-family: verdana;
    font-size: .8em;
}

#queue {
float: left;
}

#timer {
    width: 30em;
    color: #FFF;
    padding: .2em 1em;
    height: 1em;
}

/* Refresh bar
-------------------------------------------------------------------------- */
#refresh_outer {
    background-color: #FFF;
    padding: .4em;
    margin: .4em 0;
    position: relative;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

#refresh_inner {
    width: 100%;
    background-color: #09C;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    overflow: hidden;
}



/* Search Box
-------------------------------------------------------------------------- */
#search_box {
    
    text-align: center;
    margin: 1em 0;
}

#search_box INPUT {
    font-size: 2em;
    padding: .3em;
    text-align: left;
}

/* Tweets
-------------------------------------------------------------------------- */
#tweet {
    position: absolute;
}

#results {
    position: relative;
    overflow: auto;
    height: 400px;
}

.result,
#no_tweet
{
    font-family: monospace;
    font-size: 1.4em;
    padding: 1em;
    background-color: #FFF;
    color: #333;
    margin-bottom: .4em;
    -moz-border-radius: 1em;
    -webkit-border-radius: 1em;
    cursor: pointer;
}

#no_tweet {
    text-align: center;
}

.tweet_meta {
    font-size: 0.7em;
    color: #555;
    padding-top: .3em;
    margin-top: .3em;
    border-top: 1px solid #EEE;
    text-align: right;
    clear: both;
}

.tweet_photo {
    float: left;
}

.tweet_text {
    padding-left: 60px;
}

#loading {
    text-align: center;
    font-size: 4em;
    font-family: monospace;
    margin: 1em 0;
}

#paused {
    -moz-border-radius: 1em;
    -webkit-border-radius: 1em;
    background-color: #FF3;
    text-align: center;
    color: #333;
    font-size: 1em;
    padding: .2em 0;
    font-family: monospace;
    margin-bottom: .3em;
}

.paused {
    background-color: #FFE;
}

#built_by {
    position: absolute;
    bottom: 1em;
    right: 1em;
    font-family: verdana;
    font-size: 0.8em;
}