﻿@charset "utf-8";

/* CSS Information ==============================
File name: win-ie.css
Editors: Shinji Kobayashi
Last Editor: Shinji Kobayashi
Date: 2008.09.25
Table of Contents:
 +hasLayout
 +for IE7 page zoom
 +box model
 +double-margin
 +font-size
 +external link
 +a11y
============================================== */

/*====================
 +hasLayout
====================*/
* html hoge {
	zoom: 1;
	}

/*====================
 +for IE7 page zoom
====================*/
*:first-child+html body {
	letter-spacing: 0;
	}

/*====================
 +box model
====================*/
* html hoge {
	width: ;
	height: ;
	margin: ;
	padding: ;
	border: ;
	}

/*====================
 +double-margin
====================*/
* 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("sample.com")) ? " external" : "",
	this.style.behavior = "none"
	);
	}

/*====================
 +a11y
====================*/
* html .a11y {
	position: absolute;
	visibility: hidden;
	}

