/*
    Document   : print
    Created on : 2013/03/05, 16:12:04
    Author     : mou-k
    Description:
        Purpose of the stylesheet follows.
*/

/*
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/
/*ヘッダー印刷しない*/
div#header
{
    display: none;
}

/*フッター印刷しない*/
div#footer
{
    display: none;
}

/*進捗バー印刷しない*/
div#stepbar
{
    display: none;
}

/*ボタン隠れ*/
div#foot_button
{
    display: none;
}

/*印刷時のIE8対策のため、float指定箇所をCSSで指定、印刷時float無効にする*/
html.ie8 .selector {
	float:none;
	width:auto;
}
