/*  Body & header styles */
body{
background-color: #fff;
}

h1{
font-family: "comic sans";
font-size: 18pt;
font-weight: bold;
text-align: center;
padding-top: 10px;
padding-bottom: 5px;
/* Include this below risk insanity */
margin-top: 0px;
}

h2{
font-family: "comic sans";
font-size: 14pt;
font-weight: normal;
text-align: center;
padding-top: 5px;
padding-bottom: 5px;
}
/* End of body & header styles */

/* Without specific instructions the default paragraph settings will be used and these are not ideal */
p{
margin-top: 5px;
margin-left: 10px;
margin-right: 10px;
margin-bottom: 0px;
/* Text properties for any general paragraph are editable here */
font: Arial, sans-serif;
font-size: 12pt;
}

p.bold{
font-weight: bold;
}

p.italic{
font-style:italic;
}

p.underline{
text-decoration: underline;
}

p.orange{
color: red;
}
/* End of paragraph section */

/* Link Styles */ 
a:link{
text-decoration: none;
color: blue;
}

a:visited {
text-decoration: none;
color: red;
}
/* End of Link Styles */

/* Catch all to remove borders from images and links */
a, img{
border: none;
}
/* End of the catch all to remove borders from the images and links */

#container{
top: 0px;
left: 0px;
height: 150px;
width: 100%;
position: absolute;
background-color: #fff; /* Change backgound colour here */
}

/* + */
#widget {
height: 150px;
width: 1000px;
position: relative;
margin-left: auto;
margin-right: auto;
background-color: #ccc;
/* Rounded is good */
-moz-border-radius:25px; /* Firefox */
border-radius:25px;
}


/* ++ */
#lft_btn{
display: block;
height: 140px;
width: 100px;
float: left;
/* Seperation is good too? */
margin-top: 5px;
margin-bottom: 5px;
margin-left: 5px;
/* Rounded is good */
-moz-border-radius:18pt 0 0 18px;
border-top-left-radius:18pt;
border-bottom-left-radius:18pt;
}

a.lft_btn{
display: block;
height: 140px;
width: 100px;
background-color: #ececec;
background-image: url(../images/back.png);
/** Text properties **/
font-size: 12pt;
text-align: center;
/* Rounded is good */
-moz-border-radius:18pt 0 0 18px;
border-top-left-radius:18pt;
border-bottom-left-radius:18pt;

}

a.lft_btn:hover{
background-color: #fff;
/** Text properties **/
font-size: 12pt;
text-align: center;
/* Rounded is good */
-moz-border-radius:18pt 0 0 18px;
border-top-left-radius:18pt;
border-bottom-left-radius:18pt;
}

#video_intro{
height: 140px;
width: 140px;
float: left;
/* Seperation is good too? */

}

a.video_intro{
/* Easier to click the button */
display: block;
height: 140px;
width: 140px;
margin-top: 5px;
margin-bottom: 5px;
}

a.video_intro:hover{
background-color: #fff;
}

#introduction{
height: 140px;
width: 505px;
float: left;
background-color: #fff;
/* Seperation is good too? */
margin-top: 5px;
margin-bottom: 5px;
}

#character{
height: 150px;
width: 145px;
float: left; 
/* Char image to close */
margin-left: 5px;
/* Issue resolved :) */
background-color: #ccc; /* Change backgound colour here */
background-image: url(../images/char.png);
background-repeat: no-repeat;
}

#rgt_btn{
display: block;
height: 140px;
width: 95px;
float: left;
/* Seperation is good too? */
margin-top: 5px;
margin-bottom: 5px;
margin-right: 5px;
/* Rounded is good */
-moz-border-radius: 0 18pt 18px 0;
border-top-right-radius:18pt;
border-bottom-right-radius:18pt;
}

a.rgt_btn{
display: block;
height: 140px;
width: 95px;
background-color: #ececec;
background-image: url(../images/next.png);
/** Text properties **/
font-size: 12pt;
text-align: center;
/* Rounded is good */
-moz-border-radius: 0 18pt 18px 0;
border-top-right-radius:18pt;
border-bottom-right-radius:18pt;
}

a.rgt_btn:hover{
background-color: #fff;
/** Text properties **/
font-size: 12pt;
text-align: center;
/* Rounded is good */
-moz-border-radius: 0 18pt 18px 0;
border-top-right-radius:18pt;
border-bottom-right-radius:18pt;
}