
    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_79923099832f25a78f30cfdd.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_fa126e872d670391fb76e85e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_6193fc93719873dbca485474.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.035156;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_7af7491b4bb2e9f441b5c8cd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.886719;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_6ecee2a6264bec7e70477203.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.708008;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_c78a09d51d2afed81191fa11.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.886719;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_439b5ca2691e3d1f24624f9b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.940430;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_893b2b8444cc1cd56a552663.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;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_ebb184ccf2e8188b628f5165.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.708008;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_1c4ee6fcaed4c017cb46fa4d.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_5b70ee94bcad0a2d34e3fcd0.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_942c7301bed2a1e93ca971ca.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938965;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:ff11;src:url('chunks/assets/font_18be4feebe04d4623e6a9242.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_97e3d6005a7db07abec8352b.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.040039;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);}
.m3{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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls16{letter-spacing:-19.260000px;}
.ls11{letter-spacing:-15.660000px;}
.ls17{letter-spacing:-14.220000px;}
.ls19{letter-spacing:-12.780000px;}
.ls10{letter-spacing:-12.060000px;}
.ls15{letter-spacing:-10.440000px;}
.ls1c{letter-spacing:-0.612000px;}
.ls8{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.364800px;}
.ls7{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.226200px;}
.ls6{letter-spacing:-0.180000px;}
.ls1f{letter-spacing:-0.106800px;}
.lsa{letter-spacing:-0.089400px;}
.ls5{letter-spacing:0.000000px;}
.lse{letter-spacing:0.119520px;}
.ls3{letter-spacing:0.144720px;}
.ls13{letter-spacing:0.152400px;}
.ls0{letter-spacing:0.153360px;}
.lsb{letter-spacing:0.178800px;}
.lsd{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.206400px;}
.lsf{letter-spacing:0.259800px;}
.ls12{letter-spacing:0.259920px;}
.ls20{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.480000px;}
.ls1a{letter-spacing:0.900000px;}
.ls1e{letter-spacing:16.506720px;}
.ls14{letter-spacing:29.700000px;}
.ls18{letter-spacing:46.026720px;}
.ls2{letter-spacing:48.420000px;}
.ls1{letter-spacing:71.280000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11{word-spacing:-41.760000px;}
.ws10{word-spacing:-18.000000px;}
.wsd{word-spacing:-15.300000px;}
.ws17{word-spacing:-15.238800px;}
.wse{word-spacing:-15.199800px;}
.ws14{word-spacing:-15.146400px;}
.wsf{word-spacing:-14.940000px;}
.ws16{word-spacing:-14.833200px;}
.ws13{word-spacing:-14.580000px;}
.ws15{word-spacing:-14.220000px;}
.ws7{word-spacing:-13.500000px;}
.ws12{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.ws0{word-spacing:-11.340000px;}
.ws6{word-spacing:-10.980000px;}
.ws5{word-spacing:-10.975200px;}
.ws9{word-spacing:-10.440000px;}
.wsa{word-spacing:-10.350600px;}
.wsb{word-spacing:-10.213800px;}
.ws8{word-spacing:-9.000000px;}
.ws4{word-spacing:-7.560000px;}
.wsc{word-spacing:0.000000px;}
.ws3{word-spacing:60.840000px;}
._16{margin-left:-2814.336000px;}
._25{margin-left:-2784.096000px;}
._17{margin-left:-2752.965600px;}
._26{margin-left:-2725.000800px;}
._6{margin-left:-60.300000px;}
._34{margin-left:-19.076880px;}
._42{margin-left:-15.776640px;}
._1c{margin-left:-4.395120px;}
._e{margin-left:-2.781600px;}
._0{margin-left:-1.347840px;}
._1{width:1.200720px;}
._3{width:2.271120px;}
._2{width:3.332640px;}
._a{width:4.732320px;}
._f{width:5.847840px;}
._d{width:6.872400px;}
._11{width:8.208000px;}
._10{width:9.558000px;}
._8{width:10.811040px;}
._14{width:12.156960px;}
._18{width:13.410960px;}
._13{width:14.736000px;}
._12{width:16.038000px;}
._9{width:17.748720px;}
._c{width:19.025760px;}
._b{width:20.139120px;}
._1a{width:21.845520px;}
._19{width:23.246640px;}
._1b{width:24.382080px;}
._22{width:26.115120px;}
._21{width:27.668880px;}
._23{width:29.575680px;}
._20{width:31.510080px;}
._1f{width:32.623440px;}
._2d{width:34.541280px;}
._28{width:35.736480px;}
._24{width:37.288080px;}
._1e{width:38.599440px;}
._1d{width:39.800160px;}
._2c{width:40.870320px;}
._2b{width:42.005760px;}
._27{width:43.086960px;}
._38{width:45.471840px;}
._37{width:46.965840px;}
._32{width:48.525120px;}
._30{width:49.595280px;}
._29{width:51.089280px;}
._2a{width:52.181520px;}
._35{width:53.370000px;}
._2f{width:55.038960px;}
._45{width:57.369600px;}
._2e{width:58.684320px;}
._31{width:63.220560px;}
._4{width:65.496000px;}
._3b{width:66.659760px;}
._3d{width:71.114400px;}
._36{width:72.668160px;}
._39{width:78.207120px;}
._3a{width:79.421040px;}
._47{width:123.831840px;}
._41{width:129.920880px;}
._40{width:131.173200px;}
._33{width:132.482400px;}
._3c{width:138.105360px;}
._3f{width:175.112640px;}
._5{width:199.620000px;}
._3e{width:281.005680px;}
._15{width:285.870000px;}
._44{width:331.703040px;}
._43{width:332.863200px;}
._46{width:340.527600px;}
._48{width:658.930560px;}
._7{width:755.976000px;}
.fc8{color:transparent;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(70,120,134);}
.fc7{color:rgb(0,0,255);}
.fc1{color:rgb(26,123,123);}
.fc6{color:rgb(255,255,255);}
.fc3{color:rgb(102,102,102);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fs13{font-size:6.000000px;}
.fsf{font-size:23.760000px;}
.fsc{font-size:30.240000px;}
.fsb{font-size:33.120000px;}
.fs10{font-size:36.000000px;}
.fse{font-size:37.946952px;}
.fs11{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs4{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:51.120000px;}
.fs9{font-size:54.000000px;}
.fs12{font-size:56.880000px;}
.fs7{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fsd{font-size:72.000000px;}
.fs1{font-size:81.360000px;}
.fs0{font-size:84.240000px;}
.fsa{font-size:95.760000px;}
.y4c{bottom:-246.630000px;}
.y4b{bottom:-212.970000px;}
.y88{bottom:-182.745000px;}
.y4a{bottom:-179.310000px;}
.y87{bottom:-148.905000px;}
.y49{bottom:-145.470000px;}
.y86{bottom:-115.245000px;}
.y48{bottom:-111.810000px;}
.y85{bottom:-81.405000px;}
.y47{bottom:-77.970000px;}
.y84{bottom:-47.745000px;}
.y46{bottom:-44.280000px;}
.y8a{bottom:-17.922750px;}
.y83{bottom:-14.040000px;}
.y45{bottom:-10.620000px;}
.y0{bottom:0.000000px;}
.y248{bottom:1.837500px;}
.y75{bottom:2.520000px;}
.y12d{bottom:2.880000px;}
.y6d{bottom:3.060000px;}
.y6{bottom:3.780000px;}
.y150{bottom:4.500000px;}
.y178{bottom:4.680000px;}
.y77{bottom:5.370000px;}
.y153{bottom:5.760000px;}
.y15b{bottom:5.940000px;}
.y152{bottom:6.480000px;}
.y44{bottom:7.560000px;}
.y15c{bottom:7.740000px;}
.y190{bottom:8.640000px;}
.y173{bottom:8.820000px;}
.y157{bottom:9.000000px;}
.y192{bottom:9.360000px;}
.y159{bottom:9.720000px;}
.y12f{bottom:9.900000px;}
.y16d{bottom:11.700000px;}
.y9{bottom:12.420000px;}
.y179{bottom:12.600000px;}
.y16a{bottom:13.680000px;}
.y169{bottom:14.400000px;}
.y170{bottom:14.940000px;}
.y74{bottom:15.480000px;}
.y16f{bottom:15.660000px;}
.y174{bottom:16.020000px;}
.y138{bottom:16.740000px;}
.y82{bottom:16.920000px;}
.y16c{bottom:20.340000px;}
.y177{bottom:20.520000px;}
.y18d{bottom:20.565000px;}
.y6c{bottom:20.880000px;}
.y43{bottom:21.600000px;}
.ya{bottom:21.780000px;}
.y168{bottom:22.500000px;}
.y7{bottom:23.220000px;}
.y13c{bottom:23.580000px;}
.y141{bottom:23.610000px;}
.y134{bottom:23.760000px;}
.y8{bottom:24.480000px;}
.y172{bottom:24.660000px;}
.y73{bottom:28.620000px;}
.y81{bottom:30.060000px;}
.yc{bottom:35.100000px;}
.y42{bottom:35.460000px;}
.y6b{bottom:36.360000px;}
.y72{bottom:41.610000px;}
.y80{bottom:43.020000px;}
.y8c{bottom:47.520000px;}
.y6a{bottom:48.600000px;}
.y41{bottom:49.500000px;}
.y71{bottom:54.750000px;}
.y7f{bottom:56.160000px;}
.y5{bottom:57.420000px;}
.y40{bottom:62.460000px;}
.y89{bottom:63.780000px;}
.y69{bottom:66.420000px;}
.y70{bottom:67.710000px;}
.y7e{bottom:69.120000px;}
.y7d{bottom:82.080000px;}
.y68{bottom:84.240000px;}
.y6f{bottom:84.810000px;}
.y7c{bottom:95.220000px;}
.y67{bottom:102.240000px;}
.ybe{bottom:103.320000px;}
.y19b{bottom:105.120000px;}
.yd6{bottom:106.200000px;}
.y7b{bottom:108.180000px;}
.y103{bottom:109.260000px;}
.y163{bottom:115.380000px;}
.y19a{bottom:117.180000px;}
.y66{bottom:120.060000px;}
.y7a{bottom:121.320000px;}
.y1c8{bottom:122.220000px;}
.ybd{bottom:123.120000px;}
.yd5{bottom:126.000000px;}
.y247{bottom:126.540000px;}
.y3e{bottom:126.900000px;}
.y1ec{bottom:128.700000px;}
.y102{bottom:129.060000px;}
.y199{bottom:129.240000px;}
.y79{bottom:133.560000px;}
.y216{bottom:134.460000px;}
.y162{bottom:135.180000px;}
.y65{bottom:137.880000px;}
.y198{bottom:141.300000px;}
.y1c7{bottom:142.020000px;}
.ybc{bottom:142.920000px;}
.y246{bottom:143.820000px;}
.yd4{bottom:145.980000px;}
.y3d{bottom:146.700000px;}
.y1eb{bottom:148.500000px;}
.y121{bottom:148.860000px;}
.y101{bottom:150.120000px;}
.y215{bottom:151.740000px;}
.y197{bottom:153.360000px;}
.y161{bottom:155.160000px;}
.y64{bottom:155.700000px;}
.y245{bottom:161.100000px;}
.y1c6{bottom:162.000000px;}
.ybb{bottom:162.750000px;}
.y196{bottom:165.450000px;}
.yd3{bottom:165.810000px;}
.y3c{bottom:166.530000px;}
.y120{bottom:168.690000px;}
.y214{bottom:169.050000px;}
.y1ea{bottom:169.590000px;}
.y100{bottom:170.310000px;}
.y63{bottom:173.565000px;}
.y160{bottom:174.990000px;}
.y195{bottom:177.510000px;}
.y244{bottom:178.410000px;}
.y1c5{bottom:181.830000px;}
.yba{bottom:182.730000px;}
.yff{bottom:184.710000px;}
.yd2{bottom:185.610000px;}
.y213{bottom:186.150000px;}
.y3b{bottom:186.330000px;}
.y11f{bottom:188.670000px;}
.y194{bottom:189.570000px;}
.y62{bottom:191.565000px;}
.y243{bottom:195.690000px;}
.y193{bottom:201.630000px;}
.yb9{bottom:202.530000px;}
.y212{bottom:203.430000px;}
.y15f{bottom:204.330000px;}
.yfe{bottom:204.510000px;}
.yd1{bottom:205.410000px;}
.y3a{bottom:207.390000px;}
.y11e{bottom:208.470000px;}
.y61{bottom:209.385000px;}
.y1e9{bottom:210.090000px;}
.y242{bottom:212.790000px;}
.y15e{bottom:217.290000px;}
.y211{bottom:220.710000px;}
.y1c4{bottom:221.430000px;}
.yb8{bottom:222.330000px;}
.yfd{bottom:224.310000px;}
.y39{bottom:224.850000px;}
.y60{bottom:224.865000px;}
.yd0{bottom:225.210000px;}
.y11d{bottom:228.270000px;}
.y15d{bottom:229.350000px;}
.y1e8{bottom:229.890000px;}
.y241{bottom:230.070000px;}
.y4d{bottom:231.690000px;}
.y38{bottom:233.310000px;}
.y5f{bottom:237.105000px;}
.y210{bottom:237.990000px;}
.y1c3{bottom:241.230000px;}
.yb7{bottom:242.130000px;}
.yfc{bottom:244.110000px;}
.ycf{bottom:245.190000px;}
.y240{bottom:247.350000px;}
.y11c{bottom:248.070000px;}
.y1e7{bottom:249.870000px;}
.y37{bottom:253.470000px;}
.y5e{bottom:254.925000px;}
.y20f{bottom:255.270000px;}
.y1c2{bottom:261.210000px;}
.yb6{bottom:261.930000px;}
.yfb{bottom:263.910000px;}
.y23f{bottom:264.630000px;}
.yce{bottom:264.990000px;}
.y36{bottom:266.430000px;}
.y15a{bottom:267.510000px;}
.y11b{bottom:267.870000px;}
.y1e6{bottom:269.670000px;}
.y20e{bottom:272.550000px;}
.y5d{bottom:272.745000px;}
.y1c1{bottom:281.010000px;}
.yb5{bottom:281.910000px;}
.yfa{bottom:283.890000px;}
.y35{bottom:284.790000px;}
.y158{bottom:286.230000px;}
.y11a{bottom:287.850000px;}
.y1e5{bottom:289.470000px;}
.y20d{bottom:289.650000px;}
.y5c{bottom:290.745000px;}
.y191{bottom:296.850000px;}
.y23e{bottom:299.190000px;}
.y1c0{bottom:300.810000px;}
.yb4{bottom:301.710000px;}
.yf9{bottom:303.690000px;}
.ycd{bottom:304.590000px;}
.y20c{bottom:306.930000px;}
.y119{bottom:307.650000px;}
.y5b{bottom:308.565000px;}
.y34{bottom:308.730000px;}
.y1e4{bottom:309.270000px;}
.y156{bottom:312.510000px;}
.y23d{bottom:316.290000px;}
.y1bf{bottom:320.610000px;}
.yb3{bottom:321.510000px;}
.y18f{bottom:322.410000px;}
.yf8{bottom:323.490000px;}
.y20b{bottom:324.210000px;}
.ycc{bottom:324.390000px;}
.y5a{bottom:326.385000px;}
.y118{bottom:327.450000px;}
.y1e3{bottom:329.070000px;}
.y33{bottom:332.490000px;}
.y23c{bottom:333.570000px;}
.y155{bottom:337.530000px;}
.y1be{bottom:340.410000px;}
.yb2{bottom:341.310000px;}
.y20a{bottom:341.490000px;}
.y59{bottom:341.865000px;}
.yf7{bottom:343.290000px;}
.ycb{bottom:344.370000px;}
.y18e{bottom:346.530000px;}
.y117{bottom:347.250000px;}
.y1e2{bottom:349.050000px;}
.y23b{bottom:350.850000px;}
.y58{bottom:354.105000px;}
.y32{bottom:356.250000px;}
.y154{bottom:357.330000px;}
.y209{bottom:358.770000px;}
.y1bd{bottom:360.390000px;}
.yb1{bottom:361.110000px;}
.yf6{bottom:363.090000px;}
.yca{bottom:364.170000px;}
.y116{bottom:367.050000px;}
.y23a{bottom:368.130000px;}
.y1e1{bottom:370.110000px;}
.y57{bottom:371.925000px;}
.y151{bottom:373.170000px;}
.y208{bottom:376.050000px;}
.y31{bottom:380.010000px;}
.y1bc{bottom:380.190000px;}
.y18c{bottom:380.550000px;}
.yb0{bottom:381.090000px;}
.yf5{bottom:383.070000px;}
.yc9{bottom:383.970000px;}
.y239{bottom:385.410000px;}
.y115{bottom:387.030000px;}
.y56{bottom:389.925000px;}
.y207{bottom:393.195000px;}
.y1e0{bottom:393.915000px;}
.y14f{bottom:395.355000px;}
.y1bb{bottom:400.035000px;}
.yaf{bottom:400.935000px;}
.y238{bottom:402.555000px;}
.yf4{bottom:402.915000px;}
.y30{bottom:403.815000px;}
.y114{bottom:406.875000px;}
.y55{bottom:407.775000px;}
.y206{bottom:410.475000px;}
.y14e{bottom:418.755000px;}
.y18b{bottom:419.835000px;}
.yae{bottom:420.735000px;}
.yf3{bottom:422.715000px;}
.yc8{bottom:424.875000px;}
.y54{bottom:425.595000px;}
.y113{bottom:426.675000px;}
.y2f{bottom:427.755000px;}
.y1df{bottom:434.415000px;}
.y78{bottom:435.855000px;}
.y14d{bottom:437.115000px;}
.y18a{bottom:437.655000px;}
.y1ba{bottom:439.635000px;}
.yad{bottom:440.535000px;}
.yf2{bottom:442.515000px;}
.y53{bottom:443.415000px;}
.yc7{bottom:444.675000px;}
.y205{bottom:445.035000px;}
.y112{bottom:446.475000px;}
.y2e{bottom:448.455000px;}
.y1de{bottom:454.215000px;}
.y237{bottom:454.395000px;}
.y189{bottom:455.655000px;}
.y14c{bottom:456.915000px;}
.yc6{bottom:457.455000px;}
.y1b9{bottom:459.615000px;}
.yac{bottom:460.335000px;}
.y52{bottom:461.235000px;}
.yf1{bottom:462.315000px;}
.y111{bottom:466.275000px;}
.y2d{bottom:468.075000px;}
.y236{bottom:471.675000px;}
.y188{bottom:474.015000px;}
.y1dd{bottom:474.195000px;}
.y51{bottom:476.715000px;}
.yc5{bottom:477.255000px;}
.y1b8{bottom:479.415000px;}
.yab{bottom:480.315000px;}
.y2c{bottom:481.935000px;}
.yf0{bottom:482.295000px;}
.y110{bottom:486.255000px;}
.y235{bottom:488.955000px;}
.y50{bottom:489.135000px;}
.y2b{bottom:490.575000px;}
.y187{bottom:493.815000px;}
.y1dc{bottom:493.995000px;}
.y14b{bottom:496.515000px;}
.y204{bottom:496.695000px;}
.yc4{bottom:497.055000px;}
.y1b7{bottom:499.215000px;}
.yaa{bottom:500.115000px;}
.yef{bottom:502.095000px;}
.y10f{bottom:506.055000px;}
.y4f{bottom:506.955000px;}
.y186{bottom:513.615000px;}
.y2a{bottom:513.795000px;}
.y203{bottom:513.975000px;}
.y14a{bottom:516.495000px;}
.yc3{bottom:516.855000px;}
.y1b6{bottom:519.015000px;}
.ya9{bottom:519.915000px;}
.yee{bottom:521.895000px;}
.y234{bottom:523.335000px;}
.y4e{bottom:524.775000px;}
.y10e{bottom:525.855000px;}
.y202{bottom:531.255000px;}
.y185{bottom:533.415000px;}
.y1db{bottom:533.595000px;}
.y149{bottom:536.295000px;}
.yc2{bottom:536.655000px;}
.y29{bottom:537.015000px;}
.y1b5{bottom:538.815000px;}
.ya8{bottom:539.715000px;}
.y233{bottom:540.615000px;}
.yed{bottom:541.695000px;}
.y10d{bottom:545.655000px;}
.y201{bottom:548.535000px;}
.y184{bottom:553.395000px;}
.y148{bottom:556.095000px;}
.yc1{bottom:556.635000px;}
.y232{bottom:557.895000px;}
.y1b4{bottom:558.795000px;}
.ya7{bottom:559.515000px;}
.y28{bottom:560.415000px;}
.yec{bottom:561.495000px;}
.y10c{bottom:565.455000px;}
.y200{bottom:565.815000px;}
.y183{bottom:573.195000px;}
.y1da{bottom:573.375000px;}
.y231{bottom:575.175000px;}
.y147{bottom:575.895000px;}
.yc0{bottom:577.695000px;}
.y1b3{bottom:578.595000px;}
.ya6{bottom:579.495000px;}
.yeb{bottom:581.475000px;}
.y1ff{bottom:582.915000px;}
.y10b{bottom:585.435000px;}
.y6e{bottom:590.835000px;}
.y230{bottom:592.455000px;}
.y182{bottom:592.995000px;}
.y146{bottom:594.075000px;}
.y1d9{bottom:594.435000px;}
.ybf{bottom:598.395000px;}
.ya5{bottom:599.295000px;}
.y1fe{bottom:600.195000px;}
.yea{bottom:601.275000px;}
.y10a{bottom:605.235000px;}
.y145{bottom:606.135000px;}
.y22f{bottom:609.555000px;}
.y181{bottom:612.795000px;}
.y27{bottom:615.495000px;}
.y1fd{bottom:617.475000px;}
.y140{bottom:618.195000px;}
.ya4{bottom:619.095000px;}
.ye9{bottom:621.075000px;}
.y109{bottom:625.065000px;}
.y22e{bottom:626.865000px;}
.y26{bottom:631.005000px;}
.y144{bottom:632.085000px;}
.y180{bottom:632.625000px;}
.y1fc{bottom:634.785000px;}
.y1d8{bottom:634.965000px;}
.y1b2{bottom:638.025000px;}
.ya3{bottom:638.925000px;}
.ye8{bottom:640.905000px;}
.y22d{bottom:644.145000px;}
.y108{bottom:644.865000px;}
.y143{bottom:645.765000px;}
.y25{bottom:646.665000px;}
.y17f{bottom:649.005000px;}
.y1fb{bottom:652.065000px;}
.y1d7{bottom:654.765000px;}
.y1b1{bottom:658.005000px;}
.ya2{bottom:658.725000px;}
.y142{bottom:659.625000px;}
.ye7{bottom:660.705000px;}
.y17e{bottom:661.245000px;}
.y22c{bottom:661.425000px;}
.y24{bottom:662.145000px;}
.y107{bottom:664.665000px;}
.y1fa{bottom:669.345000px;}
.y17d{bottom:673.305000px;}
.y13b{bottom:673.485000px;}
.y1d6{bottom:674.565000px;}
.y23{bottom:677.625000px;}
.y1b0{bottom:677.805000px;}
.ya1{bottom:678.705000px;}
.ye6{bottom:680.685000px;}
.y106{bottom:684.645000px;}
.y17c{bottom:685.365000px;}
.y13f{bottom:687.165000px;}
.y22{bottom:688.245000px;}
.y1d5{bottom:694.545000px;}
.y22b{bottom:695.985000px;}
.y17b{bottom:697.425000px;}
.y1af{bottom:697.605000px;}
.y3f{bottom:697.965000px;}
.ya0{bottom:698.505000px;}
.ye5{bottom:700.485000px;}
.y13e{bottom:701.025000px;}
.y21{bottom:703.185000px;}
.y105{bottom:705.705000px;}
.y17a{bottom:709.485000px;}
.y22a{bottom:713.085000px;}
.y1d4{bottom:714.345000px;}
.y13d{bottom:714.885000px;}
.y1ae{bottom:717.405000px;}
.y9f{bottom:718.305000px;}
.ye4{bottom:720.285000px;}
.y20{bottom:721.005000px;}
.y176{bottom:721.365000px;}
.y104{bottom:725.325000px;}
.y1f9{bottom:727.845000px;}
.y137{bottom:728.565000px;}
.y229{bottom:730.365000px;}
.y1f{bottom:733.965000px;}
.y1d3{bottom:734.145000px;}
.y1ad{bottom:737.205000px;}
.y9e{bottom:738.105000px;}
.ye3{bottom:740.085000px;}
.y13a{bottom:742.425000px;}
.y1e{bottom:746.925000px;}
.y1f8{bottom:747.645000px;}
.y175{bottom:753.225000px;}
.y1d2{bottom:753.945000px;}
.y139{bottom:756.285000px;}
.y1ac{bottom:757.185000px;}
.y9d{bottom:757.905000px;}
.ye2{bottom:759.885000px;}
.y1d{bottom:760.965000px;}
.y228{bottom:764.925000px;}
.y1f7{bottom:768.705000px;}
.y133{bottom:769.965000px;}
.y1d1{bottom:773.745000px;}
.y1c{bottom:775.725000px;}
.y1ab{bottom:776.985000px;}
.y9c{bottom:777.885000px;}
.ye1{bottom:779.865000px;}
.y227{bottom:782.205000px;}
.y136{bottom:783.825000px;}
.y171{bottom:784.905000px;}
.y1b{bottom:786.885000px;}
.y1d0{bottom:793.725000px;}
.y1aa{bottom:796.785000px;}
.y9b{bottom:797.685000px;}
.y226{bottom:799.305000px;}
.ye0{bottom:799.665000px;}
.y1f6{bottom:809.205000px;}
.y1a{bottom:811.185000px;}
.y135{bottom:811.365000px;}
.y1cf{bottom:813.525000px;}
.y1a9{bottom:816.585000px;}
.y9a{bottom:817.485000px;}
.ydf{bottom:819.465000px;}
.y131{bottom:825.225000px;}
.y16e{bottom:825.405000px;}
.y1f5{bottom:829.005000px;}
.y1ce{bottom:833.325000px;}
.y225{bottom:833.865000px;}
.y19{bottom:834.945000px;}
.y1a8{bottom:836.385000px;}
.y99{bottom:837.285000px;}
.y132{bottom:839.085000px;}
.yde{bottom:839.265000px;}
.y18{bottom:849.705000px;}
.y1f4{bottom:850.245000px;}
.y224{bottom:851.145000px;}
.y12e{bottom:852.810000px;}
.y1cd{bottom:853.170000px;}
.y1a7{bottom:856.410000px;}
.y98{bottom:857.130000px;}
.ydd{bottom:859.110000px;}
.y16b{bottom:863.790000px;}
.y17{bottom:864.690000px;}
.y130{bottom:866.670000px;}
.y223{bottom:868.470000px;}
.y1cc{bottom:872.970000px;}
.y16{bottom:875.130000px;}
.y1a6{bottom:876.210000px;}
.y97{bottom:877.110000px;}
.ydc{bottom:879.090000px;}
.y12c{bottom:882.690000px;}
.y222{bottom:885.750000px;}
.y15{bottom:889.530000px;}
.y1f3{bottom:890.790000px;}
.y1cb{bottom:892.950000px;}
.y167{bottom:895.470000px;}
.y1a5{bottom:896.010000px;}
.y96{bottom:896.910000px;}
.ydb{bottom:898.890000px;}
.y221{bottom:902.850000px;}
.y12b{bottom:904.110000px;}
.y1f2{bottom:910.590000px;}
.y1ca{bottom:912.750000px;}
.y14{bottom:914.010000px;}
.y1a4{bottom:915.810000px;}
.y95{bottom:916.710000px;}
.yda{bottom:918.690000px;}
.y220{bottom:920.130000px;}
.y12a{bottom:922.110000px;}
.y1f1{bottom:930.390000px;}
.y1c9{bottom:932.550000px;}
.y166{bottom:933.450000px;}
.y13{bottom:935.250000px;}
.y1a3{bottom:935.610000px;}
.y94{bottom:936.510000px;}
.y21f{bottom:937.410000px;}
.y129{bottom:938.130000px;}
.yd9{bottom:939.750000px;}
.y1f0{bottom:950.190000px;}
.y128{bottom:952.350000px;}
.y12{bottom:954.510000px;}
.y21e{bottom:954.690000px;}
.y1a2{bottom:955.590000px;}
.y93{bottom:956.310000px;}
.y165{bottom:959.730000px;}
.yd8{bottom:960.630000px;}
.y1ef{bottom:970.170000px;}
.y21d{bottom:971.970000px;}
.y127{bottom:972.150000px;}
.y1a1{bottom:975.390000px;}
.y92{bottom:976.290000px;}
.y164{bottom:977.730000px;}
.y11{bottom:982.050000px;}
.y21c{bottom:989.250000px;}
.y1ee{bottom:989.970000px;}
.y126{bottom:992.130000px;}
.y1a0{bottom:995.190000px;}
.y91{bottom:996.090000px;}
.y21b{bottom:1006.350000px;}
.y10{bottom:1006.890000px;}
.y1ed{bottom:1011.030000px;}
.y125{bottom:1011.930000px;}
.y19f{bottom:1014.990000px;}
.y90{bottom:1015.890000px;}
.yf{bottom:1021.110000px;}
.y21a{bottom:1023.630000px;}
.y124{bottom:1031.730000px;}
.y76{bottom:1031.760000px;}
.y19e{bottom:1034.790000px;}
.y8f{bottom:1035.690000px;}
.ye{bottom:1036.590000px;}
.y219{bottom:1040.910000px;}
.y123{bottom:1051.530000px;}
.yd{bottom:1052.250000px;}
.y19d{bottom:1054.770000px;}
.y8e{bottom:1055.490000px;}
.y218{bottom:1058.190000px;}
.y4{bottom:1069.350000px;}
.y122{bottom:1072.590000px;}
.y19c{bottom:1072.770000px;}
.y8d{bottom:1075.290000px;}
.y217{bottom:1075.470000px;}
.y3{bottom:1087.560000px;}
.yb{bottom:1088.100000px;}
.y2{bottom:1101.240000px;}
.yd7{bottom:1105.380000px;}
.y1{bottom:1117.080000px;}
.y8b{bottom:1122.660000px;}
.h20{height:4.064063px;}
.h9{height:4.165313px;}
.h4f{height:6.257812px;}
.h5{height:13.500000px;}
.h31{height:13.680000px;}
.h33{height:13.716000px;}
.h2e{height:13.860000px;}
.h38{height:13.896000px;}
.h39{height:15.840000px;}
.h1d{height:17.181914px;}
.h3e{height:18.720000px;}
.h40{height:18.900000px;}
.h3b{height:19.800000px;}
.h3a{height:19.836000px;}
.h24{height:21.336328px;}
.h13{height:21.867891px;}
.h26{height:22.140000px;}
.h3f{height:22.320000px;}
.h49{height:24.120000px;}
.h3c{height:25.020000px;}
.h1f{height:25.400391px;}
.h4a{height:25.560000px;}
.h2d{height:26.033203px;}
.h1b{height:26.125587px;}
.h3d{height:26.280000px;}
.h30{height:27.540000px;}
.h32{height:27.576000px;}
.h4b{height:29.464453px;}
.h8{height:30.198516px;}
.h16{height:30.963516px;}
.h42{height:31.680000px;}
.h45{height:31.860000px;}
.h47{height:31.896000px;}
.h2f{height:32.004492px;}
.h18{height:32.801836px;}
.h22{height:32.868281px;}
.h11{height:32.942109px;}
.h1e{height:34.036523px;}
.h7{height:34.200000px;}
.h28{height:34.419375px;}
.h1a{height:34.884492px;}
.hd{height:35.120039px;}
.h41{height:35.820000px;}
.h3{height:36.967148px;}
.h48{height:38.100586px;}
.h43{height:38.376000px;}
.h1c{height:39.049805px;}
.hc{height:39.313477px;}
.h44{height:40.500000px;}
.h4e{height:41.143359px;}
.h35{height:41.400000px;}
.hf{height:42.164648px;}
.h6{height:43.215117px;}
.h4d{height:43.506914px;}
.h19{height:45.992812px;}
.h46{height:47.875781px;}
.h12{height:47.884219px;}
.hb{height:48.224531px;}
.h2b{height:49.255313px;}
.h15{height:50.800781px;}
.h4c{height:52.066406px;}
.h2c{height:52.171875px;}
.h29{height:52.998047px;}
.h10{height:53.958516px;}
.h36{height:55.080000px;}
.h34{height:55.260000px;}
.h17{height:55.291992px;}
.h37{height:55.296000px;}
.h2{height:59.436914px;}
.h4{height:65.884219px;}
.he{height:67.565039px;}
.h14{height:67.824844px;}
.ha{height:68.400000px;}
.h21{height:72.900000px;}
.h2a{height:75.093750px;}
.h25{height:92.916000px;}
.h27{height:144.720000px;}
.h23{height:537.375000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w16{width:32.760000px;}
.w15{width:32.940000px;}
.w14{width:38.160000px;}
.w17{width:38.556000px;}
.w13{width:64.836000px;}
.w4{width:82.080000px;}
.we{width:87.696000px;}
.w18{width:100.980000px;}
.w6{width:101.160000px;}
.wd{width:101.340000px;}
.w19{width:108.036000px;}
.w12{width:123.840000px;}
.w10{width:128.340000px;}
.w1a{width:135.396000px;}
.wc{width:148.176000px;}
.w7{width:154.470000px;}
.wb{width:180.390000px;}
.w9{width:182.550000px;}
.w11{width:255.135000px;}
.wf{width:337.215000px;}
.w8{width:532.725000px;}
.w5{width:639.870000px;}
.w3{width:721.950000px;}
.wa{width:743.040000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x45{left:4.252500px;}
.x8{left:8.100000px;}
.x3d{left:9.720000px;}
.x16{left:10.800000px;}
.x3a{left:13.500000px;}
.x27{left:14.610000px;}
.x38{left:16.020000px;}
.x25{left:17.670000px;}
.x2c{left:19.440000px;}
.x1b{left:21.255000px;}
.x22{left:22.680000px;}
.x24{left:24.690000px;}
.x40{left:25.920000px;}
.x29{left:27.000000px;}
.x26{left:28.620000px;}
.x28{left:30.960000px;}
.xf{left:33.659987px;}
.x2a{left:35.280000px;}
.x2b{left:38.340000px;}
.x35{left:46.080000px;}
.x42{left:47.700000px;}
.x32{left:48.960000px;}
.xa{left:50.580000px;}
.x34{left:52.020000px;}
.x30{left:64.080000px;}
.x6{left:73.974000px;}
.x9{left:79.416000px;}
.x19{left:80.460000px;}
.x5{left:87.654000px;}
.x15{left:93.456000px;}
.x18{left:94.536000px;}
.x33{left:97.065000px;}
.x2f{left:98.865000px;}
.x3e{left:105.156000px;}
.x4{left:108.035987px;}
.xc{left:111.635987px;}
.x31{left:127.485000px;}
.xb{left:132.695987px;}
.x44{left:135.035987px;}
.x10{left:145.835987px;}
.x12{left:156.989987px;}
.x11{left:160.949987px;}
.xd{left:170.489987px;}
.x7{left:190.110000px;}
.x3f{left:206.130000px;}
.x36{left:235.650000px;}
.x1{left:239.969987px;}
.x37{left:300.495000px;}
.x17{left:303.195000px;}
.x1a{left:310.395000px;}
.x41{left:314.175000px;}
.x39{left:338.655000px;}
.xe{left:349.814987px;}
.x3{left:354.494987px;}
.x3b{left:371.595000px;}
.x2{left:401.654987px;}
.x3c{left:404.355000px;}
.x2d{left:445.605000px;}
.x20{left:468.644987px;}
.x13{left:489.164987px;}
.x14{left:490.784987px;}
.x43{left:517.784987px;}
.x2e{left:573.945000px;}
.x1c{left:620.253000px;}
.x21{left:639.690000px;}
.x23{left:741.030000px;}
.x1f{left:794.339987px;}
.x1d{left:798.119987px;}
.x1e{left:799.199987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls16{letter-spacing:-17.120000pt;}
.ls11{letter-spacing:-13.920000pt;}
.ls17{letter-spacing:-12.640000pt;}
.ls19{letter-spacing:-11.360000pt;}
.ls10{letter-spacing:-10.720000pt;}
.ls15{letter-spacing:-9.280000pt;}
.ls1c{letter-spacing:-0.544000pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.324267pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.201067pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls1f{letter-spacing:-0.094933pt;}
.lsa{letter-spacing:-0.079467pt;}
.ls5{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.106240pt;}
.ls3{letter-spacing:0.128640pt;}
.ls13{letter-spacing:0.135467pt;}
.ls0{letter-spacing:0.136320pt;}
.lsb{letter-spacing:0.158933pt;}
.lsd{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.183467pt;}
.lsf{letter-spacing:0.230933pt;}
.ls12{letter-spacing:0.231040pt;}
.ls20{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.426667pt;}
.ls1a{letter-spacing:0.800000pt;}
.ls1e{letter-spacing:14.672640pt;}
.ls14{letter-spacing:26.400000pt;}
.ls18{letter-spacing:40.912640pt;}
.ls2{letter-spacing:43.040000pt;}
.ls1{letter-spacing:63.360000pt;}
.ws11{word-spacing:-37.120000pt;}
.ws10{word-spacing:-16.000000pt;}
.wsd{word-spacing:-13.600000pt;}
.ws17{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.510933pt;}
.ws14{word-spacing:-13.463467pt;}
.wsf{word-spacing:-13.280000pt;}
.ws16{word-spacing:-13.185067pt;}
.ws13{word-spacing:-12.960000pt;}
.ws15{word-spacing:-12.640000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws12{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws0{word-spacing:-10.080000pt;}
.ws6{word-spacing:-9.760000pt;}
.ws5{word-spacing:-9.755733pt;}
.ws9{word-spacing:-9.280000pt;}
.wsa{word-spacing:-9.200533pt;}
.wsb{word-spacing:-9.078933pt;}
.ws8{word-spacing:-8.000000pt;}
.ws4{word-spacing:-6.720000pt;}
.wsc{word-spacing:0.000000pt;}
.ws3{word-spacing:54.080000pt;}
._16{margin-left:-2501.632000pt;}
._25{margin-left:-2474.752000pt;}
._17{margin-left:-2447.080533pt;}
._26{margin-left:-2422.222933pt;}
._6{margin-left:-53.600000pt;}
._34{margin-left:-16.957227pt;}
._42{margin-left:-14.023680pt;}
._1c{margin-left:-3.906773pt;}
._e{margin-left:-2.472533pt;}
._0{margin-left:-1.198080pt;}
._1{width:1.067307pt;}
._3{width:2.018773pt;}
._2{width:2.962347pt;}
._a{width:4.206507pt;}
._f{width:5.198080pt;}
._d{width:6.108800pt;}
._11{width:7.296000pt;}
._10{width:8.496000pt;}
._8{width:9.609813pt;}
._14{width:10.806187pt;}
._18{width:11.920853pt;}
._13{width:13.098667pt;}
._12{width:14.256000pt;}
._9{width:15.776640pt;}
._c{width:16.911787pt;}
._b{width:17.901440pt;}
._1a{width:19.418240pt;}
._19{width:20.663680pt;}
._1b{width:21.672960pt;}
._22{width:23.213440pt;}
._21{width:24.594560pt;}
._23{width:26.289493pt;}
._20{width:28.008960pt;}
._1f{width:28.998613pt;}
._2d{width:30.703360pt;}
._28{width:31.765760pt;}
._24{width:33.144960pt;}
._1e{width:34.310613pt;}
._1d{width:35.377920pt;}
._2c{width:36.329173pt;}
._2b{width:37.338453pt;}
._27{width:38.299520pt;}
._38{width:40.419413pt;}
._37{width:41.747413pt;}
._32{width:43.133440pt;}
._30{width:44.084693pt;}
._29{width:45.412693pt;}
._2a{width:46.383573pt;}
._35{width:47.440000pt;}
._2f{width:48.923520pt;}
._45{width:50.995200pt;}
._2e{width:52.163840pt;}
._31{width:56.196053pt;}
._4{width:58.218667pt;}
._3b{width:59.253120pt;}
._3d{width:63.212800pt;}
._36{width:64.593920pt;}
._39{width:69.517440pt;}
._3a{width:70.596480pt;}
._47{width:110.072747pt;}
._41{width:115.485227pt;}
._40{width:116.598400pt;}
._33{width:117.762133pt;}
._3c{width:122.760320pt;}
._3f{width:155.655680pt;}
._5{width:177.440000pt;}
._3e{width:249.782827pt;}
._15{width:254.106667pt;}
._44{width:294.847147pt;}
._43{width:295.878400pt;}
._46{width:302.691200pt;}
._48{width:585.716053pt;}
._7{width:671.978667pt;}
.fs8{font-size:5.120000pt;}
.fs13{font-size:5.333333pt;}
.fsf{font-size:21.120000pt;}
.fsc{font-size:26.880000pt;}
.fsb{font-size:29.440000pt;}
.fs10{font-size:32.000000pt;}
.fse{font-size:33.730624pt;}
.fs11{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs4{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:45.440000pt;}
.fs9{font-size:48.000000pt;}
.fs12{font-size:50.560000pt;}
.fs7{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fsd{font-size:64.000000pt;}
.fs1{font-size:72.320000pt;}
.fs0{font-size:74.880000pt;}
.fsa{font-size:85.120000pt;}
.y4c{bottom:-219.226667pt;}
.y4b{bottom:-189.306667pt;}
.y88{bottom:-162.440000pt;}
.y4a{bottom:-159.386667pt;}
.y87{bottom:-132.360000pt;}
.y49{bottom:-129.306667pt;}
.y86{bottom:-102.440000pt;}
.y48{bottom:-99.386667pt;}
.y85{bottom:-72.360000pt;}
.y47{bottom:-69.306667pt;}
.y84{bottom:-42.440000pt;}
.y46{bottom:-39.360000pt;}
.y8a{bottom:-15.931333pt;}
.y83{bottom:-12.480000pt;}
.y45{bottom:-9.440000pt;}
.y0{bottom:0.000000pt;}
.y248{bottom:1.633333pt;}
.y75{bottom:2.240000pt;}
.y12d{bottom:2.560000pt;}
.y6d{bottom:2.720000pt;}
.y6{bottom:3.360000pt;}
.y150{bottom:4.000000pt;}
.y178{bottom:4.160000pt;}
.y77{bottom:4.773333pt;}
.y153{bottom:5.120000pt;}
.y15b{bottom:5.280000pt;}
.y152{bottom:5.760000pt;}
.y44{bottom:6.720000pt;}
.y15c{bottom:6.880000pt;}
.y190{bottom:7.680000pt;}
.y173{bottom:7.840000pt;}
.y157{bottom:8.000000pt;}
.y192{bottom:8.320000pt;}
.y159{bottom:8.640000pt;}
.y12f{bottom:8.800000pt;}
.y16d{bottom:10.400000pt;}
.y9{bottom:11.040000pt;}
.y179{bottom:11.200000pt;}
.y16a{bottom:12.160000pt;}
.y169{bottom:12.800000pt;}
.y170{bottom:13.280000pt;}
.y74{bottom:13.760000pt;}
.y16f{bottom:13.920000pt;}
.y174{bottom:14.240000pt;}
.y138{bottom:14.880000pt;}
.y82{bottom:15.040000pt;}
.y16c{bottom:18.080000pt;}
.y177{bottom:18.240000pt;}
.y18d{bottom:18.280000pt;}
.y6c{bottom:18.560000pt;}
.y43{bottom:19.200000pt;}
.ya{bottom:19.360000pt;}
.y168{bottom:20.000000pt;}
.y7{bottom:20.640000pt;}
.y13c{bottom:20.960000pt;}
.y141{bottom:20.986667pt;}
.y134{bottom:21.120000pt;}
.y8{bottom:21.760000pt;}
.y172{bottom:21.920000pt;}
.y73{bottom:25.440000pt;}
.y81{bottom:26.720000pt;}
.yc{bottom:31.200000pt;}
.y42{bottom:31.520000pt;}
.y6b{bottom:32.320000pt;}
.y72{bottom:36.986667pt;}
.y80{bottom:38.240000pt;}
.y8c{bottom:42.240000pt;}
.y6a{bottom:43.200000pt;}
.y41{bottom:44.000000pt;}
.y71{bottom:48.666667pt;}
.y7f{bottom:49.920000pt;}
.y5{bottom:51.040000pt;}
.y40{bottom:55.520000pt;}
.y89{bottom:56.693333pt;}
.y69{bottom:59.040000pt;}
.y70{bottom:60.186667pt;}
.y7e{bottom:61.440000pt;}
.y7d{bottom:72.960000pt;}
.y68{bottom:74.880000pt;}
.y6f{bottom:75.386667pt;}
.y7c{bottom:84.640000pt;}
.y67{bottom:90.880000pt;}
.ybe{bottom:91.840000pt;}
.y19b{bottom:93.440000pt;}
.yd6{bottom:94.400000pt;}
.y7b{bottom:96.160000pt;}
.y103{bottom:97.120000pt;}
.y163{bottom:102.560000pt;}
.y19a{bottom:104.160000pt;}
.y66{bottom:106.720000pt;}
.y7a{bottom:107.840000pt;}
.y1c8{bottom:108.640000pt;}
.ybd{bottom:109.440000pt;}
.yd5{bottom:112.000000pt;}
.y247{bottom:112.480000pt;}
.y3e{bottom:112.800000pt;}
.y1ec{bottom:114.400000pt;}
.y102{bottom:114.720000pt;}
.y199{bottom:114.880000pt;}
.y79{bottom:118.720000pt;}
.y216{bottom:119.520000pt;}
.y162{bottom:120.160000pt;}
.y65{bottom:122.560000pt;}
.y198{bottom:125.600000pt;}
.y1c7{bottom:126.240000pt;}
.ybc{bottom:127.040000pt;}
.y246{bottom:127.840000pt;}
.yd4{bottom:129.760000pt;}
.y3d{bottom:130.400000pt;}
.y1eb{bottom:132.000000pt;}
.y121{bottom:132.320000pt;}
.y101{bottom:133.440000pt;}
.y215{bottom:134.880000pt;}
.y197{bottom:136.320000pt;}
.y161{bottom:137.920000pt;}
.y64{bottom:138.400000pt;}
.y245{bottom:143.200000pt;}
.y1c6{bottom:144.000000pt;}
.ybb{bottom:144.666667pt;}
.y196{bottom:147.066667pt;}
.yd3{bottom:147.386667pt;}
.y3c{bottom:148.026667pt;}
.y120{bottom:149.946667pt;}
.y214{bottom:150.266667pt;}
.y1ea{bottom:150.746667pt;}
.y100{bottom:151.386667pt;}
.y63{bottom:154.280000pt;}
.y160{bottom:155.546667pt;}
.y195{bottom:157.786667pt;}
.y244{bottom:158.586667pt;}
.y1c5{bottom:161.626667pt;}
.yba{bottom:162.426667pt;}
.yff{bottom:164.186667pt;}
.yd2{bottom:164.986667pt;}
.y213{bottom:165.466667pt;}
.y3b{bottom:165.626667pt;}
.y11f{bottom:167.706667pt;}
.y194{bottom:168.506667pt;}
.y62{bottom:170.280000pt;}
.y243{bottom:173.946667pt;}
.y193{bottom:179.226667pt;}
.yb9{bottom:180.026667pt;}
.y212{bottom:180.826667pt;}
.y15f{bottom:181.626667pt;}
.yfe{bottom:181.786667pt;}
.yd1{bottom:182.586667pt;}
.y3a{bottom:184.346667pt;}
.y11e{bottom:185.306667pt;}
.y61{bottom:186.120000pt;}
.y1e9{bottom:186.746667pt;}
.y242{bottom:189.146667pt;}
.y15e{bottom:193.146667pt;}
.y211{bottom:196.186667pt;}
.y1c4{bottom:196.826667pt;}
.yb8{bottom:197.626667pt;}
.yfd{bottom:199.386667pt;}
.y39{bottom:199.866667pt;}
.y60{bottom:199.880000pt;}
.yd0{bottom:200.186667pt;}
.y11d{bottom:202.906667pt;}
.y15d{bottom:203.866667pt;}
.y1e8{bottom:204.346667pt;}
.y241{bottom:204.506667pt;}
.y4d{bottom:205.946667pt;}
.y38{bottom:207.386667pt;}
.y5f{bottom:210.760000pt;}
.y210{bottom:211.546667pt;}
.y1c3{bottom:214.426667pt;}
.yb7{bottom:215.226667pt;}
.yfc{bottom:216.986667pt;}
.ycf{bottom:217.946667pt;}
.y240{bottom:219.866667pt;}
.y11c{bottom:220.506667pt;}
.y1e7{bottom:222.106667pt;}
.y37{bottom:225.306667pt;}
.y5e{bottom:226.600000pt;}
.y20f{bottom:226.906667pt;}
.y1c2{bottom:232.186667pt;}
.yb6{bottom:232.826667pt;}
.yfb{bottom:234.586667pt;}
.y23f{bottom:235.226667pt;}
.yce{bottom:235.546667pt;}
.y36{bottom:236.826667pt;}
.y15a{bottom:237.786667pt;}
.y11b{bottom:238.106667pt;}
.y1e6{bottom:239.706667pt;}
.y20e{bottom:242.266667pt;}
.y5d{bottom:242.440000pt;}
.y1c1{bottom:249.786667pt;}
.yb5{bottom:250.586667pt;}
.yfa{bottom:252.346667pt;}
.y35{bottom:253.146667pt;}
.y158{bottom:254.426667pt;}
.y11a{bottom:255.866667pt;}
.y1e5{bottom:257.306667pt;}
.y20d{bottom:257.466667pt;}
.y5c{bottom:258.440000pt;}
.y191{bottom:263.866667pt;}
.y23e{bottom:265.946667pt;}
.y1c0{bottom:267.386667pt;}
.yb4{bottom:268.186667pt;}
.yf9{bottom:269.946667pt;}
.ycd{bottom:270.746667pt;}
.y20c{bottom:272.826667pt;}
.y119{bottom:273.466667pt;}
.y5b{bottom:274.280000pt;}
.y34{bottom:274.426667pt;}
.y1e4{bottom:274.906667pt;}
.y156{bottom:277.786667pt;}
.y23d{bottom:281.146667pt;}
.y1bf{bottom:284.986667pt;}
.yb3{bottom:285.786667pt;}
.y18f{bottom:286.586667pt;}
.yf8{bottom:287.546667pt;}
.y20b{bottom:288.186667pt;}
.ycc{bottom:288.346667pt;}
.y5a{bottom:290.120000pt;}
.y118{bottom:291.066667pt;}
.y1e3{bottom:292.506667pt;}
.y33{bottom:295.546667pt;}
.y23c{bottom:296.506667pt;}
.y155{bottom:300.026667pt;}
.y1be{bottom:302.586667pt;}
.yb2{bottom:303.386667pt;}
.y20a{bottom:303.546667pt;}
.y59{bottom:303.880000pt;}
.yf7{bottom:305.146667pt;}
.ycb{bottom:306.106667pt;}
.y18e{bottom:308.026667pt;}
.y117{bottom:308.666667pt;}
.y1e2{bottom:310.266667pt;}
.y23b{bottom:311.866667pt;}
.y58{bottom:314.760000pt;}
.y32{bottom:316.666667pt;}
.y154{bottom:317.626667pt;}
.y209{bottom:318.906667pt;}
.y1bd{bottom:320.346667pt;}
.yb1{bottom:320.986667pt;}
.yf6{bottom:322.746667pt;}
.yca{bottom:323.706667pt;}
.y116{bottom:326.266667pt;}
.y23a{bottom:327.226667pt;}
.y1e1{bottom:328.986667pt;}
.y57{bottom:330.600000pt;}
.y151{bottom:331.706667pt;}
.y208{bottom:334.266667pt;}
.y31{bottom:337.786667pt;}
.y1bc{bottom:337.946667pt;}
.y18c{bottom:338.266667pt;}
.yb0{bottom:338.746667pt;}
.yf5{bottom:340.506667pt;}
.yc9{bottom:341.306667pt;}
.y239{bottom:342.586667pt;}
.y115{bottom:344.026667pt;}
.y56{bottom:346.600000pt;}
.y207{bottom:349.506667pt;}
.y1e0{bottom:350.146667pt;}
.y14f{bottom:351.426667pt;}
.y1bb{bottom:355.586667pt;}
.yaf{bottom:356.386667pt;}
.y238{bottom:357.826667pt;}
.yf4{bottom:358.146667pt;}
.y30{bottom:358.946667pt;}
.y114{bottom:361.666667pt;}
.y55{bottom:362.466667pt;}
.y206{bottom:364.866667pt;}
.y14e{bottom:372.226667pt;}
.y18b{bottom:373.186667pt;}
.yae{bottom:373.986667pt;}
.yf3{bottom:375.746667pt;}
.yc8{bottom:377.666667pt;}
.y54{bottom:378.306667pt;}
.y113{bottom:379.266667pt;}
.y2f{bottom:380.226667pt;}
.y1df{bottom:386.146667pt;}
.y78{bottom:387.426667pt;}
.y14d{bottom:388.546667pt;}
.y18a{bottom:389.026667pt;}
.y1ba{bottom:390.786667pt;}
.yad{bottom:391.586667pt;}
.yf2{bottom:393.346667pt;}
.y53{bottom:394.146667pt;}
.yc7{bottom:395.266667pt;}
.y205{bottom:395.586667pt;}
.y112{bottom:396.866667pt;}
.y2e{bottom:398.626667pt;}
.y1de{bottom:403.746667pt;}
.y237{bottom:403.906667pt;}
.y189{bottom:405.026667pt;}
.y14c{bottom:406.146667pt;}
.yc6{bottom:406.626667pt;}
.y1b9{bottom:408.546667pt;}
.yac{bottom:409.186667pt;}
.y52{bottom:409.986667pt;}
.yf1{bottom:410.946667pt;}
.y111{bottom:414.466667pt;}
.y2d{bottom:416.066667pt;}
.y236{bottom:419.266667pt;}
.y188{bottom:421.346667pt;}
.y1dd{bottom:421.506667pt;}
.y51{bottom:423.746667pt;}
.yc5{bottom:424.226667pt;}
.y1b8{bottom:426.146667pt;}
.yab{bottom:426.946667pt;}
.y2c{bottom:428.386667pt;}
.yf0{bottom:428.706667pt;}
.y110{bottom:432.226667pt;}
.y235{bottom:434.626667pt;}
.y50{bottom:434.786667pt;}
.y2b{bottom:436.066667pt;}
.y187{bottom:438.946667pt;}
.y1dc{bottom:439.106667pt;}
.y14b{bottom:441.346667pt;}
.y204{bottom:441.506667pt;}
.yc4{bottom:441.826667pt;}
.y1b7{bottom:443.746667pt;}
.yaa{bottom:444.546667pt;}
.yef{bottom:446.306667pt;}
.y10f{bottom:449.826667pt;}
.y4f{bottom:450.626667pt;}
.y186{bottom:456.546667pt;}
.y2a{bottom:456.706667pt;}
.y203{bottom:456.866667pt;}
.y14a{bottom:459.106667pt;}
.yc3{bottom:459.426667pt;}
.y1b6{bottom:461.346667pt;}
.ya9{bottom:462.146667pt;}
.yee{bottom:463.906667pt;}
.y234{bottom:465.186667pt;}
.y4e{bottom:466.466667pt;}
.y10e{bottom:467.426667pt;}
.y202{bottom:472.226667pt;}
.y185{bottom:474.146667pt;}
.y1db{bottom:474.306667pt;}
.y149{bottom:476.706667pt;}
.yc2{bottom:477.026667pt;}
.y29{bottom:477.346667pt;}
.y1b5{bottom:478.946667pt;}
.ya8{bottom:479.746667pt;}
.y233{bottom:480.546667pt;}
.yed{bottom:481.506667pt;}
.y10d{bottom:485.026667pt;}
.y201{bottom:487.586667pt;}
.y184{bottom:491.906667pt;}
.y148{bottom:494.306667pt;}
.yc1{bottom:494.786667pt;}
.y232{bottom:495.906667pt;}
.y1b4{bottom:496.706667pt;}
.ya7{bottom:497.346667pt;}
.y28{bottom:498.146667pt;}
.yec{bottom:499.106667pt;}
.y10c{bottom:502.626667pt;}
.y200{bottom:502.946667pt;}
.y183{bottom:509.506667pt;}
.y1da{bottom:509.666667pt;}
.y231{bottom:511.266667pt;}
.y147{bottom:511.906667pt;}
.yc0{bottom:513.506667pt;}
.y1b3{bottom:514.306667pt;}
.ya6{bottom:515.106667pt;}
.yeb{bottom:516.866667pt;}
.y1ff{bottom:518.146667pt;}
.y10b{bottom:520.386667pt;}
.y6e{bottom:525.186667pt;}
.y230{bottom:526.626667pt;}
.y182{bottom:527.106667pt;}
.y146{bottom:528.066667pt;}
.y1d9{bottom:528.386667pt;}
.ybf{bottom:531.906667pt;}
.ya5{bottom:532.706667pt;}
.y1fe{bottom:533.506667pt;}
.yea{bottom:534.466667pt;}
.y10a{bottom:537.986667pt;}
.y145{bottom:538.786667pt;}
.y22f{bottom:541.826667pt;}
.y181{bottom:544.706667pt;}
.y27{bottom:547.106667pt;}
.y1fd{bottom:548.866667pt;}
.y140{bottom:549.506667pt;}
.ya4{bottom:550.306667pt;}
.ye9{bottom:552.066667pt;}
.y109{bottom:555.613333pt;}
.y22e{bottom:557.213333pt;}
.y26{bottom:560.893333pt;}
.y144{bottom:561.853333pt;}
.y180{bottom:562.333333pt;}
.y1fc{bottom:564.253333pt;}
.y1d8{bottom:564.413333pt;}
.y1b2{bottom:567.133333pt;}
.ya3{bottom:567.933333pt;}
.ye8{bottom:569.693333pt;}
.y22d{bottom:572.573333pt;}
.y108{bottom:573.213333pt;}
.y143{bottom:574.013333pt;}
.y25{bottom:574.813333pt;}
.y17f{bottom:576.893333pt;}
.y1fb{bottom:579.613333pt;}
.y1d7{bottom:582.013333pt;}
.y1b1{bottom:584.893333pt;}
.ya2{bottom:585.533333pt;}
.y142{bottom:586.333333pt;}
.ye7{bottom:587.293333pt;}
.y17e{bottom:587.773333pt;}
.y22c{bottom:587.933333pt;}
.y24{bottom:588.573333pt;}
.y107{bottom:590.813333pt;}
.y1fa{bottom:594.973333pt;}
.y17d{bottom:598.493333pt;}
.y13b{bottom:598.653333pt;}
.y1d6{bottom:599.613333pt;}
.y23{bottom:602.333333pt;}
.y1b0{bottom:602.493333pt;}
.ya1{bottom:603.293333pt;}
.ye6{bottom:605.053333pt;}
.y106{bottom:608.573333pt;}
.y17c{bottom:609.213333pt;}
.y13f{bottom:610.813333pt;}
.y22{bottom:611.773333pt;}
.y1d5{bottom:617.373333pt;}
.y22b{bottom:618.653333pt;}
.y17b{bottom:619.933333pt;}
.y1af{bottom:620.093333pt;}
.y3f{bottom:620.413333pt;}
.ya0{bottom:620.893333pt;}
.ye5{bottom:622.653333pt;}
.y13e{bottom:623.133333pt;}
.y21{bottom:625.053333pt;}
.y105{bottom:627.293333pt;}
.y17a{bottom:630.653333pt;}
.y22a{bottom:633.853333pt;}
.y1d4{bottom:634.973333pt;}
.y13d{bottom:635.453333pt;}
.y1ae{bottom:637.693333pt;}
.y9f{bottom:638.493333pt;}
.ye4{bottom:640.253333pt;}
.y20{bottom:640.893333pt;}
.y176{bottom:641.213333pt;}
.y104{bottom:644.733333pt;}
.y1f9{bottom:646.973333pt;}
.y137{bottom:647.613333pt;}
.y229{bottom:649.213333pt;}
.y1f{bottom:652.413333pt;}
.y1d3{bottom:652.573333pt;}
.y1ad{bottom:655.293333pt;}
.y9e{bottom:656.093333pt;}
.ye3{bottom:657.853333pt;}
.y13a{bottom:659.933333pt;}
.y1e{bottom:663.933333pt;}
.y1f8{bottom:664.573333pt;}
.y175{bottom:669.533333pt;}
.y1d2{bottom:670.173333pt;}
.y139{bottom:672.253333pt;}
.y1ac{bottom:673.053333pt;}
.y9d{bottom:673.693333pt;}
.ye2{bottom:675.453333pt;}
.y1d{bottom:676.413333pt;}
.y228{bottom:679.933333pt;}
.y1f7{bottom:683.293333pt;}
.y133{bottom:684.413333pt;}
.y1d1{bottom:687.773333pt;}
.y1c{bottom:689.533333pt;}
.y1ab{bottom:690.653333pt;}
.y9c{bottom:691.453333pt;}
.ye1{bottom:693.213333pt;}
.y227{bottom:695.293333pt;}
.y136{bottom:696.733333pt;}
.y171{bottom:697.693333pt;}
.y1b{bottom:699.453333pt;}
.y1d0{bottom:705.533333pt;}
.y1aa{bottom:708.253333pt;}
.y9b{bottom:709.053333pt;}
.y226{bottom:710.493333pt;}
.ye0{bottom:710.813333pt;}
.y1f6{bottom:719.293333pt;}
.y1a{bottom:721.053333pt;}
.y135{bottom:721.213333pt;}
.y1cf{bottom:723.133333pt;}
.y1a9{bottom:725.853333pt;}
.y9a{bottom:726.653333pt;}
.ydf{bottom:728.413333pt;}
.y131{bottom:733.533333pt;}
.y16e{bottom:733.693333pt;}
.y1f5{bottom:736.893333pt;}
.y1ce{bottom:740.733333pt;}
.y225{bottom:741.213333pt;}
.y19{bottom:742.173333pt;}
.y1a8{bottom:743.453333pt;}
.y99{bottom:744.253333pt;}
.y132{bottom:745.853333pt;}
.yde{bottom:746.013333pt;}
.y18{bottom:755.293333pt;}
.y1f4{bottom:755.773333pt;}
.y224{bottom:756.573333pt;}
.y12e{bottom:758.053333pt;}
.y1cd{bottom:758.373333pt;}
.y1a7{bottom:761.253333pt;}
.y98{bottom:761.893333pt;}
.ydd{bottom:763.653333pt;}
.y16b{bottom:767.813333pt;}
.y17{bottom:768.613333pt;}
.y130{bottom:770.373333pt;}
.y223{bottom:771.973333pt;}
.y1cc{bottom:775.973333pt;}
.y16{bottom:777.893333pt;}
.y1a6{bottom:778.853333pt;}
.y97{bottom:779.653333pt;}
.ydc{bottom:781.413333pt;}
.y12c{bottom:784.613333pt;}
.y222{bottom:787.333333pt;}
.y15{bottom:790.693333pt;}
.y1f3{bottom:791.813333pt;}
.y1cb{bottom:793.733333pt;}
.y167{bottom:795.973333pt;}
.y1a5{bottom:796.453333pt;}
.y96{bottom:797.253333pt;}
.ydb{bottom:799.013333pt;}
.y221{bottom:802.533333pt;}
.y12b{bottom:803.653333pt;}
.y1f2{bottom:809.413333pt;}
.y1ca{bottom:811.333333pt;}
.y14{bottom:812.453333pt;}
.y1a4{bottom:814.053333pt;}
.y95{bottom:814.853333pt;}
.yda{bottom:816.613333pt;}
.y220{bottom:817.893333pt;}
.y12a{bottom:819.653333pt;}
.y1f1{bottom:827.013333pt;}
.y1c9{bottom:828.933333pt;}
.y166{bottom:829.733333pt;}
.y13{bottom:831.333333pt;}
.y1a3{bottom:831.653333pt;}
.y94{bottom:832.453333pt;}
.y21f{bottom:833.253333pt;}
.y129{bottom:833.893333pt;}
.yd9{bottom:835.333333pt;}
.y1f0{bottom:844.613333pt;}
.y128{bottom:846.533333pt;}
.y12{bottom:848.453333pt;}
.y21e{bottom:848.613333pt;}
.y1a2{bottom:849.413333pt;}
.y93{bottom:850.053333pt;}
.y165{bottom:853.093333pt;}
.yd8{bottom:853.893333pt;}
.y1ef{bottom:862.373333pt;}
.y21d{bottom:863.973333pt;}
.y127{bottom:864.133333pt;}
.y1a1{bottom:867.013333pt;}
.y92{bottom:867.813333pt;}
.y164{bottom:869.093333pt;}
.y11{bottom:872.933333pt;}
.y21c{bottom:879.333333pt;}
.y1ee{bottom:879.973333pt;}
.y126{bottom:881.893333pt;}
.y1a0{bottom:884.613333pt;}
.y91{bottom:885.413333pt;}
.y21b{bottom:894.533333pt;}
.y10{bottom:895.013333pt;}
.y1ed{bottom:898.693333pt;}
.y125{bottom:899.493333pt;}
.y19f{bottom:902.213333pt;}
.y90{bottom:903.013333pt;}
.yf{bottom:907.653333pt;}
.y21a{bottom:909.893333pt;}
.y124{bottom:917.093333pt;}
.y76{bottom:917.120000pt;}
.y19e{bottom:919.813333pt;}
.y8f{bottom:920.613333pt;}
.ye{bottom:921.413333pt;}
.y219{bottom:925.253333pt;}
.y123{bottom:934.693333pt;}
.yd{bottom:935.333333pt;}
.y19d{bottom:937.573333pt;}
.y8e{bottom:938.213333pt;}
.y218{bottom:940.613333pt;}
.y4{bottom:950.533333pt;}
.y122{bottom:953.413333pt;}
.y19c{bottom:953.573333pt;}
.y8d{bottom:955.813333pt;}
.y217{bottom:955.973333pt;}
.y3{bottom:966.720000pt;}
.yb{bottom:967.200000pt;}
.y2{bottom:978.880000pt;}
.yd7{bottom:982.560000pt;}
.y1{bottom:992.960000pt;}
.y8b{bottom:997.920000pt;}
.h20{height:3.612500pt;}
.h9{height:3.702500pt;}
.h4f{height:5.562500pt;}
.h5{height:12.000000pt;}
.h31{height:12.160000pt;}
.h33{height:12.192000pt;}
.h2e{height:12.320000pt;}
.h38{height:12.352000pt;}
.h39{height:14.080000pt;}
.h1d{height:15.272812pt;}
.h3e{height:16.640000pt;}
.h40{height:16.800000pt;}
.h3b{height:17.600000pt;}
.h3a{height:17.632000pt;}
.h24{height:18.965625pt;}
.h13{height:19.438125pt;}
.h26{height:19.680000pt;}
.h3f{height:19.840000pt;}
.h49{height:21.440000pt;}
.h3c{height:22.240000pt;}
.h1f{height:22.578125pt;}
.h4a{height:22.720000pt;}
.h2d{height:23.140625pt;}
.h1b{height:23.222744pt;}
.h3d{height:23.360000pt;}
.h30{height:24.480000pt;}
.h32{height:24.512000pt;}
.h4b{height:26.190625pt;}
.h8{height:26.843125pt;}
.h16{height:27.523125pt;}
.h42{height:28.160000pt;}
.h45{height:28.320000pt;}
.h47{height:28.352000pt;}
.h2f{height:28.448437pt;}
.h18{height:29.157187pt;}
.h22{height:29.216250pt;}
.h11{height:29.281875pt;}
.h1e{height:30.254687pt;}
.h7{height:30.400000pt;}
.h28{height:30.595000pt;}
.h1a{height:31.008437pt;}
.hd{height:31.217812pt;}
.h41{height:31.840000pt;}
.h3{height:32.859687pt;}
.h48{height:33.867188pt;}
.h43{height:34.112000pt;}
.h1c{height:34.710938pt;}
.hc{height:34.945312pt;}
.h44{height:36.000000pt;}
.h4e{height:36.571875pt;}
.h35{height:36.800000pt;}
.hf{height:37.479688pt;}
.h6{height:38.413438pt;}
.h4d{height:38.672812pt;}
.h19{height:40.882500pt;}
.h46{height:42.556250pt;}
.h12{height:42.563750pt;}
.hb{height:42.866250pt;}
.h2b{height:43.782500pt;}
.h15{height:45.156250pt;}
.h4c{height:46.281250pt;}
.h2c{height:46.375000pt;}
.h29{height:47.109375pt;}
.h10{height:47.963125pt;}
.h36{height:48.960000pt;}
.h34{height:49.120000pt;}
.h17{height:49.148438pt;}
.h37{height:49.152000pt;}
.h2{height:52.832812pt;}
.h4{height:58.563750pt;}
.he{height:60.057813pt;}
.h14{height:60.288750pt;}
.ha{height:60.800000pt;}
.h21{height:64.800000pt;}
.h2a{height:66.750000pt;}
.h25{height:82.592000pt;}
.h27{height:128.640000pt;}
.h23{height:477.666667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w16{width:29.120000pt;}
.w15{width:29.280000pt;}
.w14{width:33.920000pt;}
.w17{width:34.272000pt;}
.w13{width:57.632000pt;}
.w4{width:72.960000pt;}
.we{width:77.952000pt;}
.w18{width:89.760000pt;}
.w6{width:89.920000pt;}
.wd{width:90.080000pt;}
.w19{width:96.032000pt;}
.w12{width:110.080000pt;}
.w10{width:114.080000pt;}
.w1a{width:120.352000pt;}
.wc{width:131.712000pt;}
.w7{width:137.306667pt;}
.wb{width:160.346667pt;}
.w9{width:162.266667pt;}
.w11{width:226.786667pt;}
.wf{width:299.746667pt;}
.w8{width:473.533333pt;}
.w5{width:568.773333pt;}
.w3{width:641.733333pt;}
.wa{width:660.480000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x45{left:3.780000pt;}
.x8{left:7.200000pt;}
.x3d{left:8.640000pt;}
.x16{left:9.600000pt;}
.x3a{left:12.000000pt;}
.x27{left:12.986667pt;}
.x38{left:14.240000pt;}
.x25{left:15.706667pt;}
.x2c{left:17.280000pt;}
.x1b{left:18.893333pt;}
.x22{left:20.160000pt;}
.x24{left:21.946667pt;}
.x40{left:23.040000pt;}
.x29{left:24.000000pt;}
.x26{left:25.440000pt;}
.x28{left:27.520000pt;}
.xf{left:29.919988pt;}
.x2a{left:31.360000pt;}
.x2b{left:34.080000pt;}
.x35{left:40.960000pt;}
.x42{left:42.400000pt;}
.x32{left:43.520000pt;}
.xa{left:44.960000pt;}
.x34{left:46.240000pt;}
.x30{left:56.960000pt;}
.x6{left:65.754667pt;}
.x9{left:70.592000pt;}
.x19{left:71.520000pt;}
.x5{left:77.914667pt;}
.x15{left:83.072000pt;}
.x18{left:84.032000pt;}
.x33{left:86.280000pt;}
.x2f{left:87.880000pt;}
.x3e{left:93.472000pt;}
.x4{left:96.031988pt;}
.xc{left:99.231988pt;}
.x31{left:113.320000pt;}
.xb{left:117.951988pt;}
.x44{left:120.031988pt;}
.x10{left:129.631988pt;}
.x12{left:139.546655pt;}
.x11{left:143.066655pt;}
.xd{left:151.546655pt;}
.x7{left:168.986667pt;}
.x3f{left:183.226667pt;}
.x36{left:209.466667pt;}
.x1{left:213.306655pt;}
.x37{left:267.106667pt;}
.x17{left:269.506667pt;}
.x1a{left:275.906667pt;}
.x41{left:279.266667pt;}
.x39{left:301.026667pt;}
.xe{left:310.946655pt;}
.x3{left:315.106655pt;}
.x3b{left:330.306667pt;}
.x2{left:357.026655pt;}
.x3c{left:359.426667pt;}
.x2d{left:396.093333pt;}
.x20{left:416.573322pt;}
.x13{left:434.813322pt;}
.x14{left:436.253322pt;}
.x43{left:460.253322pt;}
.x2e{left:510.173333pt;}
.x1c{left:551.336000pt;}
.x21{left:568.613333pt;}
.x23{left:658.693333pt;}
.x1f{left:706.079988pt;}
.x1d{left:709.439988pt;}
.x1e{left:710.399988pt;}
}




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