「MediaWiki:Common.css」の版間の差分

提供: HIMOROGI文化財Wiki
移動先: 案内検索
1行目: 1行目:
 
/* ここに記述したCSSはすべての外装に反映されます */
 
/* ここに記述したCSSはすべての外装に反映されます */
/***** Ambox (Article message box styles) *****/
+
/* Common CSS for all skins */
/* Copied from Japanese Wikipedia.
+
 
* http://ja.wikipedia.org/wiki/MediaWiki:Common.css
+
/*<source lang="css">*/
*/
+
 
table.ambox {
+
/* wikitable/prettytable class for skinning normal tables */
    margin: 0 10% 1em; /* <- 0px 10%;   /_* 10% = 他の要素にはみ出るのを防ぐ */
+
table.wikitable,
    border: 1px solid #aaa;
+
table.prettytable {
    border-left: 10px solid #1e90ff;    /* 初期値: "notice" の青 */
+
margin: 1em 1em 1em 0;
    background: #fbfbfb;
+
background: #f9f9f9;
 +
border: 1px #aaa solid;
 +
border-collapse: collapse;
 
}
 
}
table.ambox + table.ambox {   /* 重なったボックスの間を単一の罫線に */
+
 
    margin-top: -1px;
+
table.wikitable th, table.wikitable td,
 +
table.prettytable th, table.prettytable td {
 +
border: 1px #aaa solid;
 +
padding: 0.2em;
 
}
 
}
.ambox th.mbox-text,  
+
 
.ambox td.mbox-text {           /* メッセージ本体のセル */
+
table.wikitable th,
    padding: 0.25em 0.5em;       /* 左右に 0.5em ずつの余白 */
+
table.prettytable th {
 +
background: #f2f2f2;
 +
text-align: center;
 
}
 
}
.ambox td.mbox-image {           /* 左の画像セル */
+
 
    padding: 2px 0 2px 0.5em;   /* 左に 0.5em、右に 0px の余白 */
+
table.wikitable caption,
 +
table.prettytable caption {
 +
margin-left: inherit;
 +
margin-right: inherit;
 
}
 
}
.ambox td.mbox-imageright {      /* 右の画像セル */
+
 
    padding: 2px 0.5em 2px 0;   /* 左に 0px、右に 0.5em の余白  */
+
/* Style for "notices" */
 +
.notice {
 +
text-align: justify;
 +
margin: 1em;
 +
padding: 0.2em;
 
}
 
}
+
 
table.ambox-notice {
+
#disambig {
    border-left: 10px solid #1e90ff;   /* 青 */
+
border-top: 3px double #ccc;
 +
border-bottom: 3px double #ccc;
 
}
 
}
table.ambox-speedy {
+
 
    border-left: 10px solid #b22222;   /* 赤 */
+
#spoiler {
    background: #fee;                   /* 桃 */
+
border-top: 2px solid #ddd;
 +
border-bottom: 2px solid #ddd;
 
}
 
}
table.ambox-delete {
+
 
    border-left: 10px solid #b22222;   /* 赤 */
+
/* Standard talk template style */
 +
.Talk-Notice {
 +
border: 1px solid #c0c090;
 +
background-color: #f8eaba;
 +
margin-bottom: 3px;
 +
width: 85%;
 +
border-spacing: 3px;
 +
margin-left: auto;
 +
margin-right: auto;
 
}
 
}
table.ambox-content {
+
 
    border-left: 10px solid #f28500;    /* 橙 */
+
.Talk-Notice:after {
 +
content: "The CSS for this template should be changed. See [[Wikipedia:Template Standardisation]]."
 
}
 
}
table.ambox-style {
+
 
    border-left: 10px solid #f4c430;   /* 黄 */
+
/* Make template background appear correctly on all browsers */
 +
.Talk-Notice td {
 +
background: inherit;
 
}
 
}
table.ambox-move {
+
 
    border-left: 10px solid #9932cc;   /* 紫 */
+
/* Metadata */
 +
table.metadata {
 +
border: 1px solid #aaa;
 +
display: none;
 
}
 
}
table.ambox-protection {
+
 
    border-left: 10px solid #bba;       /* 灰色・金色 */
+
.metadata-label {
 +
color: #aaa;
 
}
 
}
+
 
