
    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_2be4ceb2ad32efd2ea5d3c98.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_50ea4261130c056d5bc99932.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.049805;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_28c07af870f8d62b4706bec4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_357c6319cf751e5031673923.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.049805;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_8b9a6d775e6e40a76a30c3f9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.281738;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_a9b51be1e3c591e5a879d41f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.900391;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_35b9697aec098c7bcca01a1e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.916016;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_cf0ab04a80d0eb41b1e7751c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.758789;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_c2060dc3f6630e30a258bcbe.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.995605;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_737d34b3f75aad6e79d45d26.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.995605;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);}
.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);}
.m1{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);}
.v2{vertical-align:-23.760000px;}
.v12{vertical-align:-20.880000px;}
.v14{vertical-align:-18.000000px;}
.v15{vertical-align:-15.840000px;}
.v13{vertical-align:-13.680000px;}
.va{vertical-align:-12.240000px;}
.v5{vertical-align:-10.800000px;}
.v9{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:2.160000px;}
.vd{vertical-align:3.600000px;}
.vb{vertical-align:12.240000px;}
.ve{vertical-align:15.840000px;}
.v6{vertical-align:18.000000px;}
.v11{vertical-align:20.880000px;}
.v10{vertical-align:22.320000px;}
.v1{vertical-align:23.760000px;}
.v16{vertical-align:32.400000px;}
.v7{vertical-align:40.320000px;}
.v3{vertical-align:46.080000px;}
.v8{vertical-align:48.240000px;}
.vf{vertical-align:54.000000px;}
.v4{vertical-align:68.400000px;}
.ls47{letter-spacing:-0.978000px;}
.ls1b{letter-spacing:-0.822000px;}
.ls13{letter-spacing:-0.774000px;}
.ls3{letter-spacing:-0.720000px;}
.ls31{letter-spacing:-0.666000px;}
.lse{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.540000px;}
.ls35{letter-spacing:-0.460200px;}
.lsd{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.259800px;}
.ls4{letter-spacing:-0.208200px;}
.ls46{letter-spacing:-0.206400px;}
.ls1e{letter-spacing:-0.108000px;}
.ls12{letter-spacing:-0.106800px;}
.ls1c{letter-spacing:-0.100200px;}
.ls7{letter-spacing:-0.053280px;}
.ls5{letter-spacing:-0.018720px;}
.ls1d{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.012960px;}
.lsf{letter-spacing:0.014400px;}
.ls11{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.106800px;}
.ls34{letter-spacing:0.119520px;}
.ls32{letter-spacing:0.135600px;}
.ls0{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.206400px;}
.ls2a{letter-spacing:0.206640px;}
.ls21{letter-spacing:0.238320px;}
.ls6{letter-spacing:0.259800px;}
.ls24{letter-spacing:0.259920px;}
.ls36{letter-spacing:0.298800px;}
.ls30{letter-spacing:0.334800px;}
.lsb{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.399600px;}
.ls42{letter-spacing:0.510960px;}
.ls43{letter-spacing:0.534960px;}
.ls38{letter-spacing:0.709200px;}
.ls3e{letter-spacing:0.774000px;}
.ls26{letter-spacing:1.404720px;}
.lsa{letter-spacing:1.620000px;}
.ls27{letter-spacing:1.774800px;}
.ls28{letter-spacing:1.945440px;}
.ls15{letter-spacing:2.062080px;}
.ls29{letter-spacing:2.329200px;}
.ls1{letter-spacing:2.340000px;}
.ls2f{letter-spacing:2.460960px;}
.ls33{letter-spacing:2.640960px;}
.ls2d{letter-spacing:2.719440px;}
.ls3c{letter-spacing:2.950560px;}
.ls16{letter-spacing:3.180960px;}
.ls18{letter-spacing:3.769200px;}
.ls25{letter-spacing:3.780000px;}
.ls17{letter-spacing:3.817440px;}
.ls23{letter-spacing:4.852800px;}
.ls3f{letter-spacing:5.220000px;}
.lsc{letter-spacing:5.940000px;}
.ls22{letter-spacing:7.500960px;}
.ls40{letter-spacing:15.420960px;}
.ls41{letter-spacing:16.140960px;}
.ls45{letter-spacing:16.506720px;}
.ls3a{letter-spacing:17.279280px;}
.ls1f{letter-spacing:17.742240px;}
.ls37{letter-spacing:18.790560px;}
.ls2e{letter-spacing:19.020960px;}
.ls3b{letter-spacing:19.510560px;}
.ls39{letter-spacing:19.630560px;}
.ls2c{letter-spacing:19.740960px;}
.ls44{letter-spacing:46.026720px;}
.ls10{letter-spacing:64.026720px;}
.ls3d{letter-spacing:111.204000px;}
.ls19{letter-spacing:170.220960px;}
.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;}
}
.ws3{word-spacing:-23.921280px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.ws1c{word-spacing:-15.714000px;}
.ws8{word-spacing:-15.300000px;}
.ws1d{word-spacing:-15.238800px;}
.ws7{word-spacing:-15.199800px;}
.wse{word-spacing:-15.146400px;}
.wsb{word-spacing:-15.120000px;}
.ws23{word-spacing:-15.046800px;}
.wsf{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.833200px;}
.ws26{word-spacing:-14.733600px;}
.wsd{word-spacing:-14.680200px;}
.ws9{word-spacing:-14.580000px;}
.ws25{word-spacing:-14.479800px;}
.ws19{word-spacing:-14.274000px;}
.wsc{word-spacing:-14.166000px;}
.ws27{word-spacing:-13.962000px;}
.ws13{word-spacing:-13.500000px;}
.ws17{word-spacing:-13.160160px;}
.ws14{word-spacing:-13.147200px;}
.ws1{word-spacing:-10.440000px;}
.ws1b{word-spacing:-9.720000px;}
.ws1f{word-spacing:-0.200160px;}
.ws1e{word-spacing:-0.187920px;}
.ws6{word-spacing:0.000000px;}
.ws24{word-spacing:0.468720px;}
.ws20{word-spacing:0.519840px;}
.ws21{word-spacing:0.532080px;}
.ws16{word-spacing:1.208640px;}
.ws15{word-spacing:3.412080px;}
.ws1a{word-spacing:3.532080px;}
.ws22{word-spacing:3.906720px;}
.ws18{word-spacing:4.132080px;}
.ws11{word-spacing:140.418000px;}
.ws12{word-spacing:141.810000px;}
.ws10{word-spacing:359.232000px;}
._20{margin-left:-25.489440px;}
._19{margin-left:-3.346560px;}
._b{margin-left:-2.269920px;}
._0{margin-left:-1.080000px;}
._c{width:1.206240px;}
._1{width:2.220000px;}
._14{width:3.570480px;}
._16{width:4.647360px;}
._15{width:5.856480px;}
._1a{width:7.028640px;}
._17{width:8.389440px;}
._18{width:9.626880px;}
._6{width:10.800000px;}
._13{width:11.832480px;}
._1b{width:13.625280px;}
._23{width:14.921280px;}
._1d{width:15.950880px;}
._1e{width:17.634240px;}
._11{width:18.948000px;}
._21{width:31.118160px;}
._22{width:72.004800px;}
._7{width:76.284960px;}
._12{width:99.660000px;}
._1f{width:106.622640px;}
._8{width:154.080000px;}
._1c{width:157.824000px;}
._e{width:195.120000px;}
._10{width:199.584000px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._4{width:388.054560px;}
._5{width:436.440000px;}
._9{width:604.364160px;}
._f{width:637.320000px;}
._a{width:1096.860000px;}
._d{width:1176.060000px;}
.fc6{color:transparent;}
.fc4{color:rgb(238,0,0);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(5,99,193);}
.fc9{color:rgb(51,51,51);}
.fc8{color:rgb(34,34,34);}
.fc7{color:rgb(35,35,35);}
.fc5{color:rgb(13,13,13);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs9{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:54.144000px;}
.fs2{font-size:59.760000px;}
.fs8{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yce{bottom:2.520000px;}
.ya0{bottom:5.760000px;}
.ye{bottom:5.940000px;}
.y135{bottom:5.970000px;}
.y130{bottom:6.120000px;}
.ye9{bottom:6.270000px;}
.y168{bottom:6.300000px;}
.y97{bottom:6.660000px;}
.y109{bottom:6.690000px;}
.y99{bottom:6.840000px;}
.y94{bottom:7.560000px;}
.y9a{bottom:7.740000px;}
.y95{bottom:9.360000px;}
.ya2{bottom:9.540000px;}
.y18b{bottom:10.980000px;}
.y189{bottom:11.160000px;}
.y18e{bottom:11.190000px;}
.yfb{bottom:11.880000px;}
.y6{bottom:12.600000px;}
.y1c7{bottom:12.780000px;}
.y1c8{bottom:12.960000px;}
.yda{bottom:13.860000px;}
.y1ca{bottom:15.660000px;}
.yd7{bottom:16.740000px;}
.yd6{bottom:17.685000px;}
.y8{bottom:18.180000px;}
.yde{bottom:18.720000px;}
.yd3{bottom:19.800000px;}
.ydc{bottom:20.520000px;}
.ydf{bottom:21.240000px;}
.yd5{bottom:22.140000px;}
.y9f{bottom:25.560000px;}
.y171{bottom:25.740000px;}
.ycd{bottom:27.360000px;}
.yf5{bottom:28.185000px;}
.y1c4{bottom:30.420000px;}
.ycf{bottom:33.300000px;}
.yc{bottom:34.560000px;}
.yea{bottom:34.710000px;}
.y13c{bottom:34.740000px;}
.ye4{bottom:39.315000px;}
.y1c5{bottom:40.320000px;}
.y5{bottom:40.500000px;}
.y170{bottom:45.540000px;}
.yf6{bottom:51.045000px;}
.yfc{bottom:53.640000px;}
.yb{bottom:55.080000px;}
.ye5{bottom:56.490000px;}
.ycb{bottom:64.980000px;}
.y199{bottom:65.340000px;}
.y16f{bottom:65.880000px;}
.yed{bottom:66.345000px;}
.y4{bottom:68.400000px;}
.yd{bottom:71.820000px;}
.ye6{bottom:73.650000px;}
.yf7{bottom:73.875000px;}
.y13b{bottom:75.240000px;}
.ya{bottom:75.420000px;}
.y198{bottom:85.320000px;}
.y16e{bottom:86.040000px;}
.yf2{bottom:86.475000px;}
.yd8{bottom:87.840000px;}
.yd1{bottom:89.865000px;}
.ye7{bottom:90.825000px;}
.yee{bottom:92.010000px;}
.y9e{bottom:93.420000px;}
.y13a{bottom:95.040000px;}
.y3{bottom:96.510000px;}
.yf8{bottom:96.735000px;}
.y7c{bottom:97.380000px;}
.y1c2{bottom:98.460000px;}
.y69{bottom:99.180000px;}
.y116{bottom:99.720000px;}
.yc6{bottom:100.800000px;}
.y3b{bottom:102.240000px;}
.ye2{bottom:102.420000px;}
.y165{bottom:103.500000px;}
.y197{bottom:105.660000px;}
.y16d{bottom:106.065000px;}
.y14e{bottom:106.560000px;}
.y17d{bottom:107.280000px;}
.ye8{bottom:108.030000px;}
.y1e5{bottom:108.180000px;}
.y203{bottom:112.860000px;}
.y139{bottom:115.020000px;}
.y200{bottom:115.380000px;}
.y7b{bottom:117.180000px;}
.yef{bottom:117.720000px;}
.y124{bottom:118.080000px;}
.y1c1{bottom:118.440000px;}
.yeb{bottom:118.620000px;}
.y68{bottom:118.980000px;}
.y115{bottom:119.520000px;}
.yf9{bottom:119.595000px;}
.yc5{bottom:120.600000px;}
.y3a{bottom:122.040000px;}
.ye1{bottom:122.220000px;}
.y164{bottom:123.300000px;}
.y2{bottom:125.850000px;}
.y16c{bottom:125.865000px;}
.y196{bottom:126.000000px;}
.y14d{bottom:126.360000px;}
.y17c{bottom:127.260000px;}
.y1e4{bottom:127.980000px;}
.y202{bottom:132.840000px;}
.y9d{bottom:133.920000px;}
.y1ff{bottom:135.180000px;}
.y138{bottom:135.360000px;}
.ye0{bottom:136.260000px;}
.y7a{bottom:136.980000px;}
.y123{bottom:137.880000px;}
.y1c0{bottom:138.240000px;}
.y67{bottom:138.960000px;}
.y114{bottom:139.500000px;}
.yc4{bottom:140.580000px;}
.yfa{bottom:142.455000px;}
.y1a6{bottom:142.560000px;}
.y163{bottom:143.100000px;}
.yf0{bottom:143.385000px;}
.y14c{bottom:146.160000px;}
.y195{bottom:146.340000px;}
.y17b{bottom:147.060000px;}
.y1e3{bottom:147.960000px;}
.y39{bottom:151.020000px;}
.y201{bottom:152.670000px;}
.y1fe{bottom:155.010000px;}
.yfd{bottom:155.085000px;}
.y137{bottom:155.520000px;}
.y9c{bottom:156.270000px;}
.y79{bottom:156.990000px;}
.y122{bottom:157.710000px;}
.y1bf{bottom:158.070000px;}
.y66{bottom:158.790000px;}
.y113{bottom:159.330000px;}
.yf4{bottom:161.640000px;}
.y1a5{bottom:162.390000px;}
.yf3{bottom:162.720000px;}
.y162{bottom:162.930000px;}
.y14b{bottom:165.990000px;}
.y194{bottom:166.500000px;}
.y17a{bottom:167.430000px;}
.y1e2{bottom:167.790000px;}
.yf1{bottom:169.050000px;}
.yc3{bottom:169.410000px;}
.y38{bottom:170.850000px;}
.y1fd{bottom:174.990000px;}
.y112{bottom:175.890000px;}
.y78{bottom:176.790000px;}
.y121{bottom:177.510000px;}
.y1be{bottom:177.870000px;}
.y65{bottom:178.590000px;}
.y9b{bottom:178.770000px;}
.y1a4{bottom:182.190000px;}
.y161{bottom:182.910000px;}
.y14a{bottom:185.790000px;}
.y192{bottom:186.840000px;}
.y179{bottom:187.230000px;}
.y1e1{bottom:187.590000px;}
.yc2{bottom:189.210000px;}
.y37{bottom:190.650000px;}
.y193{bottom:192.600000px;}
.y1fc{bottom:194.790000px;}
.y77{bottom:196.590000px;}
.y120{bottom:197.490000px;}
.y1bd{bottom:197.670000px;}
.y64{bottom:198.390000px;}
.y98{bottom:201.090000px;}
.y1a3{bottom:201.990000px;}
.y160{bottom:202.710000px;}
.y149{bottom:205.770000px;}
.y178{bottom:207.030000px;}
.y191{bottom:207.360000px;}
.y1e0{bottom:207.390000px;}
.yc1{bottom:209.010000px;}
.ydd{bottom:210.270000px;}
.y36{bottom:210.450000px;}
.y1fb{bottom:214.590000px;}
.y76{bottom:216.390000px;}
.y11f{bottom:217.290000px;}
.y1bc{bottom:217.650000px;}
.y1a2{bottom:221.970000px;}
.y15f{bottom:222.510000px;}
.y96{bottom:223.590000px;}
.y148{bottom:225.570000px;}
.y177{bottom:226.830000px;}
.y63{bottom:227.190000px;}
.y35{bottom:230.250000px;}
.y1fa{bottom:234.390000px;}
.y75{bottom:236.190000px;}
.y11e{bottom:237.090000px;}
.yc0{bottom:237.810000px;}
.y1b9{bottom:238.350000px;}
.y15e{bottom:242.310000px;}
.y1ba{bottom:242.850000px;}
.y1bb{bottom:243.930000px;}
.y93{bottom:246.090000px;}
.y176{bottom:246.630000px;}
.y1a1{bottom:246.990000px;}
.y62{bottom:247.170000px;}
.y34{bottom:250.230000px;}
.y1b8{bottom:252.030000px;}
.y1f9{bottom:254.190000px;}
.y147{bottom:254.370000px;}
.y74{bottom:256.170000px;}
.ydb{bottom:256.710000px;}
.y11d{bottom:256.890000px;}
.ybf{bottom:257.790000px;}
.y1a0{bottom:261.570000px;}
.y15d{bottom:262.110000px;}
.y175{bottom:266.610000px;}
.y61{bottom:266.970000px;}
.y33{bottom:270.030000px;}
.y146{bottom:274.170000px;}
.y73{bottom:275.970000px;}
.y11c{bottom:276.690000px;}
.ybe{bottom:277.590000px;}
.y1b7{bottom:281.730000px;}
.y15c{bottom:282.090000px;}
.y174{bottom:283.170000px;}
.y60{bottom:286.770000px;}
.y32{bottom:289.830000px;}
.y19f{bottom:290.370000px;}
.y92{bottom:293.250000px;}
.y145{bottom:293.970000px;}
.y72{bottom:295.770000px;}
.y11b{bottom:296.670000px;}
.ybd{bottom:297.390000px;}
.y1b6{bottom:301.530000px;}
.y15b{bottom:301.890000px;}
.y5f{bottom:306.570000px;}
.yd9{bottom:306.750000px;}
.y31{bottom:309.630000px;}
.y19e{bottom:310.170000px;}
.y91{bottom:313.050000px;}
.y1f8{bottom:313.770000px;}
.y144{bottom:313.950000px;}
.y71{bottom:315.570000px;}
.y11a{bottom:316.470000px;}
.ybc{bottom:317.190000px;}
.y1b5{bottom:321.510000px;}
.y15a{bottom:321.690000px;}
.y5e{bottom:326.370000px;}
.y30{bottom:329.430000px;}
.y19d{bottom:330.150000px;}
.y90{bottom:333.030000px;}
.y1f7{bottom:333.570000px;}
.y143{bottom:333.750000px;}
.y70{bottom:335.370000px;}
.y119{bottom:336.270000px;}
.ybb{bottom:336.990000px;}
.y1b4{bottom:341.310000px;}
.y159{bottom:341.490000px;}
.yd0{bottom:343.470000px;}
.yec{bottom:346.320000px;}
.y5d{bottom:346.350000px;}
.y2f{bottom:349.410000px;}
.y19c{bottom:349.950000px;}
.y8f{bottom:352.830000px;}
.y1f6{bottom:353.370000px;}
.y142{bottom:353.550000px;}
.y6f{bottom:355.350000px;}
.y1b3{bottom:361.110000px;}
.y158{bottom:361.290000px;}
.yba{bottom:365.970000px;}
.y5c{bottom:366.150000px;}
.y2e{bottom:369.210000px;}
.y19b{bottom:369.750000px;}
.y8e{bottom:372.630000px;}
.y1f5{bottom:373.350000px;}
.y6e{bottom:375.150000px;}
.y157{bottom:381.270000px;}
.y141{bottom:382.350000px;}
.yb9{bottom:385.770000px;}
.y5b{bottom:385.950000px;}
.y2d{bottom:389.010000px;}
.y19a{bottom:389.550000px;}
.y1b2{bottom:389.910000px;}
.y8d{bottom:392.430000px;}
.y1f4{bottom:393.150000px;}
.y6d{bottom:394.950000px;}
.y156{bottom:401.475000px;}
.y140{bottom:402.195000px;}
.y1df{bottom:403.995000px;}
.y190{bottom:404.355000px;}
.yb8{bottom:405.615000px;}
.y2c{bottom:408.855000px;}
.y1b1{bottom:409.755000px;}
.y8c{bottom:412.275000px;}
.y1f3{bottom:412.995000px;}
.y5a{bottom:414.795000px;}
.y155{bottom:421.455000px;}
.y13f{bottom:422.175000px;}
.y1de{bottom:423.795000px;}
.yb7{bottom:425.415000px;}
.y2b{bottom:428.655000px;}
.y1b0{bottom:429.735000px;}
.yd4{bottom:430.455000px;}
.y8b{bottom:432.255000px;}
.y1f2{bottom:432.795000px;}
.y59{bottom:434.595000px;}
.y13e{bottom:439.455000px;}
.y154{bottom:441.255000px;}
.y1dd{bottom:443.595000px;}
.yb6{bottom:445.215000px;}
.y2a{bottom:448.635000px;}
.y8a{bottom:449.535000px;}
.y1af{bottom:449.895000px;}
.y1f1{bottom:452.595000px;}
.y58{bottom:454.575000px;}
.y13d{bottom:459.255000px;}
.y153{bottom:461.055000px;}
.y1dc{bottom:463.575000px;}
.y29{bottom:468.435000px;}
.y89{bottom:469.335000px;}
.y1ae{bottom:469.875000px;}
.y1f0{bottom:472.575000px;}
.y136{bottom:474.015000px;}
.yb5{bottom:474.195000px;}
.y57{bottom:474.375000px;}
.y152{bottom:480.855000px;}
.y1db{bottom:483.375000px;}
.yd2{bottom:483.735000px;}
.y28{bottom:488.235000px;}
.y88{bottom:489.135000px;}
.y1ad{bottom:489.675000px;}
.y111{bottom:492.195000px;}
.y1ef{bottom:492.375000px;}
.yb4{bottom:493.995000px;}
.y56{bottom:494.175000px;}
.y151{bottom:500.655000px;}
.y1da{bottom:503.175000px;}
.y27{bottom:508.035000px;}
.y1ac{bottom:509.475000px;}
.y87{bottom:510.015000px;}
.y110{bottom:511.995000px;}
.y1ee{bottom:512.175000px;}
.yb3{bottom:513.795000px;}
.y55{bottom:513.975000px;}
.y150{bottom:520.635000px;}
.y26{bottom:527.835000px;}
.y1ab{bottom:529.275000px;}
.y86{bottom:530.895000px;}
.y10f{bottom:531.975000px;}
.yca{bottom:532.335000px;}
.yb2{bottom:533.595000px;}
.y54{bottom:533.775000px;}
.ye3{bottom:535.140000px;}
.y14f{bottom:537.015000px;}
.y25{bottom:547.815000px;}
.y1aa{bottom:549.075000px;}
.y10e{bottom:551.775000px;}
.yb1{bottom:553.395000px;}
.y53{bottom:553.755000px;}
.y85{bottom:559.695000px;}
.y24{bottom:567.615000px;}
.y1a9{bottom:569.055000px;}
.y10d{bottom:571.575000px;}
.y1d9{bottom:571.755000px;}
.y6c{bottom:573.555000px;}
.yb0{bottom:579.135000px;}
.y84{bottom:580.575000px;}
.y52{bottom:582.555000px;}
.y23{bottom:587.415000px;}
.y1a8{bottom:588.855000px;}
.yae{bottom:589.215000px;}
.y10c{bottom:591.375000px;}
.y1ed{bottom:591.555000px;}
.y6b{bottom:593.355000px;}
.y1d8{bottom:600.555000px;}
.y83{bottom:601.635000px;}
.y51{bottom:602.355000px;}
.yaf{bottom:603.435000px;}
.y1a7{bottom:605.415000px;}
.y22{bottom:607.215000px;}
.ycc{bottom:607.935000px;}
.y10b{bottom:611.175000px;}
.y1ec{bottom:611.355000px;}
.y6a{bottom:613.155000px;}
.y1d7{bottom:620.355000px;}
.y50{bottom:622.155000px;}
.y18f{bottom:626.835000px;}
.y21{bottom:627.015000px;}
.y82{bottom:630.435000px;}
.y10a{bottom:631.155000px;}
.y1d6{bottom:640.155000px;}
.y4f{bottom:641.955000px;}
.y134{bottom:644.655000px;}
.y108{bottom:645.195000px;}
.y20{bottom:646.995000px;}
.y18d{bottom:647.355000px;}
.y81{bottom:650.265000px;}
.y1eb{bottom:650.985000px;}
.y1d5{bottom:659.985000px;}
.yad{bottom:661.785000px;}
.y4e{bottom:661.965000px;}
.y133{bottom:665.385000px;}
.y1f{bottom:666.825000px;}
.y107{bottom:667.545000px;}
.y18c{bottom:668.085000px;}
.y80{bottom:670.065000px;}
.y1ea{bottom:670.965000px;}
.yc9{bottom:671.505000px;}
.y1d4{bottom:679.785000px;}
.y4d{bottom:681.765000px;}
.y132{bottom:685.905000px;}
.y1e{bottom:686.625000px;}
.y18a{bottom:688.605000px;}
.y7f{bottom:689.865000px;}
.y106{bottom:690.045000px;}
.yac{bottom:690.585000px;}
.y1e9{bottom:690.765000px;}
.y1d3{bottom:699.765000px;}
.y4c{bottom:701.565000px;}
.y1d{bottom:706.425000px;}
.y131{bottom:706.605000px;}
.y7e{bottom:707.145000px;}
.y188{bottom:709.125000px;}
.yab{bottom:710.385000px;}
.y1e8{bottom:710.565000px;}
.y105{bottom:712.365000px;}
.y4b{bottom:721.365000px;}
.y1c{bottom:726.225000px;}
.y7d{bottom:727.125000px;}
.y1d2{bottom:728.565000px;}
.y187{bottom:729.825000px;}
.yaa{bottom:730.365000px;}
.y104{bottom:734.865000px;}
.y4a{bottom:741.165000px;}
.y1b{bottom:746.205000px;}
.y12f{bottom:748.005000px;}
.y1d1{bottom:748.365000px;}
.ya9{bottom:750.165000px;}
.y186{bottom:750.345000px;}
.y103{bottom:757.365000px;}
.y49{bottom:761.145000px;}
.ya8{bottom:764.205000px;}
.y173{bottom:764.565000px;}
.y1a{bottom:766.005000px;}
.y1d0{bottom:768.165000px;}
.y1e7{bottom:770.145000px;}
.y185{bottom:771.045000px;}
.y12e{bottom:773.745000px;}
.y102{bottom:779.685000px;}
.y48{bottom:780.945000px;}
.y172{bottom:784.365000px;}
.y19{bottom:785.805000px;}
.ya7{bottom:786.525000px;}
.y1cf{bottom:787.965000px;}
.y1e6{bottom:789.945000px;}
.y12d{bottom:791.025000px;}
.y184{bottom:791.565000px;}
.y16b{bottom:799.125000px;}
.y47{bottom:800.745000px;}
.y118{bottom:804.885000px;}
.y18{bottom:805.605000px;}
.y1ce{bottom:807.945000px;}
.ya6{bottom:809.025000px;}
.y101{bottom:809.745000px;}
.y12c{bottom:810.825000px;}
.y183{bottom:812.085000px;}
.y117{bottom:818.745000px;}
.y46{bottom:820.545000px;}
.y17{bottom:825.405000px;}
.y1cd{bottom:827.745000px;}
.y100{bottom:829.545000px;}
.y12b{bottom:830.625000px;}
.ya5{bottom:831.525000px;}
.y182{bottom:832.785000px;}
.y45{bottom:840.345000px;}
.y1cc{bottom:842.505000px;}
.y16{bottom:845.205000px;}
.yff{bottom:849.345000px;}
.y12a{bottom:850.425000px;}
.y181{bottom:853.665000px;}
.ya4{bottom:853.845000px;}
.y44{bottom:860.325000px;}
.y15{bottom:865.185000px;}
.yfe{bottom:869.325000px;}
.y129{bottom:870.225000px;}
.ya3{bottom:876.345000px;}
.y1cb{bottom:877.245000px;}
.y43{bottom:880.125000px;}
.y14{bottom:884.985000px;}
.yc8{bottom:889.125000px;}
.y128{bottom:890.205000px;}
.ya1{bottom:898.710000px;}
.y42{bottom:899.970000px;}
.y13{bottom:904.830000px;}
.yc7{bottom:908.970000px;}
.y127{bottom:910.050000px;}
.y1c9{bottom:912.210000px;}
.y180{bottom:919.770000px;}
.y12{bottom:925.170000px;}
.y41{bottom:928.770000px;}
.y126{bottom:930.030000px;}
.y17f{bottom:939.570000px;}
.y16a{bottom:940.290000px;}
.y11{bottom:946.590000px;}
.y40{bottom:948.570000px;}
.y1c3{bottom:952.530000px;}
.y125{bottom:959.370000px;}
.y17e{bottom:959.550000px;}
.y169{bottom:960.810000px;}
.y3f{bottom:968.550000px;}
.y10{bottom:969.990000px;}
.y167{bottom:981.330000px;}
.y1c6{bottom:987.450000px;}
.y3e{bottom:988.350000px;}
.yf{bottom:1001.670000px;}
.y166{bottom:1002.390000px;}
.y3d{bottom:1008.150000px;}
.y3c{bottom:1027.950000px;}
.y9{bottom:1046.490000px;}
.y1{bottom:1062.870000px;}
.y7{bottom:1097.250000px;}
.h7{height:2.401875px;}
.h30{height:19.800000px;}
.h2e{height:19.980000px;}
.h31{height:20.016000px;}
.h2f{height:20.160000px;}
.h34{height:20.340000px;}
.hb{height:21.420000px;}
.hf{height:21.600000px;}
.h11{height:21.636000px;}
.h10{height:21.780000px;}
.h24{height:21.816000px;}
.he{height:23.400000px;}
.h13{height:23.580000px;}
.h38{height:27.432422px;}
.h3b{height:32.425313px;}
.h8{height:33.480000px;}
.h40{height:34.020000px;}
.h42{height:34.236000px;}
.h20{height:36.000000px;}
.h27{height:38.100586px;}
.h26{height:38.202187px;}
.h12{height:39.600000px;}
.h3a{height:40.230703px;}
.h1e{height:41.760000px;}
.h2b{height:41.844727px;}
.hd{height:42.164648px;}
.h1d{height:43.776000px;}
.h41{height:44.265586px;}
.h28{height:44.704687px;}
.h43{height:45.024258px;}
.h22{height:45.720000px;}
.h4{height:46.736719px;}
.h1b{height:47.700000px;}
.h21{height:49.320000px;}
.h5{height:49.838906px;}
.h23{height:50.760000px;}
.h1c{height:52.560000px;}
.h37{height:53.305313px;}
.ha{height:55.243125px;}
.h15{height:57.571523px;}
.h3d{height:58.230703px;}
.h33{height:62.550703px;}
.h36{height:62.670703px;}
.h18{height:62.856000px;}
.h3{height:63.500977px;}
.h9{height:65.884219px;}
.hc{height:67.565039px;}
.h3f{height:68.940000px;}
.h19{height:74.880000px;}
.h3e{height:82.238906px;}
.h16{height:90.158906px;}
.h3c{height:103.651523px;}
.h2d{height:105.278906px;}
.h2c{height:105.811523px;}
.h14{height:108.630703px;}
.h6{height:112.536000px;}
.h25{height:135.720000px;}
.h17{height:138.456000px;}
.h35{height:140.256000px;}
.h2{height:146.916000px;}
.h32{height:169.920000px;}
.h2a{height:181.260000px;}
.h1f{height:183.960000px;}
.h29{height:185.220000px;}
.h1a{height:187.950000px;}
.h39{height:221.760000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.w18{width:47.520000px;}
.w19{width:50.580000px;}
.w17{width:55.476000px;}
.w7{width:55.620000px;}
.w1b{width:56.016000px;}
.w30{width:58.320000px;}
.w8{width:58.500000px;}
.wc{width:58.536000px;}
.w1a{width:59.400000px;}
.w2c{width:59.580000px;}
.w37{width:60.336000px;}
.w22{width:60.876000px;}
.w33{width:63.000000px;}
.w3c{width:63.180000px;}
.w31{width:63.216000px;}
.w25{width:64.296000px;}
.w24{width:64.440000px;}
.w26{width:64.800000px;}
.w20{width:70.056000px;}
.w21{width:73.080000px;}
.w2b{width:73.620000px;}
.w2a{width:73.980000px;}
.w1d{width:81.576000px;}
.w23{width:82.980000px;}
.w32{width:84.240000px;}
.w38{width:84.276000px;}
.w3a{width:84.456000px;}
.w29{width:87.516000px;}
.w1c{width:88.560000px;}
.w11{width:95.076000px;}
.w3b{width:105.480000px;}
.w10{width:116.136000px;}
.w36{width:118.260000px;}
.w2f{width:120.636000px;}
.w39{width:126.900000px;}
.wf{width:137.160000px;}
.w3{width:137.556000px;}
.wb{width:138.096000px;}
.wd{width:167.070000px;}
.w6{width:180.570000px;}
.w27{width:186.870000px;}
.w28{width:309.675000px;}
.w14{width:328.500000px;}
.w16{width:332.100000px;}
.w9{width:340.275000px;}
.w15{width:343.800000px;}
.w12{width:345.990000px;}
.we{width:365.865000px;}
.w34{width:402.915000px;}
.w1e{width:444.165000px;}
.w2d{width:496.545000px;}
.w1f{width:575.205000px;}
.w2e{width:594.285000px;}
.w35{width:595.005000px;}
.wa{width:638.745000px;}
.w2{width:649.410000px;}
.w13{width:697.245000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x23{left:17.100000px;}
.x46{left:22.890000px;}
.x29{left:25.485000px;}
.x21{left:28.050000px;}
.x28{left:33.195000px;}
.x20{left:34.815000px;}
.x27{left:40.035000px;}
.x25{left:42.300000px;}
.x1{left:53.100000px;}
.x6{left:81.899987px;}
.x19{left:98.316000px;}
.x22{left:102.810000px;}
.x54{left:104.214000px;}
.xd{left:108.035987px;}
.x4{left:118.470000px;}
.xe{left:127.656000px;}
.x24{left:145.155000px;}
.x4c{left:149.436000px;}
.x26{left:157.680000px;}
.x39{left:158.970000px;}
.xa{left:193.529987px;}
.x55{left:194.619000px;}
.x42{left:198.210000px;}
.x57{left:220.889987px;}
.x2a{left:224.850000px;}
.x1a{left:236.190000px;}
.x7{left:245.189987px;}
.x3a{left:248.610000px;}
.x41{left:254.549987px;}
.x12{left:263.910000px;}
.x4d{left:270.795000px;}
.x2b{left:281.055000px;}
.x44{left:286.995000px;}
.x4b{left:288.074987px;}
.x5b{left:297.975000px;}
.xf{left:308.955000px;}
.x3b{left:319.395000px;}
.x36{left:320.654987px;}
.x1d{left:328.545000px;}
.x4e{left:329.835000px;}
.xc{left:337.394987px;}
.x9{left:338.474987px;}
.x1f{left:339.885000px;}
.x1e{left:343.845000px;}
.x33{left:347.114987px;}
.x1b{left:353.055000px;}
.x37{left:361.154987px;}
.x32{left:362.774987px;}
.x10{left:365.295000px;}
.x31{left:367.274987px;}
.x58{left:368.534987px;}
.x5c{left:372.315000px;}
.x34{left:377.354987px;}
.x2c{left:380.595000px;}
.x15{left:383.114987px;}
.x43{left:385.095000px;}
.x3c{left:393.195000px;}
.x59{left:400.574987px;}
.x13{left:402.735000px;}
.x4f{left:404.175000px;}
.x38{left:409.934987px;}
.x11{left:424.515000px;}
.x45{left:436.035000px;}
.x2d{left:440.715000px;}
.x8{left:446.504987px;}
.x1c{left:448.845000px;}
.x16{left:450.464987px;}
.x3d{left:454.785000px;}
.x18{left:456.944987px;}
.x14{left:461.985000px;}
.x50{left:468.105000px;}
.x47{left:492.765000px;}
.x2e{left:497.445000px;}
.x17{left:499.604987px;}
.x5a{left:515.624987px;}
.x5e{left:521.205000px;}
.x3e{left:538.485000px;}
.x51{left:553.065000px;}
.x48{left:576.465000px;}
.x5d{left:584.925000px;}
.x2f{left:586.725000px;}
.x3f{left:603.645000px;}
.x52{left:616.785000px;}
.x49{left:633.210000px;}
.x35{left:669.389987px;}
.x30{left:671.369987px;}
.x53{left:680.730000px;}
.x40{left:693.509987px;}
.x4a{left:696.389987px;}
.x3{left:702.510000px;}
.xb{left:768.749987px;}
.x56{left:788.549987px;}
.x5{left:829.260000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v12{vertical-align:-18.560000pt;}
.v14{vertical-align:-16.000000pt;}
.v15{vertical-align:-14.080000pt;}
.v13{vertical-align:-12.160000pt;}
.va{vertical-align:-10.880000pt;}
.v5{vertical-align:-9.600000pt;}
.v9{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:1.920000pt;}
.vd{vertical-align:3.200000pt;}
.vb{vertical-align:10.880000pt;}
.ve{vertical-align:14.080000pt;}
.v6{vertical-align:16.000000pt;}
.v11{vertical-align:18.560000pt;}
.v10{vertical-align:19.840000pt;}
.v1{vertical-align:21.120000pt;}
.v16{vertical-align:28.800000pt;}
.v7{vertical-align:35.840000pt;}
.v3{vertical-align:40.960000pt;}
.v8{vertical-align:42.880000pt;}
.vf{vertical-align:48.000000pt;}
.v4{vertical-align:60.800000pt;}
.ls47{letter-spacing:-0.869333pt;}
.ls1b{letter-spacing:-0.730667pt;}
.ls13{letter-spacing:-0.688000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls31{letter-spacing:-0.592000pt;}
.lse{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls35{letter-spacing:-0.409067pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.230933pt;}
.ls4{letter-spacing:-0.185067pt;}
.ls46{letter-spacing:-0.183467pt;}
.ls1e{letter-spacing:-0.096000pt;}
.ls12{letter-spacing:-0.094933pt;}
.ls1c{letter-spacing:-0.089067pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:-0.016640pt;}
.ls1d{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.011520pt;}
.lsf{letter-spacing:0.012800pt;}
.ls11{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.094933pt;}
.ls34{letter-spacing:0.106240pt;}
.ls32{letter-spacing:0.120533pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.183467pt;}
.ls2a{letter-spacing:0.183680pt;}
.ls21{letter-spacing:0.211840pt;}
.ls6{letter-spacing:0.230933pt;}
.ls24{letter-spacing:0.231040pt;}
.ls36{letter-spacing:0.265600pt;}
.ls30{letter-spacing:0.297600pt;}
.lsb{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.355200pt;}
.ls42{letter-spacing:0.454187pt;}
.ls43{letter-spacing:0.475520pt;}
.ls38{letter-spacing:0.630400pt;}
.ls3e{letter-spacing:0.688000pt;}
.ls26{letter-spacing:1.248640pt;}
.lsa{letter-spacing:1.440000pt;}
.ls27{letter-spacing:1.577600pt;}
.ls28{letter-spacing:1.729280pt;}
.ls15{letter-spacing:1.832960pt;}
.ls29{letter-spacing:2.070400pt;}
.ls1{letter-spacing:2.080000pt;}
.ls2f{letter-spacing:2.187520pt;}
.ls33{letter-spacing:2.347520pt;}
.ls2d{letter-spacing:2.417280pt;}
.ls3c{letter-spacing:2.622720pt;}
.ls16{letter-spacing:2.827520pt;}
.ls18{letter-spacing:3.350400pt;}
.ls25{letter-spacing:3.360000pt;}
.ls17{letter-spacing:3.393280pt;}
.ls23{letter-spacing:4.313600pt;}
.ls3f{letter-spacing:4.640000pt;}
.lsc{letter-spacing:5.280000pt;}
.ls22{letter-spacing:6.667520pt;}
.ls40{letter-spacing:13.707520pt;}
.ls41{letter-spacing:14.347520pt;}
.ls45{letter-spacing:14.672640pt;}
.ls3a{letter-spacing:15.359360pt;}
.ls1f{letter-spacing:15.770880pt;}
.ls37{letter-spacing:16.702720pt;}
.ls2e{letter-spacing:16.907520pt;}
.ls3b{letter-spacing:17.342720pt;}
.ls39{letter-spacing:17.449387pt;}
.ls2c{letter-spacing:17.547520pt;}
.ls44{letter-spacing:40.912640pt;}
.ls10{letter-spacing:56.912640pt;}
.ls3d{letter-spacing:98.848000pt;}
.ls19{letter-spacing:151.307520pt;}
.ws3{word-spacing:-21.263360pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws1c{word-spacing:-13.968000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws1d{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.463467pt;}
.wsb{word-spacing:-13.440000pt;}
.ws23{word-spacing:-13.374933pt;}
.wsf{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.185067pt;}
.ws26{word-spacing:-13.096533pt;}
.wsd{word-spacing:-13.049067pt;}
.ws9{word-spacing:-12.960000pt;}
.ws25{word-spacing:-12.870933pt;}
.ws19{word-spacing:-12.688000pt;}
.wsc{word-spacing:-12.592000pt;}
.ws27{word-spacing:-12.410667pt;}
.ws13{word-spacing:-12.000000pt;}
.ws17{word-spacing:-11.697920pt;}
.ws14{word-spacing:-11.686400pt;}
.ws1{word-spacing:-9.280000pt;}
.ws1b{word-spacing:-8.640000pt;}
.ws1f{word-spacing:-0.177920pt;}
.ws1e{word-spacing:-0.167040pt;}
.ws6{word-spacing:0.000000pt;}
.ws24{word-spacing:0.416640pt;}
.ws20{word-spacing:0.462080pt;}
.ws21{word-spacing:0.472960pt;}
.ws16{word-spacing:1.074347pt;}
.ws15{word-spacing:3.032960pt;}
.ws1a{word-spacing:3.139627pt;}
.ws22{word-spacing:3.472640pt;}
.ws18{word-spacing:3.672960pt;}
.ws11{word-spacing:124.816000pt;}
.ws12{word-spacing:126.053333pt;}
.ws10{word-spacing:319.317333pt;}
._20{margin-left:-22.657280pt;}
._19{margin-left:-2.974720pt;}
._b{margin-left:-2.017707pt;}
._0{margin-left:-0.960000pt;}
._c{width:1.072213pt;}
._1{width:1.973333pt;}
._14{width:3.173760pt;}
._16{width:4.130987pt;}
._15{width:5.205760pt;}
._1a{width:6.247680pt;}
._17{width:7.457280pt;}
._18{width:8.557227pt;}
._6{width:9.600000pt;}
._13{width:10.517760pt;}
._1b{width:12.111360pt;}
._23{width:13.263360pt;}
._1d{width:14.178560pt;}
._1e{width:15.674880pt;}
._11{width:16.842667pt;}
._21{width:27.660587pt;}
._22{width:64.004267pt;}
._7{width:67.808853pt;}
._12{width:88.586667pt;}
._1f{width:94.775680pt;}
._8{width:136.960000pt;}
._1c{width:140.288000pt;}
._e{width:173.440000pt;}
._10{width:177.408000pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._4{width:344.937387pt;}
._5{width:387.946667pt;}
._9{width:537.212587pt;}
._f{width:566.506667pt;}
._a{width:974.986667pt;}
._d{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs9{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:48.128000pt;}
.fs2{font-size:53.120000pt;}
.fs8{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yce{bottom:2.240000pt;}
.ya0{bottom:5.120000pt;}
.ye{bottom:5.280000pt;}
.y135{bottom:5.306667pt;}
.y130{bottom:5.440000pt;}
.ye9{bottom:5.573333pt;}
.y168{bottom:5.600000pt;}
.y97{bottom:5.920000pt;}
.y109{bottom:5.946667pt;}
.y99{bottom:6.080000pt;}
.y94{bottom:6.720000pt;}
.y9a{bottom:6.880000pt;}
.y95{bottom:8.320000pt;}
.ya2{bottom:8.480000pt;}
.y18b{bottom:9.760000pt;}
.y189{bottom:9.920000pt;}
.y18e{bottom:9.946667pt;}
.yfb{bottom:10.560000pt;}
.y6{bottom:11.200000pt;}
.y1c7{bottom:11.360000pt;}
.y1c8{bottom:11.520000pt;}
.yda{bottom:12.320000pt;}
.y1ca{bottom:13.920000pt;}
.yd7{bottom:14.880000pt;}
.yd6{bottom:15.720000pt;}
.y8{bottom:16.160000pt;}
.yde{bottom:16.640000pt;}
.yd3{bottom:17.600000pt;}
.ydc{bottom:18.240000pt;}
.ydf{bottom:18.880000pt;}
.yd5{bottom:19.680000pt;}
.y9f{bottom:22.720000pt;}
.y171{bottom:22.880000pt;}
.ycd{bottom:24.320000pt;}
.yf5{bottom:25.053333pt;}
.y1c4{bottom:27.040000pt;}
.ycf{bottom:29.600000pt;}
.yc{bottom:30.720000pt;}
.yea{bottom:30.853333pt;}
.y13c{bottom:30.880000pt;}
.ye4{bottom:34.946667pt;}
.y1c5{bottom:35.840000pt;}
.y5{bottom:36.000000pt;}
.y170{bottom:40.480000pt;}
.yf6{bottom:45.373333pt;}
.yfc{bottom:47.680000pt;}
.yb{bottom:48.960000pt;}
.ye5{bottom:50.213333pt;}
.ycb{bottom:57.760000pt;}
.y199{bottom:58.080000pt;}
.y16f{bottom:58.560000pt;}
.yed{bottom:58.973333pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:63.840000pt;}
.ye6{bottom:65.466667pt;}
.yf7{bottom:65.666667pt;}
.y13b{bottom:66.880000pt;}
.ya{bottom:67.040000pt;}
.y198{bottom:75.840000pt;}
.y16e{bottom:76.480000pt;}
.yf2{bottom:76.866667pt;}
.yd8{bottom:78.080000pt;}
.yd1{bottom:79.880000pt;}
.ye7{bottom:80.733333pt;}
.yee{bottom:81.786667pt;}
.y9e{bottom:83.040000pt;}
.y13a{bottom:84.480000pt;}
.y3{bottom:85.786667pt;}
.yf8{bottom:85.986667pt;}
.y7c{bottom:86.560000pt;}
.y1c2{bottom:87.520000pt;}
.y69{bottom:88.160000pt;}
.y116{bottom:88.640000pt;}
.yc6{bottom:89.600000pt;}
.y3b{bottom:90.880000pt;}
.ye2{bottom:91.040000pt;}
.y165{bottom:92.000000pt;}
.y197{bottom:93.920000pt;}
.y16d{bottom:94.280000pt;}
.y14e{bottom:94.720000pt;}
.y17d{bottom:95.360000pt;}
.ye8{bottom:96.026667pt;}
.y1e5{bottom:96.160000pt;}
.y203{bottom:100.320000pt;}
.y139{bottom:102.240000pt;}
.y200{bottom:102.560000pt;}
.y7b{bottom:104.160000pt;}
.yef{bottom:104.640000pt;}
.y124{bottom:104.960000pt;}
.y1c1{bottom:105.280000pt;}
.yeb{bottom:105.440000pt;}
.y68{bottom:105.760000pt;}
.y115{bottom:106.240000pt;}
.yf9{bottom:106.306667pt;}
.yc5{bottom:107.200000pt;}
.y3a{bottom:108.480000pt;}
.ye1{bottom:108.640000pt;}
.y164{bottom:109.600000pt;}
.y2{bottom:111.866667pt;}
.y16c{bottom:111.880000pt;}
.y196{bottom:112.000000pt;}
.y14d{bottom:112.320000pt;}
.y17c{bottom:113.120000pt;}
.y1e4{bottom:113.760000pt;}
.y202{bottom:118.080000pt;}
.y9d{bottom:119.040000pt;}
.y1ff{bottom:120.160000pt;}
.y138{bottom:120.320000pt;}
.ye0{bottom:121.120000pt;}
.y7a{bottom:121.760000pt;}
.y123{bottom:122.560000pt;}
.y1c0{bottom:122.880000pt;}
.y67{bottom:123.520000pt;}
.y114{bottom:124.000000pt;}
.yc4{bottom:124.960000pt;}
.yfa{bottom:126.626667pt;}
.y1a6{bottom:126.720000pt;}
.y163{bottom:127.200000pt;}
.yf0{bottom:127.453333pt;}
.y14c{bottom:129.920000pt;}
.y195{bottom:130.080000pt;}
.y17b{bottom:130.720000pt;}
.y1e3{bottom:131.520000pt;}
.y39{bottom:134.240000pt;}
.y201{bottom:135.706667pt;}
.y1fe{bottom:137.786667pt;}
.yfd{bottom:137.853333pt;}
.y137{bottom:138.240000pt;}
.y9c{bottom:138.906667pt;}
.y79{bottom:139.546667pt;}
.y122{bottom:140.186667pt;}
.y1bf{bottom:140.506667pt;}
.y66{bottom:141.146667pt;}
.y113{bottom:141.626667pt;}
.yf4{bottom:143.680000pt;}
.y1a5{bottom:144.346667pt;}
.yf3{bottom:144.640000pt;}
.y162{bottom:144.826667pt;}
.y14b{bottom:147.546667pt;}
.y194{bottom:148.000000pt;}
.y17a{bottom:148.826667pt;}
.y1e2{bottom:149.146667pt;}
.yf1{bottom:150.266667pt;}
.yc3{bottom:150.586667pt;}
.y38{bottom:151.866667pt;}
.y1fd{bottom:155.546667pt;}
.y112{bottom:156.346667pt;}
.y78{bottom:157.146667pt;}
.y121{bottom:157.786667pt;}
.y1be{bottom:158.106667pt;}
.y65{bottom:158.746667pt;}
.y9b{bottom:158.906667pt;}
.y1a4{bottom:161.946667pt;}
.y161{bottom:162.586667pt;}
.y14a{bottom:165.146667pt;}
.y192{bottom:166.080000pt;}
.y179{bottom:166.426667pt;}
.y1e1{bottom:166.746667pt;}
.yc2{bottom:168.186667pt;}
.y37{bottom:169.466667pt;}
.y193{bottom:171.200000pt;}
.y1fc{bottom:173.146667pt;}
.y77{bottom:174.746667pt;}
.y120{bottom:175.546667pt;}
.y1bd{bottom:175.706667pt;}
.y64{bottom:176.346667pt;}
.y98{bottom:178.746667pt;}
.y1a3{bottom:179.546667pt;}
.y160{bottom:180.186667pt;}
.y149{bottom:182.906667pt;}
.y178{bottom:184.026667pt;}
.y191{bottom:184.320000pt;}
.y1e0{bottom:184.346667pt;}
.yc1{bottom:185.786667pt;}
.ydd{bottom:186.906667pt;}
.y36{bottom:187.066667pt;}
.y1fb{bottom:190.746667pt;}
.y76{bottom:192.346667pt;}
.y11f{bottom:193.146667pt;}
.y1bc{bottom:193.466667pt;}
.y1a2{bottom:197.306667pt;}
.y15f{bottom:197.786667pt;}
.y96{bottom:198.746667pt;}
.y148{bottom:200.506667pt;}
.y177{bottom:201.626667pt;}
.y63{bottom:201.946667pt;}
.y35{bottom:204.666667pt;}
.y1fa{bottom:208.346667pt;}
.y75{bottom:209.946667pt;}
.y11e{bottom:210.746667pt;}
.yc0{bottom:211.386667pt;}
.y1b9{bottom:211.866667pt;}
.y15e{bottom:215.386667pt;}
.y1ba{bottom:215.866667pt;}
.y1bb{bottom:216.826667pt;}
.y93{bottom:218.746667pt;}
.y176{bottom:219.226667pt;}
.y1a1{bottom:219.546667pt;}
.y62{bottom:219.706667pt;}
.y34{bottom:222.426667pt;}
.y1b8{bottom:224.026667pt;}
.y1f9{bottom:225.946667pt;}
.y147{bottom:226.106667pt;}
.y74{bottom:227.706667pt;}
.ydb{bottom:228.186667pt;}
.y11d{bottom:228.346667pt;}
.ybf{bottom:229.146667pt;}
.y1a0{bottom:232.506667pt;}
.y15d{bottom:232.986667pt;}
.y175{bottom:236.986667pt;}
.y61{bottom:237.306667pt;}
.y33{bottom:240.026667pt;}
.y146{bottom:243.706667pt;}
.y73{bottom:245.306667pt;}
.y11c{bottom:245.946667pt;}
.ybe{bottom:246.746667pt;}
.y1b7{bottom:250.426667pt;}
.y15c{bottom:250.746667pt;}
.y174{bottom:251.706667pt;}
.y60{bottom:254.906667pt;}
.y32{bottom:257.626667pt;}
.y19f{bottom:258.106667pt;}
.y92{bottom:260.666667pt;}
.y145{bottom:261.306667pt;}
.y72{bottom:262.906667pt;}
.y11b{bottom:263.706667pt;}
.ybd{bottom:264.346667pt;}
.y1b6{bottom:268.026667pt;}
.y15b{bottom:268.346667pt;}
.y5f{bottom:272.506667pt;}
.yd9{bottom:272.666667pt;}
.y31{bottom:275.226667pt;}
.y19e{bottom:275.706667pt;}
.y91{bottom:278.266667pt;}
.y1f8{bottom:278.906667pt;}
.y144{bottom:279.066667pt;}
.y71{bottom:280.506667pt;}
.y11a{bottom:281.306667pt;}
.ybc{bottom:281.946667pt;}
.y1b5{bottom:285.786667pt;}
.y15a{bottom:285.946667pt;}
.y5e{bottom:290.106667pt;}
.y30{bottom:292.826667pt;}
.y19d{bottom:293.466667pt;}
.y90{bottom:296.026667pt;}
.y1f7{bottom:296.506667pt;}
.y143{bottom:296.666667pt;}
.y70{bottom:298.106667pt;}
.y119{bottom:298.906667pt;}
.ybb{bottom:299.546667pt;}
.y1b4{bottom:303.386667pt;}
.y159{bottom:303.546667pt;}
.yd0{bottom:305.306667pt;}
.yec{bottom:307.840000pt;}
.y5d{bottom:307.866667pt;}
.y2f{bottom:310.586667pt;}
.y19c{bottom:311.066667pt;}
.y8f{bottom:313.626667pt;}
.y1f6{bottom:314.106667pt;}
.y142{bottom:314.266667pt;}
.y6f{bottom:315.866667pt;}
.y1b3{bottom:320.986667pt;}
.y158{bottom:321.146667pt;}
.yba{bottom:325.306667pt;}
.y5c{bottom:325.466667pt;}
.y2e{bottom:328.186667pt;}
.y19b{bottom:328.666667pt;}
.y8e{bottom:331.226667pt;}
.y1f5{bottom:331.866667pt;}
.y6e{bottom:333.466667pt;}
.y157{bottom:338.906667pt;}
.y141{bottom:339.866667pt;}
.yb9{bottom:342.906667pt;}
.y5b{bottom:343.066667pt;}
.y2d{bottom:345.786667pt;}
.y19a{bottom:346.266667pt;}
.y1b2{bottom:346.586667pt;}
.y8d{bottom:348.826667pt;}
.y1f4{bottom:349.466667pt;}
.y6d{bottom:351.066667pt;}
.y156{bottom:356.866667pt;}
.y140{bottom:357.506667pt;}
.y1df{bottom:359.106667pt;}
.y190{bottom:359.426667pt;}
.yb8{bottom:360.546667pt;}
.y2c{bottom:363.426667pt;}
.y1b1{bottom:364.226667pt;}
.y8c{bottom:366.466667pt;}
.y1f3{bottom:367.106667pt;}
.y5a{bottom:368.706667pt;}
.y155{bottom:374.626667pt;}
.y13f{bottom:375.266667pt;}
.y1de{bottom:376.706667pt;}
.yb7{bottom:378.146667pt;}
.y2b{bottom:381.026667pt;}
.y1b0{bottom:381.986667pt;}
.yd4{bottom:382.626667pt;}
.y8b{bottom:384.226667pt;}
.y1f2{bottom:384.706667pt;}
.y59{bottom:386.306667pt;}
.y13e{bottom:390.626667pt;}
.y154{bottom:392.226667pt;}
.y1dd{bottom:394.306667pt;}
.yb6{bottom:395.746667pt;}
.y2a{bottom:398.786667pt;}
.y8a{bottom:399.586667pt;}
.y1af{bottom:399.906667pt;}
.y1f1{bottom:402.306667pt;}
.y58{bottom:404.066667pt;}
.y13d{bottom:408.226667pt;}
.y153{bottom:409.826667pt;}
.y1dc{bottom:412.066667pt;}
.y29{bottom:416.386667pt;}
.y89{bottom:417.186667pt;}
.y1ae{bottom:417.666667pt;}
.y1f0{bottom:420.066667pt;}
.y136{bottom:421.346667pt;}
.yb5{bottom:421.506667pt;}
.y57{bottom:421.666667pt;}
.y152{bottom:427.426667pt;}
.y1db{bottom:429.666667pt;}
.yd2{bottom:429.986667pt;}
.y28{bottom:433.986667pt;}
.y88{bottom:434.786667pt;}
.y1ad{bottom:435.266667pt;}
.y111{bottom:437.506667pt;}
.y1ef{bottom:437.666667pt;}
.yb4{bottom:439.106667pt;}
.y56{bottom:439.266667pt;}
.y151{bottom:445.026667pt;}
.y1da{bottom:447.266667pt;}
.y27{bottom:451.586667pt;}
.y1ac{bottom:452.866667pt;}
.y87{bottom:453.346667pt;}
.y110{bottom:455.106667pt;}
.y1ee{bottom:455.266667pt;}
.yb3{bottom:456.706667pt;}
.y55{bottom:456.866667pt;}
.y150{bottom:462.786667pt;}
.y26{bottom:469.186667pt;}
.y1ab{bottom:470.466667pt;}
.y86{bottom:471.906667pt;}
.y10f{bottom:472.866667pt;}
.yca{bottom:473.186667pt;}
.yb2{bottom:474.306667pt;}
.y54{bottom:474.466667pt;}
.ye3{bottom:475.680000pt;}
.y14f{bottom:477.346667pt;}
.y25{bottom:486.946667pt;}
.y1aa{bottom:488.066667pt;}
.y10e{bottom:490.466667pt;}
.yb1{bottom:491.906667pt;}
.y53{bottom:492.226667pt;}
.y85{bottom:497.506667pt;}
.y24{bottom:504.546667pt;}
.y1a9{bottom:505.826667pt;}
.y10d{bottom:508.066667pt;}
.y1d9{bottom:508.226667pt;}
.y6c{bottom:509.826667pt;}
.yb0{bottom:514.786667pt;}
.y84{bottom:516.066667pt;}
.y52{bottom:517.826667pt;}
.y23{bottom:522.146667pt;}
.y1a8{bottom:523.426667pt;}
.yae{bottom:523.746667pt;}
.y10c{bottom:525.666667pt;}
.y1ed{bottom:525.826667pt;}
.y6b{bottom:527.426667pt;}
.y1d8{bottom:533.826667pt;}
.y83{bottom:534.786667pt;}
.y51{bottom:535.426667pt;}
.yaf{bottom:536.386667pt;}
.y1a7{bottom:538.146667pt;}
.y22{bottom:539.746667pt;}
.ycc{bottom:540.386667pt;}
.y10b{bottom:543.266667pt;}
.y1ec{bottom:543.426667pt;}
.y6a{bottom:545.026667pt;}
.y1d7{bottom:551.426667pt;}
.y50{bottom:553.026667pt;}
.y18f{bottom:557.186667pt;}
.y21{bottom:557.346667pt;}
.y82{bottom:560.386667pt;}
.y10a{bottom:561.026667pt;}
.y1d6{bottom:569.026667pt;}
.y4f{bottom:570.626667pt;}
.y134{bottom:573.026667pt;}
.y108{bottom:573.506667pt;}
.y20{bottom:575.106667pt;}
.y18d{bottom:575.426667pt;}
.y81{bottom:578.013333pt;}
.y1eb{bottom:578.653333pt;}
.y1d5{bottom:586.653333pt;}
.yad{bottom:588.253333pt;}
.y4e{bottom:588.413333pt;}
.y133{bottom:591.453333pt;}
.y1f{bottom:592.733333pt;}
.y107{bottom:593.373333pt;}
.y18c{bottom:593.853333pt;}
.y80{bottom:595.613333pt;}
.y1ea{bottom:596.413333pt;}
.yc9{bottom:596.893333pt;}
.y1d4{bottom:604.253333pt;}
.y4d{bottom:606.013333pt;}
.y132{bottom:609.693333pt;}
.y1e{bottom:610.333333pt;}
.y18a{bottom:612.093333pt;}
.y7f{bottom:613.213333pt;}
.y106{bottom:613.373333pt;}
.yac{bottom:613.853333pt;}
.y1e9{bottom:614.013333pt;}
.y1d3{bottom:622.013333pt;}
.y4c{bottom:623.613333pt;}
.y1d{bottom:627.933333pt;}
.y131{bottom:628.093333pt;}
.y7e{bottom:628.573333pt;}
.y188{bottom:630.333333pt;}
.yab{bottom:631.453333pt;}
.y1e8{bottom:631.613333pt;}
.y105{bottom:633.213333pt;}
.y4b{bottom:641.213333pt;}
.y1c{bottom:645.533333pt;}
.y7d{bottom:646.333333pt;}
.y1d2{bottom:647.613333pt;}
.y187{bottom:648.733333pt;}
.yaa{bottom:649.213333pt;}
.y104{bottom:653.213333pt;}
.y4a{bottom:658.813333pt;}
.y1b{bottom:663.293333pt;}
.y12f{bottom:664.893333pt;}
.y1d1{bottom:665.213333pt;}
.ya9{bottom:666.813333pt;}
.y186{bottom:666.973333pt;}
.y103{bottom:673.213333pt;}
.y49{bottom:676.573333pt;}
.ya8{bottom:679.293333pt;}
.y173{bottom:679.613333pt;}
.y1a{bottom:680.893333pt;}
.y1d0{bottom:682.813333pt;}
.y1e7{bottom:684.573333pt;}
.y185{bottom:685.373333pt;}
.y12e{bottom:687.773333pt;}
.y102{bottom:693.053333pt;}
.y48{bottom:694.173333pt;}
.y172{bottom:697.213333pt;}
.y19{bottom:698.493333pt;}
.ya7{bottom:699.133333pt;}
.y1cf{bottom:700.413333pt;}
.y1e6{bottom:702.173333pt;}
.y12d{bottom:703.133333pt;}
.y184{bottom:703.613333pt;}
.y16b{bottom:710.333333pt;}
.y47{bottom:711.773333pt;}
.y118{bottom:715.453333pt;}
.y18{bottom:716.093333pt;}
.y1ce{bottom:718.173333pt;}
.ya6{bottom:719.133333pt;}
.y101{bottom:719.773333pt;}
.y12c{bottom:720.733333pt;}
.y183{bottom:721.853333pt;}
.y117{bottom:727.773333pt;}
.y46{bottom:729.373333pt;}
.y17{bottom:733.693333pt;}
.y1cd{bottom:735.773333pt;}
.y100{bottom:737.373333pt;}
.y12b{bottom:738.333333pt;}
.ya5{bottom:739.133333pt;}
.y182{bottom:740.253333pt;}
.y45{bottom:746.973333pt;}
.y1cc{bottom:748.893333pt;}
.y16{bottom:751.293333pt;}
.yff{bottom:754.973333pt;}
.y12a{bottom:755.933333pt;}
.y181{bottom:758.813333pt;}
.ya4{bottom:758.973333pt;}
.y44{bottom:764.733333pt;}
.y15{bottom:769.053333pt;}
.yfe{bottom:772.733333pt;}
.y129{bottom:773.533333pt;}
.ya3{bottom:778.973333pt;}
.y1cb{bottom:779.773333pt;}
.y43{bottom:782.333333pt;}
.y14{bottom:786.653333pt;}
.yc8{bottom:790.333333pt;}
.y128{bottom:791.293333pt;}
.ya1{bottom:798.853333pt;}
.y42{bottom:799.973333pt;}
.y13{bottom:804.293333pt;}
.yc7{bottom:807.973333pt;}
.y127{bottom:808.933333pt;}
.y1c9{bottom:810.853333pt;}
.y180{bottom:817.573333pt;}
.y12{bottom:822.373333pt;}
.y41{bottom:825.573333pt;}
.y126{bottom:826.693333pt;}
.y17f{bottom:835.173333pt;}
.y16a{bottom:835.813333pt;}
.y11{bottom:841.413333pt;}
.y40{bottom:843.173333pt;}
.y1c3{bottom:846.693333pt;}
.y125{bottom:852.773333pt;}
.y17e{bottom:852.933333pt;}
.y169{bottom:854.053333pt;}
.y3f{bottom:860.933333pt;}
.y10{bottom:862.213333pt;}
.y167{bottom:872.293333pt;}
.y1c6{bottom:877.733333pt;}
.y3e{bottom:878.533333pt;}
.yf{bottom:890.373333pt;}
.y166{bottom:891.013333pt;}
.y3d{bottom:896.133333pt;}
.y3c{bottom:913.733333pt;}
.y9{bottom:930.213333pt;}
.y1{bottom:944.773333pt;}
.y7{bottom:975.333333pt;}
.h7{height:2.135000pt;}
.h30{height:17.600000pt;}
.h2e{height:17.760000pt;}
.h31{height:17.792000pt;}
.h2f{height:17.920000pt;}
.h34{height:18.080000pt;}
.hb{height:19.040000pt;}
.hf{height:19.200000pt;}
.h11{height:19.232000pt;}
.h10{height:19.360000pt;}
.h24{height:19.392000pt;}
.he{height:20.800000pt;}
.h13{height:20.960000pt;}
.h38{height:24.384375pt;}
.h3b{height:28.822500pt;}
.h8{height:29.760000pt;}
.h40{height:30.240000pt;}
.h42{height:30.432000pt;}
.h20{height:32.000000pt;}
.h27{height:33.867188pt;}
.h26{height:33.957500pt;}
.h12{height:35.200000pt;}
.h3a{height:35.760625pt;}
.h1e{height:37.120000pt;}
.h2b{height:37.195312pt;}
.hd{height:37.479688pt;}
.h1d{height:38.912000pt;}
.h41{height:39.347188pt;}
.h28{height:39.737500pt;}
.h43{height:40.021563pt;}
.h22{height:40.640000pt;}
.h4{height:41.543750pt;}
.h1b{height:42.400000pt;}
.h21{height:43.840000pt;}
.h5{height:44.301250pt;}
.h23{height:45.120000pt;}
.h1c{height:46.720000pt;}
.h37{height:47.382500pt;}
.ha{height:49.105000pt;}
.h15{height:51.174688pt;}
.h3d{height:51.760625pt;}
.h33{height:55.600625pt;}
.h36{height:55.707292pt;}
.h18{height:55.872000pt;}
.h3{height:56.445312pt;}
.h9{height:58.563750pt;}
.hc{height:60.057813pt;}
.h3f{height:61.280000pt;}
.h19{height:66.560000pt;}
.h3e{height:73.101250pt;}
.h16{height:80.141250pt;}
.h3c{height:92.134687pt;}
.h2d{height:93.581250pt;}
.h2c{height:94.054688pt;}
.h14{height:96.560625pt;}
.h6{height:100.032000pt;}
.h25{height:120.640000pt;}
.h17{height:123.072000pt;}
.h35{height:124.672000pt;}
.h2{height:130.592000pt;}
.h32{height:151.040000pt;}
.h2a{height:161.120000pt;}
.h1f{height:163.520000pt;}
.h29{height:164.640000pt;}
.h1a{height:167.066667pt;}
.h39{height:197.120000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.w18{width:42.240000pt;}
.w19{width:44.960000pt;}
.w17{width:49.312000pt;}
.w7{width:49.440000pt;}
.w1b{width:49.792000pt;}
.w30{width:51.840000pt;}
.w8{width:52.000000pt;}
.wc{width:52.032000pt;}
.w1a{width:52.800000pt;}
.w2c{width:52.960000pt;}
.w37{width:53.632000pt;}
.w22{width:54.112000pt;}
.w33{width:56.000000pt;}
.w3c{width:56.160000pt;}
.w31{width:56.192000pt;}
.w25{width:57.152000pt;}
.w24{width:57.280000pt;}
.w26{width:57.600000pt;}
.w20{width:62.272000pt;}
.w21{width:64.960000pt;}
.w2b{width:65.440000pt;}
.w2a{width:65.760000pt;}
.w1d{width:72.512000pt;}
.w23{width:73.760000pt;}
.w32{width:74.880000pt;}
.w38{width:74.912000pt;}
.w3a{width:75.072000pt;}
.w29{width:77.792000pt;}
.w1c{width:78.720000pt;}
.w11{width:84.512000pt;}
.w3b{width:93.760000pt;}
.w10{width:103.232000pt;}
.w36{width:105.120000pt;}
.w2f{width:107.232000pt;}
.w39{width:112.800000pt;}
.wf{width:121.920000pt;}
.w3{width:122.272000pt;}
.wb{width:122.752000pt;}
.wd{width:148.506667pt;}
.w6{width:160.506667pt;}
.w27{width:166.106667pt;}
.w28{width:275.266667pt;}
.w14{width:292.000000pt;}
.w16{width:295.200000pt;}
.w9{width:302.466667pt;}
.w15{width:305.600000pt;}
.w12{width:307.546667pt;}
.we{width:325.213333pt;}
.w34{width:358.146667pt;}
.w1e{width:394.813333pt;}
.w2d{width:441.373333pt;}
.w1f{width:511.293333pt;}
.w2e{width:528.253333pt;}
.w35{width:528.893333pt;}
.wa{width:567.773333pt;}
.w2{width:577.253333pt;}
.w13{width:619.773333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x23{left:15.200000pt;}
.x46{left:20.346667pt;}
.x29{left:22.653333pt;}
.x21{left:24.933333pt;}
.x28{left:29.506667pt;}
.x20{left:30.946667pt;}
.x27{left:35.586667pt;}
.x25{left:37.600000pt;}
.x1{left:47.200000pt;}
.x6{left:72.799988pt;}
.x19{left:87.392000pt;}
.x22{left:91.386667pt;}
.x54{left:92.634667pt;}
.xd{left:96.031988pt;}
.x4{left:105.306667pt;}
.xe{left:113.472000pt;}
.x24{left:129.026667pt;}
.x4c{left:132.832000pt;}
.x26{left:140.160000pt;}
.x39{left:141.306667pt;}
.xa{left:172.026655pt;}
.x55{left:172.994667pt;}
.x42{left:176.186667pt;}
.x57{left:196.346655pt;}
.x2a{left:199.866667pt;}
.x1a{left:209.946667pt;}
.x7{left:217.946655pt;}
.x3a{left:220.986667pt;}
.x41{left:226.266655pt;}
.x12{left:234.586667pt;}
.x4d{left:240.706667pt;}
.x2b{left:249.826667pt;}
.x44{left:255.106667pt;}
.x4b{left:256.066655pt;}
.x5b{left:264.866667pt;}
.xf{left:274.626667pt;}
.x3b{left:283.906667pt;}
.x36{left:285.026655pt;}
.x1d{left:292.040000pt;}
.x4e{left:293.186667pt;}
.xc{left:299.906655pt;}
.x9{left:300.866655pt;}
.x1f{left:302.120000pt;}
.x1e{left:305.640000pt;}
.x33{left:308.546655pt;}
.x1b{left:313.826667pt;}
.x37{left:321.026655pt;}
.x32{left:322.466655pt;}
.x10{left:324.706667pt;}
.x31{left:326.466655pt;}
.x58{left:327.586655pt;}
.x5c{left:330.946667pt;}
.x34{left:335.426655pt;}
.x2c{left:338.306667pt;}
.x15{left:340.546655pt;}
.x43{left:342.306667pt;}
.x3c{left:349.506667pt;}
.x59{left:356.066655pt;}
.x13{left:357.986667pt;}
.x4f{left:359.266667pt;}
.x38{left:364.386655pt;}
.x11{left:377.346667pt;}
.x45{left:387.586667pt;}
.x2d{left:391.746667pt;}
.x8{left:396.893322pt;}
.x1c{left:398.973333pt;}
.x16{left:400.413322pt;}
.x3d{left:404.253333pt;}
.x18{left:406.173322pt;}
.x14{left:410.653333pt;}
.x50{left:416.093333pt;}
.x47{left:438.013333pt;}
.x2e{left:442.173333pt;}
.x17{left:444.093322pt;}
.x5a{left:458.333322pt;}
.x5e{left:463.293333pt;}
.x3e{left:478.653333pt;}
.x51{left:491.613333pt;}
.x48{left:512.413333pt;}
.x5d{left:519.933333pt;}
.x2f{left:521.533333pt;}
.x3f{left:536.573333pt;}
.x52{left:548.253333pt;}
.x49{left:562.853333pt;}
.x35{left:595.013322pt;}
.x30{left:596.773322pt;}
.x53{left:605.093333pt;}
.x40{left:616.453322pt;}
.x4a{left:619.013322pt;}
.x3{left:624.453333pt;}
.xb{left:683.333322pt;}
.x56{left:700.933322pt;}
.x5{left:737.120000pt;}
}




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