
/* wiki-embed.css */

/* 1    */ /** 
/* 2    *|  * from 
/* 3    *| 
/* 4    *| 
/* 5    *| /* <source lang="css"> */
/* 6    */  
/* 7    */ /* Main page fixes */
/* 8    */ #interwiki-completelist {
/* 9    */     font-weight: bold;
/* 10   */ }
/* 11   */ body.page-Main_Page #ca-delete {
/* 12   */     display: none !important;
/* 13   */ }
/* 14   */ 
/* 15   */ body.page-Main_Page #mp-topbanner {
/* 16   */    clear: both;
/* 17   */ }
/* 18   */ 
/* 19   */ /* Edit window toolbar */
/* 20   */ #toolbar {
/* 21   */     height: 22px;
/* 22   */     margin-bottom: 6px;
/* 23   */ }
/* 24   */ .wiki-embed p br{ display: none;}
/* 25   */ /* Margins for <ol> and <ul> */
/* 26   */ #content ol, #content ul,
/* 27   */ #mw_content ol, #mw_content ul {
/* 28   */   margin-bottom: 0.5em;
/* 29   */ }
/* 30   */ 
/* 31   */ /* Make the list of references in [[Template:Reflist]] smaller */
/* 32   */ .references-small { 
/* 33   */     font-size: 90%;
/* 34   */ }
/* 35   */ 
/* 36   */ /* VALIDATOR NOTICE: the following is correct, but the W3C validator doesn't accept it */
/* 37   */ /* -moz-* is a vendor-specific extension (CSS 2.1 4.1.2.1) */
/* 38   */ /* column-count is from the CSS3 module "CSS Multi-column Layout" */
/* 39   */ /* Please ignore any validator errors caused by these two lines */
/* 40   */ .references-2column {
/* 41   */     font-size: 90%;
/* 42   */     -moz-column-count: 2;
/* 43   */     column-count: 2;
/* 44   */ }
/* 45   */ 
/* 46   */ /* Highlight clicked reference in blue to help navigation */
/* 47   */ ol.references > li:target,
/* 48   */ sup.reference:target,
/* 49   */ span.citation:target { 
/* 50   */     background-color: #DEF;

/* wiki-embed.css */

/* 51   */ }
/* 52   */ 
/* 53   */ /* Ensure refs in table headers and the like aren't bold or italic */
/* 54   */ sup.reference {
/* 55   */     font-weight: normal;
/* 56   */     font-style: normal;
/* 57   */ }
/* 58   */ 
/* 59   */ 
/* 60   */ /* Styling for citations */
/* 61   */ span.citation, cite {
/* 62   */     font-style: normal;
/* 63   */     word-wrap: break-word;
/* 64   */ }
/* 65   */ 
/* 66   */ /* For linked citation numbers and document IDs, where
/* 67   *|    the number need not be shown on a screen or a handheld,
/* 68   *|    but should be included in the printed version
/* 69   *| */
/* 70   */ @media screen, handheld {
/* 71   */     span.citation *.printonly {
/* 72   */         display: none;
/* 73   */     }
/* 74   */ }
/* 75   */ 
/* 76   */ 
/* 77   */ /* wikitable/prettytable class for skinning normal tables */
/* 78   */ table.wikitable,
/* 79   */ table.prettytable {
/* 80   */     margin: 1em 1em 1em 0;
/* 81   */     background: #f9f9f9;
/* 82   */     border: 1px #aaa solid;
/* 83   */     border-collapse: collapse;
/* 84   */ }
/* 85   */ .wikitable th, .wikitable td,
/* 86   */ .prettytable th, .prettytable td {
/* 87   */     border: 1px #aaa solid;
/* 88   */     padding: 0.2em;
/* 89   */ }
/* 90   */ .wikitable th,
/* 91   */ .prettytable th {
/* 92   */     background: #f2f2f2;
/* 93   */     text-align: center;
/* 94   */ }
/* 95   */ .wikitable caption,
/* 96   */ .prettytable caption {
/* 97   */     font-weight: bold;
/* 98   */ }
/* 99   */ 
/* 100  */ /* Default skin for navigation boxes */

/* wiki-embed.css */

/* 101  */ table.navbox {            /* Navbox container style */
/* 102  */   border: 1px solid #aaa;
/* 103  */   width: 100%; 
/* 104  */   margin: auto;
/* 105  */   clear: both;
/* 106  */   font-size: 88%;
/* 107  */   text-align: center;
/* 108  */   padding: 1px;
/* 109  */ }
/* 110  */ table.navbox + table.navbox {  /* Single pixel border between adjacent navboxes */
/* 111  */   margin-top: -1px;            /* (doesn't work for IE6, but that's okay)       */
/* 112  */ }
/* 113  */ .navbox-title,
/* 114  */ .navbox-abovebelow,
/* 115  */ table.navbox th {
/* 116  */   text-align: center;      /* Title and above/below styles */
/* 117  */   padding-left: 1em;
/* 118  */   padding-right: 1em;
/* 119  */ }
/* 120  */ .navbox-group {            /* Group style */
/* 121  */   white-space: nowrap;
/* 122  */   text-align: right;
/* 123  */   font-weight: bold;
/* 124  */   padding-left: 1em;
/* 125  */   padding-right: 1em;
/* 126  */ }
/* 127  */ .navbox, .navbox-subgroup {
/* 128  */   background: #fdfdfd;     /* Background color */
/* 129  */ }
/* 130  */ .navbox-list {
/* 131  */   border-color: #fdfdfd;   /* Must match background color */
/* 132  */ }
/* 133  */ .navbox-title,
/* 134  */ table.navbox th {
/* 135  */   background: #ccccff;     /* Level 1 color */
/* 136  */ }
/* 137  */ .navbox-abovebelow,
/* 138  */ .navbox-group,
/* 139  */ .navbox-subgroup .navbox-title {
/* 140  */   background: #ddddff;     /* Level 2 color */
/* 141  */ }
/* 142  */ .navbox-subgroup .navbox-group, .navbox-subgroup .navbox-abovebelow {
/* 143  */   background: #e6e6ff;     /* Level 3 color */
/* 144  */ }
/* 145  */ .navbox-even {
/* 146  */   background: #f7f7f7;     /* Even row striping */
/* 147  */ }
/* 148  */ .navbox-odd {
/* 149  */   background: transparent; /* Odd row striping */
/* 150  */ }

/* wiki-embed.css */

