
    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_b7c13801ecd2459fcef9990a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.157000;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_25f4b1fe9dd50f1f13ad9804.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.150000;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_2c681c9e0d91b2bd650c3b4b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.198000;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_191f830567f579afa935f70c.woff2')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_be725375bc73ff37ce323842.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_773c0f55ccad28392fee1832.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.052734;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_ca5a9e895cb6b03e0dd26896.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.052734;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_38af65dc65968a7bc399e322.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.766602;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_71856106db4fdc1e47ec496c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003418;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_45a67b1956fffbd762fc8db5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.003418;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;}
.m7{transform:matrix(0.213669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213669,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.213784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213784,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.224394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224394,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.224918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224918,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.224963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224963,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.226100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226100,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.226693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226693,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.231275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231275,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.232638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232638,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.236163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236163,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.237760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237760,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.237785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237785,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242153,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-24.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls5{letter-spacing:-0.320400px;}
.lsb{letter-spacing:-0.313200px;}
.ls7{letter-spacing:-0.263400px;}
.ls12{letter-spacing:-0.245400px;}
.lsf{letter-spacing:-0.222600px;}
.ls15{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.175800px;}
.lsc{letter-spacing:-0.141600px;}
.ls14{letter-spacing:-0.132600px;}
.ls6{letter-spacing:-0.126000px;}
.ls3{letter-spacing:-0.067200px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.022320px;}
.lsd{letter-spacing:0.068400px;}
.ls4{letter-spacing:0.083400px;}
.ls17{letter-spacing:0.089400px;}
.ls9{letter-spacing:0.144720px;}
.lse{letter-spacing:0.148800px;}
.ls2{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.219000px;}
.ls11{letter-spacing:0.232320px;}
.ls13{letter-spacing:0.256200px;}
.ls10{letter-spacing:0.256320px;}
.ls8{letter-spacing:0.259800px;}
.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;}
}
.ws12{word-spacing:-15.226440px;}
.ws5{word-spacing:-15.000000px;}
.ws11{word-spacing:-14.970240px;}
.ws13{word-spacing:-14.754240px;}
.ws1{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.000000px;}
.ws4{word-spacing:-11.550000px;}
.ws9{word-spacing:-11.162040px;}
.wsb{word-spacing:-11.121240px;}
.wse{word-spacing:-10.970640px;}
.wsa{word-spacing:-10.924560px;}
.ws6{word-spacing:-10.902240px;}
.wsd{word-spacing:-10.760640px;}
.wsf{word-spacing:-10.679640px;}
.ws10{word-spacing:-10.656840px;}
.ws8{word-spacing:-10.638840px;}
.wsc{word-spacing:-10.589040px;}
.ws7{word-spacing:-10.581840px;}
.ws2{word-spacing:-7.500000px;}
.ws3{word-spacing:0.000000px;}
._24{margin-left:-8.408400px;}
._10{margin-left:-7.070400px;}
._7{margin-left:-5.909400px;}
._2{margin-left:-4.656000px;}
._1{margin-left:-3.264000px;}
._0{margin-left:-1.584000px;}
._5{width:1.512000px;}
._6{width:2.888400px;}
._3{width:4.272000px;}
._9{width:5.689200px;}
._4{width:6.864000px;}
._e{width:7.945200px;}
._8{width:9.925200px;}
._c{width:11.860200px;}
._b{width:14.515200px;}
._a{width:15.714000px;}
._f{width:17.658000px;}
._14{width:18.951000px;}
._19{width:19.968600px;}
._16{width:22.028400px;}
._18{width:24.015600px;}
._20{width:25.062600px;}
._15{width:26.098200px;}
._11{width:28.080000px;}
._1b{width:29.210400px;}
._28{width:30.260400px;}
._13{width:31.466400px;}
._d{width:33.141600px;}
._27{width:34.425000px;}
._23{width:35.892000px;}
._1f{width:37.411200px;}
._1a{width:39.096000px;}
._1d{width:40.143600px;}
._1e{width:41.486400px;}
._29{width:42.555600px;}
._1c{width:44.713800px;}
._21{width:45.747000px;}
._22{width:47.158200px;}
._25{width:48.443400px;}
._26{width:49.690800px;}
._17{width:51.445800px;}
._12{width:90.076800px;}
.fc2{color:transparent;}
.fc3{color:rgb(0,90,132);}
.fc1{color:rgb(0,128,128);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:30.000000px;}
.fs3{font-size:36.000000px;}
.fs5{font-size:46.200000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fsa{font-size:59.760000px;}
.fs6{font-size:60.000000px;}
.fs9{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fsb{font-size:84.240000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1e4{bottom:3.225000px;}
.y1dd{bottom:3.240000px;}
.y1cd{bottom:3.255000px;}
.y200{bottom:3.405000px;}
.y210{bottom:3.420000px;}
.y224{bottom:12.405000px;}
.y1f2{bottom:17.820000px;}
.y1e3{bottom:17.985000px;}
.y1dc{bottom:18.000000px;}
.y1cc{bottom:18.015000px;}
.y1e9{bottom:18.030000px;}
.y223{bottom:26.985000px;}
.y1e2{bottom:32.565000px;}
.y1c9{bottom:32.580000px;}
.y1cb{bottom:32.595000px;}
.y1db{bottom:32.610000px;}
.y222{bottom:41.565000px;}
.y1f1{bottom:47.160000px;}
.y1da{bottom:47.190000px;}
.y1ff{bottom:47.325000px;}
.y1c8{bottom:47.340000px;}
.y1e1{bottom:47.370000px;}
.y221{bottom:56.325000px;}
.y1f0{bottom:61.740000px;}
.y1fe{bottom:61.905000px;}
.y20f{bottom:61.920000px;}
.y1d9{bottom:61.950000px;}
.y43{bottom:65.700000px;}
.y220{bottom:70.905000px;}
.y20a{bottom:76.485000px;}
.y1ef{bottom:76.500000px;}
.y1d8{bottom:76.530000px;}
.y1fd{bottom:76.665000px;}
.y20e{bottom:76.680000px;}
.y42{bottom:80.100000px;}
.y122{bottom:83.040000px;}
.y15b{bottom:83.760000px;}
.y21f{bottom:85.665000px;}
.y7f{bottom:86.100000px;}
.yf7{bottom:87.000000px;}
.y1b0{bottom:89.220000px;}
.y1ee{bottom:91.080000px;}
.y1d7{bottom:91.110000px;}
.y209{bottom:91.245000px;}
.y20d{bottom:91.260000px;}
.y1e0{bottom:91.290000px;}
.y189{bottom:92.952000px;}
.y41{bottom:94.500000px;}
.y1c4{bottom:95.100000px;}
.y121{bottom:99.240000px;}
.y15a{bottom:99.960000px;}
.y21e{bottom:100.290000px;}
.y7e{bottom:102.300000px;}
.yf6{bottom:103.200000px;}
.y1af{bottom:105.420000px;}
.y208{bottom:105.825000px;}
.y1ed{bottom:105.840000px;}
.y1d6{bottom:105.870000px;}
.y188{bottom:109.152000px;}
.y201{bottom:109.620000px;}
.ybd{bottom:110.700000px;}
.y1c3{bottom:111.300000px;}
.y21d{bottom:114.870000px;}
.y40{bottom:114.900000px;}
.y120{bottom:115.440000px;}
.y159{bottom:116.160000px;}
.y1ea{bottom:118.440000px;}
.y7d{bottom:118.500000px;}
.yf5{bottom:119.400000px;}
.y207{bottom:120.405000px;}
.y1ec{bottom:120.420000px;}
.y1d5{bottom:120.450000px;}
.y20c{bottom:120.600000px;}
.y1e8{bottom:120.630000px;}
.y1ae{bottom:121.620000px;}
.y187{bottom:125.352000px;}
.y258{bottom:126.360000px;}
.ybc{bottom:126.900000px;}
.y21c{bottom:129.630000px;}
.y1e6{bottom:130.710000px;}
.y11f{bottom:131.640000px;}
.y1fa{bottom:131.970000px;}
.y158{bottom:132.360000px;}
.y1e7{bottom:133.740000px;}
.y7c{bottom:134.700000px;}
.y206{bottom:134.850000px;}
.y1d4{bottom:135.210000px;}
.yf4{bottom:135.600000px;}
.y205{bottom:140.970000px;}
.y186{bottom:141.552000px;}
.ybb{bottom:143.100000px;}
.y1ba{bottom:143.700000px;}
.y21b{bottom:144.210000px;}
.y1ad{bottom:145.920000px;}
.y257{bottom:146.520000px;}
.y1e5{bottom:147.630000px;}
.y11e{bottom:147.840000px;}
.y157{bottom:148.560000px;}
.y1d3{bottom:149.790000px;}
.y7b{bottom:150.900000px;}
.yf3{bottom:151.800000px;}
.y36{bottom:156.900000px;}
.y185{bottom:157.752000px;}
.y1f9{bottom:157.890000px;}
.y21a{bottom:158.790000px;}
.yba{bottom:159.300000px;}
.y1b9{bottom:159.900000px;}
.y1ac{bottom:162.120000px;}
.y11d{bottom:164.040000px;}
.y1d2{bottom:164.370000px;}
.y1df{bottom:164.550000px;}
.y156{bottom:164.760000px;}
.y256{bottom:166.710000px;}
.y7a{bottom:167.100000px;}
.yf2{bottom:168.000000px;}
.y237{bottom:170.850000px;}
.y214{bottom:172.470000px;}
.y35{bottom:173.100000px;}
.y219{bottom:173.550000px;}
.y184{bottom:173.952000px;}
.y1f8{bottom:174.630000px;}
.y204{bottom:174.810000px;}
.yb9{bottom:175.500000px;}
.y1b8{bottom:176.100000px;}
.y1ab{bottom:178.320000px;}
.y1d1{bottom:179.130000px;}
.y11c{bottom:180.240000px;}
.y155{bottom:180.960000px;}
.y79{bottom:183.300000px;}
.yf1{bottom:184.200000px;}
.y255{bottom:186.870000px;}
.y218{bottom:188.130000px;}
.y34{bottom:189.300000px;}
.y213{bottom:189.390000px;}
.y183{bottom:190.152000px;}
.y236{bottom:191.010000px;}
.y1f7{bottom:191.550000px;}
.yb8{bottom:191.700000px;}
.y1b7{bottom:192.300000px;}
.y1f6{bottom:193.710000px;}
.y1d0{bottom:193.755000px;}
.y1fc{bottom:193.890000px;}
.y1aa{bottom:194.520000px;}
.y11b{bottom:196.440000px;}
.y154{bottom:197.160000px;}
.y78{bottom:199.500000px;}
.yf0{bottom:200.400000px;}
.y217{bottom:202.890000px;}
.y33{bottom:205.500000px;}
.y182{bottom:206.352000px;}
.y212{bottom:206.355000px;}
.y254{bottom:207.030000px;}
.yb7{bottom:207.900000px;}
.y1f5{bottom:208.290000px;}
.y203{bottom:208.470000px;}
.y1c1{bottom:208.500000px;}
.y1cf{bottom:208.515000px;}
.y1a9{bottom:210.720000px;}
.y235{bottom:211.170000px;}
.y11a{bottom:212.640000px;}
.y153{bottom:213.360000px;}
.y77{bottom:215.700000px;}
.y19d{bottom:216.600000px;}
.y216{bottom:217.470000px;}
.y32{bottom:221.700000px;}
.y211{bottom:223.095000px;}
.yb6{bottom:224.100000px;}
.yef{bottom:224.700000px;}
.y1a8{bottom:226.920000px;}
.y253{bottom:227.190000px;}
.y1fb{bottom:227.565000px;}
.y119{bottom:228.840000px;}
.y152{bottom:229.560000px;}
.y181{bottom:230.652000px;}
.y234{bottom:231.330000px;}
.y76{bottom:231.900000px;}
.y19e{bottom:232.800000px;}
.y3f{bottom:237.900000px;}
.yb5{bottom:240.300000px;}
.yee{bottom:240.900000px;}
.y1a7{bottom:243.120000px;}
.y118{bottom:245.040000px;}
.y151{bottom:245.760000px;}
.y31{bottom:246.000000px;}
.y180{bottom:246.852000px;}
.y252{bottom:247.350000px;}
.y75{bottom:248.100000px;}
.y1b6{bottom:249.000000px;}
.y233{bottom:251.490000px;}
.y3e{bottom:254.100000px;}
.yb4{bottom:256.500000px;}
.yed{bottom:257.100000px;}
.y117{bottom:261.240000px;}
.y150{bottom:261.960000px;}
.y30{bottom:262.200000px;}
.y17f{bottom:263.052000px;}
.y74{bottom:264.300000px;}
.y1b5{bottom:265.200000px;}
.y251{bottom:267.510000px;}
.y3d{bottom:270.300000px;}
.y86{bottom:270.960000px;}
.y232{bottom:271.650000px;}
.yb3{bottom:272.700000px;}
.yec{bottom:273.300000px;}
.y116{bottom:277.440000px;}
.y14f{bottom:278.160000px;}
.y2f{bottom:278.400000px;}
.y17e{bottom:279.252000px;}
.y73{bottom:280.500000px;}
.y1de{bottom:281.025000px;}
.y1c0{bottom:281.400000px;}
.y3c{bottom:286.500000px;}
.y85{bottom:287.160000px;}
.y250{bottom:287.670000px;}
.y1a6{bottom:287.880000px;}
.yb2{bottom:288.900000px;}
.yeb{bottom:289.500000px;}
.y231{bottom:291.810000px;}
.y115{bottom:293.640000px;}
.y14e{bottom:294.360000px;}
.y2e{bottom:294.600000px;}
.y17d{bottom:295.452000px;}
.y72{bottom:296.700000px;}
.y1bf{bottom:297.600000px;}
.y3b{bottom:302.700000px;}
.y84{bottom:303.360000px;}
.y1a5{bottom:304.080000px;}
.yea{bottom:305.700000px;}
.y24f{bottom:307.830000px;}
.y114{bottom:309.840000px;}
.y14d{bottom:310.560000px;}
.y2d{bottom:310.800000px;}
.y17c{bottom:311.652000px;}
.y230{bottom:311.970000px;}
.y71{bottom:312.900000px;}
.yb1{bottom:313.200000px;}
.y1be{bottom:313.800000px;}
.y3a{bottom:318.900000px;}
.y83{bottom:319.560000px;}
.y1a4{bottom:320.280000px;}
.ye9{bottom:321.900000px;}
.y113{bottom:326.040000px;}
.y14c{bottom:326.760000px;}
.y2c{bottom:327.000000px;}
.y17b{bottom:327.852000px;}
.y24e{bottom:327.855000px;}
.y70{bottom:329.100000px;}
.yb0{bottom:329.400000px;}
.y1c2{bottom:330.000000px;}
.y22f{bottom:331.995000px;}
.y39{bottom:335.100000px;}
.y82{bottom:335.760000px;}
.ye8{bottom:338.100000px;}
.y112{bottom:342.240000px;}
.y14b{bottom:342.960000px;}
.y2b{bottom:343.200000px;}
.y17a{bottom:344.052000px;}
.y1a3{bottom:344.580000px;}
.y20b{bottom:344.775000px;}
.y6f{bottom:345.300000px;}
.yaf{bottom:345.600000px;}
.y1b4{bottom:346.200000px;}
.y24d{bottom:348.015000px;}
.y38{bottom:351.300000px;}
.y81{bottom:351.960000px;}
.y22e{bottom:352.155000px;}
.ye7{bottom:354.300000px;}
.y111{bottom:358.440000px;}
.y14a{bottom:359.160000px;}
.y2a{bottom:359.400000px;}
.y179{bottom:360.252000px;}
.yae{bottom:361.800000px;}
.y1b3{bottom:362.400000px;}
.y37{bottom:367.500000px;}
.y80{bottom:368.160000px;}
.y24c{bottom:368.175000px;}
.ye6{bottom:370.500000px;}
.y22d{bottom:372.315000px;}
.y6e{bottom:374.460000px;}
.y110{bottom:374.640000px;}
.y149{bottom:375.360000px;}
.y29{bottom:375.600000px;}
.y178{bottom:376.452000px;}
.yad{bottom:378.000000px;}
.y1b2{bottom:378.600000px;}
.ye5{bottom:386.700000px;}
.y24b{bottom:388.335000px;}
.y6d{bottom:390.660000px;}
.y10f{bottom:390.840000px;}
.y148{bottom:391.560000px;}
.y28{bottom:391.800000px;}
.y22c{bottom:392.475000px;}
.y177{bottom:392.652000px;}
.yac{bottom:394.200000px;}
.y1b1{bottom:394.800000px;}
.ye4{bottom:402.900000px;}
.y1a2{bottom:403.980000px;}
.y6c{bottom:406.860000px;}
.y10e{bottom:407.040000px;}
.y147{bottom:407.760000px;}
.y27{bottom:408.000000px;}
.y24a{bottom:408.495000px;}
.y176{bottom:408.852000px;}
.yab{bottom:410.400000px;}
.y1bd{bottom:411.000000px;}
.y22b{bottom:412.635000px;}
.ye3{bottom:419.100000px;}
.y1a1{bottom:421.980000px;}
.y6b{bottom:423.060000px;}
.y10d{bottom:423.240000px;}
.y146{bottom:423.960000px;}
.y26{bottom:424.200000px;}
.y175{bottom:425.052000px;}
.yaa{bottom:426.600000px;}
.y1bc{bottom:427.200000px;}
.y249{bottom:428.655000px;}
.y22a{bottom:432.795000px;}
.y1f4{bottom:433.515000px;}
.y162{bottom:433.680000px;}
.ye2{bottom:435.300000px;}
.y6a{bottom:439.260000px;}
.y10c{bottom:439.440000px;}
.y1a0{bottom:439.980000px;}
.y145{bottom:440.160000px;}
.y25{bottom:440.400000px;}
.y174{bottom:441.252000px;}
.ya9{bottom:442.800000px;}
.y1bb{bottom:443.400000px;}
.y248{bottom:448.815000px;}
.y161{bottom:449.880000px;}
.y19c{bottom:451.500000px;}
.y229{bottom:452.955000px;}
.y69{bottom:455.460000px;}
.y10b{bottom:455.640000px;}
.y144{bottom:456.360000px;}
.y24{bottom:456.600000px;}
.y173{bottom:457.452000px;}
.y1ce{bottom:457.635000px;}
.ya8{bottom:459.000000px;}
.ye1{bottom:459.600000px;}
.y160{bottom:466.080000px;}
.y19b{bottom:467.700000px;}
.y247{bottom:468.975000px;}
.y68{bottom:471.660000px;}
.y10a{bottom:471.840000px;}
.y143{bottom:472.560000px;}
.y23{bottom:472.800000px;}
.y228{bottom:473.115000px;}
.y172{bottom:473.652000px;}
.ya7{bottom:475.200000px;}
.ye0{bottom:475.800000px;}
.y15f{bottom:482.280000px;}
.y19a{bottom:483.900000px;}
.y67{bottom:487.860000px;}
.y109{bottom:488.040000px;}
.y142{bottom:488.760000px;}
.y22{bottom:489.000000px;}
.y246{bottom:489.165000px;}
.y171{bottom:489.852000px;}
.ya6{bottom:491.400000px;}
.ydf{bottom:492.000000px;}
.y227{bottom:493.305000px;}
.y15e{bottom:498.480000px;}
.y199{bottom:500.100000px;}
.y66{bottom:504.060000px;}
.y108{bottom:504.240000px;}
.y141{bottom:504.960000px;}
.y21{bottom:505.200000px;}
.y170{bottom:506.052000px;}
.ya5{bottom:507.600000px;}
.yde{bottom:508.200000px;}
.y245{bottom:509.145000px;}
.y226{bottom:514.365000px;}
.y15d{bottom:514.680000px;}
.y198{bottom:516.300000px;}
.y65{bottom:520.260000px;}
.y107{bottom:520.440000px;}
.y140{bottom:521.160000px;}
.y20{bottom:521.400000px;}
.y16f{bottom:522.252000px;}
.ydd{bottom:524.400000px;}
.y244{bottom:529.305000px;}
.y15c{bottom:530.880000px;}
.ya4{bottom:531.900000px;}
.y197{bottom:532.500000px;}
.y64{bottom:536.460000px;}
.y1f{bottom:537.600000px;}
.y16e{bottom:538.452000px;}
.y225{bottom:539.205000px;}
.ydc{bottom:540.600000px;}
.y13f{bottom:547.080000px;}
.ya3{bottom:548.100000px;}
.y196{bottom:548.700000px;}
.y243{bottom:549.465000px;}
.y1e{bottom:553.800000px;}
.y16d{bottom:554.652000px;}
.ydb{bottom:556.800000px;}
.y215{bottom:557.040000px;}
.y13e{bottom:563.280000px;}
.ya2{bottom:564.300000px;}
.y195{bottom:564.900000px;}
.y242{bottom:569.625000px;}
.y1d{bottom:570.000000px;}
.y16c{bottom:570.852000px;}
.yda{bottom:573.000000px;}
.y13d{bottom:579.480000px;}
.ya1{bottom:580.500000px;}
.y194{bottom:581.100000px;}
.y1c{bottom:586.200000px;}
.yd9{bottom:589.200000px;}
.y241{bottom:589.785000px;}
.y63{bottom:591.660000px;}
.y13c{bottom:595.680000px;}
.ya0{bottom:596.700000px;}
.y193{bottom:597.300000px;}
.y1b{bottom:602.400000px;}
.yd8{bottom:605.400000px;}
.y62{bottom:605.520000px;}
.y240{bottom:609.945000px;}
.y13b{bottom:611.880000px;}
.y9f{bottom:612.900000px;}
.y192{bottom:613.500000px;}
.y1a{bottom:618.600000px;}
.y61{bottom:619.380000px;}
.yd7{bottom:621.600000px;}
.y13a{bottom:628.080000px;}
.y9e{bottom:629.100000px;}
.y191{bottom:629.700000px;}
.y23f{bottom:630.105000px;}
.y60{bottom:633.240000px;}
.y19{bottom:634.800000px;}
.y106{bottom:637.800000px;}
.y139{bottom:644.280000px;}
.y9d{bottom:645.300000px;}
.yd6{bottom:645.900000px;}
.y5f{bottom:647.100000px;}
.y23e{bottom:650.310000px;}
.y18{bottom:651.000000px;}
.y105{bottom:654.000000px;}
.y1f3{bottom:654.075000px;}
.y1eb{bottom:654.090000px;}
.y138{bottom:660.480000px;}
.y5e{bottom:660.960000px;}
.y9c{bottom:661.500000px;}
.yd5{bottom:662.100000px;}
.y17{bottom:667.200000px;}
.y104{bottom:670.200000px;}
.y23d{bottom:670.470000px;}
.y5d{bottom:674.820000px;}
.y137{bottom:676.680000px;}
.y9b{bottom:677.700000px;}
.yd4{bottom:678.300000px;}
.y1ca{bottom:679.635000px;}
.y1c7{bottom:679.650000px;}
.y16{bottom:683.400000px;}
.y103{bottom:686.400000px;}
.y16b{bottom:688.200000px;}
.y5c{bottom:688.680000px;}
.y23c{bottom:690.630000px;}
.y136{bottom:692.880000px;}
.y9a{bottom:693.900000px;}
.yd3{bottom:694.500000px;}
.y15{bottom:699.600000px;}
.y5b{bottom:702.540000px;}
.y102{bottom:702.600000px;}
.y16a{bottom:704.400000px;}
.y135{bottom:709.080000px;}
.y99{bottom:710.100000px;}
.y23b{bottom:710.610000px;}
.yd2{bottom:710.700000px;}
.y14{bottom:715.800000px;}
.y5a{bottom:716.400000px;}
.y101{bottom:718.800000px;}
.y169{bottom:720.600000px;}
.y134{bottom:725.280000px;}
.y98{bottom:726.300000px;}
.yd1{bottom:726.900000px;}
.y59{bottom:730.260000px;}
.y23a{bottom:730.770000px;}
.y13{bottom:732.000000px;}
.y100{bottom:735.000000px;}
.y168{bottom:736.800000px;}
.y133{bottom:741.480000px;}
.y202{bottom:741.930000px;}
.y97{bottom:742.500000px;}
.yd0{bottom:743.100000px;}
.y58{bottom:744.120000px;}
.y1c6{bottom:746.430000px;}
.y239{bottom:750.930000px;}
.yff{bottom:751.200000px;}
.y167{bottom:753.000000px;}
.y132{bottom:757.680000px;}
.y57{bottom:757.980000px;}
.y96{bottom:758.700000px;}
.ycf{bottom:759.300000px;}
.yfe{bottom:767.400000px;}
.y166{bottom:769.200000px;}
.y1c5{bottom:770.190000px;}
.y238{bottom:771.090000px;}
.y56{bottom:771.840000px;}
.y131{bottom:773.880000px;}
.yce{bottom:775.500000px;}
.y12{bottom:777.900000px;}
.y95{bottom:783.000000px;}
.y19f{bottom:783.600000px;}
.y165{bottom:785.400000px;}
.y55{bottom:785.700000px;}
.y130{bottom:790.080000px;}
.ycd{bottom:791.700000px;}
.y11{bottom:794.100000px;}
.y94{bottom:799.200000px;}
.y54{bottom:799.560000px;}
.y190{bottom:799.800000px;}
.y164{bottom:801.600000px;}
.y12f{bottom:806.280000px;}
.ycc{bottom:807.900000px;}
.y53{bottom:813.420000px;}
.y93{bottom:815.400000px;}
.y18f{bottom:816.000000px;}
.y10{bottom:818.400000px;}
.y12e{bottom:822.480000px;}
.ycb{bottom:824.100000px;}
.y52{bottom:827.280000px;}
.y92{bottom:831.600000px;}
.y18e{bottom:832.200000px;}
.yf{bottom:834.600000px;}
.y12d{bottom:838.680000px;}
.yca{bottom:840.300000px;}
.y51{bottom:841.140000px;}
.y91{bottom:847.800000px;}
.y18d{bottom:848.400000px;}
.ye{bottom:850.800000px;}
.y12c{bottom:854.880000px;}
.y50{bottom:855.000000px;}
.yc9{bottom:856.500000px;}
.y90{bottom:864.000000px;}
.y18c{bottom:864.600000px;}
.yd{bottom:867.000000px;}
.y4f{bottom:868.860000px;}
.y12b{bottom:871.080000px;}
.yc8{bottom:872.700000px;}
.y8f{bottom:880.200000px;}
.y18b{bottom:880.800000px;}
.y4e{bottom:882.720000px;}
.yc{bottom:883.200000px;}
.y12a{bottom:887.280000px;}
.yc7{bottom:888.900000px;}
.y8e{bottom:896.400000px;}
.y4d{bottom:896.580000px;}
.y18a{bottom:897.000000px;}
.yb{bottom:899.400000px;}
.y129{bottom:903.480000px;}
.yc6{bottom:905.100000px;}
.y4c{bottom:910.440000px;}
.y8d{bottom:912.600000px;}
.y163{bottom:913.200000px;}
.ya{bottom:915.600000px;}
.y128{bottom:919.680000px;}
.yfd{bottom:921.300000px;}
.y4b{bottom:924.300000px;}
.y8c{bottom:928.800000px;}
.yc5{bottom:929.400000px;}
.y9{bottom:931.800000px;}
.y127{bottom:935.880000px;}
.yfc{bottom:937.500000px;}
.y4a{bottom:938.160000px;}
.y8b{bottom:945.000000px;}
.yc4{bottom:945.600000px;}
.y126{bottom:952.080000px;}
.yfb{bottom:953.700000px;}
.y49{bottom:956.520000px;}
.y8a{bottom:961.200000px;}
.yc3{bottom:961.800000px;}
.y125{bottom:968.280000px;}
.yfa{bottom:969.900000px;}
.y48{bottom:970.380000px;}
.y8{bottom:974.700000px;}
.y89{bottom:977.400000px;}
.yc2{bottom:978.000000px;}
.y47{bottom:984.240000px;}
.y124{bottom:984.480000px;}
.yf9{bottom:986.100000px;}
.y7{bottom:990.900000px;}
.y88{bottom:993.600000px;}
.yc1{bottom:994.200000px;}
.y123{bottom:1000.680000px;}
.yf8{bottom:1002.300000px;}
.y46{bottom:1002.900000px;}
.yc0{bottom:1010.400000px;}
.y6{bottom:1015.200000px;}
.y87{bottom:1017.900000px;}
.y45{bottom:1019.100000px;}
.ybf{bottom:1026.600000px;}
.y44{bottom:1035.300000px;}
.ybe{bottom:1042.800000px;}
.y5{bottom:1044.000000px;}
.y4{bottom:1091.400000px;}
.y3{bottom:1105.800000px;}
.y2{bottom:1120.200000px;}
.y1{bottom:1134.600000px;}
.h19{height:14.580000px;}
.h7{height:27.480000px;}
.h11{height:42.186445px;}
.ha{height:42.319200px;}
.h23{height:43.905000px;}
.h1{height:43.968000px;}
.h9{height:45.936000px;}
.h5{height:48.816000px;}
.h2{height:49.464000px;}
.h8{height:51.480000px;}
.h6{height:51.678000px;}
.h27{height:52.260820px;}
.hb{height:54.960000px;}
.h4{height:56.544000px;}
.h20{height:57.927656px;}
.h10{height:58.665000px;}
.h12{height:58.671000px;}
.h13{height:58.680000px;}
.h2b{height:62.964844px;}
.h2c{height:63.632461px;}
.hf{height:70.664062px;}
.he{height:72.562500px;}
.h3{height:91.872000px;}
.h21{height:117.216000px;}
.h22{height:117.225000px;}
.h1a{height:131.745000px;}
.h1b{height:131.751000px;}
.h1c{height:131.760000px;}
.h18{height:146.556000px;}
.h16{height:175.875000px;}
.h17{height:175.890000px;}
.h26{height:175.905000px;}
.h1f{height:205.215000px;}
.h1e{height:205.230000px;}
.h1d{height:219.660000px;}
.h25{height:219.795000px;}
.h24{height:219.810000px;}
.h15{height:219.840000px;}
.h14{height:219.855000px;}
.h2a{height:228.795000px;}
.h29{height:228.810000px;}
.h28{height:234.420000px;}
.hc{height:892.980000px;}
.hd{height:893.250000px;}
.h0{height:1186.500000px;}
.wf{width:100.785000px;}
.w16{width:100.791000px;}
.w17{width:100.800000px;}
.w4{width:113.565000px;}
.w10{width:113.571000px;}
.w11{width:113.580000px;}
.w3{width:113.796000px;}
.w18{width:113.805000px;}
.w12{width:116.121000px;}
.w5{width:116.122500px;}
.w6{width:116.275500px;}
.w7{width:116.280000px;}
.w8{width:116.316000px;}
.w9{width:116.325000px;}
.w13{width:126.705000px;}
.wa{width:126.715500px;}
.wb{width:126.720000px;}
.w15{width:126.885000px;}
.wd{width:126.891000px;}
.we{width:126.900000px;}
.w14{width:126.921000px;}
.wc{width:126.922500px;}
.w0{width:918.000000px;}
.w1{width:1262.880000px;}
.w2{width:1263.000000px;}
.x0{left:0.000000px;}
.xb{left:7.740000px;}
.x14{left:71.655000px;}
.x1{left:81.000000px;}
.xa{left:98.640000px;}
.x9{left:106.380000px;}
.x16{left:148.896000px;}
.x15{left:170.310000px;}
.x5{left:180.000000px;}
.xc{left:213.165000px;}
.xd{left:327.645000px;}
.x6{left:339.000000px;}
.xe{left:444.495000px;}
.x2{left:472.500000px;}
.x7{left:498.000000px;}
.xf{left:561.495000px;}
.x4{left:580.140000px;}
.x8{left:657.000000px;}
.x10{left:678.540000px;}
.x3{left:685.992000px;}
.x11{left:805.980000px;}
.x12{left:933.630000px;}
.x13{left:1061.250000px;}
@media print{
.v2{vertical-align:-21.333333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls5{letter-spacing:-0.284800pt;}
.lsb{letter-spacing:-0.278400pt;}
.ls7{letter-spacing:-0.234133pt;}
.ls12{letter-spacing:-0.218133pt;}
.lsf{letter-spacing:-0.197867pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.156267pt;}
.lsc{letter-spacing:-0.125867pt;}
.ls14{letter-spacing:-0.117867pt;}
.ls6{letter-spacing:-0.112000pt;}
.ls3{letter-spacing:-0.059733pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.019840pt;}
.lsd{letter-spacing:0.060800pt;}
.ls4{letter-spacing:0.074133pt;}
.ls17{letter-spacing:0.079467pt;}
.ls9{letter-spacing:0.128640pt;}
.lse{letter-spacing:0.132267pt;}
.ls2{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.194667pt;}
.ls11{letter-spacing:0.206507pt;}
.ls13{letter-spacing:0.227733pt;}
.ls10{letter-spacing:0.227840pt;}
.ls8{letter-spacing:0.230933pt;}
.ws12{word-spacing:-13.534613pt;}
.ws5{word-spacing:-13.333333pt;}
.ws11{word-spacing:-13.306880pt;}
.ws13{word-spacing:-13.114880pt;}
.ws1{word-spacing:-12.000000pt;}
.ws0{word-spacing:-10.666667pt;}
.ws4{word-spacing:-10.266667pt;}
.ws9{word-spacing:-9.921813pt;}
.wsb{word-spacing:-9.885547pt;}
.wse{word-spacing:-9.751680pt;}
.wsa{word-spacing:-9.710720pt;}
.ws6{word-spacing:-9.690880pt;}
.wsd{word-spacing:-9.565013pt;}
.wsf{word-spacing:-9.493013pt;}
.ws10{word-spacing:-9.472747pt;}
.ws8{word-spacing:-9.456747pt;}
.wsc{word-spacing:-9.412480pt;}
.ws7{word-spacing:-9.406080pt;}
.ws2{word-spacing:-6.666667pt;}
.ws3{word-spacing:0.000000pt;}
._24{margin-left:-7.474133pt;}
._10{margin-left:-6.284800pt;}
._7{margin-left:-5.252800pt;}
._2{margin-left:-4.138667pt;}
._1{margin-left:-2.901333pt;}
._0{margin-left:-1.408000pt;}
._5{width:1.344000pt;}
._6{width:2.567467pt;}
._3{width:3.797333pt;}
._9{width:5.057067pt;}
._4{width:6.101333pt;}
._e{width:7.062400pt;}
._8{width:8.822400pt;}
._c{width:10.542400pt;}
._b{width:12.902400pt;}
._a{width:13.968000pt;}
._f{width:15.696000pt;}
._14{width:16.845333pt;}
._19{width:17.749867pt;}
._16{width:19.580800pt;}
._18{width:21.347200pt;}
._20{width:22.277867pt;}
._15{width:23.198400pt;}
._11{width:24.960000pt;}
._1b{width:25.964800pt;}
._28{width:26.898133pt;}
._13{width:27.970133pt;}
._d{width:29.459200pt;}
._27{width:30.600000pt;}
._23{width:31.904000pt;}
._1f{width:33.254400pt;}
._1a{width:34.752000pt;}
._1d{width:35.683200pt;}
._1e{width:36.876800pt;}
._29{width:37.827200pt;}
._1c{width:39.745600pt;}
._21{width:40.664000pt;}
._22{width:41.918400pt;}
._25{width:43.060800pt;}
._26{width:44.169600pt;}
._17{width:45.729600pt;}
._12{width:80.068267pt;}
.fs4{font-size:26.666667pt;}
.fs3{font-size:32.000000pt;}
.fs5{font-size:41.066667pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fsa{font-size:53.120000pt;}
.fs6{font-size:53.333333pt;}
.fs9{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fsb{font-size:74.880000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1e4{bottom:2.866667pt;}
.y1dd{bottom:2.880000pt;}
.y1cd{bottom:2.893333pt;}
.y200{bottom:3.026667pt;}
.y210{bottom:3.040000pt;}
.y224{bottom:11.026667pt;}
.y1f2{bottom:15.840000pt;}
.y1e3{bottom:15.986667pt;}
.y1dc{bottom:16.000000pt;}
.y1cc{bottom:16.013333pt;}
.y1e9{bottom:16.026667pt;}
.y223{bottom:23.986667pt;}
.y1e2{bottom:28.946667pt;}
.y1c9{bottom:28.960000pt;}
.y1cb{bottom:28.973333pt;}
.y1db{bottom:28.986667pt;}
.y222{bottom:36.946667pt;}
.y1f1{bottom:41.920000pt;}
.y1da{bottom:41.946667pt;}
.y1ff{bottom:42.066667pt;}
.y1c8{bottom:42.080000pt;}
.y1e1{bottom:42.106667pt;}
.y221{bottom:50.066667pt;}
.y1f0{bottom:54.880000pt;}
.y1fe{bottom:55.026667pt;}
.y20f{bottom:55.040000pt;}
.y1d9{bottom:55.066667pt;}
.y43{bottom:58.400000pt;}
.y220{bottom:63.026667pt;}
.y20a{bottom:67.986667pt;}
.y1ef{bottom:68.000000pt;}
.y1d8{bottom:68.026667pt;}
.y1fd{bottom:68.146667pt;}
.y20e{bottom:68.160000pt;}
.y42{bottom:71.200000pt;}
.y122{bottom:73.813333pt;}
.y15b{bottom:74.453333pt;}
.y21f{bottom:76.146667pt;}
.y7f{bottom:76.533333pt;}
.yf7{bottom:77.333333pt;}
.y1b0{bottom:79.306667pt;}
.y1ee{bottom:80.960000pt;}
.y1d7{bottom:80.986667pt;}
.y209{bottom:81.106667pt;}
.y20d{bottom:81.120000pt;}
.y1e0{bottom:81.146667pt;}
.y189{bottom:82.624000pt;}
.y41{bottom:84.000000pt;}
.y1c4{bottom:84.533333pt;}
.y121{bottom:88.213333pt;}
.y15a{bottom:88.853333pt;}
.y21e{bottom:89.146667pt;}
.y7e{bottom:90.933333pt;}
.yf6{bottom:91.733333pt;}
.y1af{bottom:93.706667pt;}
.y208{bottom:94.066667pt;}
.y1ed{bottom:94.080000pt;}
.y1d6{bottom:94.106667pt;}
.y188{bottom:97.024000pt;}
.y201{bottom:97.440000pt;}
.ybd{bottom:98.400000pt;}
.y1c3{bottom:98.933333pt;}
.y21d{bottom:102.106667pt;}
.y40{bottom:102.133333pt;}
.y120{bottom:102.613333pt;}
.y159{bottom:103.253333pt;}
.y1ea{bottom:105.280000pt;}
.y7d{bottom:105.333333pt;}
.yf5{bottom:106.133333pt;}
.y207{bottom:107.026667pt;}
.y1ec{bottom:107.040000pt;}
.y1d5{bottom:107.066667pt;}
.y20c{bottom:107.200000pt;}
.y1e8{bottom:107.226667pt;}
.y1ae{bottom:108.106667pt;}
.y187{bottom:111.424000pt;}
.y258{bottom:112.320000pt;}
.ybc{bottom:112.800000pt;}
.y21c{bottom:115.226667pt;}
.y1e6{bottom:116.186667pt;}
.y11f{bottom:117.013333pt;}
.y1fa{bottom:117.306667pt;}
.y158{bottom:117.653333pt;}
.y1e7{bottom:118.880000pt;}
.y7c{bottom:119.733333pt;}
.y206{bottom:119.866667pt;}
.y1d4{bottom:120.186667pt;}
.yf4{bottom:120.533333pt;}
.y205{bottom:125.306667pt;}
.y186{bottom:125.824000pt;}
.ybb{bottom:127.200000pt;}
.y1ba{bottom:127.733333pt;}
.y21b{bottom:128.186667pt;}
.y1ad{bottom:129.706667pt;}
.y257{bottom:130.240000pt;}
.y1e5{bottom:131.226667pt;}
.y11e{bottom:131.413333pt;}
.y157{bottom:132.053333pt;}
.y1d3{bottom:133.146667pt;}
.y7b{bottom:134.133333pt;}
.yf3{bottom:134.933333pt;}
.y36{bottom:139.466667pt;}
.y185{bottom:140.224000pt;}
.y1f9{bottom:140.346667pt;}
.y21a{bottom:141.146667pt;}
.yba{bottom:141.600000pt;}
.y1b9{bottom:142.133333pt;}
.y1ac{bottom:144.106667pt;}
.y11d{bottom:145.813333pt;}
.y1d2{bottom:146.106667pt;}
.y1df{bottom:146.266667pt;}
.y156{bottom:146.453333pt;}
.y256{bottom:148.186667pt;}
.y7a{bottom:148.533333pt;}
.yf2{bottom:149.333333pt;}
.y237{bottom:151.866667pt;}
.y214{bottom:153.306667pt;}
.y35{bottom:153.866667pt;}
.y219{bottom:154.266667pt;}
.y184{bottom:154.624000pt;}
.y1f8{bottom:155.226667pt;}
.y204{bottom:155.386667pt;}
.yb9{bottom:156.000000pt;}
.y1b8{bottom:156.533333pt;}
.y1ab{bottom:158.506667pt;}
.y1d1{bottom:159.226667pt;}
.y11c{bottom:160.213333pt;}
.y155{bottom:160.853333pt;}
.y79{bottom:162.933333pt;}
.yf1{bottom:163.733333pt;}
.y255{bottom:166.106667pt;}
.y218{bottom:167.226667pt;}
.y34{bottom:168.266667pt;}
.y213{bottom:168.346667pt;}
.y183{bottom:169.024000pt;}
.y236{bottom:169.786667pt;}
.y1f7{bottom:170.266667pt;}
.yb8{bottom:170.400000pt;}
.y1b7{bottom:170.933333pt;}
.y1f6{bottom:172.186667pt;}
.y1d0{bottom:172.226667pt;}
.y1fc{bottom:172.346667pt;}
.y1aa{bottom:172.906667pt;}
.y11b{bottom:174.613333pt;}
.y154{bottom:175.253333pt;}
.y78{bottom:177.333333pt;}
.yf0{bottom:178.133333pt;}
.y217{bottom:180.346667pt;}
.y33{bottom:182.666667pt;}
.y182{bottom:183.424000pt;}
.y212{bottom:183.426667pt;}
.y254{bottom:184.026667pt;}
.yb7{bottom:184.800000pt;}
.y1f5{bottom:185.146667pt;}
.y203{bottom:185.306667pt;}
.y1c1{bottom:185.333333pt;}
.y1cf{bottom:185.346667pt;}
.y1a9{bottom:187.306667pt;}
.y235{bottom:187.706667pt;}
.y11a{bottom:189.013333pt;}
.y153{bottom:189.653333pt;}
.y77{bottom:191.733333pt;}
.y19d{bottom:192.533333pt;}
.y216{bottom:193.306667pt;}
.y32{bottom:197.066667pt;}
.y211{bottom:198.306667pt;}
.yb6{bottom:199.200000pt;}
.yef{bottom:199.733333pt;}
.y1a8{bottom:201.706667pt;}
.y253{bottom:201.946667pt;}
.y1fb{bottom:202.280000pt;}
.y119{bottom:203.413333pt;}
.y152{bottom:204.053333pt;}
.y181{bottom:205.024000pt;}
.y234{bottom:205.626667pt;}
.y76{bottom:206.133333pt;}
.y19e{bottom:206.933333pt;}
.y3f{bottom:211.466667pt;}
.yb5{bottom:213.600000pt;}
.yee{bottom:214.133333pt;}
.y1a7{bottom:216.106667pt;}
.y118{bottom:217.813333pt;}
.y151{bottom:218.453333pt;}
.y31{bottom:218.666667pt;}
.y180{bottom:219.424000pt;}
.y252{bottom:219.866667pt;}
.y75{bottom:220.533333pt;}
.y1b6{bottom:221.333333pt;}
.y233{bottom:223.546667pt;}
.y3e{bottom:225.866667pt;}
.yb4{bottom:228.000000pt;}
.yed{bottom:228.533333pt;}
.y117{bottom:232.213333pt;}
.y150{bottom:232.853333pt;}
.y30{bottom:233.066667pt;}
.y17f{bottom:233.824000pt;}
.y74{bottom:234.933333pt;}
.y1b5{bottom:235.733333pt;}
.y251{bottom:237.786667pt;}
.y3d{bottom:240.266667pt;}
.y86{bottom:240.853333pt;}
.y232{bottom:241.466667pt;}
.yb3{bottom:242.400000pt;}
.yec{bottom:242.933333pt;}
.y116{bottom:246.613333pt;}
.y14f{bottom:247.253333pt;}
.y2f{bottom:247.466667pt;}
.y17e{bottom:248.224000pt;}
.y73{bottom:249.333333pt;}
.y1de{bottom:249.800000pt;}
.y1c0{bottom:250.133333pt;}
.y3c{bottom:254.666667pt;}
.y85{bottom:255.253333pt;}
.y250{bottom:255.706667pt;}
.y1a6{bottom:255.893333pt;}
.yb2{bottom:256.800000pt;}
.yeb{bottom:257.333333pt;}
.y231{bottom:259.386667pt;}
.y115{bottom:261.013333pt;}
.y14e{bottom:261.653333pt;}
.y2e{bottom:261.866667pt;}
.y17d{bottom:262.624000pt;}
.y72{bottom:263.733333pt;}
.y1bf{bottom:264.533333pt;}
.y3b{bottom:269.066667pt;}
.y84{bottom:269.653333pt;}
.y1a5{bottom:270.293333pt;}
.yea{bottom:271.733333pt;}
.y24f{bottom:273.626667pt;}
.y114{bottom:275.413333pt;}
.y14d{bottom:276.053333pt;}
.y2d{bottom:276.266667pt;}
.y17c{bottom:277.024000pt;}
.y230{bottom:277.306667pt;}
.y71{bottom:278.133333pt;}
.yb1{bottom:278.400000pt;}
.y1be{bottom:278.933333pt;}
.y3a{bottom:283.466667pt;}
.y83{bottom:284.053333pt;}
.y1a4{bottom:284.693333pt;}
.ye9{bottom:286.133333pt;}
.y113{bottom:289.813333pt;}
.y14c{bottom:290.453333pt;}
.y2c{bottom:290.666667pt;}
.y17b{bottom:291.424000pt;}
.y24e{bottom:291.426667pt;}
.y70{bottom:292.533333pt;}
.yb0{bottom:292.800000pt;}
.y1c2{bottom:293.333333pt;}
.y22f{bottom:295.106667pt;}
.y39{bottom:297.866667pt;}
.y82{bottom:298.453333pt;}
.ye8{bottom:300.533333pt;}
.y112{bottom:304.213333pt;}
.y14b{bottom:304.853333pt;}
.y2b{bottom:305.066667pt;}
.y17a{bottom:305.824000pt;}
.y1a3{bottom:306.293333pt;}
.y20b{bottom:306.466667pt;}
.y6f{bottom:306.933333pt;}
.yaf{bottom:307.200000pt;}
.y1b4{bottom:307.733333pt;}
.y24d{bottom:309.346667pt;}
.y38{bottom:312.266667pt;}
.y81{bottom:312.853333pt;}
.y22e{bottom:313.026667pt;}
.ye7{bottom:314.933333pt;}
.y111{bottom:318.613333pt;}
.y14a{bottom:319.253333pt;}
.y2a{bottom:319.466667pt;}
.y179{bottom:320.224000pt;}
.yae{bottom:321.600000pt;}
.y1b3{bottom:322.133333pt;}
.y37{bottom:326.666667pt;}
.y80{bottom:327.253333pt;}
.y24c{bottom:327.266667pt;}
.ye6{bottom:329.333333pt;}
.y22d{bottom:330.946667pt;}
.y6e{bottom:332.853333pt;}
.y110{bottom:333.013333pt;}
.y149{bottom:333.653333pt;}
.y29{bottom:333.866667pt;}
.y178{bottom:334.624000pt;}
.yad{bottom:336.000000pt;}
.y1b2{bottom:336.533333pt;}
.ye5{bottom:343.733333pt;}
.y24b{bottom:345.186667pt;}
.y6d{bottom:347.253333pt;}
.y10f{bottom:347.413333pt;}
.y148{bottom:348.053333pt;}
.y28{bottom:348.266667pt;}
.y22c{bottom:348.866667pt;}
.y177{bottom:349.024000pt;}
.yac{bottom:350.400000pt;}
.y1b1{bottom:350.933333pt;}
.ye4{bottom:358.133333pt;}
.y1a2{bottom:359.093333pt;}
.y6c{bottom:361.653333pt;}
.y10e{bottom:361.813333pt;}
.y147{bottom:362.453333pt;}
.y27{bottom:362.666667pt;}
.y24a{bottom:363.106667pt;}
.y176{bottom:363.424000pt;}
.yab{bottom:364.800000pt;}
.y1bd{bottom:365.333333pt;}
.y22b{bottom:366.786667pt;}
.ye3{bottom:372.533333pt;}
.y1a1{bottom:375.093333pt;}
.y6b{bottom:376.053333pt;}
.y10d{bottom:376.213333pt;}
.y146{bottom:376.853333pt;}
.y26{bottom:377.066667pt;}
.y175{bottom:377.824000pt;}
.yaa{bottom:379.200000pt;}
.y1bc{bottom:379.733333pt;}
.y249{bottom:381.026667pt;}
.y22a{bottom:384.706667pt;}
.y1f4{bottom:385.346667pt;}
.y162{bottom:385.493333pt;}
.ye2{bottom:386.933333pt;}
.y6a{bottom:390.453333pt;}
.y10c{bottom:390.613333pt;}
.y1a0{bottom:391.093333pt;}
.y145{bottom:391.253333pt;}
.y25{bottom:391.466667pt;}
.y174{bottom:392.224000pt;}
.ya9{bottom:393.600000pt;}
.y1bb{bottom:394.133333pt;}
.y248{bottom:398.946667pt;}
.y161{bottom:399.893333pt;}
.y19c{bottom:401.333333pt;}
.y229{bottom:402.626667pt;}
.y69{bottom:404.853333pt;}
.y10b{bottom:405.013333pt;}
.y144{bottom:405.653333pt;}
.y24{bottom:405.866667pt;}
.y173{bottom:406.624000pt;}
.y1ce{bottom:406.786667pt;}
.ya8{bottom:408.000000pt;}
.ye1{bottom:408.533333pt;}
.y160{bottom:414.293333pt;}
.y19b{bottom:415.733333pt;}
.y247{bottom:416.866667pt;}
.y68{bottom:419.253333pt;}
.y10a{bottom:419.413333pt;}
.y143{bottom:420.053333pt;}
.y23{bottom:420.266667pt;}
.y228{bottom:420.546667pt;}
.y172{bottom:421.024000pt;}
.ya7{bottom:422.400000pt;}
.ye0{bottom:422.933333pt;}
.y15f{bottom:428.693333pt;}
.y19a{bottom:430.133333pt;}
.y67{bottom:433.653333pt;}
.y109{bottom:433.813333pt;}
.y142{bottom:434.453333pt;}
.y22{bottom:434.666667pt;}
.y246{bottom:434.813333pt;}
.y171{bottom:435.424000pt;}
.ya6{bottom:436.800000pt;}
.ydf{bottom:437.333333pt;}
.y227{bottom:438.493333pt;}
.y15e{bottom:443.093333pt;}
.y199{bottom:444.533333pt;}
.y66{bottom:448.053333pt;}
.y108{bottom:448.213333pt;}
.y141{bottom:448.853333pt;}
.y21{bottom:449.066667pt;}
.y170{bottom:449.824000pt;}
.ya5{bottom:451.200000pt;}
.yde{bottom:451.733333pt;}
.y245{bottom:452.573333pt;}
.y226{bottom:457.213333pt;}
.y15d{bottom:457.493333pt;}
.y198{bottom:458.933333pt;}
.y65{bottom:462.453333pt;}
.y107{bottom:462.613333pt;}
.y140{bottom:463.253333pt;}
.y20{bottom:463.466667pt;}
.y16f{bottom:464.224000pt;}
.ydd{bottom:466.133333pt;}
.y244{bottom:470.493333pt;}
.y15c{bottom:471.893333pt;}
.ya4{bottom:472.800000pt;}
.y197{bottom:473.333333pt;}
.y64{bottom:476.853333pt;}
.y1f{bottom:477.866667pt;}
.y16e{bottom:478.624000pt;}
.y225{bottom:479.293333pt;}
.ydc{bottom:480.533333pt;}
.y13f{bottom:486.293333pt;}
.ya3{bottom:487.200000pt;}
.y196{bottom:487.733333pt;}
.y243{bottom:488.413333pt;}
.y1e{bottom:492.266667pt;}
.y16d{bottom:493.024000pt;}
.ydb{bottom:494.933333pt;}
.y215{bottom:495.146667pt;}
.y13e{bottom:500.693333pt;}
.ya2{bottom:501.600000pt;}
.y195{bottom:502.133333pt;}
.y242{bottom:506.333333pt;}
.y1d{bottom:506.666667pt;}
.y16c{bottom:507.424000pt;}
.yda{bottom:509.333333pt;}
.y13d{bottom:515.093333pt;}
.ya1{bottom:516.000000pt;}
.y194{bottom:516.533333pt;}
.y1c{bottom:521.066667pt;}
.yd9{bottom:523.733333pt;}
.y241{bottom:524.253333pt;}
.y63{bottom:525.920000pt;}
.y13c{bottom:529.493333pt;}
.ya0{bottom:530.400000pt;}
.y193{bottom:530.933333pt;}
.y1b{bottom:535.466667pt;}
.yd8{bottom:538.133333pt;}
.y62{bottom:538.240000pt;}
.y240{bottom:542.173333pt;}
.y13b{bottom:543.893333pt;}
.y9f{bottom:544.800000pt;}
.y192{bottom:545.333333pt;}
.y1a{bottom:549.866667pt;}
.y61{bottom:550.560000pt;}
.yd7{bottom:552.533333pt;}
.y13a{bottom:558.293333pt;}
.y9e{bottom:559.200000pt;}
.y191{bottom:559.733333pt;}
.y23f{bottom:560.093333pt;}
.y60{bottom:562.880000pt;}
.y19{bottom:564.266667pt;}
.y106{bottom:566.933333pt;}
.y139{bottom:572.693333pt;}
.y9d{bottom:573.600000pt;}
.yd6{bottom:574.133333pt;}
.y5f{bottom:575.200000pt;}
.y23e{bottom:578.053333pt;}
.y18{bottom:578.666667pt;}
.y105{bottom:581.333333pt;}
.y1f3{bottom:581.400000pt;}
.y1eb{bottom:581.413333pt;}
.y138{bottom:587.093333pt;}
.y5e{bottom:587.520000pt;}
.y9c{bottom:588.000000pt;}
.yd5{bottom:588.533333pt;}
.y17{bottom:593.066667pt;}
.y104{bottom:595.733333pt;}
.y23d{bottom:595.973333pt;}
.y5d{bottom:599.840000pt;}
.y137{bottom:601.493333pt;}
.y9b{bottom:602.400000pt;}
.yd4{bottom:602.933333pt;}
.y1ca{bottom:604.120000pt;}
.y1c7{bottom:604.133333pt;}
.y16{bottom:607.466667pt;}
.y103{bottom:610.133333pt;}
.y16b{bottom:611.733333pt;}
.y5c{bottom:612.160000pt;}
.y23c{bottom:613.893333pt;}
.y136{bottom:615.893333pt;}
.y9a{bottom:616.800000pt;}
.yd3{bottom:617.333333pt;}
.y15{bottom:621.866667pt;}
.y5b{bottom:624.480000pt;}
.y102{bottom:624.533333pt;}
.y16a{bottom:626.133333pt;}
.y135{bottom:630.293333pt;}
.y99{bottom:631.200000pt;}
.y23b{bottom:631.653333pt;}
.yd2{bottom:631.733333pt;}
.y14{bottom:636.266667pt;}
.y5a{bottom:636.800000pt;}
.y101{bottom:638.933333pt;}
.y169{bottom:640.533333pt;}
.y134{bottom:644.693333pt;}
.y98{bottom:645.600000pt;}
.yd1{bottom:646.133333pt;}
.y59{bottom:649.120000pt;}
.y23a{bottom:649.573333pt;}
.y13{bottom:650.666667pt;}
.y100{bottom:653.333333pt;}
.y168{bottom:654.933333pt;}
.y133{bottom:659.093333pt;}
.y202{bottom:659.493333pt;}
.y97{bottom:660.000000pt;}
.yd0{bottom:660.533333pt;}
.y58{bottom:661.440000pt;}
.y1c6{bottom:663.493333pt;}
.y239{bottom:667.493333pt;}
.yff{bottom:667.733333pt;}
.y167{bottom:669.333333pt;}
.y132{bottom:673.493333pt;}
.y57{bottom:673.760000pt;}
.y96{bottom:674.400000pt;}
.ycf{bottom:674.933333pt;}
.yfe{bottom:682.133333pt;}
.y166{bottom:683.733333pt;}
.y1c5{bottom:684.613333pt;}
.y238{bottom:685.413333pt;}
.y56{bottom:686.080000pt;}
.y131{bottom:687.893333pt;}
.yce{bottom:689.333333pt;}
.y12{bottom:691.466667pt;}
.y95{bottom:696.000000pt;}
.y19f{bottom:696.533333pt;}
.y165{bottom:698.133333pt;}
.y55{bottom:698.400000pt;}
.y130{bottom:702.293333pt;}
.ycd{bottom:703.733333pt;}
.y11{bottom:705.866667pt;}
.y94{bottom:710.400000pt;}
.y54{bottom:710.720000pt;}
.y190{bottom:710.933333pt;}
.y164{bottom:712.533333pt;}
.y12f{bottom:716.693333pt;}
.ycc{bottom:718.133333pt;}
.y53{bottom:723.040000pt;}
.y93{bottom:724.800000pt;}
.y18f{bottom:725.333333pt;}
.y10{bottom:727.466667pt;}
.y12e{bottom:731.093333pt;}
.ycb{bottom:732.533333pt;}
.y52{bottom:735.360000pt;}
.y92{bottom:739.200000pt;}
.y18e{bottom:739.733333pt;}
.yf{bottom:741.866667pt;}
.y12d{bottom:745.493333pt;}
.yca{bottom:746.933333pt;}
.y51{bottom:747.680000pt;}
.y91{bottom:753.600000pt;}
.y18d{bottom:754.133333pt;}
.ye{bottom:756.266667pt;}
.y12c{bottom:759.893333pt;}
.y50{bottom:760.000000pt;}
.yc9{bottom:761.333333pt;}
.y90{bottom:768.000000pt;}
.y18c{bottom:768.533333pt;}
.yd{bottom:770.666667pt;}
.y4f{bottom:772.320000pt;}
.y12b{bottom:774.293333pt;}
.yc8{bottom:775.733333pt;}
.y8f{bottom:782.400000pt;}
.y18b{bottom:782.933333pt;}
.y4e{bottom:784.640000pt;}
.yc{bottom:785.066667pt;}
.y12a{bottom:788.693333pt;}
.yc7{bottom:790.133333pt;}
.y8e{bottom:796.800000pt;}
.y4d{bottom:796.960000pt;}
.y18a{bottom:797.333333pt;}
.yb{bottom:799.466667pt;}
.y129{bottom:803.093333pt;}
.yc6{bottom:804.533333pt;}
.y4c{bottom:809.280000pt;}
.y8d{bottom:811.200000pt;}
.y163{bottom:811.733333pt;}
.ya{bottom:813.866667pt;}
.y128{bottom:817.493333pt;}
.yfd{bottom:818.933333pt;}
.y4b{bottom:821.600000pt;}
.y8c{bottom:825.600000pt;}
.yc5{bottom:826.133333pt;}
.y9{bottom:828.266667pt;}
.y127{bottom:831.893333pt;}
.yfc{bottom:833.333333pt;}
.y4a{bottom:833.920000pt;}
.y8b{bottom:840.000000pt;}
.yc4{bottom:840.533333pt;}
.y126{bottom:846.293333pt;}
.yfb{bottom:847.733333pt;}
.y49{bottom:850.240000pt;}
.y8a{bottom:854.400000pt;}
.yc3{bottom:854.933333pt;}
.y125{bottom:860.693333pt;}
.yfa{bottom:862.133333pt;}
.y48{bottom:862.560000pt;}
.y8{bottom:866.400000pt;}
.y89{bottom:868.800000pt;}
.yc2{bottom:869.333333pt;}
.y47{bottom:874.880000pt;}
.y124{bottom:875.093333pt;}
.yf9{bottom:876.533333pt;}
.y7{bottom:880.800000pt;}
.y88{bottom:883.200000pt;}
.yc1{bottom:883.733333pt;}
.y123{bottom:889.493333pt;}
.yf8{bottom:890.933333pt;}
.y46{bottom:891.466667pt;}
.yc0{bottom:898.133333pt;}
.y6{bottom:902.400000pt;}
.y87{bottom:904.800000pt;}
.y45{bottom:905.866667pt;}
.ybf{bottom:912.533333pt;}
.y44{bottom:920.266667pt;}
.ybe{bottom:926.933333pt;}
.y5{bottom:928.000000pt;}
.y4{bottom:970.133333pt;}
.y3{bottom:982.933333pt;}
.y2{bottom:995.733333pt;}
.y1{bottom:1008.533333pt;}
.h19{height:12.960000pt;}
.h7{height:24.426667pt;}
.h11{height:37.499062pt;}
.ha{height:37.617067pt;}
.h23{height:39.026667pt;}
.h1{height:39.082667pt;}
.h9{height:40.832000pt;}
.h5{height:43.392000pt;}
.h2{height:43.968000pt;}
.h8{height:45.760000pt;}
.h6{height:45.936000pt;}
.h27{height:46.454062pt;}
.hb{height:48.853333pt;}
.h4{height:50.261333pt;}
.h20{height:51.491250pt;}
.h10{height:52.146667pt;}
.h12{height:52.152000pt;}
.h13{height:52.160000pt;}
.h2b{height:55.968750pt;}
.h2c{height:56.562187pt;}
.hf{height:62.812500pt;}
.he{height:64.500000pt;}
.h3{height:81.664000pt;}
.h21{height:104.192000pt;}
.h22{height:104.200000pt;}
.h1a{height:117.106667pt;}
.h1b{height:117.112000pt;}
.h1c{height:117.120000pt;}
.h18{height:130.272000pt;}
.h16{height:156.333333pt;}
.h17{height:156.346667pt;}
.h26{height:156.360000pt;}
.h1f{height:182.413333pt;}
.h1e{height:182.426667pt;}
.h1d{height:195.253333pt;}
.h25{height:195.373333pt;}
.h24{height:195.386667pt;}
.h15{height:195.413333pt;}
.h14{height:195.426667pt;}
.h2a{height:203.373333pt;}
.h29{height:203.386667pt;}
.h28{height:208.373333pt;}
.hc{height:793.760000pt;}
.hd{height:794.000000pt;}
.h0{height:1054.666667pt;}
.wf{width:89.586667pt;}
.w16{width:89.592000pt;}
.w17{width:89.600000pt;}
.w4{width:100.946667pt;}
.w10{width:100.952000pt;}
.w11{width:100.960000pt;}
.w3{width:101.152000pt;}
.w18{width:101.160000pt;}
.w12{width:103.218667pt;}
.w5{width:103.220000pt;}
.w6{width:103.356000pt;}
.w7{width:103.360000pt;}
.w8{width:103.392000pt;}
.w9{width:103.400000pt;}
.w13{width:112.626667pt;}
.wa{width:112.636000pt;}
.wb{width:112.640000pt;}
.w15{width:112.786667pt;}
.wd{width:112.792000pt;}
.we{width:112.800000pt;}
.w14{width:112.818667pt;}
.wc{width:112.820000pt;}
.w0{width:816.000000pt;}
.w1{width:1122.560000pt;}
.w2{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xb{left:6.880000pt;}
.x14{left:63.693333pt;}
.x1{left:72.000000pt;}
.xa{left:87.680000pt;}
.x9{left:94.560000pt;}
.x16{left:132.352000pt;}
.x15{left:151.386667pt;}
.x5{left:160.000000pt;}
.xc{left:189.480000pt;}
.xd{left:291.240000pt;}
.x6{left:301.333333pt;}
.xe{left:395.106667pt;}
.x2{left:420.000000pt;}
.x7{left:442.666667pt;}
.xf{left:499.106667pt;}
.x4{left:515.680000pt;}
.x8{left:584.000000pt;}
.x10{left:603.146667pt;}
.x3{left:609.770667pt;}
.x11{left:716.426667pt;}
.x12{left:829.893333pt;}
.x13{left:943.333333pt;}
}




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