@import url("https://fonts.googleapis.com/css?family=Ravi%20Prakash");

body
{
	background-color:white;
	font-family:Verdana, Geneva, "Sans-Serif";
	background-repeat:no-repeat;
	background-position:right 20%;
	background-size: 10%;
}

h1
{
	font-size:150%;
	font-weight:bold;
	text-align:center;
	border-bottom: 2px solid #550000;
	padding-bottom: 5px;
	margin: 12px 2px 12px 2px;
}

/* Bullet lists */

ul
{
	list-style-position:inside;
	list-style-type:circle;
	padding-left: 5px;
}

/* Top navigation menu links */

ul.topnavlist
{
	list-style-type:none;
	background-color: #202f5d;
	color: #8da8c3;
	border-top: 2px solid red;
	margin: 0;
	padding: 5px;
}

ul.topnavlist li
{
		padding: 5px;
		display: inline;
		margin: 5px;
}

ul.contact
{
	list-style-type:none;
}

ul.contact li
{
	margin: 10px;
}

/* Inline links */

a
{
	text-decoration:none;
	color:#0088FF;
}
a:hover
{
	color:magenta;
}

.topnavlist a.menu:link,a.menu:visited
{
	display:inline;
	font-size: 1em;
	color:white;
	width:120px;
	text-align:left;
	padding:4px;
	text-decoration:none;
	transition: background-color 0.3s, color 0.3s;
}

.topnavlist a.menu:hover,a.menu:active
{
	background-color: #8da8c3;
	font-size:1em;
	color:#202f5d;
	transition: background-color 0.3s, color 0.3s;
}


/* Header */
div.header
{
	float:none;
	font-size:3em;
	font-family:"Ravi Prakash";
	text-align:left;
	background-color:#8da8c3;
	color:#202f5d;
	text-align: center;
	border-radius: 5px 5px 0 0 ;
	zoom: 1;


}
div.headertext {
	padding: 20px;
}

img.headerimg {
	float:right;
	margin-top: 10px;
	height:60px;
}

div.topnav
{
	background-color:#8da8c3;
	color:#202f5d;
}
div.content
{
	float:left;
	padding: 10px;
}

div.nofloat
{
	float:none;
	padding: 10px;
}

/* Boxed small text */

div.leftbox
{
	float:left;
	padding: 10px;
	margin-top: 20px;
	width: 40%;
}

/* Location map */

div.map {
	margin: 20px;
}

.rightimg {
	float:right;
}

.bigtext {
	font-size:120%;
	margin-bottom: 30px;
}

.smalltext {
	font-size:80%;
}

.border {
	border: 2px solid gray;
	background-color: #FFFFAA
}

.jpn-logo {
	margin-left: 20px;
	margin-top: 50px;
}

/* Contrast colour text */

p.alt {
	color: #000055;
}

/* Image caption */
div.caption  {
	font-size: .7em;
	text-align: center;
	background-color: #FFFFDD;
}


/* Table - Mark's experience */

td.heading {
	font-weight: bold;
}

div.award
{
	margin: 20px;
}

/* Mick Billman popup */

div.popup {
	display: none;
	border: 5px solid gray;
	padding: 10px;
	background-color: white;
	position: fixed;
	width: 500px;
	height: 300px;
	left: 50%;
	top: 50%;
	margin-left: -250px;
	margin-top: -150px;
}

p.flashbutton {
	/* For WebKit (Safari, Google Chrome etc) */
	background: -webkit-gradient(linear, left top, left bottom, from(#004466), to(#002244));
	/* For Mozilla/Gecko (Firefox etc) */
	background: -moz-linear-gradient(top, #004466, #002244);
	/* For Internet Explorer 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#004466, endColorstr=#002244);
	/* For Internet Explorer 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#004466, endColorstr=#002244)";

	display: inline-block;
	background-color: #002244;
	color: white;
	padding: 5px 10px 6px;
	font-weight: bold;
	line-height: 1;

	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;

	-moz-box-shadow: 0 1px 3px #999;
	-webkit-box-shadow: 0 1px 3px #999;
	box-shadow:  0 1px 3px #999;

	text-shadow: 0 -1px 1px #222;
	border-bottom: 1px solid #222;
	position: relative;
	cursor: pointer;
}

p.flashbutton a:link, p.flashbutton a:active, p.flashbutton a:hover, p.flashbutton a:visited {
	color:white;
	text-decoration: none;
}




/* Jquery Tools - Scrollable */

/*
root element for the scrollable.  when scrolling occurs this
element stays still.
*/
.scrollable {
  /* required settings */
  position:relative;
  overflow:hidden;
  width: 850px;
  height:150px;
}

/*
root element for scrollable items. Must be absolutely positioned
and it should have a extremely large width to accommodate scrollable
items.  it's enough that you set width and height for the root element
and not for this element.
*/
.scrollable .items {
  /* this cannot be too large */
  width:30000em;
  position:absolute;
  clear: both;
}

.items div {
  float:left;
  overflow:hidden;
}

/* single scrollable item */
.scrollable img {
    float:left;
    margin:20px 5px 20px 21px;
    background-color:#fff;
    padding:2px;
    border:1px solid #ccc;
    width:180px;
    height:120px;

    -moz-border-radius:4px;
    -webkit-border-radius:4px;
}

/* this makes it possible to add next button beside scrollable */
.scrollable {
    float:left;
}

/* active item */
.scrollable .active {
    border:2px solid #000;
    position:relative;
    cursor:default;
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
    background:url(images/hori_large.png) no-repeat;
    display:block;
    width:30px;
    height:30px;
    float:left;
    margin:40px 10px;
    cursor:pointer;
    font-size:1px;
}

/* right */
a.right { background-position: 0 -30px; clear:right; margin-right: 0px;}
a.right:hover { background-position:-30px -30px; }
a.right:active { background-position:-60px -30px; }


/* left */
a.left { margin-left: 0px; }
a.left:hover  { background-position:-30px 0; }
a.left:active { background-position:-60px 0; }




/* disabled navigational button */
a.disabled {
    visibility:hidden !important;
}


.floatwrapper {
	float: none;
	min-width: 1250px;
	width: auto !important;
	width:1250px;
	overflow: hidden;
}

/* styling for the image wrapper  */
#image_wrap {
	float:left;
    /* dimensions */

    padding:15px 0;

    /* centered */
    text-align:center;
	margin: 0 auto;

    /* some "skinning" */
    background-color:#efefef;
    border:2px solid #fff;
    outline:1px solid #ddd;
    -moz-outline-radius:4px;

}

.clear {
	clear:both;
}