/* Cell sizes for ambox/tmbox/imbox/cmbox/ombox/fmbox/dmbox message boxes */
+
/*Add formatting to make sure that "external references" from [[Template:Ref]] do
th.mbox-text, td.mbox-text {    /* The message body cell(s) */
+
not get URL expansion, not even when printed. The mechanism up to MediaWiki 1.4 was
    border: none;  
+
that the HTML code contained a SPAN following the anchor A; this SPAN had the class
    padding: 0.25em 0.9em;       /* 0.9em left/right */
+
"urlexpansion", which was not displayed on screen, but was shown when the medium was
    width: 100%;    /* Make all mboxes the same width regardless of text length */
+
"print". The rules below ensure (a) that there is no extra padding to the right of
/*    font-size: 90%; */
+
the anchor (displayed as "[<number>]"), (b) that there is no "external link arrow" for
 +
the link, and (c) that this SPAN of class "urlexpansion" is never shown.
 +
~~~~
 +
*/
 +
.plainlinksneverexpand {
 +
background: none !important;
 +
padding: 0 !important;
 
}
 
}
td.mbox-image {                 /* The left image cell */
+
 
    border: none;
+
.plainlinksneverexpand .urlexpansion {
    padding: 2px 0 2px 0.9em;    /* 0.9em left, 0px right */
+
display : none !important;
    text-align: center;  
+
 
}
 
}
td.mbox-imageright {            /* The right image cell */
+
 
    border: none;
+
/* Make sure that ext links displayed within "plainlinksneverexpand" don't get
    padding: 2px 0.9em 2px 0;    /* 0px left, 0.9em right */
+
the arrow...
    text-align: center;
+
*/
 +
.plainlinksneverexpand a {
 +
background: none !important;
 +
padding: 0 !important
 
}
 
}
td.mbox-empty-cell {        /* An empty narrow cell */
+
 
    border: none;
+
/* With MediaWiki 1.5, the mechanism has changed: instead of a SPAN of class "urlexpansion"
    padding: 0px;
+
following the anchor A, the anchor itself now has class "external autonumber" and the
    width: 1px;
+
expansion is inserted when printing (see the common printing style sheet at
 +
http: //en.wikipedia.org/skins-1.5/common/commonPrint.css) using the ":after" pseudo-
 +
element of CSS. We have to switch this off for links due to Template: Ref!
 +
~~~~
 +
*/
 +
.plainlinksneverexpand a.external.text:after {
 +
display: none !important;
 
}
 
}
  
/* ambox - 以下、日本語版の独自拡張 */
+
.plainlinksneverexpand a.external.autonumber:after {
table.ambox div.ambox-imagecontainer {   /* 画像セル内の画像表示領域 */
+
display: none !important;
    width: 52px;
+
 
}
 
}
+
 
table.ambox.ambox-section {              /* 節用メッセージボックス */
+
/* Merge template style */
    margin: 0;                             /* マージンを取らない */
+
.messagebox {
    font-size: 80%;
+
border: 1px solid #aaa;
 +
background: #f9f9f9;
 +
width: 80%;
 +
margin: 0 auto 1em auto;
 +
padding: .2em;
 +
text-align: justify;
 
}
 
}
+
 
table.ambox.ambox-section div.ambox-imagecontainer {
+
.messagebox.merge {
    width: 30px;
+
border: solid #033 2px;
 +
width: 55%;
 +
background: #eff;
 +
padding: 1em;
 +
margin: 1em auto 1em auto;
 
}
 
}
+
 