/* 151  */ 
/* 152  */ .collapseButton {          /* 'show'/'hide' buttons created dynamically */
/* 153  */     float: right;          /* by the CollapsibleTables javascript in    */
/* 154  */     font-weight: normal;   /* [[MediaWiki:Common.js]]are styled here    */
/* 155  */     text-align: right;     /* so they can be customised.                */
/* 156  */     width: auto;
/* 157  */ }
/* 158  */ .navbox .collapseButton {  /* In navboxes, the show/hide button balances */
/* 159  */     width: 6em;            /* the vde links from [[Template:Tnavbar]],   */
/* 160  */ }                          /* so they need to be the same width.         */
/* 161  */ 
/* 162  */ 
/* 163  */ /* Infobox template style */
/* 164  */ .infobox {
/* 165  */     border: 1px solid #aaa;
/* 166  */     background-color: #f9f9f9;
/* 167  */     color: black;
/* 168  */     margin: 0.5em 0 0.5em 1em;
/* 169  */     padding: 0.2em;
/* 170  */     float: right;
/* 171  */     clear: right;
/* 172  */ }
/* 173  */ .infobox td,
/* 174  */ .infobox th {
/* 175  */     vertical-align: top;
/* 176  */ }
/* 177  */ .infobox caption {
/* 178  */     font-size: larger;
/* 179  */ }
/* 180  */ .infobox.bordered {
/* 181  */     border-collapse: collapse;
/* 182  */ }
/* 183  */ .infobox.bordered td,
/* 184  */ .infobox.bordered th {
/* 185  */     border: 1px solid #aaa;
/* 186  */ }
/* 187  */ .infobox.bordered .borderless td,
/* 188  */ .infobox.bordered .borderless th {
/* 189  */     border: 0;
/* 190  */ }
/* 191  */ 
/* 192  */ .infobox.sisterproject {
/* 193  */     width: 20em;
/* 194  */     font-size: 90%;
/* 195  */ }
/* 196  */ 
/* 197  */ .infobox.standard-talk {
/* 198  */     border: 1px solid #c0c090;
/* 199  */     background-color: #f8eaba;
/* 200  */ }

/* wiki-embed.css */

/* 201  */ .infobox.standard-talk.bordered td,
/* 202  */ .infobox.standard-talk.bordered th {
/* 203  */     border: 1px solid #c0c090;
/* 204  */ }
/* 205  */ 
/* 206  */ /* styles for bordered infobox with merged rows */
/* 207  */ .infobox.bordered .mergedtoprow td,
/* 208  */ .infobox.bordered .mergedtoprow th {
/* 209  */     border: 0;
/* 210  */     border-top: 1px solid #aaa;
/* 211  */     border-right: 1px solid #aaa;
/* 212  */ }
/* 213  */ 
/* 214  */ .infobox.bordered .mergedrow td,
/* 215  */ .infobox.bordered .mergedrow th {
/* 216  */     border: 0;
/* 217  */     border-right: 1px solid #aaa;
/* 218  */ }
/* 219  */ 
/* 220  */ /* Styles for geography infoboxes, eg countries,
/* 221  *|    country subdivisions, cities, etc.            */
/* 222  */ .infobox.geography {
/* 223  */     text-align: left;
/* 224  */     border-collapse: collapse;
/* 225  */     line-height: 1.2em; 
/* 226  */     font-size: 90%;
/* 227  */ }
/* 228  */ 
/* 229  */ .infobox.geography  td,
/* 230  */ .infobox.geography  th {
/* 231  */     border-top: solid 1px #aaa;
/* 232  */     padding: 0.4em 0.6em 0.4em 0.6em;
/* 233  */ }
/* 234  */ .infobox.geography .mergedtoprow td,
/* 235  */ .infobox.geography .mergedtoprow th {
/* 236  */     border-top: solid 1px #aaa;
/* 237  */     padding: 0.4em 0.6em 0.2em 0.6em;
/* 238  */ }
/* 239  */ 
/* 240  */ .infobox.geography .mergedrow td,
/* 241  */ .infobox.geography .mergedrow th {
/* 242  */     border: 0;
/* 243  */     padding: 0 0.6em 0.2em 0.6em;
/* 244  */ }
/* 245  */ 
/* 246  */ .infobox.geography .mergedbottomrow td,
/* 247  */ .infobox.geography .mergedbottomrow th {
/* 248  */     border-top: 0;
/* 249  */     border-bottom: solid 1px #aaa;
/* 250  */     padding: 0 0.6em 0.4em 0.6em;

/* wiki-embed.css */

/* 251  */ }
/* 252  */ 
/* 253  */ .infobox.geography .maptable td,
/* 254  */ .infobox.geography .maptable th {
/* 255  */     border: 0;
/* 256  */     padding: 0;
/* 257  */ }
/* 258  */ 
/* 259  */ /* Makes redirects appear in italics in categories and on [[Special:Allpages]] */
/* 260  */ .redirect-in-category, .allpagesredirect {
/* 261  */     font-style: italic;
/* 262  */ }
/* 263  */ 
/* 264  */ /* Icons for medialist templates [[Template:Listen]],
/* 265  *|    [[Template:Multi-listen_start]], [[Template:Video]],
/* 266  *|    [[Template:Multi-video_start]]
/* 267  *| */
/* 268  */ div.listenlist {
/* 269  */     background:
/* 270  */         url("//upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Gnome-speakernotes.png/30px-Gnome-speakernotes.png");
/* 271  */     padding-left: 40px;
/* 272  */ }
/* 273  */ 
/* 274  */ /* Style rules for media list templates */
/* 275  */ div.medialist {
/* 276  */     min-height: 50px;
/* 277  */     margin: 1em;
/* 278  */     background-position: top left;
/* 279  */     background-repeat: no-repeat;
/* 280  */ }
/* 281  */ div.medialist ul {
/* 282  */     list-style-type: none; 
/* 283  */     list-style-image: none;
/* 284  */     margin: 0;
/* 285  */ }
/* 286  */ div.medialist ul li {
/* 287  */     padding-bottom: 0.5em;
/* 288  */ }
/* 289  */ div.medialist ul li li {
/* 290  */     font-size: 91%;
/* 291  */     padding-bottom: 0;
/* 292  */ }
/* 293  */ 
/* 294  */ /* Change the external link icon to an Adobe icon for all PDF files
/* 295  *|    in browsers that support these CSS selectors, like Mozilla and Opera */
/* 296  */ #content a[href$=".pdf"].external, 
/* 297  */ #content a[href*=".pdf?"].external, 
/* 298  */ #content a[href*=".pdf#"].external,
/* 299  */ #content a[href$=".PDF"].external, 
/* 300  */ #content a[href*=".PDF?"].external, 

/* wiki-embed.css */

