
    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_defca4745d71b77212ec84c0.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_428be78bcd8d9c8b4f940f6d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f9fa74c71a3b2e665d1b957b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.435059;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_e7b133ba28e1a70c43eb60ee.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_196da5e232ea217d3727c049.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_7ec88b763dca11256920d7c4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.773926;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_5623dad7355e0b13e16edd81.woff')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_2e4ce1148c67dd9db63b4c25.woff')format("woff");}.ff8{font-family:ff8;line-height:0.690918;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_07b528d1f6b7859ca70f67bd.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_b010e47a581509ad388b8702.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1c2ce80691e82778663977f3.woff')format("woff");}.ffb{font-family:ffb;line-height:0.737793;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_9e2f9e50f8df8ec4479ee9b6.woff')format("woff");}.ffc{font-family:ffc;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_863fa374908edd152982e486.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_9b03f4b4327374dcb79e06db.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_d871d4ae6b15a5c6af46e0d0.woff')format("woff");}.fff{font-family:fff;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_941b845657c16808641b380d.woff')format("woff");}.ff10{font-family:ff10;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;}
.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);}
.v3{vertical-align:-55.440000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.120000px;}
.v4{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-12.780000px;}
.lsd{letter-spacing:-11.700000px;}
.ls16{letter-spacing:-0.720000px;}
.ls23{letter-spacing:-0.612000px;}
.ls1c{letter-spacing:-0.564000px;}
.lsa{letter-spacing:-0.540000px;}
.ls21{letter-spacing:-0.460200px;}
.lsb{letter-spacing:-0.364800px;}
.lsf{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.269400px;}
.ls25{letter-spacing:-0.259800px;}
.lse{letter-spacing:-0.223800px;}
.ls11{letter-spacing:-0.216000px;}
.ls22{letter-spacing:-0.181200px;}
.ls10{letter-spacing:-0.150600px;}
.ls12{letter-spacing:-0.089400px;}
.ls15{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.106800px;}
.ls17{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.144720px;}
.ls1a{letter-spacing:0.149760px;}
.ls1b{letter-spacing:0.156000px;}
.ls5{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.181200px;}
.ls1f{letter-spacing:0.226080px;}
.ls19{letter-spacing:0.259800px;}
.ls1e{letter-spacing:0.259920px;}
.ls6{letter-spacing:0.270720px;}
.ls24{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.900000px;}
.ls13{letter-spacing:3.780000px;}
.ls18{letter-spacing:5.940000px;}
.ls3{letter-spacing:48.420000px;}
.ls0{letter-spacing:71.280000px;}
.ls1{letter-spacing:71.400000px;}
.ls2{letter-spacing:72.000000px;}
.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;}
}
.ws14{word-spacing:-48.240000px;}
.wsd{word-spacing:-18.000000px;}
.wsc{word-spacing:-16.560000px;}
.wsa{word-spacing:-15.300000px;}
.ws1a{word-spacing:-15.238800px;}
.wse{word-spacing:-15.199800px;}
.ws16{word-spacing:-15.046800px;}
.wsb{word-spacing:-14.940000px;}
.ws18{word-spacing:-14.680200px;}
.ws17{word-spacing:-14.580000px;}
.ws12{word-spacing:-14.479800px;}
.ws19{word-spacing:-14.220000px;}
.ws6{word-spacing:-13.500000px;}
.ws10{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.241200px;}
.wsf{word-spacing:-12.060000px;}
.ws13{word-spacing:-11.878800px;}
.ws11{word-spacing:-11.790600px;}
.ws2{word-spacing:-11.700000px;}
.ws3{word-spacing:-11.340000px;}
.ws4{word-spacing:-10.975200px;}
.ws8{word-spacing:-10.440000px;}
.ws7{word-spacing:-9.000000px;}
.ws1{word-spacing:-7.560000px;}
.ws15{word-spacing:-6.840000px;}
.ws9{word-spacing:0.000000px;}
.ws0{word-spacing:61.560000px;}
._2b{margin-left:-259.783920px;}
._2a{margin-left:-235.152000px;}
._2d{margin-left:-227.656080px;}
._2c{margin-left:-200.931120px;}
._6{margin-left:-60.300000px;}
._16{margin-left:-4.148880px;}
._b{margin-left:-2.806560px;}
._2{margin-left:-1.192320px;}
._0{width:1.002240px;}
._a{width:2.330640px;}
._1{width:3.521280px;}
._14{width:5.140800px;}
._9{width:6.155280px;}
._13{width:7.719840px;}
._8{width:9.203040px;}
._e{width:11.175120px;}
._15{width:12.204000px;}
._3{width:13.226880px;}
._f{width:16.434000px;}
._1b{width:17.688960px;}
._24{width:19.388880px;}
._20{width:20.503200px;}
._1f{width:21.573360px;}
._1a{width:23.559120px;}
._12{width:24.561360px;}
._11{width:25.577280px;}
._21{width:26.652960px;}
._26{width:28.027440px;}
._23{width:29.162880px;}
._29{width:30.836160px;}
._18{width:32.045040px;}
._33{width:33.346080px;}
._10{width:34.541280px;}
._28{width:35.736480px;}
._27{width:36.991440px;}
._1c{width:38.140560px;}
._d{width:39.322080px;}
._31{width:40.693680px;}
._30{width:41.951520px;}
._34{width:42.966000px;}
._32{width:44.176320px;}
._1e{width:46.015200px;}
._1d{width:47.150640px;}
._19{width:49.196160px;}
._36{width:50.526000px;}
._37{width:52.409520px;}
._35{width:54.036720px;}
._c{width:55.231920px;}
._25{width:56.473200px;}
._39{width:58.554000px;}
._22{width:59.760000px;}
._38{width:60.849360px;}
._40{width:64.064640px;}
._4{width:65.496000px;}
._41{width:70.889040px;}
._3c{width:76.492800px;}
._2f{width:81.393120px;}
._2e{width:82.409040px;}
._42{width:86.950800px;}
._3f{width:95.376960px;}
._3b{width:104.400720px;}
._3a{width:105.416640px;}
._5{width:199.620000px;}
._43{width:227.435760px;}
._44{width:228.462480px;}
._3d{width:261.876960px;}
._3e{width:263.720880px;}
._17{width:282.270000px;}
._7{width:755.976000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:5.760000px;}
.fs10{font-size:6.000000px;}
.fsb{font-size:23.760000px;}
.fse{font-size:27.360000px;}
.fs7{font-size:30.240000px;}
.fsc{font-size:36.000000px;}
.fsa{font-size:37.946952px;}
.fs1{font-size:41.760000px;}
.fs6{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fsf{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsd{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.y47{bottom:-247.890000px;}
.y46{bottom:-214.230000px;}
.y45{bottom:-180.570000px;}
.y7f{bottom:-156.465000px;}
.y44{bottom:-146.730000px;}
.y7e{bottom:-122.805000px;}
.y43{bottom:-113.070000px;}
.y7d{bottom:-89.145000px;}
.y42{bottom:-79.200000px;}
.y7c{bottom:-55.260000px;}
.y41{bottom:-45.540000px;}
.y4a{bottom:-27.540000px;}
.y7b{bottom:-21.600000px;}
.y81{bottom:-17.922750px;}
.y40{bottom:-11.880000px;}
.y0{bottom:0.000000px;}
.y255{bottom:1.837500px;}
.y15c{bottom:2.520000px;}
.y3{bottom:3.780000px;}
.y6e{bottom:4.140000px;}
.y10b{bottom:4.500000px;}
.y10a{bottom:4.680000px;}
.y49{bottom:4.860000px;}
.y164{bottom:5.040000px;}
.y70{bottom:5.400000px;}
.y12c{bottom:5.940000px;}
.y3f{bottom:6.300000px;}
.y12e{bottom:6.660000px;}
.y104{bottom:7.380000px;}
.y108{bottom:7.920000px;}
.y15d{bottom:11.520000px;}
.y7a{bottom:12.240000px;}
.y6{bottom:12.420000px;}
.y119{bottom:13.140000px;}
.y12a{bottom:14.220000px;}
.y129{bottom:15.120000px;}
.y6d{bottom:17.130000px;}
.y3e{bottom:20.340000px;}
.y101{bottom:21.060000px;}
.y103{bottom:21.240000px;}
.y7{bottom:21.780000px;}
.y66{bottom:21.960000px;}
.y4{bottom:23.220000px;}
.y5{bottom:24.480000px;}
.y106{bottom:24.660000px;}
.y15f{bottom:28.080000px;}
.y118{bottom:28.980000px;}
.y120{bottom:29.340000px;}
.y113{bottom:29.520000px;}
.y6c{bottom:30.270000px;}
.y3d{bottom:34.200000px;}
.y102{bottom:34.920000px;}
.y160{bottom:37.080000px;}
.y65{bottom:37.485000px;}
.y79{bottom:43.200000px;}
.y6b{bottom:43.230000px;}
.y83{bottom:46.620000px;}
.y3c{bottom:47.160000px;}
.y64{bottom:49.725000px;}
.y78{bottom:56.160000px;}
.y6a{bottom:56.190000px;}
.y2{bottom:57.420000px;}
.y80{bottom:63.780000px;}
.y63{bottom:67.545000px;}
.y77{bottom:69.300000px;}
.y69{bottom:69.330000px;}
.y76{bottom:82.260000px;}
.y62{bottom:85.365000px;}
.y68{bottom:86.430000px;}
.y75{bottom:95.220000px;}
.y239{bottom:98.820000px;}
.yd2{bottom:103.140000px;}
.y61{bottom:103.185000px;}
.y1b7{bottom:107.820000px;}
.y74{bottom:108.360000px;}
.y176{bottom:108.540000px;}
.ydf{bottom:108.900000px;}
.y185{bottom:109.440000px;}
.y1a9{bottom:109.980000px;}
.y238{bottom:116.100000px;}
.y205{bottom:116.640000px;}
.yb3{bottom:116.820000px;}
.y254{bottom:117.000000px;}
.y3a{bottom:118.080000px;}
.y60{bottom:121.185000px;}
.y73{bottom:121.320000px;}
.yd1{bottom:122.940000px;}
.y13f{bottom:125.820000px;}
.y1b6{bottom:127.836000px;}
.y175{bottom:128.556000px;}
.yde{bottom:128.736000px;}
.y184{bottom:129.276000px;}
.y1a8{bottom:129.816000px;}
.y237{bottom:133.416000px;}
.y72{bottom:133.560000px;}
.y204{bottom:133.956000px;}
.y253{bottom:134.316000px;}
.yb2{bottom:136.656000px;}
.y1d5{bottom:137.196000px;}
.y39{bottom:137.916000px;}
.y5f{bottom:139.005000px;}
.yd0{bottom:142.776000px;}
.y13e{bottom:145.656000px;}
.y1b5{bottom:147.636000px;}
.y174{bottom:148.356000px;}
.y183{bottom:149.256000px;}
.ydd{bottom:149.796000px;}
.y236{bottom:150.690000px;}
.y203{bottom:151.050000px;}
.y252{bottom:151.410000px;}
.y5e{bottom:152.505000px;}
.yfd{bottom:154.290000px;}
.yb1{bottom:156.450000px;}
.y1d4{bottom:156.990000px;}
.y38{bottom:157.710000px;}
.y5d{bottom:161.145000px;}
.ycf{bottom:162.750000px;}
.y13d{bottom:163.830000px;}
.y1b4{bottom:167.430000px;}
.y235{bottom:167.790000px;}
.y173{bottom:168.150000px;}
.y202{bottom:168.330000px;}
.y251{bottom:168.690000px;}
.y182{bottom:169.050000px;}
.ydc{bottom:169.410000px;}
.y1a7{bottom:169.590000px;}
.yfc{bottom:174.270000px;}
.yb0{bottom:176.250000px;}
.y1d3{bottom:176.970000px;}
.y37{bottom:177.690000px;}
.y13c{bottom:177.870000px;}
.y5c{bottom:178.965000px;}
.ydb{bottom:182.190000px;}
.yce{bottom:182.550000px;}
.y234{bottom:185.070000px;}
.y201{bottom:185.610000px;}
.y250{bottom:185.970000px;}
.y1b3{bottom:187.230000px;}
.y172{bottom:187.950000px;}
.y181{bottom:188.850000px;}
.y1a6{bottom:189.390000px;}
.y13b{bottom:189.750000px;}
.yfb{bottom:194.070000px;}
.yaf{bottom:196.230000px;}
.y5b{bottom:196.785000px;}
.y36{bottom:197.490000px;}
.y1d2{bottom:198.030000px;}
.yda{bottom:202.170000px;}
.ycd{bottom:202.350000px;}
.y200{bottom:202.890000px;}
.y24f{bottom:203.250000px;}
.y1b2{bottom:207.030000px;}
.y171{bottom:207.750000px;}
.y180{bottom:208.650000px;}
.y1a5{bottom:209.190000px;}
.y13a{bottom:210.090000px;}
.yfa{bottom:213.870000px;}
.y5a{bottom:214.785000px;}
.yae{bottom:216.030000px;}
.y35{bottom:217.290000px;}
.y233{bottom:219.630000px;}
.y1ff{bottom:220.170000px;}
.y24e{bottom:220.530000px;}
.yd9{bottom:221.970000px;}
.ycc{bottom:222.150000px;}
.y1b1{bottom:227.010000px;}
.y170{bottom:227.730000px;}
.y17f{bottom:228.450000px;}
.y1a4{bottom:228.990000px;}
.y139{bottom:230.250000px;}
.y59{bottom:232.605000px;}
.yf9{bottom:233.670000px;}
.yad{bottom:235.830000px;}
.y232{bottom:236.910000px;}
.y34{bottom:237.090000px;}
.y1fe{bottom:237.450000px;}
.y24d{bottom:237.810000px;}
.y1d1{bottom:238.530000px;}
.yd8{bottom:241.770000px;}
.ycb{bottom:241.950000px;}
.y1b0{bottom:246.810000px;}
.y16f{bottom:247.530000px;}
.y17e{bottom:248.430000px;}
.y1a3{bottom:248.970000px;}
.y58{bottom:250.425000px;}
.y138{bottom:250.590000px;}
.yf8{bottom:253.470000px;}
.y231{bottom:254.190000px;}
.y1fd{bottom:254.550000px;}
.y24c{bottom:254.910000px;}
.yac{bottom:255.630000px;}
.y33{bottom:256.890000px;}
.y1d0{bottom:258.330000px;}
.yd7{bottom:261.570000px;}
.yca{bottom:261.930000px;}
.y57{bottom:263.955000px;}
.y1af{bottom:266.610000px;}
.y16e{bottom:267.330000px;}
.y17d{bottom:268.230000px;}
.y1a2{bottom:268.770000px;}
.y137{bottom:270.750000px;}
.y230{bottom:271.290000px;}
.y1fc{bottom:271.830000px;}
.y24b{bottom:272.190000px;}
.y56{bottom:272.595000px;}
.yf7{bottom:273.450000px;}
.yab{bottom:275.430000px;}
.y32{bottom:276.690000px;}
.y1cf{bottom:278.130000px;}
.yd6{bottom:281.370000px;}
.yc9{bottom:281.730000px;}
.y1ae{bottom:286.410000px;}
.y16d{bottom:287.130000px;}
.y17c{bottom:288.030000px;}
.y1a1{bottom:288.570000px;}
.y1fb{bottom:289.110000px;}
.y24a{bottom:289.470000px;}
.y55{bottom:290.415000px;}
.y136{bottom:291.090000px;}
.yf6{bottom:293.250000px;}
.yaa{bottom:295.410000px;}
.y31{bottom:296.670000px;}
.y1ce{bottom:298.110000px;}
.yd5{bottom:301.350000px;}
.yc8{bottom:301.530000px;}
.y22f{bottom:305.850000px;}
.y1ad{bottom:306.210000px;}
.y1fa{bottom:306.390000px;}
.y249{bottom:306.750000px;}
.y16c{bottom:306.930000px;}
.y17b{bottom:307.830000px;}
.y54{bottom:308.235000px;}
.y1a0{bottom:308.370000px;}
.y135{bottom:311.250000px;}
.yf5{bottom:313.050000px;}
.ya9{bottom:315.210000px;}
.y30{bottom:317.730000px;}
.y1cd{bottom:317.910000px;}
.yd4{bottom:322.410000px;}
.yc7{bottom:322.590000px;}
.y22e{bottom:323.130000px;}
.y1f9{bottom:323.670000px;}
.y248{bottom:324.030000px;}
.y1ac{bottom:326.190000px;}
.y53{bottom:326.235000px;}
.y16b{bottom:326.910000px;}
.y17a{bottom:327.630000px;}
.y19f{bottom:328.170000px;}
.y134{bottom:331.590000px;}
.yf4{bottom:332.850000px;}
.y2f{bottom:335.010000px;}
.y1cc{bottom:337.710000px;}
.y22d{bottom:340.410000px;}
.y4b{bottom:340.770000px;}
.y247{bottom:341.130000px;}
.yd3{bottom:342.030000px;}
.yc6{bottom:342.210000px;}
.y2e{bottom:343.470000px;}
.y52{bottom:344.055000px;}
.y1ab{bottom:345.990000px;}
.y16a{bottom:346.710000px;}
.y179{bottom:347.610000px;}
.y19e{bottom:348.150000px;}
.y133{bottom:351.750000px;}
.yf3{bottom:352.650000px;}
.ya8{bottom:354.810000px;}
.yc5{bottom:355.170000px;}
.y1cb{bottom:357.510000px;}
.y22c{bottom:357.690000px;}
.y1f8{bottom:358.050000px;}
.y246{bottom:358.410000px;}
.y51{bottom:361.875000px;}
.y2d{bottom:364.755000px;}
.y169{bottom:366.555000px;}
.y1aa{bottom:367.095000px;}
.y178{bottom:367.455000px;}
.y19d{bottom:367.995000px;}
.y132{bottom:372.135000px;}
.yf2{bottom:372.495000px;}
.ya7{bottom:374.655000px;}
.y22b{bottom:374.835000px;}
.yc4{bottom:375.015000px;}
.y50{bottom:375.375000px;}
.y245{bottom:375.735000px;}
.y1ca{bottom:377.355000px;}
.y2c{bottom:383.295000px;}
.y4f{bottom:384.015000px;}
.y168{bottom:386.355000px;}
.y177{bottom:387.255000px;}
.y19c{bottom:387.795000px;}
.y22a{bottom:392.115000px;}
.y131{bottom:392.295000px;}
.yf1{bottom:392.475000px;}
.y1f7{bottom:392.655000px;}
.y244{bottom:393.015000px;}
.ya6{bottom:394.635000px;}
.yc3{bottom:394.815000px;}
.y1c9{bottom:397.335000px;}
.y4e{bottom:401.835000px;}
.y167{bottom:404.355000px;}
.y2b{bottom:407.055000px;}
.y19b{bottom:407.595000px;}
.y229{bottom:409.395000px;}
.y1f6{bottom:409.935000px;}
.y243{bottom:410.295000px;}
.yf0{bottom:412.275000px;}
.y130{bottom:412.635000px;}
.ya5{bottom:414.435000px;}
.yc2{bottom:414.615000px;}
.y1c8{bottom:417.135000px;}
.y4d{bottom:419.655000px;}
.y166{bottom:425.055000px;}
.y228{bottom:426.675000px;}
.y1f5{bottom:427.215000px;}
.y19a{bottom:427.395000px;}
.y242{bottom:427.575000px;}
.y2a{bottom:430.815000px;}
.yef{bottom:432.075000px;}
.y12f{bottom:432.795000px;}
.ya4{bottom:434.235000px;}
.yc1{bottom:434.415000px;}
.y1c7{bottom:436.935000px;}
.y4c{bottom:437.655000px;}
.y71{bottom:438.915000px;}
.y227{bottom:443.955000px;}
.y165{bottom:444.135000px;}
.y1f4{bottom:444.315000px;}
.y241{bottom:444.675000px;}
.y199{bottom:447.375000px;}
.y29{bottom:451.515000px;}
.yee{bottom:451.875000px;}
.y12d{bottom:453.135000px;}
.ya3{bottom:454.035000px;}
.yc0{bottom:454.395000px;}
.y15e{bottom:456.195000px;}
.y1c6{bottom:457.995000px;}
.y226{bottom:461.055000px;}
.y1f3{bottom:461.595000px;}
.y240{bottom:461.955000px;}
.y198{bottom:467.175000px;}
.y28{bottom:471.135000px;}
.yed{bottom:471.675000px;}
.ya2{bottom:473.835000px;}
.y12b{bottom:474.015000px;}
.ybf{bottom:474.195000px;}
.y163{bottom:477.795000px;}
.y225{bottom:478.335000px;}
.y1f2{bottom:478.875000px;}
.y23f{bottom:479.235000px;}
.y27{bottom:485.175000px;}
.y197{bottom:486.975000px;}
.yec{bottom:491.655000px;}
.y26{bottom:493.635000px;}
.ya1{bottom:493.815000px;}
.ybe{bottom:493.995000px;}
.y128{bottom:495.075000px;}
.y224{bottom:495.615000px;}
.y1f1{bottom:496.155000px;}
.y23e{bottom:496.515000px;}
.y162{bottom:497.235000px;}
.y1c5{bottom:498.675000px;}
.y196{bottom:506.775000px;}
.yeb{bottom:511.455000px;}
.y223{bottom:512.895000px;}
.y1f0{bottom:513.435000px;}
.ya0{bottom:513.615000px;}
.ybd{bottom:513.795000px;}
.y25{bottom:516.855000px;}
.y161{bottom:517.575000px;}
.y1c4{bottom:518.475000px;}
.y195{bottom:526.575000px;}
.y222{bottom:530.175000px;}
.y1ef{bottom:530.715000px;}
.y23d{bottom:531.075000px;}
.yea{bottom:531.255000px;}
.y9f{bottom:533.415000px;}
.ybc{bottom:534.855000px;}
.y1c3{bottom:538.275000px;}
.y127{bottom:539.535000px;}
.y24{bottom:540.255000px;}
.y15b{bottom:541.335000px;}
.y194{bottom:546.555000px;}
.y221{bottom:547.455000px;}
.y1ee{bottom:547.815000px;}
.y23c{bottom:548.175000px;}
.ye9{bottom:551.055000px;}
.y9e{bottom:553.215000px;}
.ybb{bottom:554.655000px;}
.y126{bottom:558.075000px;}
.y23{bottom:563.475000px;}
.y220{bottom:564.555000px;}
.y1ed{bottom:565.095000px;}
.y23b{bottom:565.455000px;}
.y193{bottom:566.355000px;}
.yba{bottom:567.435000px;}
.ye8{bottom:570.855000px;}
.y9d{bottom:573.015000px;}
.y125{bottom:576.255000px;}
.y15a{bottom:578.235000px;}
.y1c2{bottom:579.135000px;}
.y21f{bottom:581.835000px;}
.y1ec{bottom:582.375000px;}
.y23a{bottom:582.555000px;}
.y192{bottom:586.155000px;}
.yb9{bottom:587.235000px;}
.y124{bottom:590.115000px;}
.ye7{bottom:590.835000px;}
.y9c{bottom:592.995000px;}
.y67{bottom:594.255000px;}
.y21e{bottom:599.115000px;}
.y1eb{bottom:599.655000px;}
.y1c1{bottom:603.105000px;}
.y123{bottom:604.005000px;}
.y159{bottom:605.805000px;}
.y191{bottom:605.985000px;}
.yb8{bottom:607.065000px;}
.ye6{bottom:610.665000px;}
.y9b{bottom:612.825000px;}
.y11f{bottom:616.065000px;}
.y21d{bottom:616.425000px;}
.y1ea{bottom:616.965000px;}
.y22{bottom:618.765000px;}
.y158{bottom:623.805000px;}
.y190{bottom:625.785000px;}
.yb7{bottom:626.865000px;}
.ye5{bottom:630.465000px;}
.y9a{bottom:632.625000px;}
.y21c{bottom:633.705000px;}
.y21{bottom:634.245000px;}
.y157{bottom:638.565000px;}
.y1c0{bottom:643.605000px;}
.y18f{bottom:645.765000px;}
.yb6{bottom:648.105000px;}
.y122{bottom:649.185000px;}
.y20{bottom:649.725000px;}
.ye4{bottom:650.265000px;}
.y21b{bottom:650.985000px;}
.y1e9{bottom:651.345000px;}
.y99{bottom:652.425000px;}
.y156{bottom:655.125000px;}
.y1bf{bottom:663.405000px;}
.y1f{bottom:665.205000px;}
.y18e{bottom:665.565000px;}
.y121{bottom:665.925000px;}
.y21a{bottom:668.085000px;}
.y1e8{bottom:668.625000px;}
.yb5{bottom:668.805000px;}
.ye3{bottom:670.065000px;}
.y155{bottom:671.865000px;}
.y98{bottom:672.225000px;}
.y1e{bottom:680.865000px;}
.y11c{bottom:682.485000px;}
.y1be{bottom:683.205000px;}
.y18d{bottom:685.365000px;}
.y1e7{bottom:686.625000px;}
.y154{bottom:688.425000px;}
.yb4{bottom:689.505000px;}
.ye2{bottom:690.045000px;}
.y1d{bottom:691.485000px;}
.y97{bottom:692.205000px;}
.y11e{bottom:699.045000px;}
.y3b{bottom:700.665000px;}
.y219{bottom:702.645000px;}
.y1bd{bottom:703.005000px;}
.y153{bottom:704.985000px;}
.y1c{bottom:705.165000px;}
.ye1{bottom:709.845000px;}
.y96{bottom:712.005000px;}
.y11d{bottom:715.785000px;}
.y1b{bottom:718.125000px;}
.y218{bottom:719.925000px;}
.y152{bottom:721.725000px;}
.y1bc{bottom:722.985000px;}
.y1e6{bottom:724.605000px;}
.y18c{bottom:724.965000px;}
.ye0{bottom:730.905000px;}
.y1a{bottom:731.085000px;}
.y95{bottom:731.805000px;}
.y117{bottom:732.345000px;}
.y217{bottom:737.205000px;}
.y151{bottom:738.285000px;}
.y1e5{bottom:741.885000px;}
.y1bb{bottom:742.785000px;}
.y19{bottom:744.045000px;}
.y18b{bottom:744.945000px;}
.y11b{bottom:748.905000px;}
.y94{bottom:751.605000px;}
.y216{bottom:754.305000px;}
.y150{bottom:754.845000px;}
.y18{bottom:758.085000px;}
.y1e4{bottom:759.165000px;}
.y1ba{bottom:762.585000px;}
.y18a{bottom:764.745000px;}
.y11a{bottom:765.645000px;}
.y17{bottom:770.865000px;}
.y93{bottom:771.405000px;}
.y14f{bottom:771.585000px;}
.y1e3{bottom:776.265000px;}
.y112{bottom:782.205000px;}
.y1b9{bottom:782.385000px;}
.y189{bottom:784.545000px;}
.y14e{bottom:788.145000px;}
.y215{bottom:788.865000px;}
.y92{bottom:791.385000px;}
.y1e2{bottom:797.505000px;}
.y16{bottom:797.685000px;}
.y116{bottom:798.765000px;}
.y1b8{bottom:803.445000px;}
.y188{bottom:804.345000px;}
.y214{bottom:806.145000px;}
.y14d{bottom:806.325000px;}
.y15{bottom:808.845000px;}
.y91{bottom:811.185000px;}
.y115{bottom:815.505000px;}
.y213{bottom:823.425000px;}
.y187{bottom:824.145000px;}
.y90{bottom:830.985000px;}
.y114{bottom:832.065000px;}
.y14{bottom:832.965000px;}
.y1e1{bottom:838.005000px;}
.y212{bottom:840.705000px;}
.y186{bottom:844.170000px;}
.y14c{bottom:845.610000px;}
.y10f{bottom:848.670000px;}
.y8f{bottom:850.830000px;}
.y13{bottom:856.770000px;}
.y1e0{bottom:857.850000px;}
.y14b{bottom:863.970000px;}
.y111{bottom:865.230000px;}
.y12{bottom:867.210000px;}
.y8e{bottom:870.630000px;}
.y211{bottom:875.130000px;}
.y1df{bottom:878.910000px;}
.y110{bottom:881.970000px;}
.y14a{bottom:883.770000px;}
.y11{bottom:886.470000px;}
.y8d{bottom:890.610000px;}
.y210{bottom:892.410000px;}
.y10c{bottom:898.530000px;}
.y10{bottom:901.410000px;}
.y149{bottom:903.570000px;}
.y20f{bottom:909.690000px;}
.y8c{bottom:910.410000px;}
.y10e{bottom:915.090000px;}
.yf{bottom:916.350000px;}
.y1de{bottom:919.410000px;}
.y148{bottom:923.370000px;}
.y20e{bottom:926.970000px;}
.ye{bottom:928.230000px;}
.y8b{bottom:930.210000px;}
.y10d{bottom:931.830000px;}
.y1dd{bottom:939.390000px;}
.y147{bottom:943.350000px;}
.y20d{bottom:944.250000px;}
.yd{bottom:945.330000px;}
.y105{bottom:948.390000px;}
.y8a{bottom:950.010000px;}
.y1dc{bottom:959.190000px;}
.y20c{bottom:961.350000px;}
.y146{bottom:963.150000px;}
.y109{bottom:964.950000px;}
.yc{bottom:969.810000px;}
.y20b{bottom:978.630000px;}
.y1db{bottom:978.990000px;}
.y107{bottom:981.690000px;}
.y145{bottom:982.950000px;}
.y89{bottom:989.790000px;}
.yb{bottom:991.770000px;}
.y20a{bottom:995.910000px;}
.y1da{bottom:998.790000px;}
.y144{bottom:1002.750000px;}
.y100{bottom:1006.710000px;}
.y88{bottom:1009.590000px;}
.y209{bottom:1013.190000px;}
.ya{bottom:1013.730000px;}
.y1d9{bottom:1018.590000px;}
.y143{bottom:1022.550000px;}
.y87{bottom:1029.390000px;}
.y208{bottom:1030.470000px;}
.y1d8{bottom:1038.570000px;}
.y9{bottom:1041.450000px;}
.y142{bottom:1042.530000px;}
.y207{bottom:1047.750000px;}
.y86{bottom:1049.190000px;}
.y1d7{bottom:1058.370000px;}
.yff{bottom:1061.070000px;}
.y141{bottom:1062.330000px;}
.y206{bottom:1064.850000px;}
.y8{bottom:1067.190000px;}
.y85{bottom:1068.990000px;}
.yfe{bottom:1076.550000px;}
.y1d6{bottom:1079.460000px;}
.y140{bottom:1082.160000px;}
.y84{bottom:1088.820000px;}
.y6f{bottom:1096.200000px;}
.y1{bottom:1121.040000px;}
.y82{bottom:1122.660000px;}
.y48{bottom:1137.240000px;}
.h7{height:5.653125px;}
.h19{height:5.805000px;}
.h43{height:6.257812px;}
.h3{height:13.500000px;}
.h31{height:15.840000px;}
.h33{height:15.876000px;}
.h30{height:16.020000px;}
.h1c{height:16.920000px;}
.h37{height:18.720000px;}
.h39{height:19.440000px;}
.h3a{height:19.476000px;}
.h40{height:19.620000px;}
.h38{height:20.160000px;}
.h41{height:20.880000px;}
.h3f{height:21.600000px;}
.h23{height:22.140000px;}
.h2f{height:22.680000px;}
.h17{height:23.319141px;}
.h2a{height:29.664141px;}
.he{height:29.678906px;}
.h11{height:30.963516px;}
.h2c{height:31.081955px;}
.h3b{height:31.680000px;}
.h3d{height:31.860000px;}
.h5{height:34.200000px;}
.h21{height:36.281250px;}
.h36{height:37.080000px;}
.h15{height:39.503370px;}
.h6{height:40.985156px;}
.h22{height:42.086250px;}
.h25{height:42.759141px;}
.h28{height:43.737568px;}
.h13{height:44.518359px;}
.hd{height:45.116367px;}
.h1b{height:45.714375px;}
.h14{height:46.622932px;}
.hf{height:47.344922px;}
.h3c{height:47.678906px;}
.h18{height:48.616875px;}
.h2d{height:49.140000px;}
.h16{height:52.998047px;}
.h42{height:53.573906px;}
.h1d{height:54.421875px;}
.h12{height:55.291992px;}
.h1f{height:55.503491px;}
.h2e{height:55.980000px;}
.h1a{height:57.600000px;}
.h27{height:58.621992px;}
.h4{height:58.651172px;}
.h2b{height:60.226875px;}
.h35{height:61.423863px;}
.hc{height:65.010937px;}
.h34{height:65.700000px;}
.h32{height:65.736000px;}
.h2{height:65.884219px;}
.h10{height:67.824844px;}
.h8{height:68.956875px;}
.h29{height:70.628906px;}
.hb{height:72.562500px;}
.h26{height:75.093750px;}
.h3e{height:82.980000px;}
.h20{height:94.536000px;}
.h9{height:96.508125px;}
.ha{height:99.687656px;}
.h24{height:144.900000px;}
.h1e{height:450.255000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w20{width:46.440000px;}
.w22{width:47.160000px;}
.w1f{width:47.376000px;}
.w21{width:48.060000px;}
.w24{width:54.000000px;}
.w23{width:67.500000px;}
.w25{width:67.536000px;}
.w1b{width:80.496000px;}
.w1a{width:80.820000px;}
.w1c{width:81.180000px;}
.w4{width:82.080000px;}
.w1d{width:85.716000px;}
.w19{width:89.316000px;}
.w11{width:101.160000px;}
.w18{width:111.600000px;}
.w1e{width:114.300000px;}
.we{width:120.060000px;}
.wf{width:120.096000px;}
.w10{width:128.376000px;}
.w12{width:135.036000px;}
.wd{width:137.916000px;}
.w6{width:154.440000px;}
.wb{width:180.390000px;}
.w9{width:182.550000px;}
.w17{width:192.270000px;}
.wc{width:236.190000px;}
.w15{width:240.150000px;}
.w16{width:248.475000px;}
.w14{width:254.010000px;}
.w13{width:272.955000px;}
.w8{width:532.725000px;}
.w5{width:639.870000px;}
.w3{width:721.950000px;}
.wa{width:743.040000px;}
.w7{width:747.180000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x52{left:4.252500px;}
.x2{left:8.100000px;}
.x48{left:9.540000px;}
.x14{left:10.800000px;}
.x51{left:12.960000px;}
.x44{left:15.480000px;}
.x25{left:16.920000px;}
.x42{left:19.440000px;}
.x1a{left:21.255000px;}
.x4a{left:22.860000px;}
.x28{left:23.940000px;}
.x49{left:25.560000px;}
.x2a{left:27.360000px;}
.x2f{left:29.700000px;}
.x26{left:31.320000px;}
.x23{left:36.000000px;}
.x36{left:37.440000px;}
.x29{left:38.565000px;}
.x37{left:41.760000px;}
.x35{left:43.920000px;}
.x32{left:46.440000px;}
.x2e{left:48.420000px;}
.x34{left:49.860000px;}
.x30{left:51.480000px;}
.x3a{left:53.460000px;}
.x33{left:55.080000px;}
.x2d{left:56.520000px;}
.x38{left:58.140000px;}
.x39{left:60.120000px;}
.x3{left:73.974000px;}
.x17{left:80.460000px;}
.x15{left:81.720000px;}
.x3f{left:83.700000px;}
.x3d{left:89.640000px;}
.x3c{left:91.440000px;}
.x13{left:93.096000px;}
.x19{left:94.896000px;}
.x1{left:108.035987px;}
.xe{left:109.835987px;}
.x3e{left:113.265000px;}
.x21{left:115.775987px;}
.x31{left:118.485000px;}
.x1d{left:128.375987px;}
.x10{left:132.695987px;}
.xd{left:140.255987px;}
.x1e{left:147.275987px;}
.x6{left:148.895987px;}
.x9{left:155.549987px;}
.x7{left:162.929987px;}
.x4{left:190.110000px;}
.x2c{left:195.330000px;}
.xc{left:217.109987px;}
.x1f{left:219.449987px;}
.x1c{left:221.609987px;}
.x20{left:223.229987px;}
.x4b{left:269.715000px;}
.x40{left:300.315000px;}
.x16{left:303.015000px;}
.x18{left:310.395000px;}
.x4c{left:316.155000px;}
.x22{left:330.375000px;}
.x3b{left:348.195000px;}
.xa{left:363.674987px;}
.x41{left:411.915000px;}
.xf{left:418.214987px;}
.x5{left:446.504987px;}
.x8{left:449.744987px;}
.xb{left:459.104987px;}
.x24{left:468.285000px;}
.x11{left:489.164987px;}
.x12{left:490.784987px;}
.x43{left:501.225000px;}
.x4d{left:546.405000px;}
.x45{left:582.045000px;}
.x27{left:588.345000px;}
.x4e{left:613.905000px;}
.x1b{left:620.253000px;}
.x4f{left:661.290000px;}
.x46{left:662.550000px;}
.x2b{left:708.450000px;}
.x47{left:743.730000px;}
.x50{left:762.450000px;}
@media print{
.v3{vertical-align:-49.280000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.440000pt;}
.v4{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-11.360000pt;}
.lsd{letter-spacing:-10.400000pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls23{letter-spacing:-0.544000pt;}
.ls1c{letter-spacing:-0.501333pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls21{letter-spacing:-0.409067pt;}
.lsb{letter-spacing:-0.324267pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.239467pt;}
.ls25{letter-spacing:-0.230933pt;}
.lse{letter-spacing:-0.198933pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls22{letter-spacing:-0.161067pt;}
.ls10{letter-spacing:-0.133867pt;}
.ls12{letter-spacing:-0.079467pt;}
.ls15{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.094933pt;}
.ls17{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.128640pt;}
.ls1a{letter-spacing:0.133120pt;}
.ls1b{letter-spacing:0.138667pt;}
.ls5{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.161067pt;}
.ls1f{letter-spacing:0.200960pt;}
.ls19{letter-spacing:0.230933pt;}
.ls1e{letter-spacing:0.231040pt;}
.ls6{letter-spacing:0.240640pt;}
.ls24{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.800000pt;}
.ls13{letter-spacing:3.360000pt;}
.ls18{letter-spacing:5.280000pt;}
.ls3{letter-spacing:43.040000pt;}
.ls0{letter-spacing:63.360000pt;}
.ls1{letter-spacing:63.466667pt;}
.ls2{letter-spacing:64.000000pt;}
.ws14{word-spacing:-42.880000pt;}
.wsd{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.720000pt;}
.wsa{word-spacing:-13.600000pt;}
.ws1a{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.510933pt;}
.ws16{word-spacing:-13.374933pt;}
.wsb{word-spacing:-13.280000pt;}
.ws18{word-spacing:-13.049067pt;}
.ws17{word-spacing:-12.960000pt;}
.ws12{word-spacing:-12.870933pt;}
.ws19{word-spacing:-12.640000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.881067pt;}
.wsf{word-spacing:-10.720000pt;}
.ws13{word-spacing:-10.558933pt;}
.ws11{word-spacing:-10.480533pt;}
.ws2{word-spacing:-10.400000pt;}
.ws3{word-spacing:-10.080000pt;}
.ws4{word-spacing:-9.755733pt;}
.ws8{word-spacing:-9.280000pt;}
.ws7{word-spacing:-8.000000pt;}
.ws1{word-spacing:-6.720000pt;}
.ws15{word-spacing:-6.080000pt;}
.ws9{word-spacing:0.000000pt;}
.ws0{word-spacing:54.720000pt;}
._2b{margin-left:-230.919040pt;}
._2a{margin-left:-209.024000pt;}
._2d{margin-left:-202.360960pt;}
._2c{margin-left:-178.605440pt;}
._6{margin-left:-53.600000pt;}
._16{margin-left:-3.687893pt;}
._b{margin-left:-2.494720pt;}
._2{margin-left:-1.059840pt;}
._0{width:0.890880pt;}
._a{width:2.071680pt;}
._1{width:3.130027pt;}
._14{width:4.569600pt;}
._9{width:5.471360pt;}
._13{width:6.862080pt;}
._8{width:8.180480pt;}
._e{width:9.933440pt;}
._15{width:10.848000pt;}
._3{width:11.757227pt;}
._f{width:14.608000pt;}
._1b{width:15.723520pt;}
._24{width:17.234560pt;}
._20{width:18.225067pt;}
._1f{width:19.176320pt;}
._1a{width:20.941440pt;}
._12{width:21.832320pt;}
._11{width:22.735360pt;}
._21{width:23.691520pt;}
._26{width:24.913280pt;}
._23{width:25.922560pt;}
._29{width:27.409920pt;}
._18{width:28.484480pt;}
._33{width:29.640960pt;}
._10{width:30.703360pt;}
._28{width:31.765760pt;}
._27{width:32.881280pt;}
._1c{width:33.902720pt;}
._d{width:34.952960pt;}
._31{width:36.172160pt;}
._30{width:37.290240pt;}
._34{width:38.192000pt;}
._32{width:39.267840pt;}
._1e{width:40.902400pt;}
._1d{width:41.911680pt;}
._19{width:43.729920pt;}
._36{width:44.912000pt;}
._37{width:46.586240pt;}
._35{width:48.032640pt;}
._c{width:49.095040pt;}
._25{width:50.198400pt;}
._39{width:52.048000pt;}
._22{width:53.120000pt;}
._38{width:54.088320pt;}
._40{width:56.946347pt;}
._4{width:58.218667pt;}
._41{width:63.012480pt;}
._3c{width:67.993600pt;}
._2f{width:72.349440pt;}
._2e{width:73.252480pt;}
._42{width:77.289600pt;}
._3f{width:84.779520pt;}
._3b{width:92.800640pt;}
._3a{width:93.703680pt;}
._5{width:177.440000pt;}
._43{width:202.165120pt;}
._44{width:203.077760pt;}
._3d{width:232.779520pt;}
._3e{width:234.418560pt;}
._17{width:250.906667pt;}
._7{width:671.978667pt;}
.fs3{font-size:5.120000pt;}
.fs10{font-size:5.333333pt;}
.fsb{font-size:21.120000pt;}
.fse{font-size:24.320000pt;}
.fs7{font-size:26.880000pt;}
.fsc{font-size:32.000000pt;}
.fsa{font-size:33.730624pt;}
.fs1{font-size:37.120000pt;}
.fs6{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fsf{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsd{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.y47{bottom:-220.346667pt;}
.y46{bottom:-190.426667pt;}
.y45{bottom:-160.506667pt;}
.y7f{bottom:-139.080000pt;}
.y44{bottom:-130.426667pt;}
.y7e{bottom:-109.160000pt;}
.y43{bottom:-100.506667pt;}
.y7d{bottom:-79.240000pt;}
.y42{bottom:-70.400000pt;}
.y7c{bottom:-49.120000pt;}
.y41{bottom:-40.480000pt;}
.y4a{bottom:-24.480000pt;}
.y7b{bottom:-19.200000pt;}
.y81{bottom:-15.931333pt;}
.y40{bottom:-10.560000pt;}
.y0{bottom:0.000000pt;}
.y255{bottom:1.633333pt;}
.y15c{bottom:2.240000pt;}
.y3{bottom:3.360000pt;}
.y6e{bottom:3.680000pt;}
.y10b{bottom:4.000000pt;}
.y10a{bottom:4.160000pt;}
.y49{bottom:4.320000pt;}
.y164{bottom:4.480000pt;}
.y70{bottom:4.800000pt;}
.y12c{bottom:5.280000pt;}
.y3f{bottom:5.600000pt;}
.y12e{bottom:5.920000pt;}
.y104{bottom:6.560000pt;}
.y108{bottom:7.040000pt;}
.y15d{bottom:10.240000pt;}
.y7a{bottom:10.880000pt;}
.y6{bottom:11.040000pt;}
.y119{bottom:11.680000pt;}
.y12a{bottom:12.640000pt;}
.y129{bottom:13.440000pt;}
.y6d{bottom:15.226667pt;}
.y3e{bottom:18.080000pt;}
.y101{bottom:18.720000pt;}
.y103{bottom:18.880000pt;}
.y7{bottom:19.360000pt;}
.y66{bottom:19.520000pt;}
.y4{bottom:20.640000pt;}
.y5{bottom:21.760000pt;}
.y106{bottom:21.920000pt;}
.y15f{bottom:24.960000pt;}
.y118{bottom:25.760000pt;}
.y120{bottom:26.080000pt;}
.y113{bottom:26.240000pt;}
.y6c{bottom:26.906667pt;}
.y3d{bottom:30.400000pt;}
.y102{bottom:31.040000pt;}
.y160{bottom:32.960000pt;}
.y65{bottom:33.320000pt;}
.y79{bottom:38.400000pt;}
.y6b{bottom:38.426667pt;}
.y83{bottom:41.440000pt;}
.y3c{bottom:41.920000pt;}
.y64{bottom:44.200000pt;}
.y78{bottom:49.920000pt;}
.y6a{bottom:49.946667pt;}
.y2{bottom:51.040000pt;}
.y80{bottom:56.693333pt;}
.y63{bottom:60.040000pt;}
.y77{bottom:61.600000pt;}
.y69{bottom:61.626667pt;}
.y76{bottom:73.120000pt;}
.y62{bottom:75.880000pt;}
.y68{bottom:76.826667pt;}
.y75{bottom:84.640000pt;}
.y239{bottom:87.840000pt;}
.yd2{bottom:91.680000pt;}
.y61{bottom:91.720000pt;}
.y1b7{bottom:95.840000pt;}
.y74{bottom:96.320000pt;}
.y176{bottom:96.480000pt;}
.ydf{bottom:96.800000pt;}
.y185{bottom:97.280000pt;}
.y1a9{bottom:97.760000pt;}
.y238{bottom:103.200000pt;}
.y205{bottom:103.680000pt;}
.yb3{bottom:103.840000pt;}
.y254{bottom:104.000000pt;}
.y3a{bottom:104.960000pt;}
.y60{bottom:107.720000pt;}
.y73{bottom:107.840000pt;}
.yd1{bottom:109.280000pt;}
.y13f{bottom:111.840000pt;}
.y1b6{bottom:113.632000pt;}
.y175{bottom:114.272000pt;}
.yde{bottom:114.432000pt;}
.y184{bottom:114.912000pt;}
.y1a8{bottom:115.392000pt;}
.y237{bottom:118.592000pt;}
.y72{bottom:118.720000pt;}
.y204{bottom:119.072000pt;}
.y253{bottom:119.392000pt;}
.yb2{bottom:121.472000pt;}
.y1d5{bottom:121.952000pt;}
.y39{bottom:122.592000pt;}
.y5f{bottom:123.560000pt;}
.yd0{bottom:126.912000pt;}
.y13e{bottom:129.472000pt;}
.y1b5{bottom:131.232000pt;}
.y174{bottom:131.872000pt;}
.y183{bottom:132.672000pt;}
.ydd{bottom:133.152000pt;}
.y236{bottom:133.946667pt;}
.y203{bottom:134.266667pt;}
.y252{bottom:134.586667pt;}
.y5e{bottom:135.560000pt;}
.yfd{bottom:137.146667pt;}
.yb1{bottom:139.066667pt;}
.y1d4{bottom:139.546667pt;}
.y38{bottom:140.186667pt;}
.y5d{bottom:143.240000pt;}
.ycf{bottom:144.666667pt;}
.y13d{bottom:145.626667pt;}
.y1b4{bottom:148.826667pt;}
.y235{bottom:149.146667pt;}
.y173{bottom:149.466667pt;}
.y202{bottom:149.626667pt;}
.y251{bottom:149.946667pt;}
.y182{bottom:150.266667pt;}
.ydc{bottom:150.586667pt;}
.y1a7{bottom:150.746667pt;}
.yfc{bottom:154.906667pt;}
.yb0{bottom:156.666667pt;}
.y1d3{bottom:157.306667pt;}
.y37{bottom:157.946667pt;}
.y13c{bottom:158.106667pt;}
.y5c{bottom:159.080000pt;}
.ydb{bottom:161.946667pt;}
.yce{bottom:162.266667pt;}
.y234{bottom:164.506667pt;}
.y201{bottom:164.986667pt;}
.y250{bottom:165.306667pt;}
.y1b3{bottom:166.426667pt;}
.y172{bottom:167.066667pt;}
.y181{bottom:167.866667pt;}
.y1a6{bottom:168.346667pt;}
.y13b{bottom:168.666667pt;}
.yfb{bottom:172.506667pt;}
.yaf{bottom:174.426667pt;}
.y5b{bottom:174.920000pt;}
.y36{bottom:175.546667pt;}
.y1d2{bottom:176.026667pt;}
.yda{bottom:179.706667pt;}
.ycd{bottom:179.866667pt;}
.y200{bottom:180.346667pt;}
.y24f{bottom:180.666667pt;}
.y1b2{bottom:184.026667pt;}
.y171{bottom:184.666667pt;}
.y180{bottom:185.466667pt;}
.y1a5{bottom:185.946667pt;}
.y13a{bottom:186.746667pt;}
.yfa{bottom:190.106667pt;}
.y5a{bottom:190.920000pt;}
.yae{bottom:192.026667pt;}
.y35{bottom:193.146667pt;}
.y233{bottom:195.226667pt;}
.y1ff{bottom:195.706667pt;}
.y24e{bottom:196.026667pt;}
.yd9{bottom:197.306667pt;}
.ycc{bottom:197.466667pt;}
.y1b1{bottom:201.786667pt;}
.y170{bottom:202.426667pt;}
.y17f{bottom:203.066667pt;}
.y1a4{bottom:203.546667pt;}
.y139{bottom:204.666667pt;}
.y59{bottom:206.760000pt;}
.yf9{bottom:207.706667pt;}
.yad{bottom:209.626667pt;}
.y232{bottom:210.586667pt;}
.y34{bottom:210.746667pt;}
.y1fe{bottom:211.066667pt;}
.y24d{bottom:211.386667pt;}
.y1d1{bottom:212.026667pt;}
.yd8{bottom:214.906667pt;}
.ycb{bottom:215.066667pt;}
.y1b0{bottom:219.386667pt;}
.y16f{bottom:220.026667pt;}
.y17e{bottom:220.826667pt;}
.y1a3{bottom:221.306667pt;}
.y58{bottom:222.600000pt;}
.y138{bottom:222.746667pt;}
.yf8{bottom:225.306667pt;}
.y231{bottom:225.946667pt;}
.y1fd{bottom:226.266667pt;}
.y24c{bottom:226.586667pt;}
.yac{bottom:227.226667pt;}
.y33{bottom:228.346667pt;}
.y1d0{bottom:229.626667pt;}
.yd7{bottom:232.506667pt;}
.yca{bottom:232.826667pt;}
.y57{bottom:234.626667pt;}
.y1af{bottom:236.986667pt;}
.y16e{bottom:237.626667pt;}
.y17d{bottom:238.426667pt;}
.y1a2{bottom:238.906667pt;}
.y137{bottom:240.666667pt;}
.y230{bottom:241.146667pt;}
.y1fc{bottom:241.626667pt;}
.y24b{bottom:241.946667pt;}
.y56{bottom:242.306667pt;}
.yf7{bottom:243.066667pt;}
.yab{bottom:244.826667pt;}
.y32{bottom:245.946667pt;}
.y1cf{bottom:247.226667pt;}
.yd6{bottom:250.106667pt;}
.yc9{bottom:250.426667pt;}
.y1ae{bottom:254.586667pt;}
.y16d{bottom:255.226667pt;}
.y17c{bottom:256.026667pt;}
.y1a1{bottom:256.506667pt;}
.y1fb{bottom:256.986667pt;}
.y24a{bottom:257.306667pt;}
.y55{bottom:258.146667pt;}
.y136{bottom:258.746667pt;}
.yf6{bottom:260.666667pt;}
.yaa{bottom:262.586667pt;}
.y31{bottom:263.706667pt;}
.y1ce{bottom:264.986667pt;}
.yd5{bottom:267.866667pt;}
.yc8{bottom:268.026667pt;}
.y22f{bottom:271.866667pt;}
.y1ad{bottom:272.186667pt;}
.y1fa{bottom:272.346667pt;}
.y249{bottom:272.666667pt;}
.y16c{bottom:272.826667pt;}
.y17b{bottom:273.626667pt;}
.y54{bottom:273.986667pt;}
.y1a0{bottom:274.106667pt;}
.y135{bottom:276.666667pt;}
.yf5{bottom:278.266667pt;}
.ya9{bottom:280.186667pt;}
.y30{bottom:282.426667pt;}
.y1cd{bottom:282.586667pt;}
.yd4{bottom:286.586667pt;}
.yc7{bottom:286.746667pt;}
.y22e{bottom:287.226667pt;}
.y1f9{bottom:287.706667pt;}
.y248{bottom:288.026667pt;}
.y1ac{bottom:289.946667pt;}
.y53{bottom:289.986667pt;}
.y16b{bottom:290.586667pt;}
.y17a{bottom:291.226667pt;}
.y19f{bottom:291.706667pt;}
.y134{bottom:294.746667pt;}
.yf4{bottom:295.866667pt;}
.y2f{bottom:297.786667pt;}
.y1cc{bottom:300.186667pt;}
.y22d{bottom:302.586667pt;}
.y4b{bottom:302.906667pt;}
.y247{bottom:303.226667pt;}
.yd3{bottom:304.026667pt;}
.yc6{bottom:304.186667pt;}
.y2e{bottom:305.306667pt;}
.y52{bottom:305.826667pt;}
.y1ab{bottom:307.546667pt;}
.y16a{bottom:308.186667pt;}
.y179{bottom:308.986667pt;}
.y19e{bottom:309.466667pt;}
.y133{bottom:312.666667pt;}
.yf3{bottom:313.466667pt;}
.ya8{bottom:315.386667pt;}
.yc5{bottom:315.706667pt;}
.y1cb{bottom:317.786667pt;}
.y22c{bottom:317.946667pt;}
.y1f8{bottom:318.266667pt;}
.y246{bottom:318.586667pt;}
.y51{bottom:321.666667pt;}
.y2d{bottom:324.226667pt;}
.y169{bottom:325.826667pt;}
.y1aa{bottom:326.306667pt;}
.y178{bottom:326.626667pt;}
.y19d{bottom:327.106667pt;}
.y132{bottom:330.786667pt;}
.yf2{bottom:331.106667pt;}
.ya7{bottom:333.026667pt;}
.y22b{bottom:333.186667pt;}
.yc4{bottom:333.346667pt;}
.y50{bottom:333.666667pt;}
.y245{bottom:333.986667pt;}
.y1ca{bottom:335.426667pt;}
.y2c{bottom:340.706667pt;}
.y4f{bottom:341.346667pt;}
.y168{bottom:343.426667pt;}
.y177{bottom:344.226667pt;}
.y19c{bottom:344.706667pt;}
.y22a{bottom:348.546667pt;}
.y131{bottom:348.706667pt;}
.yf1{bottom:348.866667pt;}
.y1f7{bottom:349.026667pt;}
.y244{bottom:349.346667pt;}
.ya6{bottom:350.786667pt;}
.yc3{bottom:350.946667pt;}
.y1c9{bottom:353.186667pt;}
.y4e{bottom:357.186667pt;}
.y167{bottom:359.426667pt;}
.y2b{bottom:361.826667pt;}
.y19b{bottom:362.306667pt;}
.y229{bottom:363.906667pt;}
.y1f6{bottom:364.386667pt;}
.y243{bottom:364.706667pt;}
.yf0{bottom:366.466667pt;}
.y130{bottom:366.786667pt;}
.ya5{bottom:368.386667pt;}
.yc2{bottom:368.546667pt;}
.y1c8{bottom:370.786667pt;}
.y4d{bottom:373.026667pt;}
.y166{bottom:377.826667pt;}
.y228{bottom:379.266667pt;}
.y1f5{bottom:379.746667pt;}
.y19a{bottom:379.906667pt;}
.y242{bottom:380.066667pt;}
.y2a{bottom:382.946667pt;}
.yef{bottom:384.066667pt;}
.y12f{bottom:384.706667pt;}
.ya4{bottom:385.986667pt;}
.yc1{bottom:386.146667pt;}
.y1c7{bottom:388.386667pt;}
.y4c{bottom:389.026667pt;}
.y71{bottom:390.146667pt;}
.y227{bottom:394.626667pt;}
.y165{bottom:394.786667pt;}
.y1f4{bottom:394.946667pt;}
.y241{bottom:395.266667pt;}
.y199{bottom:397.666667pt;}
.y29{bottom:401.346667pt;}
.yee{bottom:401.666667pt;}
.y12d{bottom:402.786667pt;}
.ya3{bottom:403.586667pt;}
.yc0{bottom:403.906667pt;}
.y15e{bottom:405.506667pt;}
.y1c6{bottom:407.106667pt;}
.y226{bottom:409.826667pt;}
.y1f3{bottom:410.306667pt;}
.y240{bottom:410.626667pt;}
.y198{bottom:415.266667pt;}
.y28{bottom:418.786667pt;}
.yed{bottom:419.266667pt;}
.ya2{bottom:421.186667pt;}
.y12b{bottom:421.346667pt;}
.ybf{bottom:421.506667pt;}
.y163{bottom:424.706667pt;}
.y225{bottom:425.186667pt;}
.y1f2{bottom:425.666667pt;}
.y23f{bottom:425.986667pt;}
.y27{bottom:431.266667pt;}
.y197{bottom:432.866667pt;}
.yec{bottom:437.026667pt;}
.y26{bottom:438.786667pt;}
.ya1{bottom:438.946667pt;}
.ybe{bottom:439.106667pt;}
.y128{bottom:440.066667pt;}
.y224{bottom:440.546667pt;}
.y1f1{bottom:441.026667pt;}
.y23e{bottom:441.346667pt;}
.y162{bottom:441.986667pt;}
.y1c5{bottom:443.266667pt;}
.y196{bottom:450.466667pt;}
.yeb{bottom:454.626667pt;}
.y223{bottom:455.906667pt;}
.y1f0{bottom:456.386667pt;}
.ya0{bottom:456.546667pt;}
.ybd{bottom:456.706667pt;}
.y25{bottom:459.426667pt;}
.y161{bottom:460.066667pt;}
.y1c4{bottom:460.866667pt;}
.y195{bottom:468.066667pt;}
.y222{bottom:471.266667pt;}
.y1ef{bottom:471.746667pt;}
.y23d{bottom:472.066667pt;}
.yea{bottom:472.226667pt;}
.y9f{bottom:474.146667pt;}
.ybc{bottom:475.426667pt;}
.y1c3{bottom:478.466667pt;}
.y127{bottom:479.586667pt;}
.y24{bottom:480.226667pt;}
.y15b{bottom:481.186667pt;}
.y194{bottom:485.826667pt;}
.y221{bottom:486.626667pt;}
.y1ee{bottom:486.946667pt;}
.y23c{bottom:487.266667pt;}
.ye9{bottom:489.826667pt;}
.y9e{bottom:491.746667pt;}
.ybb{bottom:493.026667pt;}
.y126{bottom:496.066667pt;}
.y23{bottom:500.866667pt;}
.y220{bottom:501.826667pt;}
.y1ed{bottom:502.306667pt;}
.y23b{bottom:502.626667pt;}
.y193{bottom:503.426667pt;}
.yba{bottom:504.386667pt;}
.ye8{bottom:507.426667pt;}
.y9d{bottom:509.346667pt;}
.y125{bottom:512.226667pt;}
.y15a{bottom:513.986667pt;}
.y1c2{bottom:514.786667pt;}
.y21f{bottom:517.186667pt;}
.y1ec{bottom:517.666667pt;}
.y23a{bottom:517.826667pt;}
.y192{bottom:521.026667pt;}
.yb9{bottom:521.986667pt;}
.y124{bottom:524.546667pt;}
.ye7{bottom:525.186667pt;}
.y9c{bottom:527.106667pt;}
.y67{bottom:528.226667pt;}
.y21e{bottom:532.546667pt;}
.y1eb{bottom:533.026667pt;}
.y1c1{bottom:536.093333pt;}
.y123{bottom:536.893333pt;}
.y159{bottom:538.493333pt;}
.y191{bottom:538.653333pt;}
.yb8{bottom:539.613333pt;}
.ye6{bottom:542.813333pt;}
.y9b{bottom:544.733333pt;}
.y11f{bottom:547.613333pt;}
.y21d{bottom:547.933333pt;}
.y1ea{bottom:548.413333pt;}
.y22{bottom:550.013333pt;}
.y158{bottom:554.493333pt;}
.y190{bottom:556.253333pt;}
.yb7{bottom:557.213333pt;}
.ye5{bottom:560.413333pt;}
.y9a{bottom:562.333333pt;}
.y21c{bottom:563.293333pt;}
.y21{bottom:563.773333pt;}
.y157{bottom:567.613333pt;}
.y1c0{bottom:572.093333pt;}
.y18f{bottom:574.013333pt;}
.yb6{bottom:576.093333pt;}
.y122{bottom:577.053333pt;}
.y20{bottom:577.533333pt;}
.ye4{bottom:578.013333pt;}
.y21b{bottom:578.653333pt;}
.y1e9{bottom:578.973333pt;}
.y99{bottom:579.933333pt;}
.y156{bottom:582.333333pt;}
.y1bf{bottom:589.693333pt;}
.y1f{bottom:591.293333pt;}
.y18e{bottom:591.613333pt;}
.y121{bottom:591.933333pt;}
.y21a{bottom:593.853333pt;}
.y1e8{bottom:594.333333pt;}
.yb5{bottom:594.493333pt;}
.ye3{bottom:595.613333pt;}
.y155{bottom:597.213333pt;}
.y98{bottom:597.533333pt;}
.y1e{bottom:605.213333pt;}
.y11c{bottom:606.653333pt;}
.y1be{bottom:607.293333pt;}
.y18d{bottom:609.213333pt;}
.y1e7{bottom:610.333333pt;}
.y154{bottom:611.933333pt;}
.yb4{bottom:612.893333pt;}
.ye2{bottom:613.373333pt;}
.y1d{bottom:614.653333pt;}
.y97{bottom:615.293333pt;}
.y11e{bottom:621.373333pt;}
.y3b{bottom:622.813333pt;}
.y219{bottom:624.573333pt;}
.y1bd{bottom:624.893333pt;}
.y153{bottom:626.653333pt;}
.y1c{bottom:626.813333pt;}
.ye1{bottom:630.973333pt;}
.y96{bottom:632.893333pt;}
.y11d{bottom:636.253333pt;}
.y1b{bottom:638.333333pt;}
.y218{bottom:639.933333pt;}
.y152{bottom:641.533333pt;}
.y1bc{bottom:642.653333pt;}
.y1e6{bottom:644.093333pt;}
.y18c{bottom:644.413333pt;}
.ye0{bottom:649.693333pt;}
.y1a{bottom:649.853333pt;}
.y95{bottom:650.493333pt;}
.y117{bottom:650.973333pt;}
.y217{bottom:655.293333pt;}
.y151{bottom:656.253333pt;}
.y1e5{bottom:659.453333pt;}
.y1bb{bottom:660.253333pt;}
.y19{bottom:661.373333pt;}
.y18b{bottom:662.173333pt;}
.y11b{bottom:665.693333pt;}
.y94{bottom:668.093333pt;}
.y216{bottom:670.493333pt;}
.y150{bottom:670.973333pt;}
.y18{bottom:673.853333pt;}
.y1e4{bottom:674.813333pt;}
.y1ba{bottom:677.853333pt;}
.y18a{bottom:679.773333pt;}
.y11a{bottom:680.573333pt;}
.y17{bottom:685.213333pt;}
.y93{bottom:685.693333pt;}
.y14f{bottom:685.853333pt;}
.y1e3{bottom:690.013333pt;}
.y112{bottom:695.293333pt;}
.y1b9{bottom:695.453333pt;}
.y189{bottom:697.373333pt;}
.y14e{bottom:700.573333pt;}
.y215{bottom:701.213333pt;}
.y92{bottom:703.453333pt;}
.y1e2{bottom:708.893333pt;}
.y16{bottom:709.053333pt;}
.y116{bottom:710.013333pt;}
.y1b8{bottom:714.173333pt;}
.y188{bottom:714.973333pt;}
.y214{bottom:716.573333pt;}
.y14d{bottom:716.733333pt;}
.y15{bottom:718.973333pt;}
.y91{bottom:721.053333pt;}
.y115{bottom:724.893333pt;}
.y213{bottom:731.933333pt;}
.y187{bottom:732.573333pt;}
.y90{bottom:738.653333pt;}
.y114{bottom:739.613333pt;}
.y14{bottom:740.413333pt;}
.y1e1{bottom:744.893333pt;}
.y212{bottom:747.293333pt;}
.y186{bottom:750.373333pt;}
.y14c{bottom:751.653333pt;}
.y10f{bottom:754.373333pt;}
.y8f{bottom:756.293333pt;}
.y13{bottom:761.573333pt;}
.y1e0{bottom:762.533333pt;}
.y14b{bottom:767.973333pt;}
.y111{bottom:769.093333pt;}
.y12{bottom:770.853333pt;}
.y8e{bottom:773.893333pt;}
.y211{bottom:777.893333pt;}
.y1df{bottom:781.253333pt;}
.y110{bottom:783.973333pt;}
.y14a{bottom:785.573333pt;}
.y11{bottom:787.973333pt;}
.y8d{bottom:791.653333pt;}
.y210{bottom:793.253333pt;}
.y10c{bottom:798.693333pt;}
.y10{bottom:801.253333pt;}
.y149{bottom:803.173333pt;}
.y20f{bottom:808.613333pt;}
.y8c{bottom:809.253333pt;}
.y10e{bottom:813.413333pt;}
.yf{bottom:814.533333pt;}
.y1de{bottom:817.253333pt;}
.y148{bottom:820.773333pt;}
.y20e{bottom:823.973333pt;}
.ye{bottom:825.093333pt;}
.y8b{bottom:826.853333pt;}
.y10d{bottom:828.293333pt;}
.y1dd{bottom:835.013333pt;}
.y147{bottom:838.533333pt;}
.y20d{bottom:839.333333pt;}
.yd{bottom:840.293333pt;}
.y105{bottom:843.013333pt;}
.y8a{bottom:844.453333pt;}
.y1dc{bottom:852.613333pt;}
.y20c{bottom:854.533333pt;}
.y146{bottom:856.133333pt;}
.y109{bottom:857.733333pt;}
.yc{bottom:862.053333pt;}
.y20b{bottom:869.893333pt;}
.y1db{bottom:870.213333pt;}
.y107{bottom:872.613333pt;}
.y145{bottom:873.733333pt;}
.y89{bottom:879.813333pt;}
.yb{bottom:881.573333pt;}
.y20a{bottom:885.253333pt;}
.y1da{bottom:887.813333pt;}
.y144{bottom:891.333333pt;}
.y100{bottom:894.853333pt;}
.y88{bottom:897.413333pt;}
.y209{bottom:900.613333pt;}
.ya{bottom:901.093333pt;}
.y1d9{bottom:905.413333pt;}
.y143{bottom:908.933333pt;}
.y87{bottom:915.013333pt;}
.y208{bottom:915.973333pt;}
.y1d8{bottom:923.173333pt;}
.y9{bottom:925.733333pt;}
.y142{bottom:926.693333pt;}
.y207{bottom:931.333333pt;}
.y86{bottom:932.613333pt;}
.y1d7{bottom:940.773333pt;}
.yff{bottom:943.173333pt;}
.y141{bottom:944.293333pt;}
.y206{bottom:946.533333pt;}
.y8{bottom:948.613333pt;}
.y85{bottom:950.213333pt;}
.yfe{bottom:956.933333pt;}
.y1d6{bottom:959.520000pt;}
.y140{bottom:961.920000pt;}
.y84{bottom:967.840000pt;}
.y6f{bottom:974.400000pt;}
.y1{bottom:996.480000pt;}
.y82{bottom:997.920000pt;}
.y48{bottom:1010.880000pt;}
.h7{height:5.025000pt;}
.h19{height:5.160000pt;}
.h43{height:5.562500pt;}
.h3{height:12.000000pt;}
.h31{height:14.080000pt;}
.h33{height:14.112000pt;}
.h30{height:14.240000pt;}
.h1c{height:15.040000pt;}
.h37{height:16.640000pt;}
.h39{height:17.280000pt;}
.h3a{height:17.312000pt;}
.h40{height:17.440000pt;}
.h38{height:17.920000pt;}
.h41{height:18.560000pt;}
.h3f{height:19.200000pt;}
.h23{height:19.680000pt;}
.h2f{height:20.160000pt;}
.h17{height:20.728125pt;}
.h2a{height:26.368125pt;}
.he{height:26.381250pt;}
.h11{height:27.523125pt;}
.h2c{height:27.628404pt;}
.h3b{height:28.160000pt;}
.h3d{height:28.320000pt;}
.h5{height:30.400000pt;}
.h21{height:32.250000pt;}
.h36{height:32.960000pt;}
.h15{height:35.114107pt;}
.h6{height:36.431250pt;}
.h22{height:37.410000pt;}
.h25{height:38.008125pt;}
.h28{height:38.877839pt;}
.h13{height:39.571875pt;}
.hd{height:40.103437pt;}
.h1b{height:40.635000pt;}
.h14{height:41.442606pt;}
.hf{height:42.084375pt;}
.h3c{height:42.381250pt;}
.h18{height:43.215000pt;}
.h2d{height:43.680000pt;}
.h16{height:47.109375pt;}
.h42{height:47.621250pt;}
.h1d{height:48.375000pt;}
.h12{height:49.148438pt;}
.h1f{height:49.336436pt;}
.h2e{height:49.760000pt;}
.h1a{height:51.200000pt;}
.h27{height:52.108438pt;}
.h4{height:52.134375pt;}
.h2b{height:53.535000pt;}
.h35{height:54.598989pt;}
.hc{height:57.787500pt;}
.h34{height:58.400000pt;}
.h32{height:58.432000pt;}
.h2{height:58.563750pt;}
.h10{height:60.288750pt;}
.h8{height:61.295000pt;}
.h29{height:62.781250pt;}
.hb{height:64.500000pt;}
.h26{height:66.750000pt;}
.h3e{height:73.760000pt;}
.h20{height:84.032000pt;}
.h9{height:85.785000pt;}
.ha{height:88.611250pt;}
.h24{height:128.800000pt;}
.h1e{height:400.226667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w20{width:41.280000pt;}
.w22{width:41.920000pt;}
.w1f{width:42.112000pt;}
.w21{width:42.720000pt;}
.w24{width:48.000000pt;}
.w23{width:60.000000pt;}
.w25{width:60.032000pt;}
.w1b{width:71.552000pt;}
.w1a{width:71.840000pt;}
.w1c{width:72.160000pt;}
.w4{width:72.960000pt;}
.w1d{width:76.192000pt;}
.w19{width:79.392000pt;}
.w11{width:89.920000pt;}
.w18{width:99.200000pt;}
.w1e{width:101.600000pt;}
.we{width:106.720000pt;}
.wf{width:106.752000pt;}
.w10{width:114.112000pt;}
.w12{width:120.032000pt;}
.wd{width:122.592000pt;}
.w6{width:137.280000pt;}
.wb{width:160.346667pt;}
.w9{width:162.266667pt;}
.w17{width:170.906667pt;}
.wc{width:209.946667pt;}
.w15{width:213.466667pt;}
.w16{width:220.866667pt;}
.w14{width:225.786667pt;}
.w13{width:242.626667pt;}
.w8{width:473.533333pt;}
.w5{width:568.773333pt;}
.w3{width:641.733333pt;}
.wa{width:660.480000pt;}
.w7{width:664.160000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x52{left:3.780000pt;}
.x2{left:7.200000pt;}
.x48{left:8.480000pt;}
.x14{left:9.600000pt;}
.x51{left:11.520000pt;}
.x44{left:13.760000pt;}
.x25{left:15.040000pt;}
.x42{left:17.280000pt;}
.x1a{left:18.893333pt;}
.x4a{left:20.320000pt;}
.x28{left:21.280000pt;}
.x49{left:22.720000pt;}
.x2a{left:24.320000pt;}
.x2f{left:26.400000pt;}
.x26{left:27.840000pt;}
.x23{left:32.000000pt;}
.x36{left:33.280000pt;}
.x29{left:34.280000pt;}
.x37{left:37.120000pt;}
.x35{left:39.040000pt;}
.x32{left:41.280000pt;}
.x2e{left:43.040000pt;}
.x34{left:44.320000pt;}
.x30{left:45.760000pt;}
.x3a{left:47.520000pt;}
.x33{left:48.960000pt;}
.x2d{left:50.240000pt;}
.x38{left:51.680000pt;}
.x39{left:53.440000pt;}
.x3{left:65.754667pt;}
.x17{left:71.520000pt;}
.x15{left:72.640000pt;}
.x3f{left:74.400000pt;}
.x3d{left:79.680000pt;}
.x3c{left:81.280000pt;}
.x13{left:82.752000pt;}
.x19{left:84.352000pt;}
.x1{left:96.031988pt;}
.xe{left:97.631988pt;}
.x3e{left:100.680000pt;}
.x21{left:102.911988pt;}
.x31{left:105.320000pt;}
.x1d{left:114.111988pt;}
.x10{left:117.951988pt;}
.xd{left:124.671988pt;}
.x1e{left:130.911988pt;}
.x6{left:132.351988pt;}
.x9{left:138.266655pt;}
.x7{left:144.826655pt;}
.x4{left:168.986667pt;}
.x2c{left:173.626667pt;}
.xc{left:192.986655pt;}
.x1f{left:195.066655pt;}
.x1c{left:196.986655pt;}
.x20{left:198.426655pt;}
.x4b{left:239.746667pt;}
.x40{left:266.946667pt;}
.x16{left:269.346667pt;}
.x18{left:275.906667pt;}
.x4c{left:281.026667pt;}
.x22{left:293.666667pt;}
.x3b{left:309.506667pt;}
.xa{left:323.266655pt;}
.x41{left:366.146667pt;}
.xf{left:371.746655pt;}
.x5{left:396.893322pt;}
.x8{left:399.773322pt;}
.xb{left:408.093322pt;}
.x24{left:416.253333pt;}
.x11{left:434.813322pt;}
.x12{left:436.253322pt;}
.x43{left:445.533333pt;}
.x4d{left:485.693333pt;}
.x45{left:517.373333pt;}
.x27{left:522.973333pt;}
.x4e{left:545.693333pt;}
.x1b{left:551.336000pt;}
.x4f{left:587.813333pt;}
.x46{left:588.933333pt;}
.x2b{left:629.733333pt;}
.x47{left:661.093333pt;}
.x50{left:677.733333pt;}
}




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