
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_9d13ae9987bef3a0f209caeb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.015625;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9124b5c5d8235eea770d124f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ec461e93bb5e230da1da9002.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976603;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c80c55a63c9375a52767e13d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ff78d416a31c730d198df318.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.032715;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ddd27bc3be8165fc622bc940.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_148e330af14fb5a12358fd87.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.026855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_35fe1b883ab62799dd55767e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c56e26d8c8d2718c2bf67348.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976118;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_095c47554810005190a9b256.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.041992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_bbca333f436340b3b5585457.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.710938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e6154a649987b430789e47a3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.964897;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c9fbf58d1e08a2d4907f8f96.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.772059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ae110f26fcef99c66515662f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.968262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_1cc1f9d36caa7f6074efa636.woff2')format("woff");}.fff{font-family:fff;line-height:0.964863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_db90abd75b6715415188e3f3.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.022461;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-41.811000px;}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.v3{vertical-align:30.000000px;}
.v4{vertical-align:38.409000px;}
.ls19{letter-spacing:-3.840000px;}
.ls11{letter-spacing:-3.240000px;}
.lse{letter-spacing:-1.632000px;}
.ls18{letter-spacing:-1.200000px;}
.ls6{letter-spacing:-1.080000px;}
.lsd{letter-spacing:-0.960000px;}
.lsa{letter-spacing:-0.780000px;}
.ls9{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.691200px;}
.ls10{letter-spacing:-0.600000px;}
.ls4{letter-spacing:-0.480000px;}
.ls8{letter-spacing:-0.420000px;}
.ls7{letter-spacing:-0.300000px;}
.lsb{letter-spacing:-0.120000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.025800px;}
.ls3{letter-spacing:0.408000px;}
.ls1a{letter-spacing:0.756000px;}
.ls14{letter-spacing:0.840000px;}
.ls17{letter-spacing:1.170000px;}
.ls16{letter-spacing:1.187400px;}
.ls15{letter-spacing:1.200000px;}
.ls13{letter-spacing:8.686200px;}
.ls12{letter-spacing:15.349200px;}
.ls0{letter-spacing:43.181364px;}
.lsf{letter-spacing:131.787000px;}
.lsc{letter-spacing:297.908400px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-48.000000px;}
.ws6{word-spacing:-17.928000px;}
.wsc4{word-spacing:-16.434000px;}
.wsef{word-spacing:-16.080000px;}
.wsf0{word-spacing:-16.050000px;}
.wsee{word-spacing:-15.900000px;}
.wse4{word-spacing:-15.660000px;}
.ws4{word-spacing:-14.940000px;}
.wsc6{word-spacing:-14.880000px;}
.wsce{word-spacing:-14.820000px;}
.ws7{word-spacing:-14.700000px;}
.wsb5{word-spacing:-14.580000px;}
.ws8{word-spacing:-14.400000px;}
.wsc5{word-spacing:-14.340000px;}
.wsc7{word-spacing:-14.220000px;}
.ws125{word-spacing:-14.148000px;}
.ws46{word-spacing:-14.100000px;}
.ws2e{word-spacing:-13.980000px;}
.ws45{word-spacing:-13.920000px;}
.wsd2{word-spacing:-13.446000px;}
.ws124{word-spacing:-13.392000px;}
.wscd{word-spacing:-13.230000px;}
.ws5{word-spacing:-12.150000px;}
.ws9{word-spacing:-11.772000px;}
.ws58{word-spacing:-10.992000px;}
.ws2d{word-spacing:-10.800000px;}
.wsa{word-spacing:-10.464000px;}
.wsd3{word-spacing:-10.206000px;}
.ws1{word-spacing:-9.993600px;}
.ws3{word-spacing:-9.417600px;}
.ws0{word-spacing:-9.156000px;}
.ws2f{word-spacing:-8.675040px;}
.ws36{word-spacing:-6.360000px;}
.ws134{word-spacing:-4.374000px;}
.wsc2{word-spacing:-4.020000px;}
.wsc3{word-spacing:-3.960000px;}
.ws25{word-spacing:-3.660000px;}
.wsd8{word-spacing:-3.540000px;}
.wsd9{word-spacing:-3.480000px;}
.wsf2{word-spacing:-3.420000px;}
.ws28{word-spacing:-3.060000px;}
.ws31{word-spacing:-2.760000px;}
.ws26{word-spacing:-2.640000px;}
.ws107{word-spacing:-2.520000px;}
.ws3a{word-spacing:-2.400000px;}
.wsb7{word-spacing:-2.280000px;}
.ws127{word-spacing:-2.106000px;}
.ws4f{word-spacing:-2.100000px;}
.ws3c{word-spacing:-2.040000px;}
.ws12e{word-spacing:-1.944000px;}
.wsca{word-spacing:-1.920000px;}
.ws14{word-spacing:-1.890000px;}
.ws3b{word-spacing:-1.860000px;}
.ws15{word-spacing:-1.836000px;}
.wsc9{word-spacing:-1.800000px;}
.ws11c{word-spacing:-1.740000px;}
.wsba{word-spacing:-1.680000px;}
.ws123{word-spacing:-1.560000px;}
.ws33{word-spacing:-1.500000px;}
.ws138{word-spacing:-1.404000px;}
.ws47{word-spacing:-1.260000px;}
.wsf6{word-spacing:-1.200000px;}
.ws12c{word-spacing:-1.134000px;}
.ws50{word-spacing:-1.080000px;}
.ws12{word-spacing:-0.972000px;}
.wsd4{word-spacing:-0.918000px;}
.ws13b{word-spacing:-0.864000px;}
.wse5{word-spacing:-0.840000px;}
.ws19{word-spacing:-0.810000px;}
.ws29{word-spacing:-0.780000px;}
.ws128{word-spacing:-0.756000px;}
.ws3f{word-spacing:-0.720000px;}
.wsd0{word-spacing:-0.480000px;}
.wscc{word-spacing:-0.420000px;}
.wsc{word-spacing:-0.408000px;}
.wsb9{word-spacing:-0.360000px;}
.wsd{word-spacing:-0.216000px;}
.ws10e{word-spacing:-0.120000px;}
.wsc8{word-spacing:-0.060000px;}
.wsb{word-spacing:0.000000px;}
.ws53{word-spacing:0.120000px;}
.ws4e{word-spacing:0.240000px;}
.ws1f{word-spacing:0.300000px;}
.ws11f{word-spacing:0.360000px;}
.ws37{word-spacing:0.420000px;}
.ws39{word-spacing:0.480000px;}
.ws4b{word-spacing:0.600000px;}
.wse{word-spacing:0.691200px;}
.ws42{word-spacing:0.720000px;}
.ws3d{word-spacing:0.780000px;}
.ws10d{word-spacing:0.840000px;}
.ws51{word-spacing:0.900000px;}
.ws99{word-spacing:0.960000px;}
.wsf{word-spacing:1.080000px;}
.ws11e{word-spacing:1.200000px;}
.ws126{word-spacing:1.242000px;}
.wsbb{word-spacing:1.320000px;}
.ws22{word-spacing:1.380000px;}
.ws111{word-spacing:1.680000px;}
.wsf3{word-spacing:1.860000px;}
.ws4a{word-spacing:2.040000px;}
.ws13{word-spacing:2.052000px;}
.ws52{word-spacing:2.100000px;}
.ws10{word-spacing:2.160000px;}
.ws11{word-spacing:2.214000px;}
.ws40{word-spacing:2.220000px;}
.ws12d{word-spacing:2.376000px;}
.ws38{word-spacing:2.400000px;}
.ws13a{word-spacing:2.484000px;}
.wsf9{word-spacing:2.580000px;}
.wsc0{word-spacing:2.640000px;}
.ws113{word-spacing:2.700000px;}
.ws1a{word-spacing:2.760000px;}
.ws2a{word-spacing:2.820000px;}
.ws131{word-spacing:2.862000px;}
.wsfc{word-spacing:2.880000px;}
.ws20{word-spacing:2.940000px;}
.ws27{word-spacing:3.000000px;}
.ws108{word-spacing:3.060000px;}
.ws32{word-spacing:3.120000px;}
.ws130{word-spacing:3.132000px;}
.ws112{word-spacing:3.240000px;}
.ws1c{word-spacing:3.420000px;}
.ws4d{word-spacing:3.480000px;}
.wsfb{word-spacing:3.540000px;}
.ws13c{word-spacing:3.564000px;}
.wsdf{word-spacing:3.660000px;}
.wscb{word-spacing:3.720000px;}
.wsc1{word-spacing:3.780000px;}
.ws18{word-spacing:3.888000px;}
.ws24{word-spacing:3.900000px;}
.ws23{word-spacing:3.960000px;}
.ws11a{word-spacing:4.020000px;}
.ws48{word-spacing:4.140000px;}
.wsbe{word-spacing:4.200000px;}
.wse3{word-spacing:4.212000px;}
.wse2{word-spacing:4.266000px;}
.wse1{word-spacing:4.320000px;}
.ws12a{word-spacing:4.428000px;}
.ws109{word-spacing:4.560000px;}
.ws133{word-spacing:4.590000px;}
.ws10c{word-spacing:4.740000px;}
.wse8{word-spacing:4.860000px;}
.ws4c{word-spacing:4.920000px;}
.ws11d{word-spacing:5.100000px;}
.ws17{word-spacing:5.130000px;}
.ws41{word-spacing:5.160000px;}
.ws16{word-spacing:5.184000px;}
.ws11b{word-spacing:5.220000px;}
.ws21{word-spacing:5.340000px;}
.ws43{word-spacing:5.460000px;}
.ws120{word-spacing:5.520000px;}
.ws44{word-spacing:5.580000px;}
.ws12f{word-spacing:5.616000px;}
.wsfa{word-spacing:5.700000px;}
.wsde{word-spacing:5.820000px;}
.ws1b{word-spacing:5.880000px;}
.ws3e{word-spacing:5.940000px;}
.ws139{word-spacing:6.210000px;}
.ws122{word-spacing:6.240000px;}
.ws121{word-spacing:6.300000px;}
.ws10a{word-spacing:6.360000px;}
.ws104{word-spacing:6.420000px;}
.ws106{word-spacing:6.540000px;}
.ws30{word-spacing:6.780000px;}
.ws1e{word-spacing:6.840000px;}
.wsf5{word-spacing:6.900000px;}
.wsf4{word-spacing:7.020000px;}
.ws34{word-spacing:7.080000px;}
.wsb6{word-spacing:7.380000px;}
.ws10f{word-spacing:7.500000px;}
.ws110{word-spacing:7.560000px;}
.ws10b{word-spacing:7.620000px;}
.ws105{word-spacing:7.740000px;}
.wsbf{word-spacing:7.800000px;}
.wsb8{word-spacing:7.980000px;}
.wsbd{word-spacing:8.040000px;}
.wsbc{word-spacing:8.100000px;}
.ws35{word-spacing:8.280000px;}
.ws2c{word-spacing:8.520000px;}
.ws2b{word-spacing:8.580000px;}
.wsdc{word-spacing:8.640000px;}
.wsdd{word-spacing:8.700000px;}
.wsf1{word-spacing:8.760000px;}
.wsea{word-spacing:9.060000px;}
.ws100{word-spacing:9.180000px;}
.wse9{word-spacing:9.240000px;}
.ws1d{word-spacing:9.300000px;}
.ws129{word-spacing:9.396000px;}
.wse6{word-spacing:9.660000px;}
.wscf{word-spacing:10.080000px;}
.wsd1{word-spacing:10.200000px;}
.ws49{word-spacing:10.260000px;}
.ws101{word-spacing:10.500000px;}
.wsed{word-spacing:10.584000px;}
.wsec{word-spacing:10.692000px;}
.wse7{word-spacing:10.740000px;}
.wseb{word-spacing:10.800000px;}
.wsf8{word-spacing:10.980000px;}
.wsf7{word-spacing:11.100000px;}
.wsd7{word-spacing:11.718000px;}
.wsd6{word-spacing:11.826000px;}
.wsd5{word-spacing:11.934000px;}
.ws137{word-spacing:12.150000px;}
.wsfd{word-spacing:12.240000px;}
.wse0{word-spacing:13.080000px;}
.ws55{word-spacing:13.620000px;}
.ws13e{word-spacing:13.986000px;}
.ws13d{word-spacing:14.094000px;}
.ws54{word-spacing:14.460000px;}
.ws12b{word-spacing:14.526000px;}
.wsfe{word-spacing:15.300000px;}
.wsdb{word-spacing:15.360000px;}
.wsda{word-spacing:15.480000px;}
.wsff{word-spacing:16.680000px;}
.ws135{word-spacing:17.982000px;}
.ws136{word-spacing:18.144000px;}
.ws132{word-spacing:21.600000px;}
.ws102{word-spacing:23.580000px;}
.ws103{word-spacing:25.020000px;}
.ws5f{word-spacing:28.108200px;}
.ws5d{word-spacing:29.878200px;}
.wsae{word-spacing:29.914200px;}
.ws88{word-spacing:30.468000px;}
.ws8a{word-spacing:30.516600px;}
.ws118{word-spacing:30.569400px;}
.ws119{word-spacing:30.786600px;}
.ws87{word-spacing:35.828400px;}
.ws89{word-spacing:35.839800px;}
.ws81{word-spacing:35.866800px;}
.ws117{word-spacing:43.806000px;}
.ws9e{word-spacing:44.781600px;}
.ws9d{word-spacing:66.370200px;}
.ws116{word-spacing:70.662000px;}
.ws8e{word-spacing:78.220800px;}
.ws5e{word-spacing:94.344600px;}
.wsad{word-spacing:94.426200px;}
.ws5c{word-spacing:94.438200px;}
.ws80{word-spacing:94.438800px;}
.ws8d{word-spacing:94.650600px;}
.ws8c{word-spacing:94.961400px;}
.ws68{word-spacing:95.380800px;}
.ws67{word-spacing:95.392800px;}
.ws91{word-spacing:98.188800px;}
.ws94{word-spacing:98.212200px;}
.ws8b{word-spacing:110.295600px;}
.ws6f{word-spacing:112.060800px;}
.ws93{word-spacing:113.295600px;}
.ws79{word-spacing:114.884400px;}
.ws77{word-spacing:114.909000px;}
.ws90{word-spacing:115.247400px;}
.ws74{word-spacing:117.520200px;}
.ws71{word-spacing:117.531600px;}
.ws72{word-spacing:117.543600px;}
.ws63{word-spacing:117.544200px;}
.wsa3{word-spacing:119.730600px;}
.wsa1{word-spacing:119.742600px;}
.wsa2{word-spacing:119.778600px;}
.ws83{word-spacing:120.481200px;}
.ws6e{word-spacing:122.382000px;}
.ws86{word-spacing:124.170000px;}
.ws69{word-spacing:124.256400px;}
.ws75{word-spacing:125.914200px;}
.ws61{word-spacing:125.926800px;}
.ws73{word-spacing:125.962800px;}
.ws97{word-spacing:126.669600px;}
.wsa9{word-spacing:127.387200px;}
.wsa8{word-spacing:127.399200px;}
.ws9f{word-spacing:127.477200px;}
.ws8f{word-spacing:127.498800px;}
.ws114{word-spacing:127.537200px;}
.ws7b{word-spacing:127.624200px;}
.ws7d{word-spacing:127.674000px;}
.wsaf{word-spacing:127.686000px;}
.ws98{word-spacing:128.313600px;}
.wsa6{word-spacing:128.386800px;}
.ws6a{word-spacing:128.631600px;}
.ws65{word-spacing:128.785800px;}
.ws92{word-spacing:128.797800px;}
.ws95{word-spacing:128.846400px;}
.ws66{word-spacing:129.219600px;}
.ws6d{word-spacing:129.468600px;}
.wsaa{word-spacing:129.469200px;}
.ws7a{word-spacing:129.505200px;}
.ws70{word-spacing:134.408400px;}
.ws85{word-spacing:137.107200px;}
.wsa5{word-spacing:141.061800px;}
.ws64{word-spacing:141.394800px;}
.ws76{word-spacing:142.737600px;}
.ws60{word-spacing:142.749000px;}
.wsb1{word-spacing:143.307600px;}
.ws96{word-spacing:144.217200px;}
.ws5b{word-spacing:145.492800px;}
.wsac{word-spacing:145.493400px;}
.ws7c{word-spacing:150.244800px;}
.ws7f{word-spacing:150.281400px;}
.ws9c{word-spacing:153.133200px;}
.ws9b{word-spacing:157.783200px;}
.ws5a{word-spacing:157.783800px;}
.ws7e{word-spacing:160.210200px;}
.wsb4{word-spacing:166.926600px;}
.wsb3{word-spacing:166.938000px;}
.wsb2{word-spacing:166.996800px;}
.ws6c{word-spacing:169.300800px;}
.ws82{word-spacing:171.660000px;}
.wsa4{word-spacing:177.221400px;}
.ws59{word-spacing:177.279000px;}
.wsa0{word-spacing:181.411800px;}
.ws56{word-spacing:182.032800px;}
.ws9a{word-spacing:195.692400px;}
.ws57{word-spacing:195.693000px;}
.wsb0{word-spacing:196.000200px;}
.wsa7{word-spacing:199.869600px;}
.wsab{word-spacing:200.811600px;}
.ws84{word-spacing:203.170800px;}
.ws78{word-spacing:203.208000px;}
.ws6b{word-spacing:208.416000px;}
.ws62{word-spacing:211.726200px;}
.ws115{word-spacing:601.639200px;}
._7{margin-left:-10.288200px;}
._0{margin-left:-9.067800px;}
._12{margin-left:-7.608000px;}
._8{margin-left:-5.990400px;}
._b{margin-left:-4.971000px;}
._4{margin-left:-3.893400px;}
._3{margin-left:-2.752800px;}
._1{margin-left:-1.499400px;}
._2{width:1.029600px;}
._9{width:2.492400px;}
._c{width:3.633600px;}
._a{width:4.783200px;}
._5{width:5.937600px;}
._6{width:7.274400px;}
._d{width:8.940600px;}
._e{width:10.230000px;}
._3a{width:12.174000px;}
._f{width:13.542000px;}
._46{width:14.798400px;}
._48{width:15.900600px;}
._49{width:17.596200px;}
._47{width:19.033200px;}
._4a{width:20.341800px;}
._4b{width:21.778200px;}
._4c{width:22.987800px;}
._3b{width:25.486200px;}
._16{width:40.651800px;}
._45{width:42.566400px;}
._14{width:46.703400px;}
._41{width:54.714600px;}
._43{width:73.198800px;}
._28{width:81.169200px;}
._42{width:83.880000px;}
._33{width:95.695200px;}
._3c{width:97.204800px;}
._3f{width:101.465400px;}
._40{width:103.514400px;}
._20{width:110.934000px;}
._3e{width:114.538200px;}
._2e{width:118.090200px;}
._2b{width:120.794400px;}
._2f{width:126.425400px;}
._44{width:131.346000px;}
._2c{width:132.473400px;}
._36{width:136.074600px;}
._39{width:139.654800px;}
._1e{width:142.039800px;}
._1a{width:165.218400px;}
._23{width:172.837800px;}
._26{width:176.466600px;}
._34{width:182.737800px;}
._1b{width:186.172800px;}
._18{width:190.461600px;}
._29{width:196.122600px;}
._15{width:206.799600px;}
._22{width:223.486200px;}
._37{width:229.420200px;}
._10{width:234.036600px;}
._19{width:245.814600px;}
._30{width:246.914400px;}
._35{width:248.638800px;}
._32{width:271.369800px;}
._11{width:315.994200px;}
._1c{width:331.278600px;}
._31{width:332.287800px;}
._1f{width:490.328400px;}
._1d{width:502.996800px;}
._21{width:506.853000px;}
._2d{width:538.010400px;}
._13{width:545.224800px;}
._27{width:546.694800px;}
._2a{width:562.351200px;}
._38{width:574.648800px;}
._24{width:581.829000px;}
._25{width:600.274200px;}
._17{width:602.853000px;}
._3d{width:620.569800px;}
.fc2{color:rgb(109,111,79);}
.fc1{color:rgb(70,71,49);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y39{bottom:71.212050px;}
.y3a{bottom:75.036150px;}
.ydb{bottom:113.078700px;}
.y67{bottom:113.078850px;}
.y2b{bottom:117.212550px;}
.ya{bottom:117.875550px;}
.ya6{bottom:118.019850px;}
.ye2{bottom:120.500850px;}
.y9{bottom:132.275550px;}
.ya5{bottom:133.019850px;}
.yda{bottom:134.078700px;}
.y66{bottom:134.078850px;}
.y2a{bottom:138.212550px;}
.y108{bottom:139.529400px;}
.ye1{bottom:140.300850px;}
.y8{bottom:146.675550px;}
.ya4{bottom:148.019850px;}
.yd9{bottom:155.078700px;}
.y65{bottom:155.078850px;}
.y29{bottom:159.212550px;}
.y7{bottom:161.075550px;}
.ya3{bottom:168.202500px;}
.yd8{bottom:176.078700px;}
.y64{bottom:176.078850px;}
.y28{bottom:180.212550px;}
.ya2{bottom:183.202500px;}
.y6f{bottom:189.513600px;}
.yd7{bottom:197.078700px;}
.y63{bottom:197.078850px;}
.ya1{bottom:198.202500px;}
.y36{bottom:199.392600px;}
.y27{bottom:201.212550px;}
.y107{bottom:202.529400px;}
.y35{bottom:217.392600px;}
.yd6{bottom:218.078700px;}
.y62{bottom:218.078850px;}
.ya0{bottom:218.385150px;}
.y6e{bottom:221.811000px;}
.y26{bottom:222.212550px;}
.y9f{bottom:233.385150px;}
.y34{bottom:235.392600px;}
.yd5{bottom:239.078700px;}
.y61{bottom:239.078850px;}
.y25{bottom:243.212550px;}
.y9e{bottom:248.385150px;}
.y33{bottom:253.392600px;}
.yd4{bottom:260.078700px;}
.y60{bottom:260.078850px;}
.y24{bottom:264.212550px;}
.y106{bottom:265.937100px;}
.y9d{bottom:268.567800px;}
.y32{bottom:271.392600px;}
.yd3{bottom:281.078700px;}
.y5f{bottom:281.078850px;}
.y9c{bottom:283.567800px;}
.y23{bottom:285.212550px;}
.y31{bottom:289.392600px;}
.y105{bottom:295.441050px;}
.y9b{bottom:298.567800px;}
.yd2{bottom:302.078700px;}
.y5e{bottom:302.078850px;}
.y22{bottom:306.212550px;}
.y30{bottom:307.392600px;}
.yde{bottom:313.783200px;}
.y9a{bottom:318.750600px;}
.yd1{bottom:323.078700px;}
.y5d{bottom:323.078850px;}
.y21{bottom:327.212550px;}
.y99{bottom:333.750600px;}
.y2f{bottom:342.400500px;}
.yd0{bottom:344.078700px;}
.y5c{bottom:344.078850px;}
.y20{bottom:348.212550px;}
.y98{bottom:348.750600px;}
.y2e{bottom:360.400500px;}
.ycf{bottom:365.078700px;}
.y5b{bottom:365.078850px;}
.y97{bottom:368.933250px;}
.y1f{bottom:369.212550px;}
.y2d{bottom:378.400500px;}
.ye6{bottom:379.563300px;}
.yce{bottom:386.078700px;}
.y5a{bottom:386.078850px;}
.y96{bottom:389.115900px;}
.y1e{bottom:390.212550px;}
.y2c{bottom:396.400500px;}
.ye5{bottom:399.363300px;}
.y104{bottom:400.441050px;}
.ycd{bottom:407.078700px;}
.y6d{bottom:407.078850px;}
.y95{bottom:409.298550px;}
.y1d{bottom:411.212550px;}
.y59{bottom:421.441050px;}
.ycc{bottom:428.078700px;}
.y6c{bottom:428.078850px;}
.y94{bottom:429.481200px;}
.y1c{bottom:432.212550px;}
.ycb{bottom:449.078700px;}
.y6b{bottom:449.078850px;}
.y93{bottom:449.663850px;}
.y1b{bottom:453.212550px;}
.ydc{bottom:460.514700px;}
.y92{bottom:464.663850px;}
.yca{bottom:470.078700px;}
.y58{bottom:470.078850px;}
.y1a{bottom:474.212550px;}
.y91{bottom:484.846500px;}
.y103{bottom:491.078700px;}
.y57{bottom:491.078850px;}
.y19{bottom:495.212550px;}
.y90{bottom:499.846500px;}
.y102{bottom:512.078700px;}
.y56{bottom:512.078850px;}
.y18{bottom:516.212550px;}
.y8f{bottom:520.029300px;}
.yc9{bottom:522.564600px;}
.ydd{bottom:525.277350px;}
.y101{bottom:533.078700px;}
.y55{bottom:533.078850px;}
.y17{bottom:537.212550px;}
.y8e{bottom:540.211950px;}
.yc8{bottom:542.619750px;}
.y100{bottom:554.078700px;}
.y54{bottom:554.078850px;}
.y8d{bottom:560.394600px;}
.yc7{bottom:562.674900px;}
.y16{bottom:570.782250px;}
.yff{bottom:575.078700px;}
.y53{bottom:575.078850px;}
.y8c{bottom:580.577250px;}
.yc6{bottom:582.730050px;}
.yfe{bottom:596.078700px;}
.y52{bottom:596.078850px;}
.y8b{bottom:600.760050px;}
.yc5{bottom:602.785050px;}
.yfd{bottom:617.078700px;}
.y51{bottom:617.078850px;}
.y8a{bottom:620.942700px;}
.yc4{bottom:622.840200px;}
.y89{bottom:635.942700px;}
.y15{bottom:636.427950px;}
.yfc{bottom:638.078700px;}
.y50{bottom:638.078850px;}
.yc3{bottom:642.895350px;}
.y11a{bottom:652.440900px;}
.y88{bottom:656.125350px;}
.yc2{bottom:657.895350px;}
.yfb{bottom:659.078700px;}
.y4f{bottom:659.078850px;}
.yc1{bottom:672.895350px;}
.y87{bottom:676.308000px;}
.y14{bottom:677.487750px;}
.yfa{bottom:680.078700px;}
.y4e{bottom:680.078850px;}
.yc0{bottom:692.950500px;}
.y86{bottom:696.490650px;}
.y13{bottom:697.287750px;}
.yf9{bottom:701.078700px;}
.y4d{bottom:701.078850px;}
.ybf{bottom:713.005500px;}
.y85{bottom:716.673300px;}
.y12{bottom:717.087750px;}
.yf8{bottom:722.078700px;}
.y4c{bottom:722.078850px;}
.ybe{bottom:733.060650px;}
.y84{bottom:736.856100px;}
.y11{bottom:736.887750px;}
.yf7{bottom:743.078700px;}
.y4b{bottom:743.078850px;}
.y119{bottom:748.529250px;}
.ybd{bottom:753.115800px;}
.y10{bottom:756.687750px;}
.y83{bottom:757.038750px;}
.yf6{bottom:764.078700px;}
.y4a{bottom:764.078850px;}
.ye0{bottom:766.176000px;}
.ybc{bottom:773.170950px;}
.yf{bottom:776.487750px;}
.y82{bottom:777.221400px;}
.yf5{bottom:785.078700px;}
.y49{bottom:785.078850px;}
.ydf{bottom:785.976000px;}
.ybb{bottom:793.226100px;}
.ye{bottom:796.287750px;}
.y81{bottom:797.404050px;}
.yf4{bottom:806.078700px;}
.y48{bottom:806.078850px;}
.yba{bottom:808.226100px;}
.yd{bottom:816.087750px;}
.y80{bottom:817.586850px;}
.yf3{bottom:827.078700px;}
.y47{bottom:827.078850px;}
.yb9{bottom:828.281100px;}
.y7f{bottom:837.769350px;}
.yb8{bottom:843.281100px;}
.yc{bottom:847.185300px;}
.yf2{bottom:848.078700px;}
.y46{bottom:848.078850px;}
.y7e{bottom:857.952150px;}
.yb7{bottom:863.336250px;}
.yf1{bottom:869.078700px;}
.y6a{bottom:869.078850px;}
.y7d{bottom:878.134800px;}
.yb6{bottom:878.336250px;}
.y45{bottom:882.513600px;}
.yf0{bottom:890.078700px;}
.y69{bottom:890.078850px;}
.y118{bottom:895.529250px;}
.y7c{bottom:898.317450px;}
.yb5{bottom:898.391400px;}
.y115{bottom:906.722250px;}
.yef{bottom:911.078700px;}
.y11b{bottom:911.078850px;}
.yb4{bottom:913.391400px;}
.y44{bottom:914.811000px;}
.y7b{bottom:918.500100px;}
.y114{bottom:921.722250px;}
.y68{bottom:925.441050px;}
.y6{bottom:926.466750px;}
.yee{bottom:932.078700px;}
.ye4{bottom:932.078850px;}
.yb3{bottom:933.446550px;}
.y7a{bottom:933.500100px;}
.y113{bottom:943.053000px;}
.y5{bottom:944.466750px;}
.yb2{bottom:948.446550px;}
.ye3{bottom:953.078850px;}
.y79{bottom:953.682900px;}
.y112{bottom:958.053000px;}
.yb1{bottom:963.446550px;}
.yed{bottom:967.440900px;}
.y78{bottom:968.682900px;}
.y43{bottom:974.078850px;}
.y111{bottom:979.383750px;}
.y4{bottom:979.474800px;}
.yb0{bottom:983.501550px;}
.y77{bottom:988.865550px;}
.y110{bottom:994.383750px;}
.y42{bottom:995.078850px;}
.yaf{bottom:998.501550px;}
.y76{bottom:1009.048200px;}
.y10f{bottom:1009.383750px;}
.yec{bottom:1016.078700px;}
.y41{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.yae{bottom:1018.556700px;}
.y117{bottom:1021.529250px;}
.y75{bottom:1029.230850px;}
.y10e{bottom:1030.714350px;}
.yad{bottom:1033.556700px;}
.yeb{bottom:1037.078700px;}
.y40{bottom:1037.078850px;}
.y10d{bottom:1045.714350px;}
.y2{bottom:1049.282550px;}
.y74{bottom:1049.413500px;}
.yac{bottom:1053.611850px;}
.yea{bottom:1058.078700px;}
.y3f{bottom:1058.078850px;}
.y10c{bottom:1067.045100px;}
.yab{bottom:1068.611850px;}
.y73{bottom:1069.596150px;}
.y10a{bottom:1069.997850px;}
.y72{bottom:1071.698700px;}
.y109{bottom:1077.497850px;}
.ye9{bottom:1079.078700px;}
.y3e{bottom:1079.078850px;}
.y71{bottom:1079.198700px;}
.y10b{bottom:1087.950600px;}
.yaa{bottom:1088.667000px;}
.ye8{bottom:1100.078700px;}
.y3d{bottom:1100.078850px;}
.ya9{bottom:1109.022150px;}
.yb{bottom:1109.815500px;}
.ya8{bottom:1111.124550px;}
.ya7{bottom:1118.624550px;}
.y70{bottom:1119.282900px;}
.ye7{bottom:1121.078700px;}
.y3c{bottom:1121.078850px;}
.y116{bottom:1125.451800px;}
.y38{bottom:1155.615300px;}
.y37{bottom:1175.115300px;}
.y3b{bottom:1178.691750px;}
.h7{height:34.446094px;}
.h19{height:36.492188px;}
.h1b{height:36.540019px;}
.h16{height:36.563437px;}
.h2{height:38.039062px;}
.h1a{height:38.226562px;}
.h11{height:38.273438px;}
.h18{height:38.507812px;}
.h6{height:38.531250px;}
.h17{height:39.000000px;}
.h8{height:41.053711px;}
.h10{height:42.793945px;}
.hf{height:43.057617px;}
.ha{height:43.321289px;}
.hb{height:43.875000px;}
.h9{height:47.343750px;}
.hd{height:48.134766px;}
.he{height:48.750000px;}
.h13{height:50.176758px;}
.h12{height:52.078125px;}
.h5{height:52.948242px;}
.hc{height:56.812500px;}
.h14{height:66.492188px;}
.h4{height:77.545898px;}
.h3{height:77.697305px;}
.h15{height:104.901187px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xb{left:107.068950px;}
.xc{left:108.286950px;}
.x10{left:112.251900px;}
.x6{left:119.576400px;}
.x7{left:121.047600px;}
.x8{left:123.420750px;}
.x16{left:125.956650px;}
.xd{left:161.948700px;}
.x1e{left:184.826550px;}
.x1d{left:190.381200px;}
.x22{left:196.481250px;}
.x17{left:206.638800px;}
.x1f{left:275.237250px;}
.x1a{left:277.156350px;}
.x18{left:279.806700px;}
.x14{left:298.486200px;}
.x4{left:300.189000px;}
.x11{left:303.915150px;}
.xe{left:307.269600px;}
.x13{left:310.820700px;}
.x5{left:317.196900px;}
.x12{left:370.236000px;}
.x15{left:375.958050px;}
.x3{left:396.050700px;}
.x20{left:443.230650px;}
.xf{left:483.581100px;}
.x23{left:494.613900px;}
.x24{left:544.555500px;}
.x1b{left:569.669850px;}
.x21{left:581.954700px;}
.xa{left:649.641600px;}
.x9{left:670.377900px;}
.x19{left:767.973000px;}
.x1c{left:773.349300px;}
.x1{left:801.350850px;}
@media print{
.v5{vertical-align:-37.165333pt;}
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.v3{vertical-align:26.666667pt;}
.v4{vertical-align:34.141333pt;}
.ls19{letter-spacing:-3.413333pt;}
.ls11{letter-spacing:-2.880000pt;}
.lse{letter-spacing:-1.450667pt;}
.ls18{letter-spacing:-1.066667pt;}
.ls6{letter-spacing:-0.960000pt;}
.lsd{letter-spacing:-0.853333pt;}
.lsa{letter-spacing:-0.693333pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.614400pt;}
.ls10{letter-spacing:-0.533333pt;}
.ls4{letter-spacing:-0.426667pt;}
.ls8{letter-spacing:-0.373333pt;}
.ls7{letter-spacing:-0.266667pt;}
.lsb{letter-spacing:-0.106667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.022933pt;}
.ls3{letter-spacing:0.362667pt;}
.ls1a{letter-spacing:0.672000pt;}
.ls14{letter-spacing:0.746667pt;}
.ls17{letter-spacing:1.040000pt;}
.ls16{letter-spacing:1.055467pt;}
.ls15{letter-spacing:1.066667pt;}
.ls13{letter-spacing:7.721067pt;}
.ls12{letter-spacing:13.643733pt;}
.ls0{letter-spacing:38.383435pt;}
.lsf{letter-spacing:117.144000pt;}
.lsc{letter-spacing:264.807467pt;}
.ws2{word-spacing:-42.666667pt;}
.ws6{word-spacing:-15.936000pt;}
.wsc4{word-spacing:-14.608000pt;}
.wsef{word-spacing:-14.293333pt;}
.wsf0{word-spacing:-14.266667pt;}
.wsee{word-spacing:-14.133333pt;}
.wse4{word-spacing:-13.920000pt;}
.ws4{word-spacing:-13.280000pt;}
.wsc6{word-spacing:-13.226667pt;}
.wsce{word-spacing:-13.173333pt;}
.ws7{word-spacing:-13.066667pt;}
.wsb5{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.800000pt;}
.wsc5{word-spacing:-12.746667pt;}
.wsc7{word-spacing:-12.640000pt;}
.ws125{word-spacing:-12.576000pt;}
.ws46{word-spacing:-12.533333pt;}
.ws2e{word-spacing:-12.426667pt;}
.ws45{word-spacing:-12.373333pt;}
.wsd2{word-spacing:-11.952000pt;}
.ws124{word-spacing:-11.904000pt;}
.wscd{word-spacing:-11.760000pt;}
.ws5{word-spacing:-10.800000pt;}
.ws9{word-spacing:-10.464000pt;}
.ws58{word-spacing:-9.770667pt;}
.ws2d{word-spacing:-9.600000pt;}
.wsa{word-spacing:-9.301333pt;}
.wsd3{word-spacing:-9.072000pt;}
.ws1{word-spacing:-8.883200pt;}
.ws3{word-spacing:-8.371200pt;}
.ws0{word-spacing:-8.138667pt;}
.ws2f{word-spacing:-7.711147pt;}
.ws36{word-spacing:-5.653333pt;}
.ws134{word-spacing:-3.888000pt;}
.wsc2{word-spacing:-3.573333pt;}
.wsc3{word-spacing:-3.520000pt;}
.ws25{word-spacing:-3.253333pt;}
.wsd8{word-spacing:-3.146667pt;}
.wsd9{word-spacing:-3.093333pt;}
.wsf2{word-spacing:-3.040000pt;}
.ws28{word-spacing:-2.720000pt;}
.ws31{word-spacing:-2.453333pt;}
.ws26{word-spacing:-2.346667pt;}
.ws107{word-spacing:-2.240000pt;}
.ws3a{word-spacing:-2.133333pt;}
.wsb7{word-spacing:-2.026667pt;}
.ws127{word-spacing:-1.872000pt;}
.ws4f{word-spacing:-1.866667pt;}
.ws3c{word-spacing:-1.813333pt;}
.ws12e{word-spacing:-1.728000pt;}
.wsca{word-spacing:-1.706667pt;}
.ws14{word-spacing:-1.680000pt;}
.ws3b{word-spacing:-1.653333pt;}
.ws15{word-spacing:-1.632000pt;}
.wsc9{word-spacing:-1.600000pt;}
.ws11c{word-spacing:-1.546667pt;}
.wsba{word-spacing:-1.493333pt;}
.ws123{word-spacing:-1.386667pt;}
.ws33{word-spacing:-1.333333pt;}
.ws138{word-spacing:-1.248000pt;}
.ws47{word-spacing:-1.120000pt;}
.wsf6{word-spacing:-1.066667pt;}
.ws12c{word-spacing:-1.008000pt;}
.ws50{word-spacing:-0.960000pt;}
.ws12{word-spacing:-0.864000pt;}
.wsd4{word-spacing:-0.816000pt;}
.ws13b{word-spacing:-0.768000pt;}
.wse5{word-spacing:-0.746667pt;}
.ws19{word-spacing:-0.720000pt;}
.ws29{word-spacing:-0.693333pt;}
.ws128{word-spacing:-0.672000pt;}
.ws3f{word-spacing:-0.640000pt;}
.wsd0{word-spacing:-0.426667pt;}
.wscc{word-spacing:-0.373333pt;}
.wsc{word-spacing:-0.362667pt;}
.wsb9{word-spacing:-0.320000pt;}
.wsd{word-spacing:-0.192000pt;}
.ws10e{word-spacing:-0.106667pt;}
.wsc8{word-spacing:-0.053333pt;}
.wsb{word-spacing:0.000000pt;}
.ws53{word-spacing:0.106667pt;}
.ws4e{word-spacing:0.213333pt;}
.ws1f{word-spacing:0.266667pt;}
.ws11f{word-spacing:0.320000pt;}
.ws37{word-spacing:0.373333pt;}
.ws39{word-spacing:0.426667pt;}
.ws4b{word-spacing:0.533333pt;}
.wse{word-spacing:0.614400pt;}
.ws42{word-spacing:0.640000pt;}
.ws3d{word-spacing:0.693333pt;}
.ws10d{word-spacing:0.746667pt;}
.ws51{word-spacing:0.800000pt;}
.ws99{word-spacing:0.853333pt;}
.wsf{word-spacing:0.960000pt;}
.ws11e{word-spacing:1.066667pt;}
.ws126{word-spacing:1.104000pt;}
.wsbb{word-spacing:1.173333pt;}
.ws22{word-spacing:1.226667pt;}
.ws111{word-spacing:1.493333pt;}
.wsf3{word-spacing:1.653333pt;}
.ws4a{word-spacing:1.813333pt;}
.ws13{word-spacing:1.824000pt;}
.ws52{word-spacing:1.866667pt;}
.ws10{word-spacing:1.920000pt;}
.ws11{word-spacing:1.968000pt;}
.ws40{word-spacing:1.973333pt;}
.ws12d{word-spacing:2.112000pt;}
.ws38{word-spacing:2.133333pt;}
.ws13a{word-spacing:2.208000pt;}
.wsf9{word-spacing:2.293333pt;}
.wsc0{word-spacing:2.346667pt;}
.ws113{word-spacing:2.400000pt;}
.ws1a{word-spacing:2.453333pt;}
.ws2a{word-spacing:2.506667pt;}
.ws131{word-spacing:2.544000pt;}
.wsfc{word-spacing:2.560000pt;}
.ws20{word-spacing:2.613333pt;}
.ws27{word-spacing:2.666667pt;}
.ws108{word-spacing:2.720000pt;}
.ws32{word-spacing:2.773333pt;}
.ws130{word-spacing:2.784000pt;}
.ws112{word-spacing:2.880000pt;}
.ws1c{word-spacing:3.040000pt;}
.ws4d{word-spacing:3.093333pt;}
.wsfb{word-spacing:3.146667pt;}
.ws13c{word-spacing:3.168000pt;}
.wsdf{word-spacing:3.253333pt;}
.wscb{word-spacing:3.306667pt;}
.wsc1{word-spacing:3.360000pt;}
.ws18{word-spacing:3.456000pt;}
.ws24{word-spacing:3.466667pt;}
.ws23{word-spacing:3.520000pt;}
.ws11a{word-spacing:3.573333pt;}
.ws48{word-spacing:3.680000pt;}
.wsbe{word-spacing:3.733333pt;}
.wse3{word-spacing:3.744000pt;}
.wse2{word-spacing:3.792000pt;}
.wse1{word-spacing:3.840000pt;}
.ws12a{word-spacing:3.936000pt;}
.ws109{word-spacing:4.053333pt;}
.ws133{word-spacing:4.080000pt;}
.ws10c{word-spacing:4.213333pt;}
.wse8{word-spacing:4.320000pt;}
.ws4c{word-spacing:4.373333pt;}
.ws11d{word-spacing:4.533333pt;}
.ws17{word-spacing:4.560000pt;}
.ws41{word-spacing:4.586667pt;}
.ws16{word-spacing:4.608000pt;}
.ws11b{word-spacing:4.640000pt;}
.ws21{word-spacing:4.746667pt;}
.ws43{word-spacing:4.853333pt;}
.ws120{word-spacing:4.906667pt;}
.ws44{word-spacing:4.960000pt;}
.ws12f{word-spacing:4.992000pt;}
.wsfa{word-spacing:5.066667pt;}
.wsde{word-spacing:5.173333pt;}
.ws1b{word-spacing:5.226667pt;}
.ws3e{word-spacing:5.280000pt;}
.ws139{word-spacing:5.520000pt;}
.ws122{word-spacing:5.546667pt;}
.ws121{word-spacing:5.600000pt;}
.ws10a{word-spacing:5.653333pt;}
.ws104{word-spacing:5.706667pt;}
.ws106{word-spacing:5.813333pt;}
.ws30{word-spacing:6.026667pt;}
.ws1e{word-spacing:6.080000pt;}
.wsf5{word-spacing:6.133333pt;}
.wsf4{word-spacing:6.240000pt;}
.ws34{word-spacing:6.293333pt;}
.wsb6{word-spacing:6.560000pt;}
.ws10f{word-spacing:6.666667pt;}
.ws110{word-spacing:6.720000pt;}
.ws10b{word-spacing:6.773333pt;}
.ws105{word-spacing:6.880000pt;}
.wsbf{word-spacing:6.933333pt;}
.wsb8{word-spacing:7.093333pt;}
.wsbd{word-spacing:7.146667pt;}
.wsbc{word-spacing:7.200000pt;}
.ws35{word-spacing:7.360000pt;}
.ws2c{word-spacing:7.573333pt;}
.ws2b{word-spacing:7.626667pt;}
.wsdc{word-spacing:7.680000pt;}
.wsdd{word-spacing:7.733333pt;}
.wsf1{word-spacing:7.786667pt;}
.wsea{word-spacing:8.053333pt;}
.ws100{word-spacing:8.160000pt;}
.wse9{word-spacing:8.213333pt;}
.ws1d{word-spacing:8.266667pt;}
.ws129{word-spacing:8.352000pt;}
.wse6{word-spacing:8.586667pt;}
.wscf{word-spacing:8.960000pt;}
.wsd1{word-spacing:9.066667pt;}
.ws49{word-spacing:9.120000pt;}
.ws101{word-spacing:9.333333pt;}
.wsed{word-spacing:9.408000pt;}
.wsec{word-spacing:9.504000pt;}
.wse7{word-spacing:9.546667pt;}
.wseb{word-spacing:9.600000pt;}
.wsf8{word-spacing:9.760000pt;}
.wsf7{word-spacing:9.866667pt;}
.wsd7{word-spacing:10.416000pt;}
.wsd6{word-spacing:10.512000pt;}
.wsd5{word-spacing:10.608000pt;}
.ws137{word-spacing:10.800000pt;}
.wsfd{word-spacing:10.880000pt;}
.wse0{word-spacing:11.626667pt;}
.ws55{word-spacing:12.106667pt;}
.ws13e{word-spacing:12.432000pt;}
.ws13d{word-spacing:12.528000pt;}
.ws54{word-spacing:12.853333pt;}
.ws12b{word-spacing:12.912000pt;}
.wsfe{word-spacing:13.600000pt;}
.wsdb{word-spacing:13.653333pt;}
.wsda{word-spacing:13.760000pt;}
.wsff{word-spacing:14.826667pt;}
.ws135{word-spacing:15.984000pt;}
.ws136{word-spacing:16.128000pt;}
.ws132{word-spacing:19.200000pt;}
.ws102{word-spacing:20.960000pt;}
.ws103{word-spacing:22.240000pt;}
.ws5f{word-spacing:24.985067pt;}
.ws5d{word-spacing:26.558400pt;}
.wsae{word-spacing:26.590400pt;}
.ws88{word-spacing:27.082667pt;}
.ws8a{word-spacing:27.125867pt;}
.ws118{word-spacing:27.172800pt;}
.ws119{word-spacing:27.365867pt;}
.ws87{word-spacing:31.847467pt;}
.ws89{word-spacing:31.857600pt;}
.ws81{word-spacing:31.881600pt;}
.ws117{word-spacing:38.938667pt;}
.ws9e{word-spacing:39.805867pt;}
.ws9d{word-spacing:58.995733pt;}
.ws116{word-spacing:62.810667pt;}
.ws8e{word-spacing:69.529600pt;}
.ws5e{word-spacing:83.861867pt;}
.wsad{word-spacing:83.934400pt;}
.ws5c{word-spacing:83.945067pt;}
.ws80{word-spacing:83.945600pt;}
.ws8d{word-spacing:84.133867pt;}
.ws8c{word-spacing:84.410133pt;}
.ws68{word-spacing:84.782933pt;}
.ws67{word-spacing:84.793600pt;}
.ws91{word-spacing:87.278933pt;}
.ws94{word-spacing:87.299733pt;}
.ws8b{word-spacing:98.040533pt;}
.ws6f{word-spacing:99.609600pt;}
.ws93{word-spacing:100.707200pt;}
.ws79{word-spacing:102.119467pt;}
.ws77{word-spacing:102.141333pt;}
.ws90{word-spacing:102.442133pt;}
.ws74{word-spacing:104.462400pt;}
.ws71{word-spacing:104.472533pt;}
.ws72{word-spacing:104.483200pt;}
.ws63{word-spacing:104.483733pt;}
.wsa3{word-spacing:106.427200pt;}
.wsa1{word-spacing:106.437867pt;}
.wsa2{word-spacing:106.469867pt;}
.ws83{word-spacing:107.094400pt;}
.ws6e{word-spacing:108.784000pt;}
.ws86{word-spacing:110.373333pt;}
.ws69{word-spacing:110.450133pt;}
.ws75{word-spacing:111.923733pt;}
.ws61{word-spacing:111.934933pt;}
.ws73{word-spacing:111.966933pt;}
.ws97{word-spacing:112.595200pt;}
.wsa9{word-spacing:113.233067pt;}
.wsa8{word-spacing:113.243733pt;}
.ws9f{word-spacing:113.313067pt;}
.ws8f{word-spacing:113.332267pt;}
.ws114{word-spacing:113.366400pt;}
.ws7b{word-spacing:113.443733pt;}
.ws7d{word-spacing:113.488000pt;}
.wsaf{word-spacing:113.498667pt;}
.ws98{word-spacing:114.056533pt;}
.wsa6{word-spacing:114.121600pt;}
.ws6a{word-spacing:114.339200pt;}
.ws65{word-spacing:114.476267pt;}
.ws92{word-spacing:114.486933pt;}
.ws95{word-spacing:114.530133pt;}
.ws66{word-spacing:114.861867pt;}
.ws6d{word-spacing:115.083200pt;}
.wsaa{word-spacing:115.083733pt;}
.ws7a{word-spacing:115.115733pt;}
.ws70{word-spacing:119.474133pt;}
.ws85{word-spacing:121.873067pt;}
.wsa5{word-spacing:125.388267pt;}
.ws64{word-spacing:125.684267pt;}
.ws76{word-spacing:126.877867pt;}
.ws60{word-spacing:126.888000pt;}
.wsb1{word-spacing:127.384533pt;}
.ws96{word-spacing:128.193067pt;}
.ws5b{word-spacing:129.326933pt;}
.wsac{word-spacing:129.327467pt;}
.ws7c{word-spacing:133.550933pt;}
.ws7f{word-spacing:133.583467pt;}
.ws9c{word-spacing:136.118400pt;}
.ws9b{word-spacing:140.251733pt;}
.ws5a{word-spacing:140.252267pt;}
.ws7e{word-spacing:142.409067pt;}
.wsb4{word-spacing:148.379200pt;}
.wsb3{word-spacing:148.389333pt;}
.wsb2{word-spacing:148.441600pt;}
.ws6c{word-spacing:150.489600pt;}
.ws82{word-spacing:152.586667pt;}
.wsa4{word-spacing:157.530133pt;}
.ws59{word-spacing:157.581333pt;}
.wsa0{word-spacing:161.254933pt;}
.ws56{word-spacing:161.806933pt;}
.ws9a{word-spacing:173.948800pt;}
.ws57{word-spacing:173.949333pt;}
.wsb0{word-spacing:174.222400pt;}
.wsa7{word-spacing:177.661867pt;}
.wsab{word-spacing:178.499200pt;}
.ws84{word-spacing:180.596267pt;}
.ws78{word-spacing:180.629333pt;}
.ws6b{word-spacing:185.258667pt;}
.ws62{word-spacing:188.201067pt;}
.ws115{word-spacing:534.790400pt;}
._7{margin-left:-9.145067pt;}
._0{margin-left:-8.060267pt;}
._12{margin-left:-6.762667pt;}
._8{margin-left:-5.324800pt;}
._b{margin-left:-4.418667pt;}
._4{margin-left:-3.460800pt;}
._3{margin-left:-2.446933pt;}
._1{margin-left:-1.332800pt;}
._2{width:0.915200pt;}
._9{width:2.215467pt;}
._c{width:3.229867pt;}
._a{width:4.251733pt;}
._5{width:5.277867pt;}
._6{width:6.466133pt;}
._d{width:7.947200pt;}
._e{width:9.093333pt;}
._3a{width:10.821333pt;}
._f{width:12.037333pt;}
._46{width:13.154133pt;}
._48{width:14.133867pt;}
._49{width:15.641067pt;}
._47{width:16.918400pt;}
._4a{width:18.081600pt;}
._4b{width:19.358400pt;}
._4c{width:20.433600pt;}
._3b{width:22.654400pt;}
._16{width:36.134933pt;}
._45{width:37.836800pt;}
._14{width:41.514133pt;}
._41{width:48.635200pt;}
._43{width:65.065600pt;}
._28{width:72.150400pt;}
._42{width:74.560000pt;}
._33{width:85.062400pt;}
._3c{width:86.404267pt;}
._3f{width:90.191467pt;}
._40{width:92.012800pt;}
._20{width:98.608000pt;}
._3e{width:101.811733pt;}
._2e{width:104.969067pt;}
._2b{width:107.372800pt;}
._2f{width:112.378133pt;}
._44{width:116.752000pt;}
._2c{width:117.754133pt;}
._36{width:120.955200pt;}
._39{width:124.137600pt;}
._1e{width:126.257600pt;}
._1a{width:146.860800pt;}
._23{width:153.633600pt;}
._26{width:156.859200pt;}
._34{width:162.433600pt;}
._1b{width:165.486933pt;}
._18{width:169.299200pt;}
._29{width:174.331200pt;}
._15{width:183.821867pt;}
._22{width:198.654400pt;}
._37{width:203.929067pt;}
._10{width:208.032533pt;}
._19{width:218.501867pt;}
._30{width:219.479467pt;}
._35{width:221.012267pt;}
._32{width:241.217600pt;}
._11{width:280.883733pt;}
._1c{width:294.469867pt;}
._31{width:295.366933pt;}
._1f{width:435.847467pt;}
._1d{width:447.108267pt;}
._21{width:450.536000pt;}
._2d{width:478.231467pt;}
._13{width:484.644267pt;}
._27{width:485.950933pt;}
._2a{width:499.867733pt;}
._38{width:510.798933pt;}
._24{width:517.181333pt;}
._25{width:533.577067pt;}
._17{width:535.869333pt;}
._3d{width:551.617600pt;}
.fs9{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y39{bottom:63.299600pt;}
.y3a{bottom:66.698800pt;}
.ydb{bottom:100.514400pt;}
.y67{bottom:100.514533pt;}
.y2b{bottom:104.188933pt;}
.ya{bottom:104.778267pt;}
.ya6{bottom:104.906533pt;}
.ye2{bottom:107.111867pt;}
.y9{bottom:117.578267pt;}
.ya5{bottom:118.239867pt;}
.yda{bottom:119.181067pt;}
.y66{bottom:119.181200pt;}
.y2a{bottom:122.855600pt;}
.y108{bottom:124.026133pt;}
.ye1{bottom:124.711867pt;}
.y8{bottom:130.378267pt;}
.ya4{bottom:131.573200pt;}
.yd9{bottom:137.847733pt;}
.y65{bottom:137.847867pt;}
.y29{bottom:141.522267pt;}
.y7{bottom:143.178267pt;}
.ya3{bottom:149.513333pt;}
.yd8{bottom:156.514400pt;}
.y64{bottom:156.514533pt;}
.y28{bottom:160.188933pt;}
.ya2{bottom:162.846667pt;}
.y6f{bottom:168.456533pt;}
.yd7{bottom:175.181067pt;}
.y63{bottom:175.181200pt;}
.ya1{bottom:176.180000pt;}
.y36{bottom:177.237867pt;}
.y27{bottom:178.855600pt;}
.y107{bottom:180.026133pt;}
.y35{bottom:193.237867pt;}
.yd6{bottom:193.847733pt;}
.y62{bottom:193.847867pt;}
.ya0{bottom:194.120133pt;}
.y6e{bottom:197.165333pt;}
.y26{bottom:197.522267pt;}
.y9f{bottom:207.453467pt;}
.y34{bottom:209.237867pt;}
.yd5{bottom:212.514400pt;}
.y61{bottom:212.514533pt;}
.y25{bottom:216.188933pt;}
.y9e{bottom:220.786800pt;}
.y33{bottom:225.237867pt;}
.yd4{bottom:231.181067pt;}
.y60{bottom:231.181200pt;}
.y24{bottom:234.855600pt;}
.y106{bottom:236.388533pt;}
.y9d{bottom:238.726933pt;}
.y32{bottom:241.237867pt;}
.yd3{bottom:249.847733pt;}
.y5f{bottom:249.847867pt;}
.y9c{bottom:252.060267pt;}
.y23{bottom:253.522267pt;}
.y31{bottom:257.237867pt;}
.y105{bottom:262.614267pt;}
.y9b{bottom:265.393600pt;}
.yd2{bottom:268.514400pt;}
.y5e{bottom:268.514533pt;}
.y22{bottom:272.188933pt;}
.y30{bottom:273.237867pt;}
.yde{bottom:278.918400pt;}
.y9a{bottom:283.333867pt;}
.yd1{bottom:287.181067pt;}
.y5d{bottom:287.181200pt;}
.y21{bottom:290.855600pt;}
.y99{bottom:296.667200pt;}
.y2f{bottom:304.356000pt;}
.yd0{bottom:305.847733pt;}
.y5c{bottom:305.847867pt;}
.y20{bottom:309.522267pt;}
.y98{bottom:310.000533pt;}
.y2e{bottom:320.356000pt;}
.ycf{bottom:324.514400pt;}
.y5b{bottom:324.514533pt;}
.y97{bottom:327.940667pt;}
.y1f{bottom:328.188933pt;}
.y2d{bottom:336.356000pt;}
.ye6{bottom:337.389600pt;}
.yce{bottom:343.181067pt;}
.y5a{bottom:343.181200pt;}
.y96{bottom:345.880800pt;}
.y1e{bottom:346.855600pt;}
.y2c{bottom:352.356000pt;}
.ye5{bottom:354.989600pt;}
.y104{bottom:355.947600pt;}
.ycd{bottom:361.847733pt;}
.y6d{bottom:361.847867pt;}
.y95{bottom:363.820933pt;}
.y1d{bottom:365.522267pt;}
.y59{bottom:374.614267pt;}
.ycc{bottom:380.514400pt;}
.y6c{bottom:380.514533pt;}
.y94{bottom:381.761067pt;}
.y1c{bottom:384.188933pt;}
.ycb{bottom:399.181067pt;}
.y6b{bottom:399.181200pt;}
.y93{bottom:399.701200pt;}
.y1b{bottom:402.855600pt;}
.ydc{bottom:409.346400pt;}
.y92{bottom:413.034533pt;}
.yca{bottom:417.847733pt;}
.y58{bottom:417.847867pt;}
.y1a{bottom:421.522267pt;}
.y91{bottom:430.974667pt;}
.y103{bottom:436.514400pt;}
.y57{bottom:436.514533pt;}
.y19{bottom:440.188933pt;}
.y90{bottom:444.308000pt;}
.y102{bottom:455.181067pt;}
.y56{bottom:455.181200pt;}
.y18{bottom:458.855600pt;}
.y8f{bottom:462.248267pt;}
.yc9{bottom:464.501867pt;}
.ydd{bottom:466.913200pt;}
.y101{bottom:473.847733pt;}
.y55{bottom:473.847867pt;}
.y17{bottom:477.522267pt;}
.y8e{bottom:480.188400pt;}
.yc8{bottom:482.328667pt;}
.y100{bottom:492.514400pt;}
.y54{bottom:492.514533pt;}
.y8d{bottom:498.128533pt;}
.yc7{bottom:500.155467pt;}
.y16{bottom:507.362000pt;}
.yff{bottom:511.181067pt;}
.y53{bottom:511.181200pt;}
.y8c{bottom:516.068667pt;}
.yc6{bottom:517.982267pt;}
.yfe{bottom:529.847733pt;}
.y52{bottom:529.847867pt;}
.y8b{bottom:534.008933pt;}
.yc5{bottom:535.808933pt;}
.yfd{bottom:548.514400pt;}
.y51{bottom:548.514533pt;}
.y8a{bottom:551.949067pt;}
.yc4{bottom:553.635733pt;}
.y89{bottom:565.282400pt;}
.y15{bottom:565.713733pt;}
.yfc{bottom:567.181067pt;}
.y50{bottom:567.181200pt;}
.yc3{bottom:571.462533pt;}
.y11a{bottom:579.947467pt;}
.y88{bottom:583.222533pt;}
.yc2{bottom:584.795867pt;}
.yfb{bottom:585.847733pt;}
.y4f{bottom:585.847867pt;}
.yc1{bottom:598.129200pt;}
.y87{bottom:601.162667pt;}
.y14{bottom:602.211333pt;}
.yfa{bottom:604.514400pt;}
.y4e{bottom:604.514533pt;}
.yc0{bottom:615.956000pt;}
.y86{bottom:619.102800pt;}
.y13{bottom:619.811333pt;}
.yf9{bottom:623.181067pt;}
.y4d{bottom:623.181200pt;}
.ybf{bottom:633.782667pt;}
.y85{bottom:637.042933pt;}
.y12{bottom:637.411333pt;}
.yf8{bottom:641.847733pt;}
.y4c{bottom:641.847867pt;}
.ybe{bottom:651.609467pt;}
.y84{bottom:654.983200pt;}
.y11{bottom:655.011333pt;}
.yf7{bottom:660.514400pt;}
.y4b{bottom:660.514533pt;}
.y119{bottom:665.359333pt;}
.ybd{bottom:669.436267pt;}
.y10{bottom:672.611333pt;}
.y83{bottom:672.923333pt;}
.yf6{bottom:679.181067pt;}
.y4a{bottom:679.181200pt;}
.ye0{bottom:681.045333pt;}
.ybc{bottom:687.263067pt;}
.yf{bottom:690.211333pt;}
.y82{bottom:690.863467pt;}
.yf5{bottom:697.847733pt;}
.y49{bottom:697.847867pt;}
.ydf{bottom:698.645333pt;}
.ybb{bottom:705.089867pt;}
.ye{bottom:707.811333pt;}
.y81{bottom:708.803600pt;}
.yf4{bottom:716.514400pt;}
.y48{bottom:716.514533pt;}
.yba{bottom:718.423200pt;}
.yd{bottom:725.411333pt;}
.y80{bottom:726.743867pt;}
.yf3{bottom:735.181067pt;}
.y47{bottom:735.181200pt;}
.yb9{bottom:736.249867pt;}
.y7f{bottom:744.683867pt;}
.yb8{bottom:749.583200pt;}
.yc{bottom:753.053600pt;}
.yf2{bottom:753.847733pt;}
.y46{bottom:753.847867pt;}
.y7e{bottom:762.624133pt;}
.yb7{bottom:767.410000pt;}
.yf1{bottom:772.514400pt;}
.y6a{bottom:772.514533pt;}
.y7d{bottom:780.564267pt;}
.yb6{bottom:780.743333pt;}
.y45{bottom:784.456533pt;}
.yf0{bottom:791.181067pt;}
.y69{bottom:791.181200pt;}
.y118{bottom:796.026000pt;}
.y7c{bottom:798.504400pt;}
.yb5{bottom:798.570133pt;}
.y115{bottom:805.975333pt;}
.yef{bottom:809.847733pt;}
.y11b{bottom:809.847867pt;}
.yb4{bottom:811.903467pt;}
.y44{bottom:813.165333pt;}
.y7b{bottom:816.444533pt;}
.y114{bottom:819.308667pt;}
.y68{bottom:822.614267pt;}
.y6{bottom:823.526000pt;}
.yee{bottom:828.514400pt;}
.ye4{bottom:828.514533pt;}
.yb3{bottom:829.730267pt;}
.y7a{bottom:829.777867pt;}
.y113{bottom:838.269333pt;}
.y5{bottom:839.526000pt;}
.yb2{bottom:843.063600pt;}
.ye3{bottom:847.181200pt;}
.y79{bottom:847.718133pt;}
.y112{bottom:851.602667pt;}
.yb1{bottom:856.396933pt;}
.yed{bottom:859.947467pt;}
.y78{bottom:861.051467pt;}
.y43{bottom:865.847867pt;}
.y111{bottom:870.563333pt;}
.y4{bottom:870.644267pt;}
.yb0{bottom:874.223600pt;}
.y77{bottom:878.991600pt;}
.y110{bottom:883.896667pt;}
.y42{bottom:884.514533pt;}
.yaf{bottom:887.556933pt;}
.y76{bottom:896.931733pt;}
.y10f{bottom:897.230000pt;}
.yec{bottom:903.181067pt;}
.y41{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.yae{bottom:905.383733pt;}
.y117{bottom:908.026000pt;}
.y75{bottom:914.871867pt;}
.y10e{bottom:916.190533pt;}
.yad{bottom:918.717067pt;}
.yeb{bottom:921.847733pt;}
.y40{bottom:921.847867pt;}
.y10d{bottom:929.523867pt;}
.y2{bottom:932.695600pt;}
.y74{bottom:932.812000pt;}
.yac{bottom:936.543867pt;}
.yea{bottom:940.514400pt;}
.y3f{bottom:940.514533pt;}
.y10c{bottom:948.484533pt;}
.yab{bottom:949.877200pt;}
.y73{bottom:950.752133pt;}
.y10a{bottom:951.109200pt;}
.y72{bottom:952.621067pt;}
.y109{bottom:957.775867pt;}
.ye9{bottom:959.181067pt;}
.y3e{bottom:959.181200pt;}
.y71{bottom:959.287733pt;}
.y10b{bottom:967.067200pt;}
.yaa{bottom:967.704000pt;}
.ye8{bottom:977.847733pt;}
.y3d{bottom:977.847867pt;}
.ya9{bottom:985.797467pt;}
.yb{bottom:986.502667pt;}
.ya8{bottom:987.666267pt;}
.ya7{bottom:994.332933pt;}
.y70{bottom:994.918133pt;}
.ye7{bottom:996.514400pt;}
.y3c{bottom:996.514533pt;}
.y116{bottom:1000.401600pt;}
.y38{bottom:1027.213600pt;}
.y37{bottom:1044.546933pt;}
.y3b{bottom:1047.726000pt;}
.h7{height:30.618750pt;}
.h19{height:32.437500pt;}
.h1b{height:32.480017pt;}
.h16{height:32.500833pt;}
.h2{height:33.812500pt;}
.h1a{height:33.979167pt;}
.h11{height:34.020833pt;}
.h18{height:34.229167pt;}
.h6{height:34.250000pt;}
.h17{height:34.666667pt;}
.h8{height:36.492188pt;}
.h10{height:38.039062pt;}
.hf{height:38.273438pt;}
.ha{height:38.507812pt;}
.hb{height:39.000000pt;}
.h9{height:42.083333pt;}
.hd{height:42.786458pt;}
.he{height:43.333333pt;}
.h13{height:44.601562pt;}
.h12{height:46.291667pt;}
.h5{height:47.065104pt;}
.hc{height:50.500000pt;}
.h14{height:59.104167pt;}
.h4{height:68.929688pt;}
.h3{height:69.064271pt;}
.h15{height:93.245500pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xb{left:95.172400pt;}
.xc{left:96.255067pt;}
.x10{left:99.779467pt;}
.x6{left:106.290133pt;}
.x7{left:107.597867pt;}
.x8{left:109.707333pt;}
.x16{left:111.961467pt;}
.xd{left:143.954400pt;}
.x1e{left:164.290267pt;}
.x1d{left:169.227733pt;}
.x22{left:174.650000pt;}
.x17{left:183.678933pt;}
.x1f{left:244.655333pt;}
.x1a{left:246.361200pt;}
.x18{left:248.717067pt;}
.x14{left:265.321067pt;}
.x4{left:266.834667pt;}
.x11{left:270.146800pt;}
.xe{left:273.128533pt;}
.x13{left:276.285067pt;}
.x5{left:281.952800pt;}
.x12{left:329.098667pt;}
.x15{left:334.184933pt;}
.x3{left:352.045067pt;}
.x20{left:393.982800pt;}
.xf{left:429.849867pt;}
.x23{left:439.656800pt;}
.x24{left:484.049333pt;}
.x1b{left:506.373200pt;}
.x21{left:517.293067pt;}
.xa{left:577.459200pt;}
.x9{left:595.891467pt;}
.x19{left:682.642667pt;}
.x1c{left:687.421600pt;}
.x1{left:712.311867pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  