/* 301  */ #content a[href*=".PDF#"].external,
/* 302  */ #mw_content  a[href$=".pdf"].external, 
/* 303  */ #mw_content  a[href*=".pdf?"].external, 
/* 304  */ #mw_content  a[href*=".pdf#"].external,
/* 305  */ #mw_content  a[href$=".PDF"].external, 
/* 306  */ #mw_content  a[href*=".PDF?"].external, 
/* 307  */ #mw_content  a[href*=".PDF#"].external {
/* 308  */     background: url("//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif") center right no-repeat;
/* 309  */     padding-right: 16px;
/* 310  */ }
/* 311  */ 
/* 312  */ /* Change the external link icon to an Adobe icon anywhere the PDFlink class
/* 313  *|    is used (notably Template:PDFlink). This works in IE, unlike the above. */
/* 314  */ #content span.PDFlink a,
/* 315  */ #mw_content span.PDFlink a {
/* 316  */     background: url("//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif") center right no-repeat;
/* 317  */     padding-right: 17px;
/* 318  */ }
/* 319  */ 
/* 320  */ /* Content in columns with CSS instead of tables [[Template:Columns]] */
/* 321  */ div.columns-2 div.column {
/* 322  */     float: left;
/* 323  */     width: 50%;
/* 324  */     min-width: 300px;
/* 325  */ }
/* 326  */ div.columns-3 div.column {
/* 327  */     float: left;
/* 328  */     width: 33.3%;
/* 329  */     min-width: 200px;
/* 330  */ }
/* 331  */ div.columns-4 div.column {
/* 332  */     float: left;
/* 333  */     width: 25%;
/* 334  */     min-width: 150px;
/* 335  */ }
/* 336  */ div.columns-5 div.column {
/* 337  */     float: left;
/* 338  */     width: 20%;
/* 339  */     min-width: 120px;
/* 340  */ }
/* 341  */ 
/* 342  */ /* Messagebox templates */
/* 343  */ .messagebox {
/* 344  */     border: 1px solid #aaa;
/* 345  */     background-color: #f9f9f9;
/* 346  */     width: 80%;
/* 347  */     margin: 0 auto 1em auto;
/* 348  */     padding: .2em;
/* 349  */ }
/* 350  */ .messagebox.merge {

/* wiki-embed.css */

/* 351  */     border: 1px solid #c0b8cc;
/* 352  */     background-color: #f0e5ff;
/* 353  */     text-align: center;
/* 354  */ }
/* 355  */ .messagebox.cleanup {
/* 356  */     border: 1px solid #9f9fff;
/* 357  */     background-color: #efefff;
/* 358  */     text-align: center;
/* 359  */ }
/* 360  */ .messagebox.standard-talk {
/* 361  */     border: 1px solid #c0c090;
/* 362  */     background-color: #f8eaba;
/* 363  */     margin: 4px auto;
/* 364  */ }
/* 365  */ /* For old WikiProject banners inside banner shells. */
/* 366  */ .mbox-inside .standard-talk,
/* 367  */ .messagebox.nested-talk {
/* 368  */     border: 1px solid #c0c090;
/* 369  */     background-color: #f8eaba;
/* 370  */     width: 100%;
/* 371  */     margin: 2px 0;
/* 372  */     padding: 2px;
/* 373  */ }
/* 374  */ .messagebox.small {
/* 375  */     width: 238px;
/* 376  */     font-size: 85%;
/* 377  */     float: right;
/* 378  */     clear: both;
/* 379  */     margin: 0 0 1em 1em;
/* 380  */     line-height: 1.25em; 
/* 381  */ }
/* 382  */ .messagebox.small-talk {
/* 383  */     width: 238px;
/* 384  */     font-size: 85%;
/* 385  */     float: right;
/* 386  */     clear: both;
/* 387  */     margin: 0 0 1em 1em;
/* 388  */     line-height: 1.25em; 
/* 389  */     background: #F8EABA;
/* 390  */ }
/* 391  */ 
/* 392  */ 
/* 393  */ /* Cell sizes for ambox/tmbox/imbox/cmbox/ombox/fmbox/dmbox message boxes */
/* 394  */ th.mbox-text, td.mbox-text {     /* The message body cell(s) */
/* 395  */     border: none; 
/* 396  */     padding: 0.25em 0.9em;       /* 0.9em left/right */
/* 397  */     width: 100%;    /* Make all mboxes the same width regardless of text length */
/* 398  */ }
/* 399  */ td.mbox-image {                  /* The left image cell */
/* 400  */     border: none; 

/* wiki-embed.css */

/* 401  */     padding: 2px 0 2px 0.9em;    /* 0.9em left, 0px right */
/* 402  */     text-align: center; 
/* 403  */ }
/* 404  */ td.mbox-imageright {             /* The right image cell */
/* 405  */     border: none;
/* 406  */     padding: 2px 0.9em 2px 0;    /* 0px left, 0.9em right */
/* 407  */     text-align: center; 
/* 408  */ }
/* 409  */ td.mbox-empty-cell {         /* An empty narrow cell */
/* 410  */     border: none;
/* 411  */     padding: 0px;
/* 412  */     width: 1px;
/* 413  */ }
/* 414  */ 
/* 415  */ /* Article message box styles */
/* 416  */ table.ambox {
/* 417  */     margin: 0px 0;   /* 10% = Will not overlap with other elements */
/* 418  */     border: 1px solid #aaa; 
/* 419  */     border-left: 10px solid #1e90ff;    /* Default "notice" blue */
/* 420  */     background: #fbfbfb; 
/* 421  */ }
/* 422  */ table.ambox + table.ambox {   /* Single border between stacked boxes. */
/* 423  */     margin-top: -1px;
/* 424  */ }
/* 425  */ .ambox th.mbox-text, 
/* 426  */ .ambox td.mbox-text {            /* The message body cell(s) */
/* 427  */     padding: 0.25em 0.5em;       /* 0.5em left/right */
/* 428  */ }
/* 429  */ .ambox td.mbox-image {           /* The left image cell */
/* 430  */     padding: 2px 0 2px 0.5em;    /* 0.5em left, 0px right */
/* 431  */ }
/* 432  */ .ambox td.mbox-imageright {      /* The right image cell */
/* 433  */     padding: 2px 0.5em 2px 0;    /* 0px left, 0.5em right */
/* 434  */ }
/* 435  */ 
/* 436  */ table.ambox-notice {
/* 437  */     border-left: 10px solid #1e90ff;    /* Blue */
/* 438  */ }
/* 439  */ table.ambox-speedy {
/* 440  */     border-left: 10px solid #b22222;    /* Red */
/* 441  */     background: #fee;                   /* Pink */
/* 442  */ }
/* 443  */ table.ambox-delete {
/* 444  */     border-left: 10px solid #b22222;    /* Red */
/* 445  */ }
/* 446  */ table.ambox-content {
/* 447  */     border-left: 10px solid #f28500;    /* Orange */
/* 448  */ }
/* 449  */ table.ambox-style {
/* 450  */     border-left: 10px solid #f4c430;    /* Yellow */

/* wiki-embed.css */

/* 451  */ }
/* 452  */ table.ambox-move {
/* 453  */     border-left: 10px solid #9932cc;    /* Purple */
/* 454  */ }
/* 455  */ table.ambox-protection {
/* 456  */     border-left: 10px solid #bba;       /* Gray-gold */
/* 457  */ }
/* 458  */ 
/* 459  */ /* Image message box styles */
/* 460  */ table.imbox {
/* 461  */     margin: 4px 10%; 
/* 462  */     border-collapse: collapse; 
/* 463  */     border: 3px solid #1e90ff;    /* Default "notice" blue */
/* 464  */     background: #fbfbfb;
/* 465  */ }
/* 466  */ .imbox .mbox-text .imbox {    /* For imboxes inside imbox-text cells. */
/* 467  */     margin: 0 -0.5em;    /* 0.9 - 0.5 = 0.4em left/right. */
/* 468  */ }
/* 469  */ .mbox-inside .imbox {    /* For imboxes inside other templates. */
/* 470  */     margin: 4px;
/* 471  */ }
/* 472  */ 
/* 473  */ table.imbox-notice {
/* 474  */     border: 3px solid #1e90ff;    /* Blue */
/* 475  */ }
/* 476  */ table.imbox-speedy {
/* 477  */     border: 3px solid #b22222;    /* Red */
/* 478  */     background: #fee;             /* Pink */
/* 479  */ }
/* 480  */ table.imbox-delete {
/* 481  */     border: 3px solid #b22222;    /* Red */
/* 482  */ }
/* 483  */ table.imbox-content {
/* 484  */     border: 3px solid #f28500;    /* Orange */
/* 485  */ }
/* 486  */ table.imbox-style {
/* 487  */     border: 3px solid #f4c430;    /* Yellow */
/* 488  */ }
/* 489  */ table.imbox-move {
/* 490  */     border: 3px solid #9932cc;    /* Purple */
/* 491  */ }
/* 492  */ table.imbox-protection {
/* 493  */     border: 3px solid #bba;       /* Gray-gold */
/* 494  */ }
/* 495  */ table.imbox-license {
/* 496  */     border: 3px solid #88a;       /* Dark gray */
/* 497  */     background: #f7f8ff;          /* Light gray */
/* 498  */ }
/* 499  */ table.imbox-featured {
/* 500  */     border: 3px solid #cba135;    /* Brown-gold */

/* wiki-embed.css */

/* 501  */ }
/* 502  */ 
/* 503  */ /* Category message box styles */
/* 504  */ table.cmbox {
/* 505  */     margin: 3px 10%;
/* 506  */     border-collapse: collapse;
/* 507  */     border: 1px solid #aaa; 
/* 508  */     background: #DFE8FF;    /* Default "notice" blue */
/* 509  */ }
/* 510  */ 
/* 511  */ table.cmbox-notice {
/* 512  */     background: #D8E8FF;    /* Blue */
/* 513  */ }
/* 514  */ table.cmbox-speedy {
/* 515  */     margin-top: 4px;
/* 516  */     margin-bottom: 4px;
/* 517  */     border: 4px solid #b22222;    /* Red */
/* 518  */     background: #FFDBDB;          /* Pink */
/* 519  */ }
/* 520  */ table.cmbox-delete {
/* 521  */     background: #FFDBDB;    /* Red */
/* 522  */ }
/* 523  */ table.cmbox-content {
/* 524  */     background: #FFE7CE;    /* Orange */
/* 525  */ }
/* 526  */ table.cmbox-style {
/* 527  */     background: #FFF9DB;    /* Yellow */
/* 528  */ }
/* 529  */ table.cmbox-move {
/* 530  */     background: #E4D8FF;    /* Purple */
/* 531  */ }
/* 532  */ table.cmbox-protection {
/* 533  */     background: #EFEFE1;    /* Gray-gold */
/* 534  */ }
/* 535  */ 
/* 536  */ /* Other pages message box styles */
/* 537  */ table.ombox {
/* 538  */     margin: 4px 10%; 
/* 539  */     border-collapse: collapse; 
/* 540  */     border: 1px solid #aaa;       /* Default "notice" gray */
/* 541  */     background: #f9f9f9;
/* 542  */ }
/* 543  */ 
/* 544  */ table.ombox-notice {
/* 545  */     border: 1px solid #aaa;       /* Gray */
/* 546  */ }
/* 547  */ table.ombox-speedy {
/* 548  */     border: 2px solid #b22222;    /* Red */
/* 549  */     background: #fee;             /* Pink */
/* 550  */ }

