/* 
    Document   : style
    Created on : 30 Απρ 2011, 6:19:55 μμ
    Author     : Tom
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

root { 
    display: block;
}

body{

    background-color:white;
    font-family: arial,sans-serif;
        
}

#site-wrap {
    
    width: 100%;
    background-color:white;
    
    
}


/*Head area */

#logo {

    width: 740px;
    height: 133px;
    margin: 0 auto;

    background-image:url('images/logo.png');
    background-repeat:no-repeat;
    background-position:center;

    background-color: white;
    border: solid black;


    -moz-border-radius: 15px;
    border-radius: 15px;
}



/* Main area */

.urlbox {

    width: 740px;
    margin: 10 auto;
    text-align: center;
    
    border: solid black;
    -moz-border-radius: 15px;
    border-radius: 15px;
}

#title_box {
    color: #DE1F26;
    font-size: 18px;
    font-weight: bold;
}

#urltext {
    width: 550px;
    height: 35px;
    font-size: 19px;
    background-color: yellow;
}

#dlbutton {
    height:37px;
    width:75px;
    margin-left: 5px;
    
}





/* How To area */
#howtobox {

    
    width: 720px;
    margin: 10 auto;
    padding: 20px 10px;
    border: solid black;
    -moz-border-radius: 15px;
    border-radius: 15px;

}


#howtotitle {
    text-align: center;
    font-size: 12px;
    color: #DE1F26;
    font-size: 25px;
}

#howtotext {
}







#dlarea {
    
}

#dlurlbox {
    float: right;
    width: 300px;
    margin-left:  20px;
    margin-right:  40px;


    font-size: 14px;
    text-align: left;
    padding: 4px;
    
    border: solid black;
}

#dlads {
    float:left;
    width: 300px;
    margin-left:  40px;
    margin-right:  20px;


    border: solid black;
}

.clear-both {
   clear: both;
}

