@charset "utf-8";
/*
Site Name: Digital Signage Solution 
Description: initial setting
Version: 0.1
Author: Fuku
*/
/*
SET================================

@import url("default.css"); /* initial setting */

@import "layout.css";/* layout style */
@import "parts.css";/* common module style */
@import "menu.css";/* base template style */

/*
CONTENTS================================

1: universal reset 
2: body and base setting
	: general params
	: acronyms and abbreviations styles
3: link setting

===================================
*/


/*
===== 1: universal reset =================
*/

*{
margin:0;
padding:0;
}

/*
===== 2: body and base setting =============
*/

body {
text-align:center;/* box centering */
margin: 0;
padding: 0;
background: #fff ;
color:#191919;
font-size:1em;
line-height:130%;
border-top:5px solid #6699CC;
}

/* general params
--------------------*/
h1, h2, h3, h4, h5, h6,
div, p, pre, ul, ol, dl, dt, dd,
address, form, blockquote{
padding: 0;/* margin&padding reset */
line-height: 1.4;/* base line height */
text-align: left;
display: block;
margin: 0px;
font-size:small;
}
table {margin : 0;empty-cells: show; font-size:small;}
hr,.areaAnchor,.anchor { display : none; }
img {
border: none;/* img do not want a border */
vertical-align: bottom;
}

/* acronyms and abbreviations styles 
-------------------------------------*/
acronym,abbr{cursor:help;}

/*
 3: link setting ===========================
*/
a:link{
color: #0066CC;
}
a:visited{
color: #551A8B;
}
a:hover{
color: #d2d6d6;
}
a:active{
color: #0066CC;
}

/* modules */
/* clear */
.clearLeft  { clear:left; }
.clearRight { clear:right; }
.clearBoth  { clear:both; margin-bottom: 20px; }
/* float */
.floatLeft  { float:left; }
.floatRight { float:right; }

/* text */
.t_center{
text-align:center;
}
.t_left{
text-align:left;
}
.t_right{
text-align:right;
}



/* margin */
.margin_t1{
margin-top:1em;
}
/*clearFix */
.clearfix::after {
    content		: " ";
    display		: block;
    visibility	: hidden;
    clear		: both;
    height		: 0.1px;
    font-size	: 0.1em;
    line-height	: 0;
}

/* for IE7 */
*:first-child+html .clearfix  {
	min-height: 1%;
	/*zoom	: 1;*/
}

/* for Mac IE */
* html .clearfix {
	display	: inline-table;
}

/* no Mac IE \*/
* html .clearfix {
	height	: 1%;
}
.clearfix {
	display	: block;
}
/* */


