@charset "utf-8";
/* CSS Document */

body
{
    background:repeat-x url(../images/background.png);
    font-family:Verdana, Geneva, sans-serif;
    font-size:14px;
}

#container {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 10px;
    margin: 0 auto;
}

#poll_list {
    width:375px;
    min-width: 250px;
    border-radius:16px;
    padding: 20px;

}

#new_list {
    width:40%;
    padding: 20px;
}

#generate{
    border:solid thin black;
    font-size:15px;
    background-color: #ffb450;
}

#generate_hover{
    border:solid thin black;
    font-size:15px;
    background-color: #fff961;
}

#generate_active{
    border:solid thin black;
    font-size:15px;
    background-color: #7fff54;
}

#new_name_table{
    border-spacing: 20px 0;
}


.right_arrow
{
    background: transparent url(../images/arrowhead_fwd_button.png) no-repeat;
    border:none;
    width:14px;
    height:19px;
    float:left;
}

.right_arrow:hover
{
    background-image: url(../images/arrowhead_fwd_button_hover.png);
}

.right_arrow:active
{
    background-image: url(../images/arrowhead_fwd_button_click.png);
}

.up_arrow
{
    background: transparent url(../images/arrowhead_up_button.png) no-repeat;
    border:none;
    width:19px;
    height:14px;
    float:left;
}

.up_arrow:hover
{
    background-image: url(../images/arrowhead_up_button_hover.png);
}

.up_arrow:active
{
    background-image: url(../images/arrowhead_up_button_click.png);
}

.up_arrow_inactive
{
    background: transparent url(../images/arrowhead_up_button_inactive.png) no-repeat;
    border:none;
    width:19px;
    height:14px;
    float:left;
}

.down_arrow
{
    background: transparent url(../images/arrowhead_down_button.png) no-repeat;
    border:none;
    width:19px;
    height:14px;
    float:left;
}

.down_arrow:hover
{
    background-image: url(../images/arrowhead_down_button_hover.png);
}

.down_arrow:active
{
    background-image: url(../images/arrowhead_down_button_click.png);
}

.down_arrow_inactive
{
    background: transparent url(../images/arrowhead_down_button_inactive.png) no-repeat;
    border:none;
    width:19px;
    height:14px;
    float:left;
}