/* wiki-embed.css */

/* 551  */ table.ombox-delete {
/* 552  */     border: 2px solid #b22222;    /* Red */
/* 553  */ }
/* 554  */ table.ombox-content {
/* 555  */     border: 1px solid #f28500;    /* Orange */
/* 556  */ }
/* 557  */ table.ombox-style {
/* 558  */     border: 1px solid #f4c430;    /* Yellow */
/* 559  */ }
/* 560  */ table.ombox-move {
/* 561  */     border: 1px solid #9932cc;    /* Purple */
/* 562  */ }
/* 563  */ table.ombox-protection {
/* 564  */     border: 2px solid #bba;       /* Gray-gold */
/* 565  */ }
/* 566  */  
/* 567  */ /* Talk page message box styles */
/* 568  */ table.tmbox {
/* 569  */     margin: 4px 10%;
/* 570  */     border-collapse: collapse;
/* 571  */     border: 1px solid #c0c090;    /* Default "notice" gray-brown */
/* 572  */     background: #f8eaba;
/* 573  */ }
/* 574  */ .mediawiki .mbox-inside .tmbox { /* For tmboxes inside other templates. The "mediawiki" */
/* 575  */     margin: 2px 0;               /* class ensures that this declaration overrides other */
/* 576  */     width: 100%;  /* For Safari and Opera */     /* styles (including mbox-small above) */
/* 577  */ }
/* 578  */ .mbox-inside .tmbox.mbox-small { /* "small" tmboxes should not be small when  */
/* 579  */     line-height: 1.5em;          /* also "nested", so reset styles that are   */   
/* 580  */     font-size: 100%;             /* set in "mbox-small" above.                */
/* 581  */ }
/* 582  */ 
/* 583  */ table.tmbox-speedy {
/* 584  */     border: 2px solid #b22222;    /* Red */
/* 585  */     background: #fee;             /* Pink */
/* 586  */ }
/* 587  */ table.tmbox-delete {
/* 588  */     border: 2px solid #b22222;    /* Red */
/* 589  */ }
/* 590  */ table.tmbox-content {
/* 591  */     border: 2px solid #f28500;    /* Orange */
/* 592  */ }
/* 593  */ table.tmbox-style {
/* 594  */     border: 2px solid #f4c430;    /* Yellow */
/* 595  */ }
/* 596  */ table.tmbox-move {
/* 597  */     border: 2px solid #9932cc;    /* Purple */
/* 598  */ }
/* 599  */ table.tmbox-protection,
/* 600  */ table.tmbox-notice {

/* wiki-embed.css */

/* 601  */     border: 1px solid #c0c090;    /* Gray-brown */
/* 602  */ }
/* 603  */ 
/* 604  */ /* Disambig and set index box styles */
/* 605  */ table.dmbox {
/* 606  */     clear: both; 
/* 607  */     margin: 0.9em 1em; 
/* 608  */     border-top: 1px solid #ccc; 
/* 609  */     border-bottom: 1px solid #ccc; 
/* 610  */     background: transparent;
/* 611  */ }
/* 612  */  
/* 613  */ /* Footer and header message box styles */
/* 614  */ table.fmbox {
/* 615  */     clear: both;
/* 616  */     margin: 0.2em 0;
/* 617  */     width: 100%;
/* 618  */     border: 1px solid #aaa;
/* 619  */     background: #f9f9f9;     /* Default "system" gray */
/* 620  */ }
/* 621  */ table.fmbox-system {
/* 622  */     background: #f9f9f9;
/* 623  */ }
/* 624  */ table.fmbox-warning {
/* 625  */     border: 1px solid #bb7070;  /* Dark pink */
/* 626  */     background: #ffdbdb;        /* Pink */
/* 627  */ }
/* 628  */ table.fmbox-editnotice {
/* 629  */     background: transparent;
/* 630  */ }
/* 631  */ /* Div based "warning" style fmbox messages. */
/* 632  */ div.mw-warning-with-logexcerpt,
/* 633  */ div.mw-lag-warn-high,
/* 634  */ div.mw-cascadeprotectedwarning,
/* 635  */ div#mw-protect-cascadeon {
/* 636  */     clear: both;
/* 637  */     margin: 0.2em 0;
/* 638  */     border: 1px solid #bb7070;
/* 639  */     background: #ffdbdb;
/* 640  */     padding: 0.25em 0.9em;
/* 641  */ }
/* 642  */ /* Div based "system" style fmbox messages. 
/* 643  *|    Used in [[MediaWiki:Readonly lag]]. */
/* 644  */ div.mw-lag-warn-normal,
/* 645  */ div.fmbox-system {
/* 646  */     clear: both;
/* 647  */     margin: 0.2em 0;
/* 648  */     border: 1px solid #aaa;
/* 649  */     background: #f9f9f9;
/* 650  */     padding: 0.25em 0.9em;

/* wiki-embed.css */

/* 651  */ }
/* 652  */ 
/* 653  */ /* These mbox-small classes must be placed after all other 
/* 654  *|    ambox/tmbox/ombox etc classes. "body.mediawiki" is so 
/* 655  *|    they override "table.ambox + table.ambox" above. */
/* 656  */ body.mediawiki table.mbox-small {   /* For the "small=yes" option. */
/* 657  */     clear: right;
/* 658  */     float: right;
/* 659  */     margin: 4px 0 4px 1em;
/* 660  */     width: 238px;
/* 661  */     font-size: 88%;
/* 662  */     line-height: 1.25em;
/* 663  */ }
/* 664  */ body.mediawiki table.mbox-small-left {   /* For the "small=left" option. */
/* 665  */     margin: 4px 1em 4px 0;
/* 666  */     width: 238px;
/* 667  */     border-collapse: collapse;
/* 668  */     font-size: 88%;
/* 669  */     line-height: 1.25em;
/* 670  */ }
/* 671  */ 
/* 672  */ 
/* 673  */ /* Remove default styles for [[MediaWiki:Noarticletext]]. */
/* 674  */ div.noarticletext {
/* 675  */     border: none;
/* 676  */     background: transparent;
/* 677  */     padding: 0;
/* 678  */ }
/* 679  */ 
/* 680  */ /* Support for Template:IPA, Template:Unicode and Template:Polytonic.
/* 681  *|    The second declarations reset the styles for all browsers except
/* 682  *|    IE6, which chokes on the empty comment tags. Please copy any changes
/* 683  *|    to [[Template:IPA fonts]] and [[Template:Unicode fonts]].
/* 684  *| */
/* 685  */ .IPA {
/* 686  */     font-family: "Charis SIL", "Doulos SIL", Gentium, GentiumAlt,
/* 687  */                  "DejaVu Sans", Code2000, "TITUS Cyberbit Basic",
/* 688  */                  "Arial Unicode MS", "Lucida Sans Unicode",
/* 689  */                  "Chrysanthi Unicode";
/* 690  */     font-family /**/: inherit;
/* 691  */ }
/* 692  */ .Unicode {
/* 693  */     font-family: Code2000, Code2001, "Free Serif", "TITUS Cyberbit Basic",
/* 694  */                  "Doulos SIL", "Chrysanthi Unicode", "Bitstream Cyberbit",
/* 695  */                  "Bitstream CyberBase", Thryomanes, Gentium, GentiumAlt,
/* 696  */                  "Lucida Grande", "Free Sans", "Arial Unicode MS",
/* 697  */                  "Microsoft Sans Serif", "Lucida Sans Unicode";
/* 698  */     font-family /**/: inherit;
/* 699  */ }
/* 700  */ .latinx {

/* wiki-embed.css */

/* 701  */     font-family: Code2000, Code2001, "TITUS Cyberbit Basic", "Microsoft Sans Serif";
/* 702  */     font-family /**/: inherit;
/* 703  */ }
/* 704  */ .polytonic {
/* 705  */     font-family: "Athena Unicode", Gentium, "Palatino Linotype",
/* 706  */                  "Arial Unicode MS", "Lucida Sans Unicode",
/* 707  */                  "Lucida Grande", Code2000; 
/* 708  */     font-family /**/: inherit;
/* 709  */ }
/* 710  */ 
/* 711  */ #wpSave {
/* 712  */     font-weight: bold;
/* 713  */ }
/* 714  */ 
/* 715  */ /* class hiddenStructure is defunct. See [[Wikipedia:hiddenStructure]] */
/* 716  */ .hiddenStructure {
/* 717  */     display: inline ! important;
/* 718  */     color: #f00; 
/* 719  */     background-color: #0f0;
/* 720  */ }
/* 721  */ 
/* 722  */ /* suppress missing interwiki image links where #ifexist cannot
/* 723  *|    be used due to high number of requests see .hidden-redlink on 
/* 724  *|    http://meta.wikimedia.org/wiki/MediaWiki:Common.css
/* 725  *| */
/* 726  */ .check-icon a.new {
/* 727  */     display: none; 
/* 728  */     speak: none;
/* 729  */ }
/* 730  */ 
/* 731  */ /* Removes underlines from links */
/* 732  */ .nounderlines a { 
/* 733  */     text-decoration: none;
/* 734  */ }
/* 735  */ 
/* 736  */ /* Remove underline from IPA links */
/* 737  */ .IPA a:link, .IPA a:visited {
/* 738  */     text-decoration: none;
/* 739  */ }
/* 740  */ 
/* 741  */ /* Standard Navigationsleisten, aka box hiding thingy
/* 742  *|    from .de.  Documentation at [[Wikipedia:NavFrame]]. */
/* 743  */ div.NavFrame {
/* 744  */     margin: 0;
/* 745  */     padding: 4px;
/* 746  */     border: 1px solid #aaa;
/* 747  */     text-align: center;
/* 748  */     border-collapse: collapse;
/* 749  */     font-size: 95%;
/* 750  */ }