table.ambox.ambox-section th.mbox-text,
+
.messagebox.cleanup {
table.ambox.ambox-section td.mbox-text {
+
border: 1px solid #9f9fff;
    padding: 0.1em 0.3em;
+
background: #efefff;
 +
text-align: center;
 
}
 
}
table.ambox-copyright {
+
 
    border-left: 10px solid #444444;   /* 黒帯の追加 */
+
.messagebox.standard-talk {
 +
border: 1px solid #c0c090;
 +
background: #f8eaba;
 +
}
 +
 
 +
.infobox {
 +
border: 1px solid #aaa;
 +
background: #f9f9f9;
 +
color: black;
 +
margin-bottom: 0.5em;
 +
margin-left: 1em;
 +
padding: .2em;
 +
float: right;
 +
clear: right;
 +
}
 +
 
 +
.infobox tr {
 +
vertical-align: top;
 +
}
 +
 
 +
.infobox caption {
 +
margin-left: inherit;
 +
}
 +
 
 +
.infobox.bordered {
 +
border-collapse: collapse;
 +
}
 +
 
 +
.infobox.bordered td, .infobox.bordered th {
 +
border: 1px solid #aaa;
 +
}
 +
 
 +
.infobox.sisterproject {
 +
width: 20em;
 +
font-size: 90%;
 +
}
 +
 
 +
/* Support for Template:IPA, Template:Unicode and Template:Polytonic. The inherit declaration resets the font for all browsers except MSIE6.  The empty comment must remain. */
 +
.IPA {
 +
font-family: 'Chrysanthi Unicode', 'Doulos SIL', 'Gentium', 'GentiumAlt', 'Code2000', 'TITUS Cyberbit Basic', 'DejaVu Sans', 'Bitstream Vera Sans', 'Bitstream Cyberbit', 'Arial Unicode MS', 'Lucida Sans Unicode', 'Hiragino Kaku Gothic Pro', 'Matrix Unicode', sans-serif;
 +
}
 +
 
 +
.Unicode {
 +
font-family: 'TITUS Cyberbit Basic', 'Code2000', 'Doulos SIL', 'Chrysanthi Unicode', 'Bitstream Cyberbit', 'Bitstream CyberBase', 'Bitstream Vera', 'Thryomanes', 'Gentium', 'GentiumAlt', 'Visual Geez Unicode', 'Lucida Grande', 'Arial Unicode MS', 'Microsoft Sans Serif', 'Lucida Sans Unicode', sans-serif;
 +
}
 +
 
 +
.polytonic {
 +
font-family: 'Athena', 'Gentium', 'Palatino Linotype', 'Arial Unicode MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Code2000', sans-serif;
 +
}
 +
 
 +
.SAMPA {
 +
font-family: 'Courier',monospace
 +
}
 +
 
 +
#wpSave {
 +
font-weight: bold;
 +
}
 +
 
 +
/* hiddenStructure from Monobook - allows selective hiding of markup in templates */
 +
.hiddenStructure {
 +
display: none;
 +
speak: none;
 +
}
 +
 
 +
/* CSS for testing a new Main Page design, see [[Wikipedia:WikiProject Usability/Main Page]] */
 +
#EnWpMainPage { width: 100%; margin-top: 1em; }
 +
#EnWpMainPage h2 { font-size: 130%; font-weight: bold; margin: 0; padding: 0; border: 0; }
 +
#EnWpMpMargin { margin-right: 13.8em; }
 +
#EnWpMpCol1 { float: left; clear: left; width: 50%; }
 +
#EnWpMpCol2 { width: 49.9%; float: left; }
 +
#EnWpMpBrowse { background: #f8fcff url(//upload.wikimedia.org/wikipedia/en/9/9f/MP-three-books.png) no-repeat 180% 9%; border: 1px solid #c7c7c7; }
 +
#EnWpMpBrowseCats li { font-size: 85%; margin-left: 1em; line-height: 1.5; }
 +
#EnWpMpBrowseCats h3 { font-size: 120%; margin: .2em 0 .1em -.8em; padding: 0; font-weight: normal; }
 +
