#content form{
    display: table;
    height: 100%;
    width: 100%;
}

#ask_container{
    height: 100%;
    width: 600px;
    text-align: center;
    margin: 0 auto;
    display: table-cell;
    vertical-align: middle;
}

#ask{
    display: table;
    margin: 0 auto;
}

#ask input[type=text]{
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid #DDDDDD;
    width: 400px;
    height: 30px;
    font-size: 16pt;
    border-radius: 10px;
    box-shadow: 0 0 4px #DDDDDD;
}

#ask input[type=submit]{
    width: 200px;
    height: 35px;
    margin-top: 15px;
    font-size: 12pt;
    -moz-box-shadow: inset 0px 1px 0px 0px #ffffff;
    -webkit-box-shadow: inset 0px 1px 0px 0px #ffffff;
    box-shadow: inset 0px 1px 0px 0px #ffffff;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf));
    background: -moz-linear-gradient(top, #ededed 5%, #dfdfdf 100%);
    background: -webkit-linear-gradient(top, #ededed 5%, #dfdfdf 100%);
    background: -o-linear-gradient(top, #ededed 5%, #dfdfdf 100%);
    background: -ms-linear-gradient(top, #ededed 5%, #dfdfdf 100%);
    background: linear-gradient(to bottom, #ededed 5%, #dfdfdf 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#dfdfdf',GradientType=0);
    background-color: #ededed;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    border: 1px solid #dcdcdc;
    display: inline-block;
    color: #777777;
    font-weight: bold;
    padding: 6px 24px;
    text-shadow: 0px 1px 0px #ffffff;
    
}

#ask input[type=submit]:hover{
    border-color: rgba(194, 194, 194, 1);
    background: rgb(209,209,209);
    background: -moz-linear-gradient(top,  rgba(209,209,209,1) 0%, rgba(155,155,155,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(209,209,209,1)), color-stop(100%,rgba(155,155,155,1)));
    background: -webkit-linear-gradient(top,  rgba(209,209,209,1) 0%,rgba(155,155,155,1) 100%);
    background: -o-linear-gradient(top,  rgba(209,209,209,1) 0%,rgba(155,155,155,1) 100%);
    background: -ms-linear-gradient(top,  rgba(209,209,209,1) 0%,rgba(155,155,155,1) 100%);
    background: linear-gradient(to bottom,  rgba(209,209,209,1) 0%,rgba(155,155,155,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d1d1d1', endColorstr='#9b9b9b',GradientType=0 );
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ededed));
    background: -moz-linear-gradient(top, #dfdfdf 5%, #ededed 100%);
    background: -webkit-linear-gradient(top, #dfdfdf 5%, #ededed 100%);
    background: -o-linear-gradient(top, #dfdfdf 5%, #ededed 100%);
    background: -ms-linear-gradient(top, #dfdfdf 5%, #ededed 100%);
    background: linear-gradient(to bottom, #dfdfdf 5%, #ededed 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dfdfdf', endColorstr='#ededed',GradientType=0);
    background-color: #dfdfdf;
}

#ask input[type=submit]:active{
    background: #c2c2c2;
    -moz-box-shadow: inset 0px 1px 0px 0px #c2c2c2;
    -webkit-box-shadow: inset 0px 1px 0px 0px #c2c2c2;
    box-shadow: inset 0px 1px 0px 0px #c2c2c2;
}