/* wiki-embed.css */

/* 751  */ div.NavFrame + div.NavFrame {
/* 752  */     border-top-style: none;
/* 753  */     border-top-style: hidden;
/* 754  */ }
/* 755  */ div.NavPic {
/* 756  */     background-color: #fff;
/* 757  */     margin: 0;
/* 758  */     padding: 2px;
/* 759  */     float: left;
/* 760  */ }
/* 761  */ div.NavFrame div.NavHead {
/* 762  */     height: 1.6em;
/* 763  */     font-weight: bold;
/* 764  */     background-color: #ccf;
/* 765  */     position: relative;
/* 766  */ }
/* 767  */ div.NavFrame p,
/* 768  */ div.NavFrame div.NavContent,
/* 769  */ div.NavFrame div.NavContent p {
/* 770  */     font-size: 100%;
/* 771  */ }
/* 772  */ div.NavEnd {
/* 773  */     margin: 0;
/* 774  */     padding: 0;
/* 775  */     line-height: 1px;
/* 776  */     clear: both;
/* 777  */ }
/* 778  */ a.NavToggle {
/* 779  */     position: absolute;
/* 780  */     top: 0;
/* 781  */     right: 3px;
/* 782  */     font-weight: normal;
/* 783  */     font-size: 90%;
/* 784  */ }
/* 785  */ 
/* 786  */ /* Hatnotes and disambiguation notices */
/* 787  */ .rellink,
/* 788  */ .dablink {
/* 789  */     font-style: italic;
/* 790  */     padding-left: 2em;
/* 791  */     margin-bottom: 0.5em;
/* 792  */ }
/* 793  */ .rellink i,
/* 794  */ .dablink i {
/* 795  */     font-style: normal;
/* 796  */ }
/* 797  */ 
/* 798  */ /* Style for horizontal UL lists */
/* 799  */ .horizontal ul {
/* 800  */     padding: 0;

/* wiki-embed.css */

/* 801  */     margin: 0;
/* 802  */ }
/* 803  */ .horizontal li { 
/* 804  */     padding: 0 0.6em 0 0.4em;
/* 805  */     display: inline;
/* 806  */     border-right: 1px solid;
/* 807  */ }
/* 808  */ .horizontal li:last-child {
/* 809  */     border-right: none;
/* 810  */     padding-right: 0;
/* 811  */ }
/* 812  */ 
/* 813  */ /* Allow transcluded pages to display in lists rather than a table.
/* 814  *|    Compatible in Firefox; incompatible in IE6. */
/* 815  */ .listify td    { display: list-item; }
/* 816  */ .listify tr    { display: block; }
/* 817  */ .listify table { display: block; }
/* 818  */ 
/* 819  */ /* Geographical coordinates defaults. See [[Template:Coord/link]]
/* 820  *|    for how these are used. The classes "geo", "longitude", and
/* 821  *|    "latitude" are used by the [[Geo microformat]].
/* 822  *|  */
/* 823  */ .geo-default, .geo-dms, .geo-dec  { display: inline; }
/* 824  */ .geo-nondefault, .geo-multi-punct { display: none; }
/* 825  */ .longitude, .latitude             { white-space: nowrap; }
/* 826  */ 
/* 827  */ /* When <div class="nonumtoc"> is used on the table of contents,
/* 828  *|    the ToC will display without numbers */
/* 829  */ .nonumtoc .tocnumber { display: none; }
/* 830  */ .nonumtoc #toc ul,
/* 831  */ .nonumtoc .toc ul {
/* 832  */     line-height: 1.5em;
/* 833  */     list-style: none;
/* 834  */     margin: .3em 0 0;
/* 835  */     padding: 0;
/* 836  */ }
/* 837  */ .nonumtoc #toc ul ul, 
/* 838  */ .nonumtoc .toc ul ul { 
/* 839  */     margin: 0 0 0 2em; 
/* 840  */ }
/* 841  */ 
/* 842  */ /* Allow limiting of which header levels are shown in a TOC;
/* 843  *|    <div class="toclimit-3">, for instance, will limit to
/* 844  *|    showing ==headings== and ===headings=== but no further
/* 845  *|    (as long as there are no =headings= on the page, which
/* 846  *|    there shouldn't be according to the MoS).
/* 847  *|  */
/* 848  */ .toclimit-2 .toclevel-2,
/* 849  */ .toclimit-3 .toclevel-3,
/* 850  */ .toclimit-4 .toclevel-4,

