/* 
========================================================================
Cookie Compliance Script
========================================================================
*/
body
{
  margin: 0;
  padding: 0;
}
#cookieMessageWrapper
{
    background-color: #989898;
    font-family: "Segoe UI",Verdana,Arial,Helvetica,Sans-Serif;
    font-size: 11pt;
    font-weight: normal;
    color: #333;
    padding: 0;
    margin: 0;
    display: none;
    border-bottom: 1px solid #3b3b3b;
}
#cookieMessage
{
    width: auto; /* this needs to be set to the width of the centre container */
    padding: 3px 0 3px 0;
    margin: 0 auto;
    position: relative;
}
#cookieMessage:after
{
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    width: auto;
}
#cookieMessage p
{
    margin: 5px 0 0;
    font-family: "Roboto Regular";
    text-align: center;
}
#cookieClose
{
    float: right;
    display: block;
    padding: 0px 5px;
    text-decoration: none;
    background-color: #3b54a0;
    border: 1px solid #3b54a0;
    border-radius: 2px;
    color: #fff;
    font-size: 100%;
    margin-top: 6px;
    font-weight: bold;
    margin-right: 10%;
}