#EnWpMpBrowseCats h3 a { font-weight: bold; }
 +
#EnWpMpBook { background-image: url(//upload.wikimedia.org/wikipedia/en/7/7e/MP-open-book.png); }
 +
#EnWpMpFeaturedPic { text-align: center; margin: 0 0 .5em; font-size: 85%; font-weight: bold; }
 +
#EnWpMpFeaturedPic h2 { font-size: 145%; text-align: left; }
 +
.EnWpMpBrowseRight { float: right; width: 12.7em; }
 +
.EnWpMpBrowseBottom { margin: 1em 0; }
 +
.EnWpMpBrowseBottom #EnWpMpBrowseCats li, .EnWpMpBrowseBottom #EnWpMpUsefulLinks, .EnWpMpBrowseBottom #EnWpMpFeaturedPic { float: left; width: 24%; margin: 0; line-height: auto; }
 +
.EnWpMpBrowseBottom #EnWpMpBrowseCats h3 { margin-left: 0; }
 +
#EnWpMpUsefulLinks { clear: left; }
 +
#EnWpMpSearch { background: url(//upload.wikimedia.org/wikipedia/en/a/ae/MP-magnifying-glass.png) no-repeat top right; }
 +
#EnWpMpSearch input { vertical-align: middle; }
 +
#EnWpMpSearchInner { float: right; width: 20em; text-align: center; }
 +
#bodySearchMP { margin: 0; padding: 0; }
 +
#bodySearchMP .bodySearchWrap { float: right; width: 17.5em; text-align: left; padding: .8em 0; }
 +
#bodySearchMP label { display: block; font-size: 95%; font-weight: bold; margin-bottom: -.2em; }
 +
#bodySearchMP .bodySearchIput { opacity: .85; filter: alpha(opacity=85); }
 +
#bodySearchMP .bodySearchBtnGo { font-weight: bold; padding-left: .3em; padding-right: .3em; margin-left: .5em; }
 +
.EnWpMpContentBox { border: 1px solid; margin-bottom: .9em; }
 +
#EnWpMpCol2 .EnWpMpContentBox { margin-left: .9em; }
 +
.EnWpMpImage { float: right; margin: 0 0 .2em .2em; }
 +
.EnWpMpImage img { position: relative; z-index: 3; }
 +
#EnWpMpSisterProjects { float: left; width: 49%; }
 +
.EnWpMpSisterProject { float: left; width: 17em; margin: 0; height: 5.5em; margin: 0; }
 +
.EnWpMpSisterImg { float: left; width: 40px; height: 100%; }
 +
#EnWpMpOtherLangs { margin-left: 50%; }
 +
#EnWpMainPageNoCSS { display: none; }
 +
 
 +
p {
 +
margin: .4em 0 .5em 0;
 +
line-height: 1.5em;
 +
}
 +
p img {
 +
margin: 0;
 +
}
 +
h1, h2, h3, h4, h5, h6 {
 +
margin: 0;
 +
padding-top: .5em;
 +
padding-bottom: .17em;
 +
/* border-bottom: 1px solid #aaa;*/
 +
}
 +
ul {
 +
margin: .3em 0 0 1.5em;
 +
padding: 0;
 +
}
 +
ol {
 +
margin: .3em 0 0 3.2em;
 +
padding: 0;
 +
}
 +
/*
 +
li {
 +
margin-bottom: .1em;
 +
}
 +
*/
 +
dt {
 +
margin-bottom: .1em;
 +
}
 +
dl {
 +
margin-top: .2em;
 +
margin-bottom: .5em;
 +
}
 +
dd {
 +
margin-left: 2em;
 +
margin-bottom: .1em;
 +
}
 +
form {
 +
border: none;
 +
margin: 0;
 +
}
 +
#siteNotice p {
 +
margin: 0;
 +
padding: 0;
 +
}
 +