/* wiki-embed.css */

/* 851  */ .toclimit-5 .toclevel-5,
/* 852  */ .toclimit-6 .toclevel-6,
/* 853  */ .toclimit-7 .toclevel-7 { display: none; }
/* 854  */ 
/* 855  */ /* Styling for Template:Quote */
/* 856  */ blockquote.templatequote { 
/* 857  */     margin-top: 0; 
/* 858  */ }
/* 859  */ 
/* 860  */ blockquote.templatequote div.templatequotecite { 
/* 861  */     line-height: 1em;
/* 862  */     text-align: left;
/* 863  */     padding-left: 2em;
/* 864  */     margin-top: 0;
/* 865  */ }
/* 866  */ 
/* 867  */ blockquote.templatequote div.templatequotecite cite {
/* 868  */     font-size: 85%;
/* 869  */ }
/* 870  */ 
/* 871  */ div.user-block {
/* 872  */     padding: 5px;
/* 873  */     border: 1px solid #A9A9A9;
/* 874  */     background-color: #FFEFD5;
/* 875  */ }
/* 876  */ 
/* 877  */ /* Prevent line breaks in silly places: 
/* 878  *|    1) Links when we don't want them to
/* 879  *|    2) Bold "links" to the page itself
/* 880  *|    2) HTML formulae
/* 881  *|    3) Ref tags with group names <ref group="Note"> --> "[Note 1]"
/* 882  *| */
/* 883  */ .nowraplinks a,
/* 884  */ .nowraplinks .selflink,
/* 885  */ span.texhtml,
/* 886  */ sup.reference a { 
/* 887  */     white-space: nowrap;
/* 888  */ }
/* 889  */ 
/* 890  */ /* For template documentation */
/* 891  */ .template-documentation {
/* 892  */     clear: both;
/* 893  */     margin: 1em 0 0 0;
/* 894  */     border: 1px solid #aaa; 
/* 895  */     background-color: #ecfcf4; 
/* 896  */     padding: 1em;
/* 897  */ }
/* 898  */ 
/* 899  */ .thumbinner {
/* 900  */     min-width: 100px;

/* wiki-embed.css */

/* 901  */ }
/* 902  */ 
/* 903  */ /* Inline divs in ImageMaps (code borrowed from de.wiki) */
/* 904  */ .imagemap-inline div {
/* 905  */     display: inline;
/* 906  */ }
/* 907  */ 
/* 908  */ /* Increase the height of the image upload box */
/* 909  */ #wpUploadDescription {
/* 910  */     height: 13em;
/* 911  */ }
/* 912  */ 
/* 913  */ /* Reduce line-height for <sup> and <sub> */
/* 914  */ sup, sub {
/* 915  */     line-height: 1em;
/* 916  */ }
/* 917  */ 
/* 918  */ /* Remove white border from thumbnails */
/* 919  */ div.thumb {
/* 920  */     border: none;
/* 921  */ }
/* 922  */ 
/* 923  */ div.tright {
/* 924  */     border: none;
/* 925  */     margin: 0.5em 0 0.8em 1.4em;
/* 926  */ }
/* 927  */ 
/* 928  */ div.tleft {
/* 929  */     border: none;
/* 930  */     margin: 0.5em 1.4em 0.8em 0;
/* 931  */ }
/* 932  */ 
/* 933  */ /* Makes the background of a framed image white instead of gray. */
/* 934  */ /* Only visible with transparent images. */
/* 935  */ div.thumb img.thumbimage {
/* 936  */     background-color: #fff;
/* 937  */ }
/* 938  */  
/* 939  */ /* The backgrounds for galleries. */
/* 940  */ #content .gallerybox div.thumb {
/* 941  */     background-color: #F9F9F9;   /* Light gray padding */
/* 942  */ }
/* 943  */ 
/* 944  */ /* Put a chequered background behind images, only visible if they have transparency */
/* 945  */ .gallerybox .thumb img,
/* 946  */ #file img {
/* 947  */     background: white url("//upload.wikimedia.org/wikipedia/commons/5/5d/Checker-16x16.png") repeat;
/* 948  */ }
/* 949  */ 
/* 950  */ /* But not on articles, user pages, portals or with opt-out. */

