
    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_2672a1a461daf2c8162b468b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.870605;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_2ec28cdc239a621def62cfd5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_7ad5b1c005c371fa9962a5ff.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_e3b40f47bb272b6ebcb00cb3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.869141;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_bc3687b174632f2a222c3dbd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_c3b3c0cd40830dcba00ac64b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.691406;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_6c9a7e5c0c0f2e4004a91074.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_061171a7df1259954906497a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_13385980487cc21d894d2396.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.330566;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_ea93907cf7f6b14d1dd96bc9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.017090;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_c9bfd648d6d254fd7db4c1ef.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.330566;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_bff47d5197550f136cba35e7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.870605;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_49df0f384fec73472a570a0a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.208008;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_0b9fd5518605a902fc740b15.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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_fd44ad019159fd06ebacc559.woff2')format("woff");}.fff{font-family:fff;line-height:0.869141;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.v9{vertical-align:-28.080000px;}
.va{vertical-align:-21.600000px;}
.v8{vertical-align:-19.440000px;}
.v3{vertical-align:-14.400000px;}
.vc{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:14.400000px;}
.vb{vertical-align:17.280000px;}
.v1{vertical-align:20.880000px;}
.v2{vertical-align:27.360000px;}
.vd{vertical-align:36.720000px;}
.v6{vertical-align:38.880000px;}
.v5{vertical-align:56.880000px;}
.v7{vertical-align:83.520000px;}
.lsc{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.486600px;}
.ls35{letter-spacing:-0.460200px;}
.ls32{letter-spacing:-0.413400px;}
.ls8{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.252000px;}
.lsa{letter-spacing:-0.206400px;}
.ls1c{letter-spacing:-0.106800px;}
.ls2c{letter-spacing:-0.058200px;}
.lsb{letter-spacing:-0.053400px;}
.ls1e{letter-spacing:-0.004200px;}
.ls2{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.017400px;}
.ls30{letter-spacing:0.053280px;}
.ls25{letter-spacing:0.066960px;}
.ls4{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.109440px;}
.ls21{letter-spacing:0.149760px;}
.ls2a{letter-spacing:0.150000px;}
.ls33{letter-spacing:0.161964px;}
.ls7{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.206640px;}
.ls28{letter-spacing:0.222768px;}
.ls26{letter-spacing:0.224640px;}
.ls9{letter-spacing:0.259800px;}
.lsd{letter-spacing:0.289440px;}
.ls29{letter-spacing:0.339840px;}
.ls3{letter-spacing:0.360000px;}
.ls2b{letter-spacing:0.433200px;}
.ls27{letter-spacing:0.576000px;}
.ls24{letter-spacing:0.593976px;}
.ls1d{letter-spacing:0.666000px;}
.ls19{letter-spacing:0.709920px;}
.ls31{letter-spacing:0.773280px;}
.ls5{letter-spacing:0.828000px;}
.lse{letter-spacing:0.829440px;}
.ls34{letter-spacing:0.893280px;}
.ls1{letter-spacing:0.900000px;}
.ls1b{letter-spacing:0.978000px;}
.lsf{letter-spacing:1.620000px;}
.ls1a{letter-spacing:4.500000px;}
.ls17{letter-spacing:5.220000px;}
.ls23{letter-spacing:6.660000px;}
.ls10{letter-spacing:7.380000px;}
.ls12{letter-spacing:13.193280px;}
.ls2f{letter-spacing:15.269760px;}
.ls22{letter-spacing:16.740000px;}
.ls2d{letter-spacing:17.460000px;}
.ls18{letter-spacing:18.869760px;}
.ls15{letter-spacing:23.400000px;}
.ls1f{letter-spacing:23.940000px;}
.ls11{letter-spacing:25.596000px;}
.ls2e{letter-spacing:34.169760px;}
.ls13{letter-spacing:97.992000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws49{word-spacing:-66.240000px;}
.ws6{word-spacing:-59.760000px;}
.ws37{word-spacing:-54.000000px;}
.wsd{word-spacing:-38.186640px;}
.ws3{word-spacing:-15.768000px;}
.wsc{word-spacing:-15.606000px;}
.ws0{word-spacing:-15.300000px;}
.ws48{word-spacing:-15.199800px;}
.ws9{word-spacing:-15.120000px;}
.ws1{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886600px;}
.wsa{word-spacing:-14.833200px;}
.ws7{word-spacing:-14.733600px;}
.ws46{word-spacing:-14.526600px;}
.ws47{word-spacing:-14.479800px;}
.ws8{word-spacing:-13.860000px;}
.ws1a{word-spacing:-13.538304px;}
.ws1e{word-spacing:-13.505760px;}
.ws11{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.248000px;}
.ws2a{word-spacing:-10.902240px;}
.wsf{word-spacing:-9.737400px;}
.wsb{word-spacing:-9.720000px;}
.ws1b{word-spacing:-9.144864px;}
.ws2d{word-spacing:-9.112320px;}
.ws4{word-spacing:-7.073400px;}
.ws5{word-spacing:0.000000px;}
.ws19{word-spacing:160.672200px;}
.ws21{word-spacing:161.512200px;}
.ws14{word-spacing:164.152200px;}
.ws3a{word-spacing:165.112200px;}
.ws3f{word-spacing:166.252200px;}
.ws26{word-spacing:168.112200px;}
.ws2c{word-spacing:168.292200px;}
.ws33{word-spacing:168.832200px;}
.ws18{word-spacing:175.495920px;}
.ws20{word-spacing:176.335920px;}
.ws13{word-spacing:179.095920px;}
.ws39{word-spacing:179.935920px;}
.ws43{word-spacing:180.115920px;}
.ws17{word-spacing:180.389760px;}
.ws3e{word-spacing:181.135920px;}
.ws1f{word-spacing:181.169760px;}
.ws25{word-spacing:182.995920px;}
.ws32{word-spacing:183.715920px;}
.ws12{word-spacing:183.869760px;}
.ws38{word-spacing:184.829760px;}
.ws42{word-spacing:184.889760px;}
.ws3d{word-spacing:185.909760px;}
.ws24{word-spacing:187.769760px;}
.ws2b{word-spacing:187.889760px;}
.ws31{word-spacing:188.609760px;}
.ws36{word-spacing:190.347936px;}
.ws29{word-spacing:192.267936px;}
.ws30{word-spacing:193.983313px;}
.ws3c{word-spacing:206.922912px;}
.ws41{word-spacing:207.222912px;}
.ws45{word-spacing:208.842912px;}
.ws23{word-spacing:275.192401px;}
.ws1d{word-spacing:282.092401px;}
.ws16{word-spacing:285.992401px;}
.ws35{word-spacing:294.932401px;}
.ws28{word-spacing:296.852401px;}
.ws2f{word-spacing:298.712401px;}
.ws22{word-spacing:383.973119px;}
.ws1c{word-spacing:390.873119px;}
.ws15{word-spacing:394.773119px;}
.ws3b{word-spacing:397.953119px;}
.ws40{word-spacing:398.253119px;}
.ws44{word-spacing:399.873119px;}
.ws34{word-spacing:403.713119px;}
.ws27{word-spacing:405.633119px;}
.ws2e{word-spacing:407.493119px;}
._27{margin-left:-3.415948px;}
._23{margin-left:-2.036157px;}
._0{margin-left:-1.011048px;}
._1{width:1.195200px;}
._6{width:2.218829px;}
._2{width:3.229818px;}
._9{width:5.139599px;}
._10{width:6.572405px;}
._11{width:8.545800px;}
._7{width:10.039800px;}
._8{width:11.212697px;}
._16{width:12.288496px;}
._15{width:13.288903px;}
._29{width:14.602818px;}
._4{width:15.947492px;}
._3{width:17.151000px;}
._5{width:18.765479px;}
._f{width:20.079001px;}
._e{width:21.095400px;}
._1b{width:22.469999px;}
._17{width:24.202800px;}
._b{width:25.338001px;}
._c{width:26.713796px;}
._21{width:28.526376px;}
._1e{width:29.940597px;}
._1d{width:31.015201px;}
._33{width:32.091598px;}
._24{width:33.285600px;}
._22{width:35.198401px;}
._2d{width:36.573598px;}
._2c{width:37.768200px;}
._14{width:39.621000px;}
._1f{width:40.816200px;}
._28{width:42.011400px;}
._12{width:43.027140px;}
._2f{width:44.299340px;}
._18{width:45.358199px;}
._25{width:50.285351px;}
._20{width:51.632939px;}
._13{width:52.708141px;}
._19{width:54.082740px;}
._1a{width:55.098541px;}
._1c{width:56.413739px;}
._a{width:59.461140px;}
._d{width:62.927340px;}
._35{width:69.799740px;}
._36{width:82.886941px;}
._2b{width:149.101080px;}
._2a{width:150.956270px;}
._31{width:204.301680px;}
._30{width:207.841680px;}
._34{width:208.921680px;}
._32{width:211.741680px;}
._2e{width:335.967840px;}
._26{width:1084.620000px;}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.240000px;}
.fs4{font-size:38.880000px;}
.fsc{font-size:40.320000px;}
.fse{font-size:40.464000px;}
.fsb{font-size:41.760000px;}
.fs9{font-size:48.000000px;}
.fs7{font-size:48.240000px;}
.fsa{font-size:51.120000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fsd{font-size:59.904000px;}
.fs5{font-size:62.991941px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:0.180000px;}
.y52{bottom:2.526000px;}
.yf8{bottom:2.880000px;}
.y1ba{bottom:3.060000px;}
.yf4{bottom:3.240000px;}
.y1bc{bottom:3.420000px;}
.yfb{bottom:3.600000px;}
.y1b7{bottom:3.780000px;}
.yf2{bottom:3.960000px;}
.yf3{bottom:4.140000px;}
.y20c{bottom:4.320000px;}
.y202{bottom:4.500000px;}
.y20d{bottom:4.680000px;}
.y20a{bottom:4.860000px;}
.y208{bottom:5.220000px;}
.y216{bottom:5.580000px;}
.y1be{bottom:5.760000px;}
.y221{bottom:5.940000px;}
.y1a1{bottom:6.045000px;}
.y13b{bottom:6.090000px;}
.y1bf{bottom:6.120000px;}
.y148{bottom:6.480000px;}
.y1b2{bottom:6.660000px;}
.y195{bottom:6.945000px;}
.y115{bottom:7.380000px;}
.y50{bottom:9.180000px;}
.yf6{bottom:10.620000px;}
.y4a{bottom:11.520000px;}
.y205{bottom:12.960000px;}
.y213{bottom:13.320000px;}
.y21e{bottom:13.680000px;}
.y22a{bottom:14.220000px;}
.yfa{bottom:17.460000px;}
.yf7{bottom:18.360000px;}
.y1b9{bottom:18.540000px;}
.y22e{bottom:18.720000px;}
.y1b6{bottom:19.260000px;}
.y120{bottom:19.725000px;}
.y4e{bottom:20.340000px;}
.y139{bottom:20.520000px;}
.y207{bottom:20.700000px;}
.y113{bottom:20.805000px;}
.y215{bottom:21.060000px;}
.y220{bottom:21.450000px;}
.y146{bottom:21.675000px;}
.y22c{bottom:22.140000px;}
.y12c{bottom:22.395000px;}
.y1ac{bottom:22.470000px;}
.y19f{bottom:24.840000px;}
.y193{bottom:25.920000px;}
.y1b4{bottom:27.000000px;}
.y204{bottom:28.440000px;}
.y212{bottom:28.800000px;}
.y21d{bottom:29.370000px;}
.y229{bottom:29.880000px;}
.y1b5{bottom:34.740000px;}
.y4d{bottom:35.640000px;}
.y206{bottom:36.180000px;}
.y11e{bottom:36.360000px;}
.y214{bottom:36.540000px;}
.y12a{bottom:36.825000px;}
.y21f{bottom:37.110000px;}
.y22b{bottom:37.620000px;}
.y156{bottom:37.725000px;}
.y130{bottom:40.035000px;}
.y109{bottom:40.320000px;}
.y51{bottom:40.800110px;}
.y141{bottom:41.190000px;}
.y1a6{bottom:41.970000px;}
.y19a{bottom:44.355000px;}
.y189{bottom:45.435000px;}
.y154{bottom:51.480000px;}
.y4c{bottom:52.200000px;}
.y119{bottom:55.875000px;}
.y124{bottom:56.340000px;}
.y2{bottom:57.600000px;}
.y10a{bottom:57.630000px;}
.y18a{bottom:61.125000px;}
.y1ad{bottom:64.545000px;}
.y4b{bottom:65.880000px;}
.y14e{bottom:70.950000px;}
.y1a7{bottom:71.925000px;}
.y1a0{bottom:72.900000px;}
.y10b{bottom:74.955000px;}
.y131{bottom:75.165000px;}
.y18b{bottom:76.860000px;}
.y1{bottom:76.896000px;}
.y12b{bottom:76.965000px;}
.y19b{bottom:79.770000px;}
.y142{bottom:80.205000px;}
.y194{bottom:80.565000px;}
.y13a{bottom:81.795000px;}
.y114{bottom:82.695000px;}
.y147{bottom:82.770000px;}
.y125{bottom:86.430000px;}
.y10c{bottom:92.265000px;}
.y18c{bottom:92.550000px;}
.y11f{bottom:92.730000px;}
.y132{bottom:92.775000px;}
.y155{bottom:93.390000px;}
.y11a{bottom:94.500000px;}
.y14f{bottom:101.520000px;}
.y1a8{bottom:101.880000px;}
.y18d{bottom:108.285000px;}
.y10d{bottom:109.620000px;}
.y9f{bottom:109.836000px;}
.y169{bottom:110.016000px;}
.y133{bottom:110.340000px;}
.yf0{bottom:110.556000px;}
.y200{bottom:113.436000px;}
.yc4{bottom:113.796000px;}
.y19c{bottom:115.200000px;}
.y126{bottom:116.535000px;}
.y48{bottom:116.676000px;}
.y101{bottom:116.856000px;}
.y107{bottom:117.396000px;}
.y143{bottom:119.235000px;}
.y82{bottom:120.456000px;}
.y18e{bottom:123.990000px;}
.y10e{bottom:126.930000px;}
.y134{bottom:127.905000px;}
.y187{bottom:128.916000px;}
.y168{bottom:129.276000px;}
.y9e{bottom:129.636000px;}
.yef{bottom:130.356000px;}
.y1a9{bottom:131.865000px;}
.y150{bottom:132.045000px;}
.y11b{bottom:133.095000px;}
.y1ff{bottom:133.236000px;}
.yc3{bottom:133.596000px;}
.y47{bottom:136.476000px;}
.y18f{bottom:139.680000px;}
.y81{bottom:140.256000px;}
.y30{bottom:142.596000px;}
.y10f{bottom:144.255000px;}
.y1ce{bottom:144.936000px;}
.y135{bottom:145.470000px;}
.y127{bottom:146.625000px;}
.y9d{bottom:149.436000px;}
.yee{bottom:150.150000px;}
.y19d{bottom:150.660000px;}
.y100{bottom:151.770000px;}
.y1fe{bottom:153.210000px;}
.yc2{bottom:153.390000px;}
.y190{bottom:155.415000px;}
.y144{bottom:158.250000px;}
.y1bd{bottom:159.870000px;}
.y80{bottom:160.230000px;}
.y110{bottom:161.565000px;}
.y1aa{bottom:161.820000px;}
.y167{bottom:161.850000px;}
.y2f{bottom:162.390000px;}
.y151{bottom:162.570000px;}
.y136{bottom:163.080000px;}
.y1cd{bottom:163.830000px;}
.y9c{bottom:169.230000px;}
.yed{bottom:169.950000px;}
.y106{bottom:170.130000px;}
.yff{bottom:171.030000px;}
.y191{bottom:171.105000px;}
.y46{bottom:171.390000px;}
.y11c{bottom:171.720000px;}
.y1fd{bottom:173.010000px;}
.yc1{bottom:173.190000px;}
.y1a5{bottom:174.600000px;}
.y128{bottom:176.730000px;}
.y111{bottom:178.890000px;}
.y7f{bottom:180.030000px;}
.y137{bottom:180.645000px;}
.y1bb{bottom:182.010000px;}
.y2e{bottom:182.190000px;}
.y1cc{bottom:182.910000px;}
.y14d{bottom:183.060000px;}
.y19e{bottom:186.090000px;}
.y192{bottom:186.810000px;}
.y9b{bottom:189.030000px;}
.yec{bottom:189.930000px;}
.y45{bottom:191.190000px;}
.y1ab{bottom:191.775000px;}
.y1fc{bottom:192.810000px;}
.yc0{bottom:192.990000px;}
.y152{bottom:193.140000px;}
.y112{bottom:196.200000px;}
.y145{bottom:197.310000px;}
.y138{bottom:198.210000px;}
.y1a4{bottom:199.110000px;}
.y198{bottom:199.230000px;}
.y1b3{bottom:199.290000px;}
.y7e{bottom:199.830000px;}
.yfe{bottom:200.730000px;}
.y123{bottom:201.060000px;}
.y2d{bottom:201.990000px;}
.y1b0{bottom:204.840000px;}
.y129{bottom:206.820000px;}
.y9a{bottom:209.010000px;}
.y11d{bottom:210.345000px;}
.y44{bottom:210.990000px;}
.y14c{bottom:211.650000px;}
.y1fb{bottom:212.610000px;}
.y197{bottom:213.045000px;}
.y13f{bottom:213.225000px;}
.y1a3{bottom:213.480000px;}
.y1b8{bottom:216.390000px;}
.y1cb{bottom:217.110000px;}
.y117{bottom:217.515000px;}
.y1af{bottom:217.800000px;}
.y7d{bottom:219.630000px;}
.y2c{bottom:221.790000px;}
.y153{bottom:223.665000px;}
.yeb{bottom:224.670000px;}
.y12e{bottom:224.790000px;}
.y14b{bottom:224.895000px;}
.y196{bottom:226.905000px;}
.y1a2{bottom:227.880000px;}
.ybf{bottom:227.910000px;}
.y13e{bottom:228.090000px;}
.y99{bottom:228.810000px;}
.y122{bottom:229.170000px;}
.y1ae{bottom:230.730000px;}
.y43{bottom:230.790000px;}
.y1fa{bottom:232.410000px;}
.y116{bottom:235.905000px;}
.y14a{bottom:238.140000px;}
.y15a{bottom:238.215000px;}
.y2b{bottom:241.770000px;}
.y13d{bottom:242.970000px;}
.y12d{bottom:245.130000px;}
.y121{bottom:248.070000px;}
.y98{bottom:248.610000px;}
.y1b1{bottom:248.970000px;}
.y42{bottom:250.590000px;}
.y149{bottom:251.385000px;}
.y1ca{bottom:251.850000px;}
.y159{bottom:252.105000px;}
.y1f9{bottom:252.390000px;}
.y7c{bottom:254.550000px;}
.y13c{bottom:257.835000px;}
.yea{bottom:259.590000px;}
.y2a{bottom:261.570000px;}
.ybe{bottom:262.650000px;}
.y231{bottom:265.530000px;}
.y158{bottom:265.965000px;}
.y97{bottom:268.410000px;}
.y41{bottom:270.570000px;}
.y1f8{bottom:272.190000px;}
.yf9{bottom:277.950000px;}
.ye9{bottom:279.390000px;}
.y157{bottom:279.870000px;}
.y29{bottom:281.370000px;}
.y230{bottom:282.810000px;}
.y7b{bottom:289.290000px;}
.y40{bottom:290.370000px;}
.y1f7{bottom:291.990000px;}
.ye8{bottom:299.190000px;}
.y186{bottom:299.910000px;}
.y28{bottom:301.170000px;}
.y96{bottom:303.330000px;}
.yf5{bottom:306.930000px;}
.y7a{bottom:309.090000px;}
.y3f{bottom:310.170000px;}
.y1f6{bottom:311.790000px;}
.y185{bottom:317.730000px;}
.ye7{bottom:318.990000px;}
.y22f{bottom:319.710000px;}
.y27{bottom:320.970000px;}
.y79{bottom:329.115000px;}
.y3e{bottom:330.015000px;}
.y1f5{bottom:331.635000px;}
.y95{bottom:337.575000px;}
.y228{bottom:338.115000px;}
.yf1{bottom:339.555000px;}
.y26{bottom:340.995000px;}
.y78{bottom:348.915000px;}
.y3d{bottom:349.815000px;}
.y184{bottom:351.075000px;}
.y1f4{bottom:351.615000px;}
.ye6{bottom:353.955000px;}
.y22d{bottom:360.075000px;}
.y25{bottom:360.795000px;}
.y94{bottom:367.275000px;}
.y77{bottom:368.715000px;}
.y3c{bottom:369.795000px;}
.y183{bottom:371.055000px;}
.y1f3{bottom:371.415000px;}
.ye5{bottom:373.755000px;}
.y24{bottom:380.595000px;}
.y76{bottom:388.515000px;}
.y3b{bottom:389.595000px;}
.y182{bottom:390.855000px;}
.y1f2{bottom:391.215000px;}
.y227{bottom:393.375000px;}
.ye4{bottom:393.555000px;}
.ybd{bottom:397.695000px;}
.y23{bottom:400.395000px;}
.y75{bottom:408.315000px;}
.y3a{bottom:409.395000px;}
.y181{bottom:410.835000px;}
.y1f1{bottom:411.015000px;}
.ye3{bottom:413.355000px;}
.ybc{bottom:415.515000px;}
.y22{bottom:420.195000px;}
.y74{bottom:428.295000px;}
.y39{bottom:429.195000px;}
.y1f0{bottom:430.815000px;}
.y180{bottom:431.715000px;}
.y166{bottom:432.615000px;}
.y199{bottom:432.720000px;}
.ye2{bottom:433.335000px;}
.y1c9{bottom:434.775000px;}
.y21{bottom:440.175000px;}
.ybb{bottom:448.815000px;}
.y38{bottom:448.995000px;}
.y1ef{bottom:450.795000px;}
.y17f{bottom:451.695000px;}
.ye1{bottom:453.135000px;}
.y1c8{bottom:453.315000px;}
.y20{bottom:459.975000px;}
.y73{bottom:463.035000px;}
.yfd{bottom:465.915000px;}
.yba{bottom:468.795000px;}
.y37{bottom:468.975000px;}
.y1ee{bottom:470.595000px;}
.y17e{bottom:471.675000px;}
.y118{bottom:479.700000px;}
.y72{bottom:482.835000px;}
.y1c7{bottom:486.255000px;}
.ye0{bottom:487.875000px;}
.y36{bottom:488.775000px;}
.y105{bottom:490.755000px;}
.y140{bottom:491.040000px;}
.y17d{bottom:492.555000px;}
.y1f{bottom:494.355000px;}
.y226{bottom:500.475000px;}
.y71{bottom:502.815000px;}
.yb9{bottom:503.535000px;}
.y1ed{bottom:504.975000px;}
.ydf{bottom:507.855000px;}
.y35{bottom:508.575000px;}
.y1e{bottom:512.175000px;}
.y17c{bottom:512.355000px;}
.y225{bottom:517.575000px;}
.y70{bottom:522.615000px;}
.yb8{bottom:523.335000px;}
.yde{bottom:527.655000px;}
.y34{bottom:528.375000px;}
.y1d{bottom:529.455000px;}
.y17b{bottom:532.335000px;}
.y224{bottom:536.115000px;}
.y1ec{bottom:540.255000px;}
.y6f{bottom:542.415000px;}
.yb7{bottom:543.315000px;}
.y1c{bottom:546.735000px;}
.ydd{bottom:547.455000px;}
.y33{bottom:548.175000px;}
.y17a{bottom:552.135000px;}
.y223{bottom:554.475000px;}
.y1eb{bottom:560.055000px;}
.y6e{bottom:562.215000px;}
.yb6{bottom:563.115000px;}
.y1b{bottom:564.375000px;}
.ydc{bottom:567.255000px;}
.y32{bottom:568.155000px;}
.y179{bottom:571.935000px;}
.y21c{bottom:573.015000px;}
.y93{bottom:576.615000px;}
.y1ea{bottom:579.855000px;}
.y6d{bottom:582.015000px;}
.yb5{bottom:582.915000px;}
.y1a{bottom:585.075000px;}
.ydb{bottom:587.055000px;}
.y31{bottom:587.955000px;}
.y178{bottom:591.735000px;}
.y222{bottom:594.645000px;}
.y92{bottom:598.605000px;}
.y1e9{bottom:599.865000px;}
.y6c{bottom:602.025000px;}
.yb4{bottom:602.745000px;}
.yda{bottom:607.065000px;}
.y177{bottom:611.565000px;}
.y91{bottom:618.405000px;}
.y1e8{bottom:619.665000px;}
.y6b{bottom:621.825000px;}
.y19{bottom:622.725000px;}
.yd9{bottom:626.865000px;}
.y21b{bottom:627.225000px;}
.y176{bottom:631.545000px;}
.yb3{bottom:637.665000px;}
.yd8{bottom:646.665000px;}
.y175{bottom:651.345000px;}
.y90{bottom:652.605000px;}
.y1e7{bottom:654.045000px;}
.y6a{bottom:656.205000px;}
.yb2{bottom:657.465000px;}
.y18{bottom:657.645000px;}
.yd7{bottom:666.465000px;}
.y8f{bottom:670.605000px;}
.y1e6{bottom:671.865000px;}
.y1c6{bottom:676.365000px;}
.y17{bottom:677.445000px;}
.y174{bottom:686.085000px;}
.yd6{bottom:686.265000px;}
.y165{bottom:689.505000px;}
.y188{bottom:689.580000px;}
.y1e5{bottom:690.765000px;}
.y69{bottom:691.485000px;}
.yb1{bottom:692.205000px;}
.y1c5{bottom:694.545000px;}
.y16{bottom:697.245000px;}
.y8e{bottom:703.905000px;}
.y173{bottom:705.885000px;}
.yd5{bottom:706.245000px;}
.y1e4{bottom:709.845000px;}
.y68{bottom:711.285000px;}
.yb0{bottom:712.185000px;}
.y15{bottom:717.045000px;}
.y172{bottom:725.865000px;}
.y1c4{bottom:728.025000px;}
.y1e3{bottom:728.745000px;}
.y67{bottom:731.085000px;}
.yaf{bottom:732.165000px;}
.y14{bottom:737.565000px;}
.yd4{bottom:740.985000px;}
.y21a{bottom:742.065000px;}
.y171{bottom:745.665000px;}
.y1e2{bottom:747.825000px;}
.y66{bottom:750.885000px;}
.yae{bottom:753.045000px;}
.y13{bottom:758.805000px;}
.y219{bottom:759.345000px;}
.y1e1{bottom:766.725000px;}
.y104{bottom:770.505000px;}
.y12f{bottom:770.760000px;}
.y65{bottom:770.865000px;}
.yad{bottom:773.205000px;}
.yfc{bottom:773.925000px;}
.y108{bottom:774.000000px;}
.yd3{bottom:775.545000px;}
.y218{bottom:778.425000px;}
.y12{bottom:778.605000px;}
.y170{bottom:780.405000px;}
.y1e0{bottom:784.005000px;}
.y64{bottom:790.665000px;}
.yac{bottom:794.085000px;}
.y211{bottom:797.505000px;}
.y11{bottom:798.405000px;}
.y1df{bottom:802.905000px;}
.y63{bottom:810.465000px;}
.yd2{bottom:810.645000px;}
.yab{bottom:813.885000px;}
.y16f{bottom:815.325000px;}
.y217{bottom:818.205000px;}
.y10{bottom:818.385000px;}
.y1de{bottom:821.985000px;}
.y62{bottom:830.265000px;}
.yd1{bottom:830.445000px;}
.yaa{bottom:833.865000px;}
.y16e{bottom:835.125000px;}
.y1dd{bottom:840.885000px;}
.y61{bottom:850.065000px;}
.yd0{bottom:850.425000px;}
.y210{bottom:850.785000px;}
.yf{bottom:852.765000px;}
.y16d{bottom:854.925000px;}
.y1dc{bottom:859.965000px;}
.ya9{bottom:869.910000px;}
.y60{bottom:870.090000px;}
.ycf{bottom:870.270000px;}
.y16c{bottom:874.950000px;}
.y1db{bottom:878.910000px;}
.ye{bottom:888.450000px;}
.ya8{bottom:889.710000px;}
.y5f{bottom:889.890000px;}
.yce{bottom:890.070000px;}
.y1da{bottom:899.070000px;}
.ya7{bottom:909.510000px;}
.y5e{bottom:909.690000px;}
.ycd{bottom:909.870000px;}
.y1d9{bottom:916.350000px;}
.y8d{bottom:923.370000px;}
.yd{bottom:924.090000px;}
.y1c3{bottom:927.690000px;}
.y5d{bottom:929.490000px;}
.ycc{bottom:929.670000px;}
.y1d8{bottom:935.430000px;}
.yc{bottom:941.550000px;}
.y8c{bottom:943.170000px;}
.y164{bottom:948.030000px;}
.y5c{bottom:949.290000px;}
.y1d7{bottom:954.330000px;}
.yb{bottom:958.830000px;}
.y1c2{bottom:960.270000px;}
.y8b{bottom:963.150000px;}
.yc5{bottom:967.110000px;}
.yc8{bottom:967.290000px;}
.y163{bottom:967.830000px;}
.y16b{bottom:969.270000px;}
.ya6{bottom:969.810000px;}
.ycb{bottom:971.790000px;}
.y1d6{bottom:973.230000px;}
.yc9{bottom:974.130000px;}
.y20f{bottom:974.310000px;}
.ya{bottom:976.110000px;}
.y8a{bottom:982.950000px;}
.yca{bottom:983.310000px;}
.y5b{bottom:984.210000px;}
.y162{bottom:987.810000px;}
.y16a{bottom:989.070000px;}
.ya5{bottom:990.870000px;}
.y20e{bottom:991.590000px;}
.y1d5{bottom:992.310000px;}
.y9{bottom:993.210000px;}
.yc7{bottom:993.390000px;}
.yc6{bottom:994.830000px;}
.y89{bottom:1002.750000px;}
.y5a{bottom:1004.010000px;}
.y161{bottom:1007.610000px;}
.y20b{bottom:1010.670000px;}
.ya4{bottom:1011.210000px;}
.y8{bottom:1017.330000px;}
.y88{bottom:1022.550000px;}
.y59{bottom:1023.810000px;}
.y160{bottom:1027.410000px;}
.y7{bottom:1028.130000px;}
.y203{bottom:1029.930000px;}
.y1d4{bottom:1030.290000px;}
.y87{bottom:1042.350000px;}
.y58{bottom:1043.790000px;}
.ya3{bottom:1045.950000px;}
.y6{bottom:1047.030000px;}
.y15f{bottom:1047.210000px;}
.y1d3{bottom:1049.190000px;}
.y209{bottom:1050.090000px;}
.y86{bottom:1062.330000px;}
.y103{bottom:1063.050000px;}
.y57{bottom:1063.590000px;}
.ya2{bottom:1066.110000px;}
.y5{bottom:1066.650000px;}
.y15e{bottom:1067.010000px;}
.y1d2{bottom:1068.090000px;}
.y85{bottom:1082.130000px;}
.y201{bottom:1082.670000px;}
.y56{bottom:1083.390000px;}
.y15d{bottom:1086.990000px;}
.y1d1{bottom:1087.170000px;}
.ya1{bottom:1087.710000px;}
.y4{bottom:1090.770000px;}
.y102{bottom:1101.210000px;}
.y84{bottom:1101.930000px;}
.y55{bottom:1103.190000px;}
.y15c{bottom:1106.790000px;}
.ya0{bottom:1108.050000px;}
.y3{bottom:1114.890000px;}
.y83{bottom:1121.910000px;}
.y54{bottom:1122.990000px;}
.y1d0{bottom:1124.070000px;}
.y1c1{bottom:1125.330000px;}
.y49{bottom:1134.360000px;}
.y15b{bottom:1141.920000px;}
.y53{bottom:1143.000000px;}
.y1cf{bottom:1143.180000px;}
.y1c0{bottom:1143.900000px;}
.h11{height:13.200074px;}
.h2d{height:17.100000px;}
.h2e{height:17.280000px;}
.h1b{height:18.360000px;}
.h40{height:18.396000px;}
.h3a{height:18.540000px;}
.h36{height:19.080000px;}
.h35{height:19.260000px;}
.h31{height:19.980000px;}
.h34{height:20.160000px;}
.h37{height:20.196000px;}
.h39{height:20.700000px;}
.h3c{height:21.636000px;}
.h3f{height:21.960000px;}
.h2f{height:22.140000px;}
.h2a{height:23.760000px;}
.h1d{height:28.980000px;}
.h33{height:30.960000px;}
.h1c{height:30.996000px;}
.h2c{height:31.140000px;}
.h3e{height:31.860000px;}
.h20{height:33.424102px;}
.h17{height:37.151719px;}
.h6{height:38.158594px;}
.h8{height:41.289258px;}
.h22{height:41.388750px;}
.h2{height:41.405977px;}
.h1f{height:41.493516px;}
.hb{height:43.737568px;}
.h18{height:45.478828px;}
.h3{height:45.895781px;}
.he{height:47.344922px;}
.h2b{height:48.240000px;}
.h12{height:48.281250px;}
.h32{height:51.120000px;}
.h38{height:51.840000px;}
.h3b{height:52.776000px;}
.h10{height:52.998047px;}
.h30{height:53.573906px;}
.h3d{height:53.820000px;}
.h13{height:54.421875px;}
.ha{height:58.621992px;}
.h7{height:58.651172px;}
.hf{height:60.110156px;}
.h9{height:60.226875px;}
.h5{height:65.010937px;}
.h1a{height:65.499609px;}
.h14{height:65.518594px;}
.hc{height:72.562500px;}
.hd{height:76.675500px;}
.h4{height:84.898125px;}
.h19{height:87.944063px;}
.h15{height:87.958828px;}
.h16{height:128.998828px;}
.h27{height:237.420000px;}
.h28{height:239.580000px;}
.h29{height:240.660000px;}
.h1e{height:248.580000px;}
.h23{height:258.840000px;}
.h25{height:261.900000px;}
.h24{height:269.820000px;}
.h21{height:276.660000px;}
.h26{height:290.160000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:20.022000px;}
.w1e{width:42.480000px;}
.w19{width:42.516000px;}
.w18{width:42.660000px;}
.w29{width:45.000000px;}
.w1f{width:45.036000px;}
.w1a{width:46.080000px;}
.w23{width:50.076000px;}
.w25{width:53.136000px;}
.w26{width:54.540000px;}
.wc{width:55.836000px;}
.wd{width:61.200000px;}
.w15{width:61.380000px;}
.we{width:63.900000px;}
.wa{width:66.276000px;}
.wb{width:71.820000px;}
.w4{width:85.176000px;}
.w2{width:88.200000px;}
.w1c{width:95.796000px;}
.w16{width:106.236000px;}
.w21{width:106.416000px;}
.w27{width:113.256000px;}
.w9{width:125.100000px;}
.w8{width:127.656000px;}
.w28{width:129.996000px;}
.w1d{width:130.176000px;}
.w17{width:131.256000px;}
.w22{width:135.216000px;}
.w24{width:138.096000px;}
.w7{width:181.423500px;}
.w5{width:192.814500px;}
.w1b{width:297.795000px;}
.w14{width:298.875000px;}
.w20{width:302.835000px;}
.wf{width:315.000000px;}
.w10{width:318.960000px;}
.w11{width:331.920000px;}
.w12{width:337.500000px;}
.w13{width:345.420000px;}
.w3{width:432.825000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x58{left:8.100000px;}
.x31{left:10.080000px;}
.x2d{left:11.700000px;}
.x32{left:12.780000px;}
.x30{left:14.220000px;}
.x5e{left:15.480000px;}
.x13{left:17.145000px;}
.x5f{left:18.180000px;}
.x2c{left:19.260000px;}
.x2a{left:21.240000px;}
.x2f{left:23.220000px;}
.x3b{left:24.840000px;}
.x5c{left:26.460000px;}
.x36{left:27.645000px;}
.x4f{left:28.770000px;}
.x44{left:31.110000px;}
.x3c{left:32.475000px;}
.x47{left:34.590000px;}
.x53{left:37.665000px;}
.x35{left:39.030000px;}
.x3f{left:40.395000px;}
.x62{left:41.580000px;}
.x3a{left:43.815000px;}
.x55{left:47.520000px;}
.x43{left:50.070000px;}
.x27{left:51.654000px;}
.x37{left:54.435000px;}
.x40{left:55.830000px;}
.x59{left:56.874000px;}
.x3d{left:59.220000px;}
.x45{left:65.490000px;}
.x41{left:67.500000px;}
.x19{left:76.170000px;}
.x15{left:77.445000px;}
.x11{left:80.094000px;}
.x51{left:93.645000px;}
.x60{left:103.494000px;}
.x1a{left:108.000366px;}
.x4d{left:111.930000px;}
.x4e{left:113.115000px;}
.x39{left:115.995000px;}
.x38{left:118.185000px;}
.x26{left:119.556000px;}
.x14{left:121.905000px;}
.x16{left:124.245000px;}
.x3e{left:125.640000px;}
.x2{left:127.656000px;}
.x46{left:128.805000px;}
.x48{left:132.945000px;}
.x42{left:134.310000px;}
.x3{left:139.896000px;}
.x10{left:143.496000px;}
.x49{left:169.410000px;}
.x4a{left:178.950000px;}
.x5d{left:180.750000px;}
.x61{left:182.010000px;}
.x2b{left:191.370000px;}
.xa{left:200.910000px;}
.x6{left:209.550000px;}
.x12{left:231.690000px;}
.x4{left:232.950000px;}
.x28{left:247.215000px;}
.x8{left:278.175000px;}
.xb{left:280.875000px;}
.x5a{left:287.175000px;}
.x63{left:295.275000px;}
.x2e{left:308.415000px;}
.x7{left:310.575000px;}
.x5b{left:329.655000px;}
.x64{left:337.755000px;}
.x29{left:372.315000px;}
.x9{left:376.995000px;}
.x65{left:382.755000px;}
.xc{left:418.605000px;}
.xd{left:421.845000px;}
.x17{left:424.740000px;}
.xe{left:431.385000px;}
.x1b{left:436.478989px;}
.x1{left:443.085000px;}
.x5{left:446.505000px;}
.x4b{left:461.805000px;}
.x4c{left:469.725000px;}
.xf{left:473.145000px;}
.x50{left:474.765000px;}
.x1d{left:479.985000px;}
.x1f{left:496.365000px;}
.x52{left:536.145000px;}
.x20{left:572.010000px;}
.x25{left:597.750000px;}
.x1c{left:603.556183px;}
.x21{left:634.830000px;}
.x54{left:642.390000px;}
.x23{left:644.190000px;}
.x24{left:656.790000px;}
.x18{left:664.530000px;}
.x22{left:673.350000px;}
.x56{left:685.050000px;}
.x57{left:727.560000px;}
.x1e{left:792.720000px;}
.x33{left:804.960000px;}
.x34{left:810.720000px;}
@media print{
.v9{vertical-align:-24.960000pt;}
.va{vertical-align:-19.200000pt;}
.v8{vertical-align:-17.280000pt;}
.v3{vertical-align:-12.800000pt;}
.vc{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:12.800000pt;}
.vb{vertical-align:15.360000pt;}
.v1{vertical-align:18.560000pt;}
.v2{vertical-align:24.320000pt;}
.vd{vertical-align:32.640000pt;}
.v6{vertical-align:34.560000pt;}
.v5{vertical-align:50.560000pt;}
.v7{vertical-align:74.240000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.432533pt;}
.ls35{letter-spacing:-0.409067pt;}
.ls32{letter-spacing:-0.367467pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.224000pt;}
.lsa{letter-spacing:-0.183467pt;}
.ls1c{letter-spacing:-0.094933pt;}
.ls2c{letter-spacing:-0.051733pt;}
.lsb{letter-spacing:-0.047467pt;}
.ls1e{letter-spacing:-0.003733pt;}
.ls2{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.015467pt;}
.ls30{letter-spacing:0.047360pt;}
.ls25{letter-spacing:0.059520pt;}
.ls4{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.097280pt;}
.ls21{letter-spacing:0.133120pt;}
.ls2a{letter-spacing:0.133333pt;}
.ls33{letter-spacing:0.143968pt;}
.ls7{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.183680pt;}
.ls28{letter-spacing:0.198016pt;}
.ls26{letter-spacing:0.199680pt;}
.ls9{letter-spacing:0.230933pt;}
.lsd{letter-spacing:0.257280pt;}
.ls29{letter-spacing:0.302080pt;}
.ls3{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:0.385067pt;}
.ls27{letter-spacing:0.512000pt;}
.ls24{letter-spacing:0.527979pt;}
.ls1d{letter-spacing:0.592000pt;}
.ls19{letter-spacing:0.631040pt;}
.ls31{letter-spacing:0.687360pt;}
.ls5{letter-spacing:0.736000pt;}
.lse{letter-spacing:0.737280pt;}
.ls34{letter-spacing:0.794027pt;}
.ls1{letter-spacing:0.800000pt;}
.ls1b{letter-spacing:0.869333pt;}
.lsf{letter-spacing:1.440000pt;}
.ls1a{letter-spacing:4.000000pt;}
.ls17{letter-spacing:4.640000pt;}
.ls23{letter-spacing:5.920000pt;}
.ls10{letter-spacing:6.560000pt;}
.ls12{letter-spacing:11.727360pt;}
.ls2f{letter-spacing:13.573120pt;}
.ls22{letter-spacing:14.880000pt;}
.ls2d{letter-spacing:15.520000pt;}
.ls18{letter-spacing:16.773120pt;}
.ls15{letter-spacing:20.800000pt;}
.ls1f{letter-spacing:21.280000pt;}
.ls11{letter-spacing:22.752000pt;}
.ls2e{letter-spacing:30.373120pt;}
.ls13{letter-spacing:87.104000pt;}
.ws49{word-spacing:-58.880000pt;}
.ws6{word-spacing:-53.120000pt;}
.ws37{word-spacing:-48.000000pt;}
.wsd{word-spacing:-33.943680pt;}
.ws3{word-spacing:-14.016000pt;}
.wsc{word-spacing:-13.872000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws48{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.440000pt;}
.ws1{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232533pt;}
.wsa{word-spacing:-13.185067pt;}
.ws7{word-spacing:-13.096533pt;}
.ws46{word-spacing:-12.912533pt;}
.ws47{word-spacing:-12.870933pt;}
.ws8{word-spacing:-12.320000pt;}
.ws1a{word-spacing:-12.034048pt;}
.ws1e{word-spacing:-12.005120pt;}
.ws11{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.776000pt;}
.ws2a{word-spacing:-9.690880pt;}
.wsf{word-spacing:-8.655467pt;}
.wsb{word-spacing:-8.640000pt;}
.ws1b{word-spacing:-8.128768pt;}
.ws2d{word-spacing:-8.099840pt;}
.ws4{word-spacing:-6.287467pt;}
.ws5{word-spacing:0.000000pt;}
.ws19{word-spacing:142.819733pt;}
.ws21{word-spacing:143.566400pt;}
.ws14{word-spacing:145.913067pt;}
.ws3a{word-spacing:146.766400pt;}
.ws3f{word-spacing:147.779733pt;}
.ws26{word-spacing:149.433067pt;}
.ws2c{word-spacing:149.593067pt;}
.ws33{word-spacing:150.073067pt;}
.ws18{word-spacing:155.996373pt;}
.ws20{word-spacing:156.743040pt;}
.ws13{word-spacing:159.196373pt;}
.ws39{word-spacing:159.943040pt;}
.ws43{word-spacing:160.103040pt;}
.ws17{word-spacing:160.346453pt;}
.ws3e{word-spacing:161.009707pt;}
.ws1f{word-spacing:161.039787pt;}
.ws25{word-spacing:162.663040pt;}
.ws32{word-spacing:163.303040pt;}
.ws12{word-spacing:163.439787pt;}
.ws38{word-spacing:164.293120pt;}
.ws42{word-spacing:164.346453pt;}
.ws3d{word-spacing:165.253120pt;}
.ws24{word-spacing:166.906453pt;}
.ws2b{word-spacing:167.013120pt;}
.ws31{word-spacing:167.653120pt;}
.ws36{word-spacing:169.198166pt;}
.ws29{word-spacing:170.904832pt;}
.ws30{word-spacing:172.429612pt;}
.ws3c{word-spacing:183.931477pt;}
.ws41{word-spacing:184.198144pt;}
.ws45{word-spacing:185.638144pt;}
.ws23{word-spacing:244.615468pt;}
.ws1d{word-spacing:250.748801pt;}
.ws16{word-spacing:254.215468pt;}
.ws35{word-spacing:262.162134pt;}
.ws28{word-spacing:263.868801pt;}
.ws2f{word-spacing:265.522134pt;}
.ws22{word-spacing:341.309439pt;}
.ws1c{word-spacing:347.442772pt;}
.ws15{word-spacing:350.909439pt;}
.ws3b{word-spacing:353.736106pt;}
.ws40{word-spacing:354.002772pt;}
.ws44{word-spacing:355.442772pt;}
.ws34{word-spacing:358.856106pt;}
.ws27{word-spacing:360.562772pt;}
.ws2e{word-spacing:362.216106pt;}
._27{margin-left:-3.036398pt;}
._23{margin-left:-1.809917pt;}
._0{margin-left:-0.898710pt;}
._1{width:1.062400pt;}
._6{width:1.972292pt;}
._2{width:2.870949pt;}
._9{width:4.568532pt;}
._10{width:5.842138pt;}
._11{width:7.596266pt;}
._7{width:8.924266pt;}
._8{width:9.966841pt;}
._16{width:10.923108pt;}
._15{width:11.812359pt;}
._29{width:12.980283pt;}
._4{width:14.175548pt;}
._3{width:15.245334pt;}
._5{width:16.680426pt;}
._f{width:17.848001pt;}
._e{width:18.751466pt;}
._1b{width:19.973332pt;}
._17{width:21.513600pt;}
._b{width:22.522668pt;}
._c{width:23.745596pt;}
._21{width:25.356779pt;}
._1e{width:26.613864pt;}
._1d{width:27.569068pt;}
._33{width:28.525865pt;}
._24{width:29.587200pt;}
._22{width:31.287468pt;}
._2d{width:32.509865pt;}
._2c{width:33.571734pt;}
._14{width:35.218666pt;}
._1f{width:36.281066pt;}
._28{width:37.343466pt;}
._12{width:38.246347pt;}
._2f{width:39.377191pt;}
._18{width:40.318399pt;}
._25{width:44.698090pt;}
._20{width:45.895946pt;}
._13{width:46.851681pt;}
._19{width:48.073547pt;}
._1a{width:48.976481pt;}
._1c{width:50.145546pt;}
._a{width:52.854347pt;}
._d{width:55.935413pt;}
._35{width:62.044213pt;}
._36{width:73.677281pt;}
._2b{width:132.534294pt;}
._2a{width:134.183351pt;}
._31{width:181.601493pt;}
._30{width:184.748160pt;}
._34{width:185.708160pt;}
._32{width:188.214827pt;}
._2e{width:298.638080pt;}
._26{width:964.106667pt;}
.fs8{font-size:26.880000pt;}
.fs4{font-size:34.560000pt;}
.fsc{font-size:35.840000pt;}
.fse{font-size:35.968000pt;}
.fsb{font-size:37.120000pt;}
.fs9{font-size:42.666667pt;}
.fs7{font-size:42.880000pt;}
.fsa{font-size:45.440000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fsd{font-size:53.248000pt;}
.fs5{font-size:55.992837pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:0.160000pt;}
.y52{bottom:2.245333pt;}
.yf8{bottom:2.560000pt;}
.y1ba{bottom:2.720000pt;}
.yf4{bottom:2.880000pt;}
.y1bc{bottom:3.040000pt;}
.yfb{bottom:3.200000pt;}
.y1b7{bottom:3.360000pt;}
.yf2{bottom:3.520000pt;}
.yf3{bottom:3.680000pt;}
.y20c{bottom:3.840000pt;}
.y202{bottom:4.000000pt;}
.y20d{bottom:4.160000pt;}
.y20a{bottom:4.320000pt;}
.y208{bottom:4.640000pt;}
.y216{bottom:4.960000pt;}
.y1be{bottom:5.120000pt;}
.y221{bottom:5.280000pt;}
.y1a1{bottom:5.373333pt;}
.y13b{bottom:5.413333pt;}
.y1bf{bottom:5.440000pt;}
.y148{bottom:5.760000pt;}
.y1b2{bottom:5.920000pt;}
.y195{bottom:6.173333pt;}
.y115{bottom:6.560000pt;}
.y50{bottom:8.160000pt;}
.yf6{bottom:9.440000pt;}
.y4a{bottom:10.240000pt;}
.y205{bottom:11.520000pt;}
.y213{bottom:11.840000pt;}
.y21e{bottom:12.160000pt;}
.y22a{bottom:12.640000pt;}
.yfa{bottom:15.520000pt;}
.yf7{bottom:16.320000pt;}
.y1b9{bottom:16.480000pt;}
.y22e{bottom:16.640000pt;}
.y1b6{bottom:17.120000pt;}
.y120{bottom:17.533333pt;}
.y4e{bottom:18.080000pt;}
.y139{bottom:18.240000pt;}
.y207{bottom:18.400000pt;}
.y113{bottom:18.493333pt;}
.y215{bottom:18.720000pt;}
.y220{bottom:19.066667pt;}
.y146{bottom:19.266667pt;}
.y22c{bottom:19.680000pt;}
.y12c{bottom:19.906667pt;}
.y1ac{bottom:19.973333pt;}
.y19f{bottom:22.080000pt;}
.y193{bottom:23.040000pt;}
.y1b4{bottom:24.000000pt;}
.y204{bottom:25.280000pt;}
.y212{bottom:25.600000pt;}
.y21d{bottom:26.106667pt;}
.y229{bottom:26.560000pt;}
.y1b5{bottom:30.880000pt;}
.y4d{bottom:31.680000pt;}
.y206{bottom:32.160000pt;}
.y11e{bottom:32.320000pt;}
.y214{bottom:32.480000pt;}
.y12a{bottom:32.733333pt;}
.y21f{bottom:32.986667pt;}
.y22b{bottom:33.440000pt;}
.y156{bottom:33.533333pt;}
.y130{bottom:35.586667pt;}
.y109{bottom:35.840000pt;}
.y51{bottom:36.266764pt;}
.y141{bottom:36.613333pt;}
.y1a6{bottom:37.306667pt;}
.y19a{bottom:39.426667pt;}
.y189{bottom:40.386667pt;}
.y154{bottom:45.760000pt;}
.y4c{bottom:46.400000pt;}
.y119{bottom:49.666667pt;}
.y124{bottom:50.080000pt;}
.y2{bottom:51.200000pt;}
.y10a{bottom:51.226667pt;}
.y18a{bottom:54.333333pt;}
.y1ad{bottom:57.373333pt;}
.y4b{bottom:58.560000pt;}
.y14e{bottom:63.066667pt;}
.y1a7{bottom:63.933333pt;}
.y1a0{bottom:64.800000pt;}
.y10b{bottom:66.626667pt;}
.y131{bottom:66.813333pt;}
.y18b{bottom:68.320000pt;}
.y1{bottom:68.352000pt;}
.y12b{bottom:68.413333pt;}
.y19b{bottom:70.906667pt;}
.y142{bottom:71.293333pt;}
.y194{bottom:71.613333pt;}
.y13a{bottom:72.706667pt;}
.y114{bottom:73.506667pt;}
.y147{bottom:73.573333pt;}
.y125{bottom:76.826667pt;}
.y10c{bottom:82.013333pt;}
.y18c{bottom:82.266667pt;}
.y11f{bottom:82.426667pt;}
.y132{bottom:82.466667pt;}
.y155{bottom:83.013333pt;}
.y11a{bottom:84.000000pt;}
.y14f{bottom:90.240000pt;}
.y1a8{bottom:90.560000pt;}
.y18d{bottom:96.253333pt;}
.y10d{bottom:97.440000pt;}
.y9f{bottom:97.632000pt;}
.y169{bottom:97.792000pt;}
.y133{bottom:98.080000pt;}
.yf0{bottom:98.272000pt;}
.y200{bottom:100.832000pt;}
.yc4{bottom:101.152000pt;}
.y19c{bottom:102.400000pt;}
.y126{bottom:103.586667pt;}
.y48{bottom:103.712000pt;}
.y101{bottom:103.872000pt;}
.y107{bottom:104.352000pt;}
.y143{bottom:105.986667pt;}
.y82{bottom:107.072000pt;}
.y18e{bottom:110.213333pt;}
.y10e{bottom:112.826667pt;}
.y134{bottom:113.693333pt;}
.y187{bottom:114.592000pt;}
.y168{bottom:114.912000pt;}
.y9e{bottom:115.232000pt;}
.yef{bottom:115.872000pt;}
.y1a9{bottom:117.213333pt;}
.y150{bottom:117.373333pt;}
.y11b{bottom:118.306667pt;}
.y1ff{bottom:118.432000pt;}
.yc3{bottom:118.752000pt;}
.y47{bottom:121.312000pt;}
.y18f{bottom:124.160000pt;}
.y81{bottom:124.672000pt;}
.y30{bottom:126.752000pt;}
.y10f{bottom:128.226667pt;}
.y1ce{bottom:128.832000pt;}
.y135{bottom:129.306667pt;}
.y127{bottom:130.333333pt;}
.y9d{bottom:132.832000pt;}
.yee{bottom:133.466667pt;}
.y19d{bottom:133.920000pt;}
.y100{bottom:134.906667pt;}
.y1fe{bottom:136.186667pt;}
.yc2{bottom:136.346667pt;}
.y190{bottom:138.146667pt;}
.y144{bottom:140.666667pt;}
.y1bd{bottom:142.106667pt;}
.y80{bottom:142.426667pt;}
.y110{bottom:143.613333pt;}
.y1aa{bottom:143.840000pt;}
.y167{bottom:143.866667pt;}
.y2f{bottom:144.346667pt;}
.y151{bottom:144.506667pt;}
.y136{bottom:144.960000pt;}
.y1cd{bottom:145.626667pt;}
.y9c{bottom:150.426667pt;}
.yed{bottom:151.066667pt;}
.y106{bottom:151.226667pt;}
.yff{bottom:152.026667pt;}
.y191{bottom:152.093333pt;}
.y46{bottom:152.346667pt;}
.y11c{bottom:152.640000pt;}
.y1fd{bottom:153.786667pt;}
.yc1{bottom:153.946667pt;}
.y1a5{bottom:155.200000pt;}
.y128{bottom:157.093333pt;}
.y111{bottom:159.013333pt;}
.y7f{bottom:160.026667pt;}
.y137{bottom:160.573333pt;}
.y1bb{bottom:161.786667pt;}
.y2e{bottom:161.946667pt;}
.y1cc{bottom:162.586667pt;}
.y14d{bottom:162.720000pt;}
.y19e{bottom:165.413333pt;}
.y192{bottom:166.053333pt;}
.y9b{bottom:168.026667pt;}
.yec{bottom:168.826667pt;}
.y45{bottom:169.946667pt;}
.y1ab{bottom:170.466667pt;}
.y1fc{bottom:171.386667pt;}
.yc0{bottom:171.546667pt;}
.y152{bottom:171.680000pt;}
.y112{bottom:174.400000pt;}
.y145{bottom:175.386667pt;}
.y138{bottom:176.186667pt;}
.y1a4{bottom:176.986667pt;}
.y198{bottom:177.093333pt;}
.y1b3{bottom:177.146667pt;}
.y7e{bottom:177.626667pt;}
.yfe{bottom:178.426667pt;}
.y123{bottom:178.720000pt;}
.y2d{bottom:179.546667pt;}
.y1b0{bottom:182.080000pt;}
.y129{bottom:183.840000pt;}
.y9a{bottom:185.786667pt;}
.y11d{bottom:186.973333pt;}
.y44{bottom:187.546667pt;}
.y14c{bottom:188.133333pt;}
.y1fb{bottom:188.986667pt;}
.y197{bottom:189.373333pt;}
.y13f{bottom:189.533333pt;}
.y1a3{bottom:189.760000pt;}
.y1b8{bottom:192.346667pt;}
.y1cb{bottom:192.986667pt;}
.y117{bottom:193.346667pt;}
.y1af{bottom:193.600000pt;}
.y7d{bottom:195.226667pt;}
.y2c{bottom:197.146667pt;}
.y153{bottom:198.813333pt;}
.yeb{bottom:199.706667pt;}
.y12e{bottom:199.813333pt;}
.y14b{bottom:199.906667pt;}
.y196{bottom:201.693333pt;}
.y1a2{bottom:202.560000pt;}
.ybf{bottom:202.586667pt;}
.y13e{bottom:202.746667pt;}
.y99{bottom:203.386667pt;}
.y122{bottom:203.706667pt;}
.y1ae{bottom:205.093333pt;}
.y43{bottom:205.146667pt;}
.y1fa{bottom:206.586667pt;}
.y116{bottom:209.693333pt;}
.y14a{bottom:211.680000pt;}
.y15a{bottom:211.746667pt;}
.y2b{bottom:214.906667pt;}
.y13d{bottom:215.973333pt;}
.y12d{bottom:217.893333pt;}
.y121{bottom:220.506667pt;}
.y98{bottom:220.986667pt;}
.y1b1{bottom:221.306667pt;}
.y42{bottom:222.746667pt;}
.y149{bottom:223.453333pt;}
.y1ca{bottom:223.866667pt;}
.y159{bottom:224.093333pt;}
.y1f9{bottom:224.346667pt;}
.y7c{bottom:226.266667pt;}
.y13c{bottom:229.186667pt;}
.yea{bottom:230.746667pt;}
.y2a{bottom:232.506667pt;}
.ybe{bottom:233.466667pt;}
.y231{bottom:236.026667pt;}
.y158{bottom:236.413333pt;}
.y97{bottom:238.586667pt;}
.y41{bottom:240.506667pt;}
.y1f8{bottom:241.946667pt;}
.yf9{bottom:247.066667pt;}
.ye9{bottom:248.346667pt;}
.y157{bottom:248.773333pt;}
.y29{bottom:250.106667pt;}
.y230{bottom:251.386667pt;}
.y7b{bottom:257.146667pt;}
.y40{bottom:258.106667pt;}
.y1f7{bottom:259.546667pt;}
.ye8{bottom:265.946667pt;}
.y186{bottom:266.586667pt;}
.y28{bottom:267.706667pt;}
.y96{bottom:269.626667pt;}
.yf5{bottom:272.826667pt;}
.y7a{bottom:274.746667pt;}
.y3f{bottom:275.706667pt;}
.y1f6{bottom:277.146667pt;}
.y185{bottom:282.426667pt;}
.ye7{bottom:283.546667pt;}
.y22f{bottom:284.186667pt;}
.y27{bottom:285.306667pt;}
.y79{bottom:292.546667pt;}
.y3e{bottom:293.346667pt;}
.y1f5{bottom:294.786667pt;}
.y95{bottom:300.066667pt;}
.y228{bottom:300.546667pt;}
.yf1{bottom:301.826667pt;}
.y26{bottom:303.106667pt;}
.y78{bottom:310.146667pt;}
.y3d{bottom:310.946667pt;}
.y184{bottom:312.066667pt;}
.y1f4{bottom:312.546667pt;}
.ye6{bottom:314.626667pt;}
.y22d{bottom:320.066667pt;}
.y25{bottom:320.706667pt;}
.y94{bottom:326.466667pt;}
.y77{bottom:327.746667pt;}
.y3c{bottom:328.706667pt;}
.y183{bottom:329.826667pt;}
.y1f3{bottom:330.146667pt;}
.ye5{bottom:332.226667pt;}
.y24{bottom:338.306667pt;}
.y76{bottom:345.346667pt;}
.y3b{bottom:346.306667pt;}
.y182{bottom:347.426667pt;}
.y1f2{bottom:347.746667pt;}
.y227{bottom:349.666667pt;}
.ye4{bottom:349.826667pt;}
.ybd{bottom:353.506667pt;}
.y23{bottom:355.906667pt;}
.y75{bottom:362.946667pt;}
.y3a{bottom:363.906667pt;}
.y181{bottom:365.186667pt;}
.y1f1{bottom:365.346667pt;}
.ye3{bottom:367.426667pt;}
.ybc{bottom:369.346667pt;}
.y22{bottom:373.506667pt;}
.y74{bottom:380.706667pt;}
.y39{bottom:381.506667pt;}
.y1f0{bottom:382.946667pt;}
.y180{bottom:383.746667pt;}
.y166{bottom:384.546667pt;}
.y199{bottom:384.640000pt;}
.ye2{bottom:385.186667pt;}
.y1c9{bottom:386.466667pt;}
.y21{bottom:391.266667pt;}
.ybb{bottom:398.946667pt;}
.y38{bottom:399.106667pt;}
.y1ef{bottom:400.706667pt;}
.y17f{bottom:401.506667pt;}
.ye1{bottom:402.786667pt;}
.y1c8{bottom:402.946667pt;}
.y20{bottom:408.866667pt;}
.y73{bottom:411.586667pt;}
.yfd{bottom:414.146667pt;}
.yba{bottom:416.706667pt;}
.y37{bottom:416.866667pt;}
.y1ee{bottom:418.306667pt;}
.y17e{bottom:419.266667pt;}
.y118{bottom:426.400000pt;}
.y72{bottom:429.186667pt;}
.y1c7{bottom:432.226667pt;}
.ye0{bottom:433.666667pt;}
.y36{bottom:434.466667pt;}
.y105{bottom:436.226667pt;}
.y140{bottom:436.480000pt;}
.y17d{bottom:437.826667pt;}
.y1f{bottom:439.426667pt;}
.y226{bottom:444.866667pt;}
.y71{bottom:446.946667pt;}
.yb9{bottom:447.586667pt;}
.y1ed{bottom:448.866667pt;}
.ydf{bottom:451.426667pt;}
.y35{bottom:452.066667pt;}
.y1e{bottom:455.266667pt;}
.y17c{bottom:455.426667pt;}
.y225{bottom:460.066667pt;}
.y70{bottom:464.546667pt;}
.yb8{bottom:465.186667pt;}
.yde{bottom:469.026667pt;}
.y34{bottom:469.666667pt;}
.y1d{bottom:470.626667pt;}
.y17b{bottom:473.186667pt;}
.y224{bottom:476.546667pt;}
.y1ec{bottom:480.226667pt;}
.y6f{bottom:482.146667pt;}
.yb7{bottom:482.946667pt;}
.y1c{bottom:485.986667pt;}
.ydd{bottom:486.626667pt;}
.y33{bottom:487.266667pt;}
.y17a{bottom:490.786667pt;}
.y223{bottom:492.866667pt;}
.y1eb{bottom:497.826667pt;}
.y6e{bottom:499.746667pt;}
.yb6{bottom:500.546667pt;}
.y1b{bottom:501.666667pt;}
.ydc{bottom:504.226667pt;}
.y32{bottom:505.026667pt;}
.y179{bottom:508.386667pt;}
.y21c{bottom:509.346667pt;}
.y93{bottom:512.546667pt;}
.y1ea{bottom:515.426667pt;}
.y6d{bottom:517.346667pt;}
.yb5{bottom:518.146667pt;}
.y1a{bottom:520.066667pt;}
.ydb{bottom:521.826667pt;}
.y31{bottom:522.626667pt;}
.y178{bottom:525.986667pt;}
.y222{bottom:528.573333pt;}
.y92{bottom:532.093333pt;}
.y1e9{bottom:533.213333pt;}
.y6c{bottom:535.133333pt;}
.yb4{bottom:535.773333pt;}
.yda{bottom:539.613333pt;}
.y177{bottom:543.613333pt;}
.y91{bottom:549.693333pt;}
.y1e8{bottom:550.813333pt;}
.y6b{bottom:552.733333pt;}
.y19{bottom:553.533333pt;}
.yd9{bottom:557.213333pt;}
.y21b{bottom:557.533333pt;}
.y176{bottom:561.373333pt;}
.yb3{bottom:566.813333pt;}
.yd8{bottom:574.813333pt;}
.y175{bottom:578.973333pt;}
.y90{bottom:580.093333pt;}
.y1e7{bottom:581.373333pt;}
.y6a{bottom:583.293333pt;}
.yb2{bottom:584.413333pt;}
.y18{bottom:584.573333pt;}
.yd7{bottom:592.413333pt;}
.y8f{bottom:596.093333pt;}
.y1e6{bottom:597.213333pt;}
.y1c6{bottom:601.213333pt;}
.y17{bottom:602.173333pt;}
.y174{bottom:609.853333pt;}
.yd6{bottom:610.013333pt;}
.y165{bottom:612.893333pt;}
.y188{bottom:612.960000pt;}
.y1e5{bottom:614.013333pt;}
.y69{bottom:614.653333pt;}
.yb1{bottom:615.293333pt;}
.y1c5{bottom:617.373333pt;}
.y16{bottom:619.773333pt;}
.y8e{bottom:625.693333pt;}
.y173{bottom:627.453333pt;}
.yd5{bottom:627.773333pt;}
.y1e4{bottom:630.973333pt;}
.y68{bottom:632.253333pt;}
.yb0{bottom:633.053333pt;}
.y15{bottom:637.373333pt;}
.y172{bottom:645.213333pt;}
.y1c4{bottom:647.133333pt;}
.y1e3{bottom:647.773333pt;}
.y67{bottom:649.853333pt;}
.yaf{bottom:650.813333pt;}
.y14{bottom:655.613333pt;}
.yd4{bottom:658.653333pt;}
.y21a{bottom:659.613333pt;}
.y171{bottom:662.813333pt;}
.y1e2{bottom:664.733333pt;}
.y66{bottom:667.453333pt;}
.yae{bottom:669.373333pt;}
.y13{bottom:674.493333pt;}
.y219{bottom:674.973333pt;}
.y1e1{bottom:681.533333pt;}
.y104{bottom:684.893333pt;}
.y12f{bottom:685.120000pt;}
.y65{bottom:685.213333pt;}
.yad{bottom:687.293333pt;}
.yfc{bottom:687.933333pt;}
.y108{bottom:688.000000pt;}
.yd3{bottom:689.373333pt;}
.y218{bottom:691.933333pt;}
.y12{bottom:692.093333pt;}
.y170{bottom:693.693333pt;}
.y1e0{bottom:696.893333pt;}
.y64{bottom:702.813333pt;}
.yac{bottom:705.853333pt;}
.y211{bottom:708.893333pt;}
.y11{bottom:709.693333pt;}
.y1df{bottom:713.693333pt;}
.y63{bottom:720.413333pt;}
.yd2{bottom:720.573333pt;}
.yab{bottom:723.453333pt;}
.y16f{bottom:724.733333pt;}
.y217{bottom:727.293333pt;}
.y10{bottom:727.453333pt;}
.y1de{bottom:730.653333pt;}
.y62{bottom:738.013333pt;}
.yd1{bottom:738.173333pt;}
.yaa{bottom:741.213333pt;}
.y16e{bottom:742.333333pt;}
.y1dd{bottom:747.453333pt;}
.y61{bottom:755.613333pt;}
.yd0{bottom:755.933333pt;}
.y210{bottom:756.253333pt;}
.yf{bottom:758.013333pt;}
.y16d{bottom:759.933333pt;}
.y1dc{bottom:764.413333pt;}
.ya9{bottom:773.253333pt;}
.y60{bottom:773.413333pt;}
.ycf{bottom:773.573333pt;}
.y16c{bottom:777.733333pt;}
.y1db{bottom:781.253333pt;}
.ye{bottom:789.733333pt;}
.ya8{bottom:790.853333pt;}
.y5f{bottom:791.013333pt;}
.yce{bottom:791.173333pt;}
.y1da{bottom:799.173333pt;}
.ya7{bottom:808.453333pt;}
.y5e{bottom:808.613333pt;}
.ycd{bottom:808.773333pt;}
.y1d9{bottom:814.533333pt;}
.y8d{bottom:820.773333pt;}
.yd{bottom:821.413333pt;}
.y1c3{bottom:824.613333pt;}
.y5d{bottom:826.213333pt;}
.ycc{bottom:826.373333pt;}
.y1d8{bottom:831.493333pt;}
.yc{bottom:836.933333pt;}
.y8c{bottom:838.373333pt;}
.y164{bottom:842.693333pt;}
.y5c{bottom:843.813333pt;}
.y1d7{bottom:848.293333pt;}
.yb{bottom:852.293333pt;}
.y1c2{bottom:853.573333pt;}
.y8b{bottom:856.133333pt;}
.yc5{bottom:859.653333pt;}
.yc8{bottom:859.813333pt;}
.y163{bottom:860.293333pt;}
.y16b{bottom:861.573333pt;}
.ya6{bottom:862.053333pt;}
.ycb{bottom:863.813333pt;}
.y1d6{bottom:865.093333pt;}
.yc9{bottom:865.893333pt;}
.y20f{bottom:866.053333pt;}
.ya{bottom:867.653333pt;}
.y8a{bottom:873.733333pt;}
.yca{bottom:874.053333pt;}
.y5b{bottom:874.853333pt;}
.y162{bottom:878.053333pt;}
.y16a{bottom:879.173333pt;}
.ya5{bottom:880.773333pt;}
.y20e{bottom:881.413333pt;}
.y1d5{bottom:882.053333pt;}
.y9{bottom:882.853333pt;}
.yc7{bottom:883.013333pt;}
.yc6{bottom:884.293333pt;}
.y89{bottom:891.333333pt;}
.y5a{bottom:892.453333pt;}
.y161{bottom:895.653333pt;}
.y20b{bottom:898.373333pt;}
.ya4{bottom:898.853333pt;}
.y8{bottom:904.293333pt;}
.y88{bottom:908.933333pt;}
.y59{bottom:910.053333pt;}
.y160{bottom:913.253333pt;}
.y7{bottom:913.893333pt;}
.y203{bottom:915.493333pt;}
.y1d4{bottom:915.813333pt;}
.y87{bottom:926.533333pt;}
.y58{bottom:927.813333pt;}
.ya3{bottom:929.733333pt;}
.y6{bottom:930.693333pt;}
.y15f{bottom:930.853333pt;}
.y1d3{bottom:932.613333pt;}
.y209{bottom:933.413333pt;}
.y86{bottom:944.293333pt;}
.y103{bottom:944.933333pt;}
.y57{bottom:945.413333pt;}
.ya2{bottom:947.653333pt;}
.y5{bottom:948.133333pt;}
.y15e{bottom:948.453333pt;}
.y1d2{bottom:949.413333pt;}
.y85{bottom:961.893333pt;}
.y201{bottom:962.373333pt;}
.y56{bottom:963.013333pt;}
.y15d{bottom:966.213333pt;}
.y1d1{bottom:966.373333pt;}
.ya1{bottom:966.853333pt;}
.y4{bottom:969.573333pt;}
.y102{bottom:978.853333pt;}
.y84{bottom:979.493333pt;}
.y55{bottom:980.613333pt;}
.y15c{bottom:983.813333pt;}
.ya0{bottom:984.933333pt;}
.y3{bottom:991.013333pt;}
.y83{bottom:997.253333pt;}
.y54{bottom:998.213333pt;}
.y1d0{bottom:999.173333pt;}
.y1c1{bottom:1000.293333pt;}
.y49{bottom:1008.320000pt;}
.y15b{bottom:1015.040000pt;}
.y53{bottom:1016.000000pt;}
.y1cf{bottom:1016.160000pt;}
.y1c0{bottom:1016.800000pt;}
.h11{height:11.733399pt;}
.h2d{height:15.200000pt;}
.h2e{height:15.360000pt;}
.h1b{height:16.320000pt;}
.h40{height:16.352000pt;}
.h3a{height:16.480000pt;}
.h36{height:16.960000pt;}
.h35{height:17.120000pt;}
.h31{height:17.760000pt;}
.h34{height:17.920000pt;}
.h37{height:17.952000pt;}
.h39{height:18.400000pt;}
.h3c{height:19.232000pt;}
.h3f{height:19.520000pt;}
.h2f{height:19.680000pt;}
.h2a{height:21.120000pt;}
.h1d{height:25.760000pt;}
.h33{height:27.520000pt;}
.h1c{height:27.552000pt;}
.h2c{height:27.680000pt;}
.h3e{height:28.320000pt;}
.h20{height:29.710312pt;}
.h17{height:33.023750pt;}
.h6{height:33.918750pt;}
.h8{height:36.701563pt;}
.h22{height:36.790000pt;}
.h2{height:36.805312pt;}
.h1f{height:36.883125pt;}
.hb{height:38.877839pt;}
.h18{height:40.425625pt;}
.h3{height:40.796250pt;}
.he{height:42.084375pt;}
.h2b{height:42.880000pt;}
.h12{height:42.916667pt;}
.h32{height:45.440000pt;}
.h38{height:46.080000pt;}
.h3b{height:46.912000pt;}
.h10{height:47.109375pt;}
.h30{height:47.621250pt;}
.h3d{height:47.840000pt;}
.h13{height:48.375000pt;}
.ha{height:52.108438pt;}
.h7{height:52.134375pt;}
.hf{height:53.431250pt;}
.h9{height:53.535000pt;}
.h5{height:57.787500pt;}
.h1a{height:58.221875pt;}
.h14{height:58.238750pt;}
.hc{height:64.500000pt;}
.hd{height:68.156000pt;}
.h4{height:75.465000pt;}
.h19{height:78.172500pt;}
.h15{height:78.185625pt;}
.h16{height:114.665625pt;}
.h27{height:211.040000pt;}
.h28{height:212.960000pt;}
.h29{height:213.920000pt;}
.h1e{height:220.960000pt;}
.h23{height:230.080000pt;}
.h25{height:232.800000pt;}
.h24{height:239.840000pt;}
.h21{height:245.920000pt;}
.h26{height:257.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:17.797333pt;}
.w1e{width:37.760000pt;}
.w19{width:37.792000pt;}
.w18{width:37.920000pt;}
.w29{width:40.000000pt;}
.w1f{width:40.032000pt;}
.w1a{width:40.960000pt;}
.w23{width:44.512000pt;}
.w25{width:47.232000pt;}
.w26{width:48.480000pt;}
.wc{width:49.632000pt;}
.wd{width:54.400000pt;}
.w15{width:54.560000pt;}
.we{width:56.800000pt;}
.wa{width:58.912000pt;}
.wb{width:63.840000pt;}
.w4{width:75.712000pt;}
.w2{width:78.400000pt;}
.w1c{width:85.152000pt;}
.w16{width:94.432000pt;}
.w21{width:94.592000pt;}
.w27{width:100.672000pt;}
.w9{width:111.200000pt;}
.w8{width:113.472000pt;}
.w28{width:115.552000pt;}
.w1d{width:115.712000pt;}
.w17{width:116.672000pt;}
.w22{width:120.192000pt;}
.w24{width:122.752000pt;}
.w7{width:161.265333pt;}
.w5{width:171.390667pt;}
.w1b{width:264.706667pt;}
.w14{width:265.666667pt;}
.w20{width:269.186667pt;}
.wf{width:280.000000pt;}
.w10{width:283.520000pt;}
.w11{width:295.040000pt;}
.w12{width:300.000000pt;}
.w13{width:307.040000pt;}
.w3{width:384.733333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x58{left:7.200000pt;}
.x31{left:8.960000pt;}
.x2d{left:10.400000pt;}
.x32{left:11.360000pt;}
.x30{left:12.640000pt;}
.x5e{left:13.760000pt;}
.x13{left:15.240000pt;}
.x5f{left:16.160000pt;}
.x2c{left:17.120000pt;}
.x2a{left:18.880000pt;}
.x2f{left:20.640000pt;}
.x3b{left:22.080000pt;}
.x5c{left:23.520000pt;}
.x36{left:24.573333pt;}
.x4f{left:25.573333pt;}
.x44{left:27.653333pt;}
.x3c{left:28.866667pt;}
.x47{left:30.746667pt;}
.x53{left:33.480000pt;}
.x35{left:34.693333pt;}
.x3f{left:35.906667pt;}
.x62{left:36.960000pt;}
.x3a{left:38.946667pt;}
.x55{left:42.240000pt;}
.x43{left:44.506667pt;}
.x27{left:45.914667pt;}
.x37{left:48.386667pt;}
.x40{left:49.626667pt;}
.x59{left:50.554667pt;}
.x3d{left:52.640000pt;}
.x45{left:58.213333pt;}
.x41{left:60.000000pt;}
.x19{left:67.706667pt;}
.x15{left:68.840000pt;}
.x11{left:71.194667pt;}
.x51{left:83.240000pt;}
.x60{left:91.994667pt;}
.x1a{left:96.000325pt;}
.x4d{left:99.493333pt;}
.x4e{left:100.546667pt;}
.x39{left:103.106667pt;}
.x38{left:105.053333pt;}
.x26{left:106.272000pt;}
.x14{left:108.360000pt;}
.x16{left:110.440000pt;}
.x3e{left:111.680000pt;}
.x2{left:113.472000pt;}
.x46{left:114.493333pt;}
.x48{left:118.173333pt;}
.x42{left:119.386667pt;}
.x3{left:124.352000pt;}
.x10{left:127.552000pt;}
.x49{left:150.586667pt;}
.x4a{left:159.066667pt;}
.x5d{left:160.666667pt;}
.x61{left:161.786667pt;}
.x2b{left:170.106667pt;}
.xa{left:178.586667pt;}
.x6{left:186.266667pt;}
.x12{left:205.946667pt;}
.x4{left:207.066667pt;}
.x28{left:219.746667pt;}
.x8{left:247.266667pt;}
.xb{left:249.666667pt;}
.x5a{left:255.266667pt;}
.x63{left:262.466667pt;}
.x2e{left:274.146667pt;}
.x7{left:276.066667pt;}
.x5b{left:293.026667pt;}
.x64{left:300.226667pt;}
.x29{left:330.946667pt;}
.x9{left:335.106667pt;}
.x65{left:340.226667pt;}
.xc{left:372.093333pt;}
.xd{left:374.973333pt;}
.x17{left:377.546667pt;}
.xe{left:383.453333pt;}
.x1b{left:387.981323pt;}
.x1{left:393.853333pt;}
.x5{left:396.893333pt;}
.x4b{left:410.493333pt;}
.x4c{left:417.533333pt;}
.xf{left:420.573333pt;}
.x50{left:422.013333pt;}
.x1d{left:426.653333pt;}
.x1f{left:441.213333pt;}
.x52{left:476.573333pt;}
.x20{left:508.453333pt;}
.x25{left:531.333333pt;}
.x1c{left:536.494385pt;}
.x21{left:564.293333pt;}
.x54{left:571.013333pt;}
.x23{left:572.613333pt;}
.x24{left:583.813333pt;}
.x18{left:590.693333pt;}
.x22{left:598.533333pt;}
.x56{left:608.933333pt;}
.x57{left:646.720000pt;}
.x1e{left:704.640000pt;}
.x33{left:715.520000pt;}
.x34{left:720.640000pt;}
}




    .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; }
  