/*
@file style
@package vardynas
@author Marius Tverijonas ©2014

*/


html {
    -webkit-transition: background-color 1s;
    transition: background-color 1s;
}
html, body {
    /* For the loading indicator to be vertically centered ensure */
    /* the html and body elements take up the full viewport */
    min-height: 100%;

}
body.loading {
    /* Replace #333 with the background-color of your choice */
    /* Replace loading.gif with the loading image of your choice */
    background: url('../images/loading.gif') no-repeat 50% 50%;

    /* Ensures that the transition only runs in one direction */
    -webkit-transition: background-color 0;
    transition: background-color 0;
}


blockquote{
    font-size: inherit;
    margin: 0px;
    border: 0px;
    padding: 0px 15px;
}

#header{
    text-align: center;
    height: 170px;
   
}

.header_link{
    padding-right: 20px;
}

.emblem{
    height: 120px;
}

.right{
    float: right;
}

.left{
    float: left;
}

ul#results-list, ul#wordMentions{
    list-style-type: none;
}

h5{
    color: brown;
}

#wordMentionsHeader{
    display: none;
    font-weight: bold;
}

#wordMentions li{
    padding-bottom: 10px;
}

.mentionName{
    font-style: italic;
    color: #0A0;
    float:left;
    
    width: 240px;
}

.mentions{
   overflow: auto;
}

abbr{
    font-style: italic;
   
}

#submit{
    vertical-align: top;
}