/* wiki-embed.css */

/* 951  */ .ns-0 .gallerybox .thumb img,
/* 952  */ .ns-2 .gallerybox .thumb img,
/* 953  */ .ns-100 .gallerybox .thumb img, 
/* 954  */ .nochecker .gallerybox .thumb img {
/* 955  */     background: white;
/* 956  */ }
/* 957  */ 
/* 958  */ .wiki-embed .gallery {
/* 959  */ 	margin: 0;
/* 960  */ 	padding: 0;
/* 961  */ 	position: relative;
/* 962  */ 	overflow: hidden;
/* 963  */ }
/* 964  */ 
/* 965  */ .gallerybox {
/* 966  */ 	list-style: none;
/* 967  */ 	float: left;
/* 968  */ 	text-align: center;
/* 969  */ }
/* 970  */ /* Prevent floating boxes from overlapping any category listings,
/* 971  *|    file histories, edit previews, and edit [Show changes] views */
/* 972  */ #mw-subcategories, #mw-pages, #mw-category-media, 
/* 973  */ #filehistory, #wikiPreview, #wikiDiff {
/* 974  */     clear: both;
/* 975  */ }
/* 976  */ 
/* 977  */ /* Selectively hide headers in WikiProject banners */
/* 978  */ .wpb .wpb-header             { display: none; }
/* 979  */ .wpbs-inner .wpb .wpb-header { display: block; }     /* for IE */
/* 980  */ .wpbs-inner .wpb .wpb-header { display: table-row; } /* for real browsers */
/* 981  */ .wpbs-inner .wpb-outside     { display: none; }      /* hide things that should only display outside shells */
/* 982  */ 
/* 983  */ /* Styling for Abuse Filter tags */
/* 984  */ .mw-tag-markers {
/* 985  */  font-family: sans-serif;
/* 986  */  font-style: italic;
/* 987  */  font-size: 90%;
/* 988  */ }
/* 989  */ 
/* 990  */ /* Fix so <tt>, <code> and <pre> tags get normal text size also in 
/* 991  *|    some versions of Firefox, Safari, Konqueror, Chrome etc. */
/* 992  */ tt, code, pre {
/* 993  */     font-family: monospace, sans-serif;
/* 994  */ }
/* 995  */ 
/* 996  */ /* </source> */
/* 997  */ span.alert {
/* 998  */ 	color: red;
/* 999  */ 	background: #FFF;
/* 1000 */ 	margin-bottom: 10px;

/* wiki-embed.css */

/* 1001 */ 	display: block;
/* 1002 */ }
/* 1003 */ 
/* 1004 */ /* via :http://bits.wikimedia.org/skins-1.5/monobook/main.css?257z33
/* 1005 *| */
/* 1006 */ /*
/* 1007 *| ** content styles
/* 1008 *| */
/* 1009 */ #toc,
/* 1010 */ .toc,
/* 1011 */ .mw-warning {
/* 1012 */ 	border: 1px solid #aaa;
/* 1013 */ 	background-color: #f9f9f9;
/* 1014 */ 	padding: 5px;
/* 1015 */ 	font-size: 95%;
/* 1016 */ }
/* 1017 */ 
/* 1018 */ #toc h2,
/* 1019 */ .toc h2 {
/* 1020 */ 	display: inline;
/* 1021 */ 	border: none;
/* 1022 */ 	padding: 0;
/* 1023 */ 	font-size: 100%;
/* 1024 */ 	font-weight: bold;
/* 1025 */ }
/* 1026 */ 
/* 1027 */ #toc #toctitle,
/* 1028 */ .toc #toctitle,
/* 1029 */ #toc .toctitle,
/* 1030 */ .toc .toctitle {
/* 1031 */ 	text-align: center;
/* 1032 */ }
/* 1033 */ 
/* 1034 */ #toc ul,
/* 1035 */ .toc ul {
/* 1036 */ 	list-style-type: none;
/* 1037 */ 	list-style-image: none;
/* 1038 */ 	margin-left: 0;
/* 1039 */ 	padding-left: 0;
/* 1040 */ 	text-align: left;
/* 1041 */ }
/* 1042 */ 
/* 1043 */ #toc ul ul,
/* 1044 */ .toc ul ul {
/* 1045 */ 	margin: 0 0 0 2em;
/* 1046 */ }
/* 1047 */ 
/* 1048 */ #toc .toctoggle,
/* 1049 */ .toc .toctoggle {
/* 1050 */ 	font-size: 94%;

/* wiki-embed.css */

/* 1051 */ }
/* 1052 */ 
/* 1053 */ .mw-warning {
/* 1054 */ 	margin-left: 50px;
/* 1055 */ 	margin-right: 50px;
/* 1056 */ 	text-align: center;
/* 1057 */ }
/* 1058 */ 
/* 1059 */ /* images */
/* 1060 */ div.floatright, table.floatright {
/* 1061 */ 	clear: right;
/* 1062 */ 	float: right;
/* 1063 */ 	position: relative;
/* 1064 */ 	margin: 0 0 .5em .5em;
/* 1065 */ 	border: 0;
/* 1066 */ }
/* 1067 */ 
/* 1068 */ div.floatright p { font-style: italic; }
/* 1069 */ 
/* 1070 */ div.floatleft, table.floatleft {
/* 1071 */ 	float: left;
/* 1072 */ 	clear: left;
/* 1073 */ 	position: relative;
/* 1074 */ 	margin: 0 .5em .5em 0;
/* 1075 */ 	border: 0;
/* 1076 */ }
/* 1077 */ 
/* 1078 */ div.floatleft p { font-style: italic; }
/* 1079 */ 
/* 1080 */ /* thumbnails */
/* 1081 */ div.thumb {
/* 1082 */ 	margin-bottom: .5em;
/* 1083 */ 	border-style: solid;
/* 1084 */ 	border-color: white;
/* 1085 */ 	width: auto;
/* 1086 */ }
/* 1087 */ 
/* 1088 */ div.thumbinner {
/* 1089 */ 	border: 1px solid #ccc;
/* 1090 */ 	padding: 3px !important;
/* 1091 */ 	background-color: #f9f9f9;
/* 1092 */ 	font-size: 94%;
/* 1093 */ 	text-align: center;
/* 1094 */ 	overflow: hidden;
/* 1095 */ }
/* 1096 */ 
/* 1097 */ html .thumbimage {
/* 1098 */ 	border: 1px solid #ccc;
/* 1099 */ }
/* 1100 */ 

/* wiki-embed.css */