div.tright {
 +
clear: right;
 +
float: right;
 +
border-width: .5em 0 .8em 1.4em;
 +
}
 +
div.tleft {
 +
float: left;
 +
margin-right: .5em;
 +
border-width: .5em 1.4em .8em 0;
 +
}
 +
div.floatright {
 +
clear: right;
 +
}
 +
 
 +
ol.references > li:target {
 +
        background-color:#ddeeff;
 +
}
 +
 
 +
/* category */
 +
span.redirect-in-category a {
 +
        color: #999999;
 +
}
 +
 
 +
/* ### nowrap for some table headings ### */
 +
label[for="wpUserEmail"],
 +
label[for="wpNick"],
 +
label[for="wpUserLanguage"],
 +
label[for="wpOldpass"],
 +
label[for="wpNewpass"],
 +
label[for="wpRetypePass"],
 +
#userlogin2 label,
 +
#userloginForm label {
 +
    white-space: nowrap
 
}
 
}
 +
/*</source>*/

2016年4月17日 (日) 02:35時点における版

/* ここに記述したCSSはすべての外装に反映されます */
/* Common CSS for all skins */

/*<source lang="css">*/

/* wikitable/prettytable class for skinning normal tables */
table.wikitable,
table.prettytable {
	margin:	1em 1em 1em 0;
	background:	#f9f9f9;
	border:	1px #aaa solid;
	border-collapse:	collapse;
}

table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
	border:	1px #aaa solid;
	padding:	0.2em;
}

table.wikitable th,
table.prettytable th {
	background:	#f2f2f2;
	text-align:	center;
}

table.wikitable caption,
table.prettytable caption {
	margin-left:	inherit;
	margin-right:	inherit;
}

/* Style for "notices" */
.notice {
	text-align:	justify;
	margin:	1em;
	padding:	0.2em;
}

#disambig {
	border-top:	3px double #ccc;
	border-bottom:	3px double #ccc;
}

#spoiler {
	border-top:	2px solid #ddd;
	border-bottom:	2px solid #ddd;
}

/* Standard talk template style */
.Talk-Notice {
	border:	1px solid #c0c090;
	background-color:	#f8eaba;
	margin-bottom:	3px;
	width:	85%;
	border-spacing:	3px;
	margin-left:	auto;
	margin-right:	auto;
}

.Talk-Notice:after {
	content:	"The CSS for this template should be changed. See [[Wikipedia:Template Standardisation]]."
}

/* Make template background appear correctly on all browsers */
.Talk-Notice td {
	background:	inherit;
}

/* Metadata */
table.metadata {
	border:	1px solid #aaa;
	display:	none;
}

.metadata-label {
	color:	#aaa;
}

/*Add formatting to make sure that "external references" from [[Template:Ref]] do
	not get URL expansion, not even when printed. The mechanism up to MediaWiki 1.4 was
	that the HTML code contained a SPAN following the anchor A; this SPAN had the class
	"urlexpansion", which was not displayed on screen, but was shown when the medium was
	"print". The rules below ensure (a) that there is no extra padding to the right of
	the anchor (displayed as "[<number>]"), (b) that there is no "external link arrow" for
	the link, and (c) that this SPAN of class "urlexpansion" is never shown.
	~~~~
*/
.plainlinksneverexpand {
	background:	none !important;
	padding:	0 !important;
}

.plainlinksneverexpand .urlexpansion {
	display :	none !important;
}

/* Make sure that ext links displayed within "plainlinksneverexpand" don't get
	the arrow...
*/
.plainlinksneverexpand a {
	background:	none !important;
	padding:	0 !important
}

/* With MediaWiki 1.5, the mechanism has changed: instead of a SPAN of class "urlexpansion"
	following the anchor A, the anchor itself now has class "external autonumber" and the
	expansion is inserted when printing (see the common printing style sheet at
	http:	//en.wikipedia.org/skins-1.5/common/commonPrint.css) using the ":after" pseudo-
	element of CSS. We have to switch this off for links due to Template:	Ref!
	~~~~
*/
.plainlinksneverexpand a.external.text:after {
	display:	none !important;
}

