﻿@charset "utf-8";

/*========================================index
/* +hasLayout
/* +for IE7 page zoom
/* +box model
/* +margin with float
/* +font-size
/* +external link
/* +a11y
========================================index*/

/*====================
 +hasLayout
====================*/
*+html body #globalNavigation ul li ul {
	zoom: 1;
	}

/*====================
 +for IE7 page zoom
====================*/
*:first-child+html body {
	letter-spacing: 0;
	}

/*====================
 +box model
====================*/
* html hoge {
	width: ;
	height: ;
	margin: ;
	padding: ;
	border: ;
	}
* html body div#main{
	overflow: hidden;
}
/*====================
 +margin with float
====================*/
* html hoge {
	display: inline;
	}

/*====================
 +font-size
====================*/
* html body {
	font-size: 75%;/* 12px(12/16) */
	}
* html .caption {
	font-size: 84%;/* 10px(10/12) */
	}

/*====================
 +external link
====================*/
* html a.external {
	}
* html a {
	behavior: expression(
	this.className += this.getAttribute("href").match(/^http.*/) && (!this.getAttribute("href").match("foo.com")) ? " external" : "",
	this.style.behavior = "none"
	);
	}

/*====================
 +a11y
====================*/
* html .a11y {
	position: absolute;
	visibility: hidden;
	}