/* 1101 */ html .thumbcaption {
/* 1102 */ 	border: none;
/* 1103 */ 	text-align: left;
/* 1104 */ 	line-height: 1.4em;
/* 1105 */ 	padding: 3px !important;
/* 1106 */ 	font-size: 94%;
/* 1107 */ }
/* 1108 */ 
/* 1109 */ div.magnify {
/* 1110 */ 	float: right;
/* 1111 */ 	border: none !important;
/* 1112 */ 	background: none !important;
/* 1113 */ }
/* 1114 */ 
/* 1115 */ div.magnify a,
/* 1116 */ div.magnify img {
/* 1117 */ 	display: block;
/* 1118 */ 	border: none !important;
/* 1119 */ 	background: none !important;
/* 1120 */ }
/* 1121 */ 
/* 1122 */ div.tright {
/* 1123 */ 	clear: right;
/* 1124 */ 	float: right;
/* 1125 */ 	border-width: .5em 0 .8em 1.4em;
/* 1126 */ }
/* 1127 */ 
/* 1128 */ div.tleft {
/* 1129 */ 	float: left;
/* 1130 */ 	clear: left;
/* 1131 */ 	margin-right: .5em;
/* 1132 */ 	border-width: .5em 1.4em .8em 0;
/* 1133 */ }
/* 1134 */ 
/* 1135 */ img.thumbborder {
/* 1136 */ 	border: 1px solid #dddddd;
/* 1137 */ }
/* 1138 */ 
/* 1139 */ .hiddenStructure {
/* 1140 */ 	display: none;
/* 1141 */ }
/* 1142 */ 
/* 1143 */ /*
/* 1144 *| ** classes for special content elements like town boxes
/* 1145 *| ** intended to be referenced directly from the wiki src
/* 1146 *| */
/* 1147 */ 
/* 1148 */ /*
/* 1149 *| ** User styles
/* 1150 *| */

/* wiki-embed.css */

/* 1151 */ /* table standards */
/* 1152 */ table.rimage {
/* 1153 */ 	float: right;
/* 1154 */ 	position: relative;
/* 1155 */ 	margin-left: 1em;
/* 1156 */ 	margin-bottom: 1em;
/* 1157 */ 	text-align: center;
/* 1158 */ }
/* 1159 */ 
/* 1160 */ .toccolours {
/* 1161 */ 	border: 1px solid #aaa;
/* 1162 */ 	background-color: #f9f9f9;
/* 1163 */ 	padding: 5px;
/* 1164 */ 	font-size: 95%;
/* 1165 */ }
/* 1166 */ 
/* 1167 */ .wiki-embed table tr {
/* 1168 */ 	vertical-align: top;
/* 1169 */ }
/* 1170 */ 
/* 1171 */ /* All tabs should have this styling  */
/* 1172 */ .wiki-embed b { font-weight: bold; }
/* 1173 */ .wiki-embed i { font-style: italic; }
/* 1174 */ .wiki-embed .ui-tabs { padding: .2em; zoom: 1;  clear: both; }
/* 1175 */ .wiki-embed .ui-tabs .ui-tabs-nav { list-style: none !important; position: relative; padding: .2em .2em 0!important;  overflow: hidden; }
/* 1176 */ .wiki-embed .ui-tabs .ui-tabs-nav li { position: relative; float: left; border-bottom-width: 0 !important; list-style: none !important; height: 100%;  }
/* 1177 */ .wiki-embed .ui-tabs .ui-tabs-nav li:before{ content: "";}
/* 1178 */ .wiki-embed .ui-tabs .ui-tabs-nav li a { float: left; text-decoration: none;  border:none!important;  }
/* 1179 */ .wiki-embed .ui-tabs .ui-tabs-nav li.ui-tabs-selected { padding-bottom: 1px; border-bottom-width: 0px; border-bottom: 0; margin-bottom: -1px;  }
/* 1180 */ .wiki-embed .ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; }
/* 1181 */ .wiki-embed .ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer;  } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
/* 1182 */ .wiki-embed .ui-tabs .ui-tabs-panel { padding: 1em 1.4em; display: block; border-width: 0; background: none; }
/* 1183 */ .wiki-embed .ui-tabs .ui-tabs-hide { display: none !important; }
/* 1184 */ 
/* 1185 */ .wiki-embed .ui-tabs-panel{ clear: both;}

/* styles.css */

/* 1  */ div.wpcf7 {
/* 2  */ 	margin: 0;
/* 3  */ 	padding: 0;
/* 4  */ }
/* 5  */ 
/* 6  */ div.wpcf7-response-output {
/* 7  */ 	margin: 2em 0.5em 1em;
/* 8  */ 	padding: 0.2em 1em;
/* 9  */ }
/* 10 */ 
/* 11 */ div.wpcf7 .screen-reader-response {
/* 12 */ 	position: absolute;
/* 13 */ 	overflow: hidden;
/* 14 */ 	clip: rect(1px, 1px, 1px, 1px);
/* 15 */ 	height: 1px;
/* 16 */ 	width: 1px;
/* 17 */ 	margin: 0;
/* 18 */ 	padding: 0;
/* 19 */ 	border: 0;
/* 20 */ }
/* 21 */ 
/* 22 */ div.wpcf7-mail-sent-ok {
/* 23 */ 	border: 2px solid #398f14;
/* 24 */ }
/* 25 */ 
/* 26 */ div.wpcf7-mail-sent-ng {
/* 27 */ 	border: 2px solid #ff0000;
/* 28 */ }
/* 29 */ 
/* 30 */ div.wpcf7-spam-blocked {
/* 31 */ 	border: 2px solid #ffa500;
/* 32 */ }
/* 33 */ 
/* 34 */ div.wpcf7-validation-errors {
/* 35 */ 	border: 2px solid #f7e700;
/* 36 */ }
/* 37 */ 
/* 38 */ .wpcf7-form-control-wrap {
/* 39 */ 	position: relative;
/* 40 */ }
/* 41 */ 
/* 42 */ span.wpcf7-not-valid-tip {
/* 43 */ 	color: #f00;
/* 44 */ 	font-size: 1em;
/* 45 */ 	display: block;
/* 46 */ }
/* 47 */ 
/* 48 */ .use-floating-validation-tip span.wpcf7-not-valid-tip {
/* 49 */ 	position: absolute;
/* 50 */ 	top: 20%;

/* styles.css */

/* 51 */ 	left: 20%;
/* 52 */ 	z-index: 100;
/* 53 */ 	border: 1px solid #ff0000;
/* 54 */ 	background: #fff;
/* 55 */ 	padding: .2em .8em;
/* 56 */ }
/* 57 */ 
/* 58 */ span.wpcf7-list-item {
/* 59 */ 	margin-left: 0.5em;
/* 60 */ }
/* 61 */ 
/* 62 */ .wpcf7-display-none {
/* 63 */ 	display: none;
/* 64 */ }
/* 65 */ 
/* 66 */ div.wpcf7 img.ajax-loader {
/* 67 */ 	border: none;
/* 68 */ 	vertical-align: middle;
/* 69 */ 	margin-left: 4px;
/* 70 */ }
/* 71 */ 
/* 72 */ div.wpcf7 div.ajax-error {
/* 73 */ 	display: none;
/* 74 */ }
/* 75 */ 
/* 76 */ div.wpcf7 .placeheld {
/* 77 */ 	color: #888;
/* 78 */ }
/* 79 */ 