.plainlinksneverexpand a.external.autonumber:after {
	display:	none !important;
}

/* Merge template style */
.messagebox {
	border:	1px solid #aaa;
	background:	#f9f9f9;
	width:	80%;
	margin:	0 auto 1em auto;
	padding:	.2em;
	text-align:	justify;
}

.messagebox.merge {
	border:	solid #033 2px;
	width:	55%;
	background:	#eff;
	padding:	1em;
	margin:	1em auto 1em auto;
}

.messagebox.cleanup {
	border:	1px solid #9f9fff;
	background:	#efefff;
	text-align:	center;
}

.messagebox.standard-talk {
	border:	1px solid #c0c090;
	background:	#f8eaba;
}

.infobox {
	border:	1px solid #aaa;
	background:	#f9f9f9;
	color:	black;
	margin-bottom:	0.5em;
	margin-left:	1em;
	padding:	.2em;
	float:	right;
	clear:	right;
}

.infobox tr {
	vertical-align:	top;
}

.infobox caption {
	margin-left:	inherit;
}

.infobox.bordered {
	border-collapse:	collapse;
}

.infobox.bordered td, .infobox.bordered th {
	border:	1px solid #aaa;
}

.infobox.sisterproject {
	width:	20em;
	font-size:	90%;
}

/* Support for Template:IPA, Template:Unicode and Template:Polytonic. The inherit declaration resets the font for all browsers except MSIE6.  The empty comment must remain. */
.IPA {
	font-family:	'Chrysanthi Unicode', 'Doulos SIL', 'Gentium', 'GentiumAlt', 'Code2000', 'TITUS Cyberbit Basic', 'DejaVu Sans', 'Bitstream Vera Sans', 'Bitstream Cyberbit', 'Arial Unicode MS', 'Lucida Sans Unicode', 'Hiragino Kaku Gothic Pro', 'Matrix Unicode', sans-serif;
}

.Unicode {
	font-family:	'TITUS Cyberbit Basic', 'Code2000', 'Doulos SIL', 'Chrysanthi Unicode', 'Bitstream Cyberbit', 'Bitstream CyberBase', 'Bitstream Vera', 'Thryomanes', 'Gentium', 'GentiumAlt', 'Visual Geez Unicode', 'Lucida Grande', 'Arial Unicode MS', 'Microsoft Sans Serif', 'Lucida Sans Unicode', sans-serif;
}

.polytonic {
	font-family:	'Athena', 'Gentium', 'Palatino Linotype', 'Arial Unicode MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Code2000', sans-serif;
}

.SAMPA {
	font-family:	'Courier',monospace
}

#wpSave {
	font-weight:	bold;
}

/* hiddenStructure from Monobook - allows selective hiding of markup in templates */
.hiddenStructure {
	display:	none;
	speak:	none;
}

