@charset "utf-8"; 
/* CSS Document 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
  "http://www.w3.org/TR/html4/strict.dtd">
<html lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<title>TIPS104　画像を自動的に切り替える</title>
<style type="text/css">
<!--
body { margin-left: 1em; margin-right: 1em;
  color: black; background-color: #CCFFCC; }
h1 { font: bold 1.5em Verdana; text-align: center; }
#photo { text-align: center; }
-->
</style>
<script type="text/javascript">
<!--
var photo = new Array("photo1.jpg", "photo2.jpg", "photo3.jpg");
var i = 0;
function timerImg () {
    if(document.images['img1'].complete) {
        i++; if(i >= photo.length) i = 0;
        document.images['img1'].src = photo[i];
    }
    setTimeout("timerImg()", 3000);
}
//-->
</script>
</head>
<body onload="setTimeout('timerImg()', 3000);">*/

.BrowserBlog
{
  /*	background-color: #FFFFFF;*/
  /*	background-image: url("../../../images/grayback.gif");*/
  color: #333333;
  padding: 1px 5px 5px 5px;
  margin: 0px;
}

.BrowserBlog .Append
{
  font-size: x-small;
}

.BrowserBlog .Title
{
  color: #333333;
  font-size: medium;
  text-align: left;
  font-weight: bold;
  border-bottom: 1px dotted #336699;
}

.BrowserBlog .SubTitle
{
  color: #000000;
  font-size: medium;
  border-top: 1px dotted #336699;
  text-align: left;
  font-weight: bold;
  margin: 0px;
  margin-bottom: 8px;
}

.BrowserBlog .CreatedDate
{
  color: #336699;
  font-size: 105%;
  font-weight: bold;
  text-align: left;
  border-top: 1px solid #336699;
  border-left: 5px solid #336699;
  padding: 0px;
  padding-left: 3px;
  margin: 0px;
  margin-bottom: 5px;
}

.BrowserBlog .Category
{
  color: #ffffff;
  font-size: 105%;
  font-weight: bold;
  text-align: left;
  background-color: #336699;
  padding: 3px;
  margin: 0px;
  margin-top: 3px;
  margin-bottom: 3px;
}

.BrowserBlog .Contents
{
  color: #333333;
  font-size: 105%;
  line-height: 130%;
  text-align: left;
  padding: 0px;
  margin: 0px;
  margin-top: 10px;
}

.BrowserBlog .Comments
{
  color: #333333;
  font-size: small;
  line-height: 120%;
  text-align: left;
  margin: 0px;
  margin-bottom: 5px;
}

.BrowserBlog .Status
{
  color: #999999;
  font-size: x-small;
  border-top: 1px dotted #336699;
  text-align: left;
  padding: 0px;
  margin: 0px;
  margin-top: 5px;
  margin-bottom: 25px;
}

.BrowserBlog .PageControl
{
  font-size: small;
  padding: 0px;
  margin: 0px;
  margin-bottom: 5px;
}

a { text-decoration: none; border: 1px solid white; }
a:hover { border-color: gray; background-color: #EEEEEE; }