/* CSS for testing a new Main Page design, see [[Wikipedia:WikiProject Usability/Main Page]] */
#EnWpMainPage { width: 100%; margin-top: 1em; }
#EnWpMainPage h2 { font-size: 130%; font-weight: bold; margin: 0; padding: 0; border: 0; }
#EnWpMpMargin { margin-right: 13.8em; }
#EnWpMpCol1 { float: left; clear: left; width: 50%; }
#EnWpMpCol2 { width: 49.9%; float: left; }
#EnWpMpBrowse { background: #f8fcff url(//upload.wikimedia.org/wikipedia/en/9/9f/MP-three-books.png) no-repeat 180% 9%; border: 1px solid #c7c7c7; }
#EnWpMpBrowseCats li { font-size: 85%; margin-left: 1em; line-height: 1.5; }
#EnWpMpBrowseCats h3 { font-size: 120%; margin: .2em 0 .1em -.8em; padding: 0; font-weight: normal; }
#EnWpMpBrowseCats h3 a { font-weight: bold; }
#EnWpMpBook { background-image: url(//upload.wikimedia.org/wikipedia/en/7/7e/MP-open-book.png); }
#EnWpMpFeaturedPic { text-align: center; margin: 0 0 .5em; font-size: 85%; font-weight: bold; }
#EnWpMpFeaturedPic h2 { font-size: 145%; text-align: left; }
.EnWpMpBrowseRight { float: right; width: 12.7em; }
.EnWpMpBrowseBottom { margin: 1em 0; }
.EnWpMpBrowseBottom #EnWpMpBrowseCats li, .EnWpMpBrowseBottom #EnWpMpUsefulLinks, .EnWpMpBrowseBottom #EnWpMpFeaturedPic { float: left; width: 24%; margin: 0; line-height: auto; }
.EnWpMpBrowseBottom #EnWpMpBrowseCats h3 { margin-left: 0; }
#EnWpMpUsefulLinks { clear: left; }
#EnWpMpSearch { background: url(//upload.wikimedia.org/wikipedia/en/a/ae/MP-magnifying-glass.png) no-repeat top right; }
#EnWpMpSearch input { vertical-align: middle; }
#EnWpMpSearchInner { float: right; width: 20em; text-align: center; }
#bodySearchMP { margin: 0; padding: 0; }
#bodySearchMP .bodySearchWrap { float: right; width: 17.5em; text-align: left; padding: .8em 0; }
#bodySearchMP label { display: block; font-size: 95%; font-weight: bold; margin-bottom: -.2em; }
#bodySearchMP .bodySearchIput { opacity: .85; filter: alpha(opacity=85); }
#bodySearchMP .bodySearchBtnGo { font-weight: bold; padding-left: .3em; padding-right: .3em; margin-left: .5em; }
.EnWpMpContentBox { border: 1px solid; margin-bottom: .9em; }
#EnWpMpCol2 .EnWpMpContentBox { margin-left: .9em; }
.EnWpMpImage { float: right; margin: 0 0 .2em .2em; }
.EnWpMpImage img { position: relative; z-index: 3; }
#EnWpMpSisterProjects { float: left; width: 49%; }
.EnWpMpSisterProject { float: left; width: 17em; margin: 0; height: 5.5em; margin: 0; }
.EnWpMpSisterImg { float: left; width: 40px; height: 100%; }
#EnWpMpOtherLangs { margin-left: 50%; }
#EnWpMainPageNoCSS { display: none; }

p {
	margin: .4em 0 .5em 0;
	line-height: 1.5em;
}
p img {
	margin: 0;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding-top: .5em;
	padding-bottom: .17em;
/*	border-bottom: 1px solid #aaa;*/
}
ul {
	margin: .3em 0 0 1.5em;
	padding: 0;
}
ol {
	margin: .3em 0 0 3.2em;
	padding: 0;
}
/*
li {
	margin-bottom: .1em;
}
*/
dt {
	margin-bottom: .1em;
}
dl {
	margin-top: .2em;
	margin-bottom: .5em;
}
dd {
	margin-left: 2em;
	margin-bottom: .1em;
}
form {
	border: none;
	margin: 0;
}
#siteNotice p {
	margin: 0;
	padding: 0;
}
div.tright {
	clear: right;
	float: right;
	border-width: .5em 0 .8em 1.4em;
}
div.tleft {
	float: left;
	margin-right: .5em;
	border-width: .5em 1.4em .8em 0;
}
div.floatright {
	clear: right;
}

ol.references > li:target {
        background-color:#ddeeff;
}

/* category */
span.redirect-in-category a {
        color: #999999;
}

/* ### nowrap for some table headings ### */
label[for="wpUserEmail"],
label[for="wpNick"],
label[for="wpUserLanguage"],
label[for="wpOldpass"],
label[for="wpNewpass"],
label[for="wpRetypePass"],
#userlogin2 label,
#userloginForm label {
    white-space: nowrap
}
/*</source>*/