
    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_64122f3486b3ce992fe40958.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ca2f01040839c2d2a86f1cbe.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b57fc163cc4705966829ae68.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.884277;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_f6a996db536c409329b2bd9a.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_e6ab77a6a3aabf1282716f0e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b0813ed8b445d92bb4291d43.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e41d8e7418699a2bb7268b45.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.937988;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_fb947a0dfc5656c10d189664.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.767578;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_66361f992c3d7eb32b8b81bc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104004;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_fa640218349263998295d90b.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-2.880000px;}
.ls12{letter-spacing:-1.440000px;}
.lsb{letter-spacing:-1.296000px;}
.ls5{letter-spacing:-0.936000px;}
.ls1{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.648000px;}
.ls15{letter-spacing:-0.486600px;}
.ls13{letter-spacing:-0.466800px;}
.lsc{letter-spacing:-0.463800px;}
.ls16{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.020160px;}
.ls0{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.020160px;}
.ls1b{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.720000px;}
.ls10{letter-spacing:1.152000px;}
.lsd{letter-spacing:1.296000px;}
.ls9{letter-spacing:1.440000px;}
.ls1a{letter-spacing:1.584000px;}
.ls19{letter-spacing:5.040000px;}
.ls17{letter-spacing:10.800000px;}
.ls2{letter-spacing:20.880000px;}
.ls7{letter-spacing:26.640000px;}
.ls3{letter-spacing:26.760000px;}
.ls6{letter-spacing:55.186560px;}
.lsa{letter-spacing:55.306560px;}
.ls18{letter-spacing:75.600000px;}
.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;}
}
.wse{word-spacing:-24.120000px;}
.ws0{word-spacing:-21.960000px;}
.ws10{word-spacing:-19.584000px;}
.ws6{word-spacing:-19.440000px;}
.ws9{word-spacing:-19.296000px;}
.wsf{word-spacing:-18.720000px;}
.ws5{word-spacing:-18.504000px;}
.ws11{word-spacing:-18.288000px;}
.ws2{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.352000px;}
.ws3{word-spacing:-17.064000px;}
.ws7{word-spacing:-16.704000px;}
.ws4{word-spacing:-15.120000px;}
.wsb{word-spacing:-15.099840px;}
.wsc{word-spacing:-14.653200px;}
.wsd{word-spacing:-14.633400px;}
.ws8{word-spacing:-14.506440px;}
.ws1{word-spacing:0.000000px;}
._4{margin-left:-3.513600px;}
._1{margin-left:-2.211840px;}
._0{margin-left:-1.105920px;}
._2{width:1.244160px;}
._3{width:2.548800px;}
._9{width:4.008000px;}
._7{width:5.765760px;}
._8{width:7.107840px;}
._c{width:8.576640px;}
._d{width:9.794880px;}
._e{width:11.187840px;}
._f{width:12.777600px;}
._12{width:14.397120px;}
._11{width:15.655680px;}
._1c{width:16.807680px;}
._30{width:18.126720px;}
._6{width:19.313280px;}
._10{width:20.347200px;}
._5{width:21.435840px;}
._19{width:23.250240px;}
._15{width:24.264000px;}
._16{width:25.525440px;}
._b{width:26.691840px;}
._a{width:27.728640px;}
._18{width:29.013120px;}
._2c{width:30.109440px;}
._17{width:31.118400px;}
._13{width:32.281920px;}
._14{width:34.226880px;}
._1a{width:35.599680px;}
._1b{width:37.085760px;}
._1d{width:38.396160px;}
._1e{width:40.239360px;}
._2b{width:41.564160px;}
._24{width:42.589440px;}
._1f{width:44.167680px;}
._20{width:45.959040px;}
._21{width:47.295360px;}
._22{width:48.678720px;}
._23{width:50.359680px;}
._2e{width:57.335040px;}
._2a{width:59.002560px;}
._29{width:60.687360px;}
._3f{width:62.122080px;}
._35{width:63.417600px;}
._31{width:64.869120px;}
._2f{width:66.061440px;}
._25{width:72.247680px;}
._26{width:73.944000px;}
._40{width:75.240000px;}
._41{width:76.403520px;}
._27{width:91.566720px;}
._33{width:95.696640px;}
._37{width:107.775360px;}
._36{width:119.568960px;}
._28{width:128.088000px;}
._3e{width:161.167680px;}
._3d{width:162.593280px;}
._32{width:183.072960px;}
._3a{width:191.259840px;}
._34{width:256.530240px;}
._2d{width:275.525760px;}
._3c{width:277.377120px;}
._3b{width:279.319680px;}
._42{width:356.679360px;}
._38{width:382.875840px;}
._39{width:384.603840px;}
.fc9{color:rgb(35,82,124);}
.fc8{color:rgb(0,0,255);}
.fc7{color:rgb(17,85,204);}
.fc2{color:transparent;}
.fc1{color:rgb(83,129,53);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(34,34,34);}
.fc4{color:rgb(32,33,36);}
.fc3{color:rgb(53,53,53);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:83.520000px;}
.fs2{font-size:90.720000px;}
.fs4{font-size:96.480000px;}
.fs8{font-size:110.880000px;}
.fs1{font-size:132.480000px;}
.fs0{font-size:138.240000px;}
.y0{bottom:0.000000px;}
.y192{bottom:3.600000px;}
.y18{bottom:4.320000px;}
.y1d{bottom:11.880000px;}
.y28{bottom:11.910000px;}
.y1b{bottom:11.925000px;}
.y21{bottom:12.240000px;}
.y2c{bottom:12.285000px;}
.y159{bottom:18.360000px;}
.y14e{bottom:18.390000px;}
.y139{bottom:18.405000px;}
.y111{bottom:18.720000px;}
.y127{bottom:18.765000px;}
.y17c{bottom:19.110000px;}
.y10e{bottom:19.830000px;}
.y154{bottom:20.190000px;}
.y19a{bottom:20.550000px;}
.y191{bottom:20.880000px;}
.y197{bottom:21.636000px;}
.y172{bottom:22.680000px;}
.y1a8{bottom:23.760000px;}
.y165{bottom:23.805000px;}
.y14a{bottom:25.965000px;}
.y1c0{bottom:27.720000px;}
.y124{bottom:31.350000px;}
.y2a{bottom:32.760000px;}
.y16a{bottom:33.525000px;}
.y1b4{bottom:33.840000px;}
.y158{bottom:35.640000px;}
.y14d{bottom:35.670000px;}
.y17a{bottom:35.685000px;}
.y1ba{bottom:36.000000px;}
.y19d{bottom:36.030000px;}
.y190{bottom:38.160000px;}
.y220{bottom:38.205000px;}
.y171{bottom:40.005000px;}
.y11c{bottom:41.070000px;}
.y164{bottom:41.085000px;}
.y1cb{bottom:44.685000px;}
.y214{bottom:46.440000px;}
.y196{bottom:47.916000px;}
.y123{bottom:48.630000px;}
.y1ce{bottom:48.963000px;}
.y1b0{bottom:49.725000px;}
.y223{bottom:50.400000px;}
.y176{bottom:50.760000px;}
.y117{bottom:50.790000px;}
.y126{bottom:50.805000px;}
.y110{bottom:51.120000px;}
.y128{bottom:51.165000px;}
.y17{bottom:52.560000px;}
.y10a{bottom:52.596000px;}
.y1e8{bottom:52.920000px;}
.y157{bottom:52.965000px;}
.y1b9{bottom:53.280000px;}
.y130{bottom:54.000000px;}
.y1c4{bottom:54.405000px;}
.y18f{bottom:55.125000px;}
.y138{bottom:56.565000px;}
.y109{bottom:56.916000px;}
.y16{bottom:57.240000px;}
.y170{bottom:57.285000px;}
.y11b{bottom:58.350000px;}
.y163{bottom:58.365000px;}
.y21f{bottom:59.085000px;}
.y21a{bottom:59.400000px;}
.y1bf{bottom:60.165000px;}
.y1ca{bottom:61.965000px;}
.y1b3{bottom:65.883000px;}
.y120{bottom:65.910000px;}
.y169{bottom:65.925000px;}
.y1cd{bottom:66.243000px;}
.y181{bottom:66.645000px;}
.y149{bottom:67.005000px;}
.y13e{bottom:67.365000px;}
.y14c{bottom:68.070000px;}
.y179{bottom:68.085000px;}
.y14f{bottom:68.430000px;}
.y222{bottom:71.310000px;}
.y1c3{bottom:71.685000px;}
.y18e{bottom:72.405000px;}
.y137{bottom:73.845000px;}
.y195{bottom:74.199000px;}
.y1ab{bottom:74.205000px;}
.y16f{bottom:74.565000px;}
.y187{bottom:74.925000px;}
.y11a{bottom:75.630000px;}
.y1a7{bottom:75.645000px;}
.y216{bottom:77.805000px;}
.y1c9{bottom:79.245000px;}
.y21e{bottom:79.605000px;}
.y219{bottom:79.950000px;}
.y184{bottom:81.045000px;}
.y1af{bottom:81.765000px;}
.y1a2{bottom:82.845000px;}
.y175{bottom:83.163000px;}
.y116{bottom:83.190000px;}
.y15e{bottom:83.205000px;}
.y11d{bottom:83.550000px;}
.y148{bottom:84.285000px;}
.y13d{bottom:84.645000px;}
.y156{bottom:85.365000px;}
.y1b8{bottom:85.725000px;}
.y193{bottom:87.516000px;}
.y1c5{bottom:87.885000px;}
.y1b6{bottom:88.236000px;}
.y1c2{bottom:88.965000px;}
.y12e{bottom:89.676000px;}
.y18d{bottom:89.685000px;}
.y162{bottom:90.765000px;}
.y1aa{bottom:91.485000px;}
.y16e{bottom:91.845000px;}
.y1be{bottom:92.205000px;}
.y1a6{bottom:92.565000px;}
.y119{bottom:92.910000px;}
.y1c8{bottom:96.525000px;}
.y141{bottom:96.555000px;}
.y173{bottom:97.272000px;}
.y1b2{bottom:98.313000px;}
.y183{bottom:98.325000px;}
.y1b5{bottom:98.673000px;}
.y180{bottom:98.685000px;}
.y1ae{bottom:99.045000px;}
.y1a1{bottom:100.125000px;}
.y11f{bottom:100.470000px;}
.y168{bottom:100.485000px;}
.y218{bottom:100.830000px;}
.y1cc{bottom:101.592000px;}
.y147{bottom:101.595000px;}
.y13c{bottom:101.955000px;}
.y21c{bottom:103.725000px;}
.y152{bottom:106.272000px;}
.y186{bottom:106.965000px;}
.y161{bottom:108.045000px;}
.y1a9{bottom:108.765000px;}
.y16d{bottom:109.125000px;}
.y194{bottom:109.149000px;}
.y198{bottom:109.509000px;}
.y1a5{bottom:109.845000px;}
.y1b1{bottom:110.952000px;}
.y35{bottom:111.276000px;}
.y136{bottom:112.395000px;}
.y15{bottom:113.796000px;}
.y1c7{bottom:113.805000px;}
.y13f{bottom:113.835000px;}
.y115{bottom:115.230000px;}
.y174{bottom:115.233000px;}
.y253{bottom:115.236000px;}
.y15d{bottom:115.245000px;}
.y11e{bottom:115.590000px;}
.y177{bottom:115.593000px;}
.y201{bottom:115.596000px;}
.y166{bottom:115.605000px;}
.y1ad{bottom:116.325000px;}
.y122{bottom:117.750000px;}
.y13b{bottom:118.875000px;}
.y1c1{bottom:121.005000px;}
.yd9{bottom:121.356000px;}
.y22a{bottom:121.716000px;}
.y99{bottom:122.436000px;}
.y12d{bottom:123.552000px;}
.y18c{bottom:124.245000px;}
.y1bd{bottom:124.605000px;}
.y118{bottom:124.980000px;}
.y160{bottom:125.355000px;}
.y16c{bottom:126.435000px;}
.y23b{bottom:128.916000px;}
.y135{bottom:129.675000px;}
.y1c6{bottom:130.725000px;}
.y17f{bottom:131.085000px;}
.y140{bottom:131.115000px;}
.y1e7{bottom:131.436000px;}
.y182{bottom:132.525000px;}
.y1a0{bottom:132.555000px;}
.y167{bottom:132.915000px;}
.y53{bottom:133.596000px;}
.y1ac{bottom:133.635000px;}
.y105{bottom:134.676000px;}
.y121{bottom:135.060000px;}
.y108{bottom:135.756000px;}
.y146{bottom:136.155000px;}
.y100{bottom:136.836000px;}
.y20a{bottom:137.916000px;}
.y229{bottom:138.996000px;}
.y212{bottom:139.356000px;}
.y185{bottom:139.365000px;}
.y151{bottom:140.112000px;}
.y18b{bottom:141.525000px;}
.y1a4{bottom:141.915000px;}
.y34{bottom:142.236000px;}
.y15f{bottom:142.635000px;}
.y16b{bottom:143.715000px;}
.y252{bottom:146.196000px;}
.y200{bottom:146.556000px;}
.y114{bottom:148.020000px;}
.y15c{bottom:148.035000px;}
.ybd{bottom:151.590000px;}
.ycb{bottom:151.950000px;}
.y14{bottom:152.670000px;}
.y145{bottom:153.435000px;}
.y228{bottom:156.270000px;}
.y13a{bottom:157.035000px;}
.y12c{bottom:157.395000px;}
.y18a{bottom:158.835000px;}
.y1a3{bottom:159.195000px;}
.y23a{bottom:160.230000px;}
.y21d{bottom:162.435000px;}
.y17e{bottom:163.155000px;}
.y52{bottom:164.550000px;}
.y19f{bottom:164.955000px;}
.yea{bottom:165.630000px;}
.yac{bottom:166.710000px;}
.ydf{bottom:167.430000px;}
.yd8{bottom:167.790000px;}
.y134{bottom:167.835000px;}
.y150{bottom:168.555000px;}
.y98{bottom:168.870000px;}
.y144{bottom:170.715000px;}
.y33{bottom:173.190000px;}
.y227{bottom:173.550000px;}
.y1e6{bottom:174.270000px;}
.y189{bottom:176.115000px;}
.y251{bottom:177.150000px;}
.y1ff{bottom:177.510000px;}
.y211{bottom:180.750000px;}
.yca{bottom:182.550000px;}
.y14b{bottom:182.955000px;}
.y85{bottom:183.630000px;}
.y209{bottom:183.990000px;}
.y143{bottom:187.995000px;}
.y226{bottom:190.830000px;}
.y239{bottom:191.190000px;}
.y12b{bottom:191.265000px;}
.y13{bottom:191.550000px;}
.y188{bottom:193.395000px;}
.yf3{bottom:195.915000px;}
.y104{bottom:196.635000px;}
.ye9{bottom:196.995000px;}
.yab{bottom:197.715000px;}
.yd7{bottom:198.795000px;}
.y97{bottom:199.875000px;}
.y32{bottom:204.555000px;}
.y142{bottom:205.305000px;}
.y133{bottom:206.025000px;}
.y225{bottom:208.155000px;}
.y1fe{bottom:208.515000px;}
.y51{bottom:210.675000px;}
.y6e{bottom:211.755000px;}
.yde{bottom:213.555000px;}
.yff{bottom:213.915000px;}
.y1e5{bottom:217.515000px;}
.y210{bottom:222.195000px;}
.y238{bottom:222.555000px;}
.y12a{bottom:224.745000px;}
.yf2{bottom:226.875000px;}
.y17d{bottom:227.265000px;}
.ye8{bottom:227.955000px;}
.yc9{bottom:229.035000px;}
.y84{bottom:230.115000px;}
.y12{bottom:230.475000px;}
.y96{bottom:230.835000px;}
.y31{bottom:235.515000px;}
.y224{bottom:236.595000px;}
.y257{bottom:239.475000px;}
.y1fd{bottom:239.835000px;}
.y50{bottom:241.995000px;}
.y6d{bottom:242.715000px;}
.yaa{bottom:243.795000px;}
.yd6{bottom:244.875000px;}
.y1bc{bottom:245.265000px;}
.y1e4{bottom:248.835000px;}
.y129{bottom:253.185000px;}
.y237{bottom:253.515000px;}
.y19e{bottom:254.625000px;}
.yf1{bottom:257.835000px;}
.y15b{bottom:257.865000px;}
.ye7{bottom:258.915000px;}
.yc8{bottom:259.995000px;}
.y83{bottom:261.075000px;}
.y221{bottom:261.795000px;}
.y20f{bottom:263.595000px;}
.y30{bottom:266.475000px;}
.y125{bottom:267.585000px;}
.y11{bottom:269.355000px;}
.y250{bottom:270.435000px;}
.y1fc{bottom:270.795000px;}
.y4f{bottom:272.955000px;}
.y6c{bottom:274.035000px;}
.ya9{bottom:274.755000px;}
.yfe{bottom:276.195000px;}
.y95{bottom:276.915000px;}
.y1e3{bottom:279.795000px;}
.y132{bottom:280.545000px;}
.y236{bottom:284.475000px;}
.ybc{bottom:289.875000px;}
.y2f{bottom:290.595000px;}
.yd5{bottom:290.955000px;}
.y82{bottom:292.035000px;}
.y20e{bottom:298.155000px;}
.y24f{bottom:301.395000px;}
.y1fb{bottom:301.755000px;}
.y4e{bottom:303.915000px;}
.y6b{bottom:304.995000px;}
.yc7{bottom:306.075000px;}
.yfd{bottom:307.155000px;}
.y10{bottom:307.875000px;}
.y94{bottom:308.235000px;}
.y1e2{bottom:310.755000px;}
.y235{bottom:315.435000px;}
.ybb{bottom:320.865000px;}
.ya8{bottom:321.225000px;}
.ydd{bottom:321.945000px;}
.y208{bottom:322.305000px;}
.y81{bottom:323.025000px;}
.y20d{bottom:325.545000px;}
.y24e{bottom:332.385000px;}
.y1fa{bottom:332.745000px;}
.y4d{bottom:334.905000px;}
.ye6{bottom:335.985000px;}
.yd4{bottom:337.065000px;}
.yfc{bottom:338.145000px;}
.y93{bottom:339.225000px;}
.y2e{bottom:341.385000px;}
.yf{bottom:346.785000px;}
.y113{bottom:347.910000px;}
.y6a{bottom:351.105000px;}
.ya7{bottom:352.185000px;}
.ydc{bottom:352.905000px;}
.y1e1{bottom:353.625000px;}
.y80{bottom:353.985000px;}
.y24d{bottom:363.705000px;}
.y1f9{bottom:364.065000px;}
.y4c{bottom:366.225000px;}
.yba{bottom:366.945000px;}
.yd3{bottom:368.025000px;}
.y207{bottom:368.385000px;}
.yfb{bottom:369.105000px;}
.y234{bottom:377.745000px;}
.y69{bottom:382.065000px;}
.ya6{bottom:383.145000px;}
.y1e0{bottom:384.945000px;}
.y92{bottom:385.305000px;}
.ye{bottom:385.665000px;}
.y2d{bottom:392.145000px;}
.y24c{bottom:394.665000px;}
.y1f8{bottom:395.025000px;}
.y4b{bottom:397.185000px;}
.yb9{bottom:397.905000px;}
.ye5{bottom:398.265000px;}
.yd2{bottom:399.345000px;}
.y7f{bottom:400.425000px;}
.y233{bottom:408.705000px;}
.y21b{bottom:412.305000px;}
.y68{bottom:413.025000px;}
.yc6{bottom:414.105000px;}
.y206{bottom:414.465000px;}
.y1df{bottom:415.905000px;}
.y91{bottom:416.265000px;}
.y24b{bottom:425.625000px;}
.y1f7{bottom:425.985000px;}
.y4a{bottom:428.145000px;}
.ya5{bottom:429.225000px;}
.yd1{bottom:430.305000px;}
.y7e{bottom:431.385000px;}
.yd{bottom:433.185000px;}
.y232{bottom:439.665000px;}
.y2b{bottom:442.545000px;}
.y67{bottom:444.345000px;}
.y1de{bottom:447.270000px;}
.y1bb{bottom:447.300000px;}
.y15a{bottom:450.900000px;}
.y24a{bottom:456.630000px;}
.y1f6{bottom:456.990000px;}
.y49{bottom:459.150000px;}
.ya4{bottom:460.230000px;}
.yd0{bottom:461.310000px;}
.y7d{bottom:462.390000px;}
.y19c{bottom:464.580000px;}
.y17b{bottom:467.820000px;}
.y231{bottom:471.030000px;}
.y66{bottom:475.350000px;}
.ydb{bottom:476.430000px;}
.yc{bottom:476.790000px;}
.y249{bottom:487.590000px;}
.y1f5{bottom:487.950000px;}
.y1dd{bottom:489.750000px;}
.y48{bottom:490.470000px;}
.ya3{bottom:491.190000px;}
.ycf{bottom:492.270000px;}
.y29{bottom:493.350000px;}
.y230{bottom:501.990000px;}
.y65{bottom:506.310000px;}
.yda{bottom:507.390000px;}
.yfa{bottom:508.110000px;}
.y1b7{bottom:511.050000px;}
.y155{bottom:514.650000px;}
.y248{bottom:518.910000px;}
.y131{bottom:518.970000px;}
.y1f4{bottom:519.270000px;}
.yb{bottom:520.710000px;}
.yf0{bottom:521.070000px;}
.y47{bottom:521.430000px;}
.ya2{bottom:522.150000px;}
.yc5{bottom:522.510000px;}
.y90{bottom:524.310000px;}
.y112{bottom:525.090000px;}
.y178{bottom:531.930000px;}
.y22f{bottom:532.950000px;}
.y64{bottom:537.270000px;}
.yce{bottom:537.990000px;}
.y7c{bottom:539.070000px;}
.y19b{bottom:545.610000px;}
.y247{bottom:549.870000px;}
.y1f3{bottom:550.230000px;}
.yb8{bottom:552.390000px;}
.yc4{bottom:553.470000px;}
.yf9{bottom:554.190000px;}
.y22e{bottom:563.910000px;}
.y27{bottom:564.990000px;}
.y12f{bottom:566.895000px;}
.y46{bottom:567.150000px;}
.yef{bottom:567.510000px;}
.ya1{bottom:568.590000px;}
.y8f{bottom:570.390000px;}
.y10f{bottom:573.015000px;}
.ya{bottom:577.620000px;}
.y246{bottom:580.860000px;}
.y1f2{bottom:581.220000px;}
.y63{bottom:583.380000px;}
.yc3{bottom:584.460000px;}
.y7b{bottom:585.180000px;}
.y22d{bottom:595.260000px;}
.yee{bottom:598.500000px;}
.ye4{bottom:599.220000px;}
.ya0{bottom:599.580000px;}
.yf8{bottom:600.300000px;}
.y8e{bottom:601.380000px;}
.y245{bottom:611.820000px;}
.y1f1{bottom:612.180000px;}
.y45{bottom:613.620000px;}
.y62{bottom:614.340000px;}
.y26{bottom:615.420000px;}
.y22c{bottom:626.220000px;}
.y217{bottom:628.020000px;}
.yb7{bottom:629.460000px;}
.yc2{bottom:630.180000px;}
.y9f{bottom:630.540000px;}
.y7a{bottom:631.620000px;}
.y9{bottom:634.500000px;}
.y199{bottom:641.775000px;}
.y244{bottom:643.140000px;}
.y1f0{bottom:643.500000px;}
.y44{bottom:644.580000px;}
.y153{bottom:645.015000px;}
.y61{bottom:645.660000px;}
.y22b{bottom:646.020000px;}
.yf7{bottom:646.740000px;}
.y8d{bottom:647.460000px;}
.y10d{bottom:653.295000px;}
.y1dc{bottom:657.180000px;}
.yb6{bottom:660.420000px;}
.y9e{bottom:661.500000px;}
.y79{bottom:662.580000px;}
.y25{bottom:666.180000px;}
.y202{bottom:674.100000px;}
.y1ef{bottom:674.460000px;}
.y60{bottom:676.620000px;}
.yf6{bottom:677.700000px;}
.y8{bottom:678.060000px;}
.y1db{bottom:688.500000px;}
.y43{bottom:690.660000px;}
.yb5{bottom:691.740000px;}
.y9d{bottom:692.460000px;}
.y8c{bottom:693.540000px;}
.y243{bottom:705.090000px;}
.y1ee{bottom:705.450000px;}
.y103{bottom:706.530000px;}
.y5f{bottom:707.610000px;}
.y78{bottom:708.690000px;}
.y24{bottom:716.970000px;}
.y10c{bottom:720.285000px;}
.y7{bottom:721.650000px;}
.yb4{bottom:722.730000px;}
.yf5{bottom:723.450000px;}
.y1da{bottom:731.010000px;}
.y242{bottom:736.050000px;}
.y1ed{bottom:736.410000px;}
.y205{bottom:736.770000px;}
.y102{bottom:737.850000px;}
.y5e{bottom:738.570000px;}
.y77{bottom:739.650000px;}
.y10b{bottom:748.725000px;}
.y42{bottom:752.610000px;}
.yc1{bottom:753.690000px;}
.y6{bottom:765.210000px;}
.y241{bottom:767.370000px;}
.y23{bottom:767.730000px;}
.yb3{bottom:768.090000px;}
.y101{bottom:768.450000px;}
.yed{bottom:768.810000px;}
.ye3{bottom:769.530000px;}
.y9c{bottom:769.890000px;}
.y8b{bottom:770.610000px;}
.y1d9{bottom:774.210000px;}
.y204{bottom:782.850000px;}
.y41{bottom:783.570000px;}
.y5d{bottom:784.650000px;}
.y76{bottom:785.730000px;}
.y256{bottom:798.330000px;}
.y1ec{bottom:798.690000px;}
.yec{bottom:799.770000px;}
.y9b{bottom:800.850000px;}
.y1d8{bottom:805.530000px;}
.y40{bottom:814.890000px;}
.yf4{bottom:815.610000px;}
.y5c{bottom:815.970000px;}
.y215{bottom:816.690000px;}
.y8a{bottom:817.050000px;}
.y22{bottom:818.490000px;}
.y5{bottom:823.530000px;}
.y240{bottom:829.335000px;}
.y1eb{bottom:829.695000px;}
.yc0{bottom:830.775000px;}
.y75{bottom:831.855000px;}
.y203{bottom:836.175000px;}
.y1d7{bottom:836.895000px;}
.y3f{bottom:845.895000px;}
.y5b{bottom:846.975000px;}
.y89{bottom:847.695000px;}
.y23f{bottom:860.295000px;}
.y1ea{bottom:860.655000px;}
.ybf{bottom:862.095000px;}
.y74{bottom:862.815000px;}
.y1d6{bottom:867.855000px;}
.y20{bottom:868.935000px;}
.yeb{bottom:876.495000px;}
.y3e{bottom:876.855000px;}
.y5a{bottom:877.935000px;}
.y4{bottom:882.975000px;}
.y23e{bottom:891.615000px;}
.yb2{bottom:891.975000px;}
.ybe{bottom:893.055000px;}
.y88{bottom:893.775000px;}
.y1d5{bottom:898.815000px;}
.y3d{bottom:907.815000px;}
.y73{bottom:908.895000px;}
.y1f{bottom:919.695000px;}
.y255{bottom:922.575000px;}
.yb1{bottom:922.935000px;}
.y59{bottom:924.015000px;}
.y1d4{bottom:929.775000px;}
.y3c{bottom:939.135000px;}
.y87{bottom:939.855000px;}
.ye2{bottom:940.215000px;}
.y3{bottom:942.375000px;}
.y23d{bottom:953.565000px;}
.yb0{bottom:953.925000px;}
.y107{bottom:954.645000px;}
.y58{bottom:955.005000px;}
.y1d3{bottom:961.125000px;}
.y3b{bottom:970.125000px;}
.y1e{bottom:970.485000px;}
.ye1{bottom:971.205000px;}
.y213{bottom:980.565000px;}
.y23c{bottom:984.525000px;}
.y1e9{bottom:984.885000px;}
.yaf{bottom:985.245000px;}
.y57{bottom:985.965000px;}
.y1d2{bottom:992.085000px;}
.y106{bottom:1000.725000px;}
.y3a{bottom:1001.085000px;}
.y2{bottom:1002.165000px;}
.y254{bottom:1015.845000px;}
.yae{bottom:1016.205000px;}
.y86{bottom:1016.925000px;}
.y56{bottom:1017.285000px;}
.y1c{bottom:1021.245000px;}
.y1d1{bottom:1023.045000px;}
.y72{bottom:1031.685000px;}
.y39{bottom:1032.045000px;}
.yad{bottom:1047.165000px;}
.ye0{bottom:1047.885000px;}
.ycd{bottom:1048.245000px;}
.y1{bottom:1053.285000px;}
.y38{bottom:1063.005000px;}
.y55{bottom:1063.365000px;}
.y1d0{bottom:1065.885000px;}
.y1a{bottom:1072.005000px;}
.y20c{bottom:1077.810000px;}
.y71{bottom:1078.170000px;}
.ycc{bottom:1094.010000px;}
.y54{bottom:1094.370000px;}
.y1cf{bottom:1097.250000px;}
.y20b{bottom:1108.770000px;}
.y37{bottom:1109.130000px;}
.y70{bottom:1109.490000px;}
.y19{bottom:1134.330000px;}
.y9a{bottom:1139.730000px;}
.y36{bottom:1140.090000px;}
.y6f{bottom:1140.450000px;}
.h14{height:20.160000px;}
.h7{height:20.196000px;}
.hb{height:35.640000px;}
.h9{height:35.676000px;}
.hc{height:36.000000px;}
.he{height:36.036000px;}
.h19{height:47.196000px;}
.h26{height:47.556000px;}
.h6{height:50.229844px;}
.h15{height:54.036000px;}
.h21{height:54.396000px;}
.hd{height:56.520000px;}
.h29{height:57.636000px;}
.h1d{height:59.328281px;}
.h1a{height:59.357813px;}
.h18{height:60.952500px;}
.h2a{height:64.476000px;}
.h11{height:64.546875px;}
.h10{height:70.628906px;}
.ha{height:70.664062px;}
.hf{height:72.562500px;}
.h24{height:74.181094px;}
.h17{height:79.560000px;}
.h1c{height:79.596000px;}
.h16{height:84.172500px;}
.h1e{height:85.680000px;}
.h5{height:88.992422px;}
.h4{height:89.036719px;}
.h25{height:96.516000px;}
.h20{height:96.876000px;}
.h8{height:97.233750px;}
.h30{height:104.796000px;}
.h22{height:113.796000px;}
.h2d{height:114.156000px;}
.h2f{height:115.427812px;}
.h28{height:123.192000px;}
.h2c{height:127.116000px;}
.h3{height:129.957188px;}
.h34{height:134.316000px;}
.h2{height:135.675000px;}
.h23{height:144.036000px;}
.h31{height:147.672000px;}
.h32{height:172.110000px;}
.h1b{height:176.475000px;}
.h2e{height:185.475000px;}
.h2b{height:193.395000px;}
.h33{height:199.155000px;}
.h27{height:224.355000px;}
.h1f{height:237.705000px;}
.h13{height:892.500000px;}
.h12{height:892.800000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:8.280000px;}
.w6{width:16.920000px;}
.w32{width:73.080000px;}
.w33{width:73.116000px;}
.w22{width:83.556000px;}
.w17{width:84.636000px;}
.w2b{width:86.076000px;}
.w3b{width:93.996000px;}
.w5{width:95.796000px;}
.w23{width:104.796000px;}
.we{width:105.480000px;}
.w2a{width:114.876000px;}
.w21{width:115.200000px;}
.w18{width:115.956000px;}
.w2c{width:123.516000px;}
.w30{width:125.316000px;}
.w3a{width:126.036000px;}
.w14{width:126.396000px;}
.w16{width:126.756000px;}
.w3d{width:136.116000px;}
.w31{width:136.836000px;}
.wd{width:137.556000px;}
.wf{width:137.592000px;}
.w19{width:139.716000px;}
.w2e{width:147.312000px;}
.wb{width:149.076000px;}
.w29{width:157.350000px;}
.w27{width:166.350000px;}
.w1f{width:167.790000px;}
.w20{width:168.510000px;}
.w38{width:178.230000px;}
.w15{width:179.310000px;}
.w1c{width:180.030000px;}
.w10{width:187.950000px;}
.wc{width:189.390000px;}
.w36{width:189.750000px;}
.w26{width:189.795000px;}
.w2f{width:207.750000px;}
.w3c{width:208.830000px;}
.w39{width:211.035000px;}
.w1d{width:220.035000px;}
.w24{width:240.555000px;}
.w37{width:261.795000px;}
.w1a{width:271.875000px;}
.w12{width:292.065000px;}
.w13{width:299.235000px;}
.w2d{width:316.515000px;}
.w34{width:453.345000px;}
.w11{width:456.225000px;}
.w3e{width:489.780000px;}
.w4{width:552.090000px;}
.w35{width:603.900000px;}
.w1b{width:647.460000px;}
.w25{width:699.660000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.wa{width:1048.965000px;}
.w28{width:1057.605000px;}
.w1e{width:1058.685000px;}
.w9{width:1262.879981px;}
.w7{width:1262.880000px;}
.w8{width:1263.000000px;}
.x0{left:0.000000px;}
.x10{left:7.200000px;}
.x52{left:8.280000px;}
.x59{left:10.080000px;}
.x6d{left:11.883000px;}
.x5d{left:12.960000px;}
.x26{left:14.040000px;}
.x34{left:15.840000px;}
.x29{left:19.440000px;}
.x4c{left:21.240000px;}
.x41{left:22.680000px;}
.x20{left:25.200000px;}
.x22{left:26.280000px;}
.x31{left:27.720000px;}
.x63{left:28.800000px;}
.x36{left:30.240000px;}
.x1e{left:33.120000px;}
.x54{left:36.720000px;}
.x3a{left:38.550000px;}
.x24{left:41.430000px;}
.x53{left:42.870000px;}
.x2b{left:48.600000px;}
.x28{left:49.680000px;}
.x2a{left:52.560000px;}
.x2c{left:54.000000px;}
.x3b{left:55.080000px;}
.x45{left:57.240000px;}
.x1c{left:60.834000px;}
.x46{left:61.920000px;}
.x4a{left:64.794000px;}
.x13{left:70.230000px;}
.x44{left:75.990000px;}
.x12{left:79.230000px;}
.x39{left:91.470000px;}
.x1a{left:98.676000px;}
.x3e{left:99.756000px;}
.x18{left:106.235981px;}
.x51{left:114.150000px;}
.xf{left:120.276000px;}
.x8{left:127.475987px;}
.x64{left:138.275987px;}
.x69{left:143.352000px;}
.x6{left:152.714987px;}
.x14{left:154.514987px;}
.x4{left:158.114987px;}
.x15{left:181.514987px;}
.x5c{left:182.565000px;}
.x66{left:191.594987px;}
.x5{left:202.034987px;}
.xb{left:208.514987px;}
.xa{left:216.434987px;}
.x9{left:223.994987px;}
.x30{left:225.795000px;}
.x3{left:230.834987px;}
.x16{left:235.544987px;}
.x6f{left:244.545000px;}
.x1d{left:248.475000px;}
.x4b{left:258.555000px;}
.x40{left:268.995000px;}
.x71{left:272.624987px;}
.x60{left:279.795000px;}
.x6a{left:281.265000px;}
.x72{left:287.384987px;}
.x7{left:288.824987px;}
.xc{left:325.184987px;}
.x6c{left:340.710000px;}
.xd{left:355.469987px;}
.x70{left:360.150000px;}
.x57{left:364.785000px;}
.x32{left:405.825000px;}
.x6e{left:420.270000px;}
.x6b{left:421.710000px;}
.x4d{left:426.705000px;}
.x3f{left:431.394000px;}
.x1f{left:438.630000px;}
.x49{left:441.114000px;}
.x2{left:446.579987px;}
.x56{left:451.554000px;}
.x68{left:457.379987px;}
.x5f{left:468.144000px;}
.x58{left:471.030000px;}
.x1b{left:476.064000px;}
.x61{left:492.270000px;}
.x33{left:533.310000px;}
.x4e{left:543.030000px;}
.x5a{left:545.550000px;}
.x2d{left:555.630000px;}
.x21{left:576.900000px;}
.x35{left:618.660000px;}
.x62{left:620.100000px;}
.x1{left:628.094987px;}
.x2f{left:631.259981px;}
.x42{left:641.340000px;}
.x11{left:672.375000px;}
.x23{left:683.100000px;}
.x5b{left:705.090000px;}
.x4f{left:715.890000px;}
.x37{left:735.330000px;}
.x3c{left:746.850000px;}
.x17{left:748.725000px;}
.xe{left:757.365000px;}
.x65{left:759.525000px;}
.x67{left:769.964987px;}
.x47{left:800.850000px;}
.x25{left:821.415000px;}
.x50{left:840.855000px;}
.x2e{left:848.415000px;}
.x38{left:875.775000px;}
.x5e{left:896.655000px;}
.x43{left:917.895000px;}
.x3d{left:927.615000px;}
.x55{left:949.605000px;}
.x27{left:959.685000px;}
.x48{left:992.085000px;}
.x19{left:1140.090000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-2.560000pt;}
.ls12{letter-spacing:-1.280000pt;}
.lsb{letter-spacing:-1.152000pt;}
.ls5{letter-spacing:-0.832000pt;}
.ls1{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.576000pt;}
.ls15{letter-spacing:-0.432533pt;}
.ls13{letter-spacing:-0.414933pt;}
.lsc{letter-spacing:-0.412267pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.017920pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.017920pt;}
.ls1b{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls10{letter-spacing:1.024000pt;}
.lsd{letter-spacing:1.152000pt;}
.ls9{letter-spacing:1.280000pt;}
.ls1a{letter-spacing:1.408000pt;}
.ls19{letter-spacing:4.480000pt;}
.ls17{letter-spacing:9.600000pt;}
.ls2{letter-spacing:18.560000pt;}
.ls7{letter-spacing:23.680000pt;}
.ls3{letter-spacing:23.786667pt;}
.ls6{letter-spacing:49.054720pt;}
.lsa{letter-spacing:49.161387pt;}
.ls18{letter-spacing:67.200000pt;}
.wse{word-spacing:-21.440000pt;}
.ws0{word-spacing:-19.520000pt;}
.ws10{word-spacing:-17.408000pt;}
.ws6{word-spacing:-17.280000pt;}
.ws9{word-spacing:-17.152000pt;}
.wsf{word-spacing:-16.640000pt;}
.ws5{word-spacing:-16.448000pt;}
.ws11{word-spacing:-16.256000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.424000pt;}
.ws3{word-spacing:-15.168000pt;}
.ws7{word-spacing:-14.848000pt;}
.ws4{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.422080pt;}
.wsc{word-spacing:-13.025067pt;}
.wsd{word-spacing:-13.007467pt;}
.ws8{word-spacing:-12.894613pt;}
.ws1{word-spacing:0.000000pt;}
._4{margin-left:-3.123200pt;}
._1{margin-left:-1.966080pt;}
._0{margin-left:-0.983040pt;}
._2{width:1.105920pt;}
._3{width:2.265600pt;}
._9{width:3.562667pt;}
._7{width:5.125120pt;}
._8{width:6.318080pt;}
._c{width:7.623680pt;}
._d{width:8.706560pt;}
._e{width:9.944747pt;}
._f{width:11.357867pt;}
._12{width:12.797440pt;}
._11{width:13.916160pt;}
._1c{width:14.940160pt;}
._30{width:16.112640pt;}
._6{width:17.167360pt;}
._10{width:18.086400pt;}
._5{width:19.054080pt;}
._19{width:20.666880pt;}
._15{width:21.568000pt;}
._16{width:22.689280pt;}
._b{width:23.726080pt;}
._a{width:24.647680pt;}
._18{width:25.789440pt;}
._2c{width:26.763947pt;}
._17{width:27.660800pt;}
._13{width:28.695040pt;}
._14{width:30.423893pt;}
._1a{width:31.644160pt;}
._1b{width:32.965120pt;}
._1d{width:34.129920pt;}
._1e{width:35.768320pt;}
._2b{width:36.945920pt;}
._24{width:37.857280pt;}
._1f{width:39.260160pt;}
._20{width:40.852480pt;}
._21{width:42.040320pt;}
._22{width:43.269973pt;}
._23{width:44.764160pt;}
._2e{width:50.964480pt;}
._2a{width:52.446720pt;}
._29{width:53.944320pt;}
._3f{width:55.219627pt;}
._35{width:56.371200pt;}
._31{width:57.661440pt;}
._2f{width:58.721280pt;}
._25{width:64.220160pt;}
._26{width:65.728000pt;}
._40{width:66.880000pt;}
._41{width:67.914240pt;}
._27{width:81.392640pt;}
._33{width:85.063680pt;}
._37{width:95.800320pt;}
._36{width:106.283520pt;}
._28{width:113.856000pt;}
._3e{width:143.260160pt;}
._3d{width:144.527360pt;}
._32{width:162.731520pt;}
._3a{width:170.008747pt;}
._34{width:228.026880pt;}
._2d{width:244.911787pt;}
._3c{width:246.557440pt;}
._3b{width:248.284160pt;}
._42{width:317.048320pt;}
._38{width:340.334080pt;}
._39{width:341.870080pt;}
.fs6{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:74.240000pt;}
.fs2{font-size:80.640000pt;}
.fs4{font-size:85.760000pt;}
.fs8{font-size:98.560000pt;}
.fs1{font-size:117.760000pt;}
.fs0{font-size:122.880000pt;}
.y0{bottom:0.000000pt;}
.y192{bottom:3.200000pt;}
.y18{bottom:3.840000pt;}
.y1d{bottom:10.560000pt;}
.y28{bottom:10.586667pt;}
.y1b{bottom:10.600000pt;}
.y21{bottom:10.880000pt;}
.y2c{bottom:10.920000pt;}
.y159{bottom:16.320000pt;}
.y14e{bottom:16.346667pt;}
.y139{bottom:16.360000pt;}
.y111{bottom:16.640000pt;}
.y127{bottom:16.680000pt;}
.y17c{bottom:16.986667pt;}
.y10e{bottom:17.626667pt;}
.y154{bottom:17.946667pt;}
.y19a{bottom:18.266667pt;}
.y191{bottom:18.560000pt;}
.y197{bottom:19.232000pt;}
.y172{bottom:20.160000pt;}
.y1a8{bottom:21.120000pt;}
.y165{bottom:21.160000pt;}
.y14a{bottom:23.080000pt;}
.y1c0{bottom:24.640000pt;}
.y124{bottom:27.866667pt;}
.y2a{bottom:29.120000pt;}
.y16a{bottom:29.800000pt;}
.y1b4{bottom:30.080000pt;}
.y158{bottom:31.680000pt;}
.y14d{bottom:31.706667pt;}
.y17a{bottom:31.720000pt;}
.y1ba{bottom:32.000000pt;}
.y19d{bottom:32.026667pt;}
.y190{bottom:33.920000pt;}
.y220{bottom:33.960000pt;}
.y171{bottom:35.560000pt;}
.y11c{bottom:36.506667pt;}
.y164{bottom:36.520000pt;}
.y1cb{bottom:39.720000pt;}
.y214{bottom:41.280000pt;}
.y196{bottom:42.592000pt;}
.y123{bottom:43.226667pt;}
.y1ce{bottom:43.522667pt;}
.y1b0{bottom:44.200000pt;}
.y223{bottom:44.800000pt;}
.y176{bottom:45.120000pt;}
.y117{bottom:45.146667pt;}
.y126{bottom:45.160000pt;}
.y110{bottom:45.440000pt;}
.y128{bottom:45.480000pt;}
.y17{bottom:46.720000pt;}
.y10a{bottom:46.752000pt;}
.y1e8{bottom:47.040000pt;}
.y157{bottom:47.080000pt;}
.y1b9{bottom:47.360000pt;}
.y130{bottom:48.000000pt;}
.y1c4{bottom:48.360000pt;}
.y18f{bottom:49.000000pt;}
.y138{bottom:50.280000pt;}
.y109{bottom:50.592000pt;}
.y16{bottom:50.880000pt;}
.y170{bottom:50.920000pt;}
.y11b{bottom:51.866667pt;}
.y163{bottom:51.880000pt;}
.y21f{bottom:52.520000pt;}
.y21a{bottom:52.800000pt;}
.y1bf{bottom:53.480000pt;}
.y1ca{bottom:55.080000pt;}
.y1b3{bottom:58.562667pt;}
.y120{bottom:58.586667pt;}
.y169{bottom:58.600000pt;}
.y1cd{bottom:58.882667pt;}
.y181{bottom:59.240000pt;}
.y149{bottom:59.560000pt;}
.y13e{bottom:59.880000pt;}
.y14c{bottom:60.506667pt;}
.y179{bottom:60.520000pt;}
.y14f{bottom:60.826667pt;}
.y222{bottom:63.386667pt;}
.y1c3{bottom:63.720000pt;}
.y18e{bottom:64.360000pt;}
.y137{bottom:65.640000pt;}
.y195{bottom:65.954667pt;}
.y1ab{bottom:65.960000pt;}
.y16f{bottom:66.280000pt;}
.y187{bottom:66.600000pt;}
.y11a{bottom:67.226667pt;}
.y1a7{bottom:67.240000pt;}
.y216{bottom:69.160000pt;}
.y1c9{bottom:70.440000pt;}
.y21e{bottom:70.760000pt;}
.y219{bottom:71.066667pt;}
.y184{bottom:72.040000pt;}
.y1af{bottom:72.680000pt;}
.y1a2{bottom:73.640000pt;}
.y175{bottom:73.922667pt;}
.y116{bottom:73.946667pt;}
.y15e{bottom:73.960000pt;}
.y11d{bottom:74.266667pt;}
.y148{bottom:74.920000pt;}
.y13d{bottom:75.240000pt;}
.y156{bottom:75.880000pt;}
.y1b8{bottom:76.200000pt;}
.y193{bottom:77.792000pt;}
.y1c5{bottom:78.120000pt;}
.y1b6{bottom:78.432000pt;}
.y1c2{bottom:79.080000pt;}
.y12e{bottom:79.712000pt;}
.y18d{bottom:79.720000pt;}
.y162{bottom:80.680000pt;}
.y1aa{bottom:81.320000pt;}
.y16e{bottom:81.640000pt;}
.y1be{bottom:81.960000pt;}
.y1a6{bottom:82.280000pt;}
.y119{bottom:82.586667pt;}
.y1c8{bottom:85.800000pt;}
.y141{bottom:85.826667pt;}
.y173{bottom:86.464000pt;}
.y1b2{bottom:87.389333pt;}
.y183{bottom:87.400000pt;}
.y1b5{bottom:87.709333pt;}
.y180{bottom:87.720000pt;}
.y1ae{bottom:88.040000pt;}
.y1a1{bottom:89.000000pt;}
.y11f{bottom:89.306667pt;}
.y168{bottom:89.320000pt;}
.y218{bottom:89.626667pt;}
.y1cc{bottom:90.304000pt;}
.y147{bottom:90.306667pt;}
.y13c{bottom:90.626667pt;}
.y21c{bottom:92.200000pt;}
.y152{bottom:94.464000pt;}
.y186{bottom:95.080000pt;}
.y161{bottom:96.040000pt;}
.y1a9{bottom:96.680000pt;}
.y16d{bottom:97.000000pt;}
.y194{bottom:97.021333pt;}
.y198{bottom:97.341333pt;}
.y1a5{bottom:97.640000pt;}
.y1b1{bottom:98.624000pt;}
.y35{bottom:98.912000pt;}
.y136{bottom:99.906667pt;}
.y15{bottom:101.152000pt;}
.y1c7{bottom:101.160000pt;}
.y13f{bottom:101.186667pt;}
.y115{bottom:102.426667pt;}
.y174{bottom:102.429333pt;}
.y253{bottom:102.432000pt;}
.y15d{bottom:102.440000pt;}
.y11e{bottom:102.746667pt;}
.y177{bottom:102.749333pt;}
.y201{bottom:102.752000pt;}
.y166{bottom:102.760000pt;}
.y1ad{bottom:103.400000pt;}
.y122{bottom:104.666667pt;}
.y13b{bottom:105.666667pt;}
.y1c1{bottom:107.560000pt;}
.yd9{bottom:107.872000pt;}
.y22a{bottom:108.192000pt;}
.y99{bottom:108.832000pt;}
.y12d{bottom:109.824000pt;}
.y18c{bottom:110.440000pt;}
.y1bd{bottom:110.760000pt;}
.y118{bottom:111.093333pt;}
.y160{bottom:111.426667pt;}
.y16c{bottom:112.386667pt;}
.y23b{bottom:114.592000pt;}
.y135{bottom:115.266667pt;}
.y1c6{bottom:116.200000pt;}
.y17f{bottom:116.520000pt;}
.y140{bottom:116.546667pt;}
.y1e7{bottom:116.832000pt;}
.y182{bottom:117.800000pt;}
.y1a0{bottom:117.826667pt;}
.y167{bottom:118.146667pt;}
.y53{bottom:118.752000pt;}
.y1ac{bottom:118.786667pt;}
.y105{bottom:119.712000pt;}
.y121{bottom:120.053333pt;}
.y108{bottom:120.672000pt;}
.y146{bottom:121.026667pt;}
.y100{bottom:121.632000pt;}
.y20a{bottom:122.592000pt;}
.y229{bottom:123.552000pt;}
.y212{bottom:123.872000pt;}
.y185{bottom:123.880000pt;}
.y151{bottom:124.544000pt;}
.y18b{bottom:125.800000pt;}
.y1a4{bottom:126.146667pt;}
.y34{bottom:126.432000pt;}
.y15f{bottom:126.786667pt;}
.y16b{bottom:127.746667pt;}
.y252{bottom:129.952000pt;}
.y200{bottom:130.272000pt;}
.y114{bottom:131.573333pt;}
.y15c{bottom:131.586667pt;}
.ybd{bottom:134.746667pt;}
.ycb{bottom:135.066667pt;}
.y14{bottom:135.706667pt;}
.y145{bottom:136.386667pt;}
.y228{bottom:138.906667pt;}
.y13a{bottom:139.586667pt;}
.y12c{bottom:139.906667pt;}
.y18a{bottom:141.186667pt;}
.y1a3{bottom:141.506667pt;}
.y23a{bottom:142.426667pt;}
.y21d{bottom:144.386667pt;}
.y17e{bottom:145.026667pt;}
.y52{bottom:146.266667pt;}
.y19f{bottom:146.626667pt;}
.yea{bottom:147.226667pt;}
.yac{bottom:148.186667pt;}
.ydf{bottom:148.826667pt;}
.yd8{bottom:149.146667pt;}
.y134{bottom:149.186667pt;}
.y150{bottom:149.826667pt;}
.y98{bottom:150.106667pt;}
.y144{bottom:151.746667pt;}
.y33{bottom:153.946667pt;}
.y227{bottom:154.266667pt;}
.y1e6{bottom:154.906667pt;}
.y189{bottom:156.546667pt;}
.y251{bottom:157.466667pt;}
.y1ff{bottom:157.786667pt;}
.y211{bottom:160.666667pt;}
.yca{bottom:162.266667pt;}
.y14b{bottom:162.626667pt;}
.y85{bottom:163.226667pt;}
.y209{bottom:163.546667pt;}
.y143{bottom:167.106667pt;}
.y226{bottom:169.626667pt;}
.y239{bottom:169.946667pt;}
.y12b{bottom:170.013333pt;}
.y13{bottom:170.266667pt;}
.y188{bottom:171.906667pt;}
.yf3{bottom:174.146667pt;}
.y104{bottom:174.786667pt;}
.ye9{bottom:175.106667pt;}
.yab{bottom:175.746667pt;}
.yd7{bottom:176.706667pt;}
.y97{bottom:177.666667pt;}
.y32{bottom:181.826667pt;}
.y142{bottom:182.493333pt;}
.y133{bottom:183.133333pt;}
.y225{bottom:185.026667pt;}
.y1fe{bottom:185.346667pt;}
.y51{bottom:187.266667pt;}
.y6e{bottom:188.226667pt;}
.yde{bottom:189.826667pt;}
.yff{bottom:190.146667pt;}
.y1e5{bottom:193.346667pt;}
.y210{bottom:197.506667pt;}
.y238{bottom:197.826667pt;}
.y12a{bottom:199.773333pt;}
.yf2{bottom:201.666667pt;}
.y17d{bottom:202.013333pt;}
.ye8{bottom:202.626667pt;}
.yc9{bottom:203.586667pt;}
.y84{bottom:204.546667pt;}
.y12{bottom:204.866667pt;}
.y96{bottom:205.186667pt;}
.y31{bottom:209.346667pt;}
.y224{bottom:210.306667pt;}
.y257{bottom:212.866667pt;}
.y1fd{bottom:213.186667pt;}
.y50{bottom:215.106667pt;}
.y6d{bottom:215.746667pt;}
.yaa{bottom:216.706667pt;}
.yd6{bottom:217.666667pt;}
.y1bc{bottom:218.013333pt;}
.y1e4{bottom:221.186667pt;}
.y129{bottom:225.053333pt;}
.y237{bottom:225.346667pt;}
.y19e{bottom:226.333333pt;}
.yf1{bottom:229.186667pt;}
.y15b{bottom:229.213333pt;}
.ye7{bottom:230.146667pt;}
.yc8{bottom:231.106667pt;}
.y83{bottom:232.066667pt;}
.y221{bottom:232.706667pt;}
.y20f{bottom:234.306667pt;}
.y30{bottom:236.866667pt;}
.y125{bottom:237.853333pt;}
.y11{bottom:239.426667pt;}
.y250{bottom:240.386667pt;}
.y1fc{bottom:240.706667pt;}
.y4f{bottom:242.626667pt;}
.y6c{bottom:243.586667pt;}
.ya9{bottom:244.226667pt;}
.yfe{bottom:245.506667pt;}
.y95{bottom:246.146667pt;}
.y1e3{bottom:248.706667pt;}
.y132{bottom:249.373333pt;}
.y236{bottom:252.866667pt;}
.ybc{bottom:257.666667pt;}
.y2f{bottom:258.306667pt;}
.yd5{bottom:258.626667pt;}
.y82{bottom:259.586667pt;}
.y20e{bottom:265.026667pt;}
.y24f{bottom:267.906667pt;}
.y1fb{bottom:268.226667pt;}
.y4e{bottom:270.146667pt;}
.y6b{bottom:271.106667pt;}
.yc7{bottom:272.066667pt;}
.yfd{bottom:273.026667pt;}
.y10{bottom:273.666667pt;}
.y94{bottom:273.986667pt;}
.y1e2{bottom:276.226667pt;}
.y235{bottom:280.386667pt;}
.ybb{bottom:285.213333pt;}
.ya8{bottom:285.533333pt;}
.ydd{bottom:286.173333pt;}
.y208{bottom:286.493333pt;}
.y81{bottom:287.133333pt;}
.y20d{bottom:289.373333pt;}
.y24e{bottom:295.453333pt;}
.y1fa{bottom:295.773333pt;}
.y4d{bottom:297.693333pt;}
.ye6{bottom:298.653333pt;}
.yd4{bottom:299.613333pt;}
.yfc{bottom:300.573333pt;}
.y93{bottom:301.533333pt;}
.y2e{bottom:303.453333pt;}
.yf{bottom:308.253333pt;}
.y113{bottom:309.253333pt;}
.y6a{bottom:312.093333pt;}
.ya7{bottom:313.053333pt;}
.ydc{bottom:313.693333pt;}
.y1e1{bottom:314.333333pt;}
.y80{bottom:314.653333pt;}
.y24d{bottom:323.293333pt;}
.y1f9{bottom:323.613333pt;}
.y4c{bottom:325.533333pt;}
.yba{bottom:326.173333pt;}
.yd3{bottom:327.133333pt;}
.y207{bottom:327.453333pt;}
.yfb{bottom:328.093333pt;}
.y234{bottom:335.773333pt;}
.y69{bottom:339.613333pt;}
.ya6{bottom:340.573333pt;}
.y1e0{bottom:342.173333pt;}
.y92{bottom:342.493333pt;}
.ye{bottom:342.813333pt;}
.y2d{bottom:348.573333pt;}
.y24c{bottom:350.813333pt;}
.y1f8{bottom:351.133333pt;}
.y4b{bottom:353.053333pt;}
.yb9{bottom:353.693333pt;}
.ye5{bottom:354.013333pt;}
.yd2{bottom:354.973333pt;}
.y7f{bottom:355.933333pt;}
.y233{bottom:363.293333pt;}
.y21b{bottom:366.493333pt;}
.y68{bottom:367.133333pt;}
.yc6{bottom:368.093333pt;}
.y206{bottom:368.413333pt;}
.y1df{bottom:369.693333pt;}
.y91{bottom:370.013333pt;}
.y24b{bottom:378.333333pt;}
.y1f7{bottom:378.653333pt;}
.y4a{bottom:380.573333pt;}
.ya5{bottom:381.533333pt;}
.yd1{bottom:382.493333pt;}
.y7e{bottom:383.453333pt;}
.yd{bottom:385.053333pt;}
.y232{bottom:390.813333pt;}
.y2b{bottom:393.373333pt;}
.y67{bottom:394.973333pt;}
.y1de{bottom:397.573333pt;}
.y1bb{bottom:397.600000pt;}
.y15a{bottom:400.800000pt;}
.y24a{bottom:405.893333pt;}
.y1f6{bottom:406.213333pt;}
.y49{bottom:408.133333pt;}
.ya4{bottom:409.093333pt;}
.yd0{bottom:410.053333pt;}
.y7d{bottom:411.013333pt;}
.y19c{bottom:412.960000pt;}
.y17b{bottom:415.840000pt;}
.y231{bottom:418.693333pt;}
.y66{bottom:422.533333pt;}
.ydb{bottom:423.493333pt;}
.yc{bottom:423.813333pt;}
.y249{bottom:433.413333pt;}
.y1f5{bottom:433.733333pt;}
.y1dd{bottom:435.333333pt;}
.y48{bottom:435.973333pt;}
.ya3{bottom:436.613333pt;}
.ycf{bottom:437.573333pt;}
.y29{bottom:438.533333pt;}
.y230{bottom:446.213333pt;}
.y65{bottom:450.053333pt;}
.yda{bottom:451.013333pt;}
.yfa{bottom:451.653333pt;}
.y1b7{bottom:454.266667pt;}
.y155{bottom:457.466667pt;}
.y248{bottom:461.253333pt;}
.y131{bottom:461.306667pt;}
.y1f4{bottom:461.573333pt;}
.yb{bottom:462.853333pt;}
.yf0{bottom:463.173333pt;}
.y47{bottom:463.493333pt;}
.ya2{bottom:464.133333pt;}
.yc5{bottom:464.453333pt;}
.y90{bottom:466.053333pt;}
.y112{bottom:466.746667pt;}
.y178{bottom:472.826667pt;}
.y22f{bottom:473.733333pt;}
.y64{bottom:477.573333pt;}
.yce{bottom:478.213333pt;}
.y7c{bottom:479.173333pt;}
.y19b{bottom:484.986667pt;}
.y247{bottom:488.773333pt;}
.y1f3{bottom:489.093333pt;}
.yb8{bottom:491.013333pt;}
.yc4{bottom:491.973333pt;}
.yf9{bottom:492.613333pt;}
.y22e{bottom:501.253333pt;}
.y27{bottom:502.213333pt;}
.y12f{bottom:503.906667pt;}
.y46{bottom:504.133333pt;}
.yef{bottom:504.453333pt;}
.ya1{bottom:505.413333pt;}
.y8f{bottom:507.013333pt;}
.y10f{bottom:509.346667pt;}
.ya{bottom:513.440000pt;}
.y246{bottom:516.320000pt;}
.y1f2{bottom:516.640000pt;}
.y63{bottom:518.560000pt;}
.yc3{bottom:519.520000pt;}
.y7b{bottom:520.160000pt;}
.y22d{bottom:529.120000pt;}
.yee{bottom:532.000000pt;}
.ye4{bottom:532.640000pt;}
.ya0{bottom:532.960000pt;}
.yf8{bottom:533.600000pt;}
.y8e{bottom:534.560000pt;}
.y245{bottom:543.840000pt;}
.y1f1{bottom:544.160000pt;}
.y45{bottom:545.440000pt;}
.y62{bottom:546.080000pt;}
.y26{bottom:547.040000pt;}
.y22c{bottom:556.640000pt;}
.y217{bottom:558.240000pt;}
.yb7{bottom:559.520000pt;}
.yc2{bottom:560.160000pt;}
.y9f{bottom:560.480000pt;}
.y7a{bottom:561.440000pt;}
.y9{bottom:564.000000pt;}
.y199{bottom:570.466667pt;}
.y244{bottom:571.680000pt;}
.y1f0{bottom:572.000000pt;}
.y44{bottom:572.960000pt;}
.y153{bottom:573.346667pt;}
.y61{bottom:573.920000pt;}
.y22b{bottom:574.240000pt;}
.yf7{bottom:574.880000pt;}
.y8d{bottom:575.520000pt;}
.y10d{bottom:580.706667pt;}
.y1dc{bottom:584.160000pt;}
.yb6{bottom:587.040000pt;}
.y9e{bottom:588.000000pt;}
.y79{bottom:588.960000pt;}
.y25{bottom:592.160000pt;}
.y202{bottom:599.200000pt;}
.y1ef{bottom:599.520000pt;}
.y60{bottom:601.440000pt;}
.yf6{bottom:602.400000pt;}
.y8{bottom:602.720000pt;}
.y1db{bottom:612.000000pt;}
.y43{bottom:613.920000pt;}
.yb5{bottom:614.880000pt;}
.y9d{bottom:615.520000pt;}
.y8c{bottom:616.480000pt;}
.y243{bottom:626.746667pt;}
.y1ee{bottom:627.066667pt;}
.y103{bottom:628.026667pt;}
.y5f{bottom:628.986667pt;}
.y78{bottom:629.946667pt;}
.y24{bottom:637.306667pt;}
.y10c{bottom:640.253333pt;}
.y7{bottom:641.466667pt;}
.yb4{bottom:642.426667pt;}
.yf5{bottom:643.066667pt;}
.y1da{bottom:649.786667pt;}
.y242{bottom:654.266667pt;}
.y1ed{bottom:654.586667pt;}
.y205{bottom:654.906667pt;}
.y102{bottom:655.866667pt;}
.y5e{bottom:656.506667pt;}
.y77{bottom:657.466667pt;}
.y10b{bottom:665.533333pt;}
.y42{bottom:668.986667pt;}
.yc1{bottom:669.946667pt;}
.y6{bottom:680.186667pt;}
.y241{bottom:682.106667pt;}
.y23{bottom:682.426667pt;}
.yb3{bottom:682.746667pt;}
.y101{bottom:683.066667pt;}
.yed{bottom:683.386667pt;}
.ye3{bottom:684.026667pt;}
.y9c{bottom:684.346667pt;}
.y8b{bottom:684.986667pt;}
.y1d9{bottom:688.186667pt;}
.y204{bottom:695.866667pt;}
.y41{bottom:696.506667pt;}
.y5d{bottom:697.466667pt;}
.y76{bottom:698.426667pt;}
.y256{bottom:709.626667pt;}
.y1ec{bottom:709.946667pt;}
.yec{bottom:710.906667pt;}
.y9b{bottom:711.866667pt;}
.y1d8{bottom:716.026667pt;}
.y40{bottom:724.346667pt;}
.yf4{bottom:724.986667pt;}
.y5c{bottom:725.306667pt;}
.y215{bottom:725.946667pt;}
.y8a{bottom:726.266667pt;}
.y22{bottom:727.546667pt;}
.y5{bottom:732.026667pt;}
.y240{bottom:737.186667pt;}
.y1eb{bottom:737.506667pt;}
.yc0{bottom:738.466667pt;}
.y75{bottom:739.426667pt;}
.y203{bottom:743.266667pt;}
.y1d7{bottom:743.906667pt;}
.y3f{bottom:751.906667pt;}
.y5b{bottom:752.866667pt;}
.y89{bottom:753.506667pt;}
.y23f{bottom:764.706667pt;}
.y1ea{bottom:765.026667pt;}
.ybf{bottom:766.306667pt;}
.y74{bottom:766.946667pt;}
.y1d6{bottom:771.426667pt;}
.y20{bottom:772.386667pt;}
.yeb{bottom:779.106667pt;}
.y3e{bottom:779.426667pt;}
.y5a{bottom:780.386667pt;}
.y4{bottom:784.866667pt;}
.y23e{bottom:792.546667pt;}
.yb2{bottom:792.866667pt;}
.ybe{bottom:793.826667pt;}
.y88{bottom:794.466667pt;}
.y1d5{bottom:798.946667pt;}
.y3d{bottom:806.946667pt;}
.y73{bottom:807.906667pt;}
.y1f{bottom:817.506667pt;}
.y255{bottom:820.066667pt;}
.yb1{bottom:820.386667pt;}
.y59{bottom:821.346667pt;}
.y1d4{bottom:826.466667pt;}
.y3c{bottom:834.786667pt;}
.y87{bottom:835.426667pt;}
.ye2{bottom:835.746667pt;}
.y3{bottom:837.666667pt;}
.y23d{bottom:847.613333pt;}
.yb0{bottom:847.933333pt;}
.y107{bottom:848.573333pt;}
.y58{bottom:848.893333pt;}
.y1d3{bottom:854.333333pt;}
.y3b{bottom:862.333333pt;}
.y1e{bottom:862.653333pt;}
.ye1{bottom:863.293333pt;}
.y213{bottom:871.613333pt;}
.y23c{bottom:875.133333pt;}
.y1e9{bottom:875.453333pt;}
.yaf{bottom:875.773333pt;}
.y57{bottom:876.413333pt;}
.y1d2{bottom:881.853333pt;}
.y106{bottom:889.533333pt;}
.y3a{bottom:889.853333pt;}
.y2{bottom:890.813333pt;}
.y254{bottom:902.973333pt;}
.yae{bottom:903.293333pt;}
.y86{bottom:903.933333pt;}
.y56{bottom:904.253333pt;}
.y1c{bottom:907.773333pt;}
.y1d1{bottom:909.373333pt;}
.y72{bottom:917.053333pt;}
.y39{bottom:917.373333pt;}
.yad{bottom:930.813333pt;}
.ye0{bottom:931.453333pt;}
.ycd{bottom:931.773333pt;}
.y1{bottom:936.253333pt;}
.y38{bottom:944.893333pt;}
.y55{bottom:945.213333pt;}
.y1d0{bottom:947.453333pt;}
.y1a{bottom:952.893333pt;}
.y20c{bottom:958.053333pt;}
.y71{bottom:958.373333pt;}
.ycc{bottom:972.453333pt;}
.y54{bottom:972.773333pt;}
.y1cf{bottom:975.333333pt;}
.y20b{bottom:985.573333pt;}
.y37{bottom:985.893333pt;}
.y70{bottom:986.213333pt;}
.y19{bottom:1008.293333pt;}
.y9a{bottom:1013.093333pt;}
.y36{bottom:1013.413333pt;}
.y6f{bottom:1013.733333pt;}
.h14{height:17.920000pt;}
.h7{height:17.952000pt;}
.hb{height:31.680000pt;}
.h9{height:31.712000pt;}
.hc{height:32.000000pt;}
.he{height:32.032000pt;}
.h19{height:41.952000pt;}
.h26{height:42.272000pt;}
.h6{height:44.648750pt;}
.h15{height:48.032000pt;}
.h21{height:48.352000pt;}
.hd{height:50.240000pt;}
.h29{height:51.232000pt;}
.h1d{height:52.736250pt;}
.h1a{height:52.762500pt;}
.h18{height:54.180000pt;}
.h2a{height:57.312000pt;}
.h11{height:57.375000pt;}
.h10{height:62.781250pt;}
.ha{height:62.812500pt;}
.hf{height:64.500000pt;}
.h24{height:65.938750pt;}
.h17{height:70.720000pt;}
.h1c{height:70.752000pt;}
.h16{height:74.820000pt;}
.h1e{height:76.160000pt;}
.h5{height:79.104375pt;}
.h4{height:79.143750pt;}
.h25{height:85.792000pt;}
.h20{height:86.112000pt;}
.h8{height:86.430000pt;}
.h30{height:93.152000pt;}
.h22{height:101.152000pt;}
.h2d{height:101.472000pt;}
.h2f{height:102.602500pt;}
.h28{height:109.504000pt;}
.h2c{height:112.992000pt;}
.h3{height:115.517500pt;}
.h34{height:119.392000pt;}
.h2{height:120.600000pt;}
.h23{height:128.032000pt;}
.h31{height:131.264000pt;}
.h32{height:152.986667pt;}
.h1b{height:156.866667pt;}
.h2e{height:164.866667pt;}
.h2b{height:171.906667pt;}
.h33{height:177.026667pt;}
.h27{height:199.426667pt;}
.h1f{height:211.293333pt;}
.h13{height:793.333333pt;}
.h12{height:793.600000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:7.360000pt;}
.w6{width:15.040000pt;}
.w32{width:64.960000pt;}
.w33{width:64.992000pt;}
.w22{width:74.272000pt;}
.w17{width:75.232000pt;}
.w2b{width:76.512000pt;}
.w3b{width:83.552000pt;}
.w5{width:85.152000pt;}
.w23{width:93.152000pt;}
.we{width:93.760000pt;}
.w2a{width:102.112000pt;}
.w21{width:102.400000pt;}
.w18{width:103.072000pt;}
.w2c{width:109.792000pt;}
.w30{width:111.392000pt;}
.w3a{width:112.032000pt;}
.w14{width:112.352000pt;}
.w16{width:112.672000pt;}
.w3d{width:120.992000pt;}
.w31{width:121.632000pt;}
.wd{width:122.272000pt;}
.wf{width:122.304000pt;}
.w19{width:124.192000pt;}
.w2e{width:130.944000pt;}
.wb{width:132.512000pt;}
.w29{width:139.866667pt;}
.w27{width:147.866667pt;}
.w1f{width:149.146667pt;}
.w20{width:149.786667pt;}
.w38{width:158.426667pt;}
.w15{width:159.386667pt;}
.w1c{width:160.026667pt;}
.w10{width:167.066667pt;}
.wc{width:168.346667pt;}
.w36{width:168.666667pt;}
.w26{width:168.706667pt;}
.w2f{width:184.666667pt;}
.w3c{width:185.626667pt;}
.w39{width:187.586667pt;}
.w1d{width:195.586667pt;}
.w24{width:213.826667pt;}
.w37{width:232.706667pt;}
.w1a{width:241.666667pt;}
.w12{width:259.613333pt;}
.w13{width:265.986667pt;}
.w2d{width:281.346667pt;}
.w34{width:402.973333pt;}
.w11{width:405.533333pt;}
.w3e{width:435.360000pt;}
.w4{width:490.746667pt;}
.w35{width:536.800000pt;}
.w1b{width:575.520000pt;}
.w25{width:621.920000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.wa{width:932.413333pt;}
.w28{width:940.093333pt;}
.w1e{width:941.053333pt;}
.w9{width:1122.559983pt;}
.w7{width:1122.560000pt;}
.w8{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x10{left:6.400000pt;}
.x52{left:7.360000pt;}
.x59{left:8.960000pt;}
.x6d{left:10.562667pt;}
.x5d{left:11.520000pt;}
.x26{left:12.480000pt;}
.x34{left:14.080000pt;}
.x29{left:17.280000pt;}
.x4c{left:18.880000pt;}
.x41{left:20.160000pt;}
.x20{left:22.400000pt;}
.x22{left:23.360000pt;}
.x31{left:24.640000pt;}
.x63{left:25.600000pt;}
.x36{left:26.880000pt;}
.x1e{left:29.440000pt;}
.x54{left:32.640000pt;}
.x3a{left:34.266667pt;}
.x24{left:36.826667pt;}
.x53{left:38.106667pt;}
.x2b{left:43.200000pt;}
.x28{left:44.160000pt;}
.x2a{left:46.720000pt;}
.x2c{left:48.000000pt;}
.x3b{left:48.960000pt;}
.x45{left:50.880000pt;}
.x1c{left:54.074667pt;}
.x46{left:55.040000pt;}
.x4a{left:57.594667pt;}
.x13{left:62.426667pt;}
.x44{left:67.546667pt;}
.x12{left:70.426667pt;}
.x39{left:81.306667pt;}
.x1a{left:87.712000pt;}
.x3e{left:88.672000pt;}
.x18{left:94.431983pt;}
.x51{left:101.466667pt;}
.xf{left:106.912000pt;}
.x8{left:113.311988pt;}
.x64{left:122.911988pt;}
.x69{left:127.424000pt;}
.x6{left:135.746655pt;}
.x14{left:137.346655pt;}
.x4{left:140.546655pt;}
.x15{left:161.346655pt;}
.x5c{left:162.280000pt;}
.x66{left:170.306655pt;}
.x5{left:179.586655pt;}
.xb{left:185.346655pt;}
.xa{left:192.386655pt;}
.x9{left:199.106655pt;}
.x30{left:200.706667pt;}
.x3{left:205.186655pt;}
.x16{left:209.373322pt;}
.x6f{left:217.373333pt;}
.x1d{left:220.866667pt;}
.x4b{left:229.826667pt;}
.x40{left:239.106667pt;}
.x71{left:242.333322pt;}
.x60{left:248.706667pt;}
.x6a{left:250.013333pt;}
.x72{left:255.453322pt;}
.x7{left:256.733322pt;}
.xc{left:289.053322pt;}
.x6c{left:302.853333pt;}
.xd{left:315.973322pt;}
.x70{left:320.133333pt;}
.x57{left:324.253333pt;}
.x32{left:360.733333pt;}
.x6e{left:373.573333pt;}
.x6b{left:374.853333pt;}
.x4d{left:379.293333pt;}
.x3f{left:383.461333pt;}
.x1f{left:389.893333pt;}
.x49{left:392.101333pt;}
.x2{left:396.959988pt;}
.x56{left:401.381333pt;}
.x68{left:406.559988pt;}
.x5f{left:416.128000pt;}
.x58{left:418.693333pt;}
.x1b{left:423.168000pt;}
.x61{left:437.573333pt;}
.x33{left:474.053333pt;}
.x4e{left:482.693333pt;}
.x5a{left:484.933333pt;}
.x2d{left:493.893333pt;}
.x21{left:512.800000pt;}
.x35{left:549.920000pt;}
.x62{left:551.200000pt;}
.x1{left:558.306655pt;}
.x2f{left:561.119983pt;}
.x42{left:570.080000pt;}
.x11{left:597.666667pt;}
.x23{left:607.200000pt;}
.x5b{left:626.746667pt;}
.x4f{left:636.346667pt;}
.x37{left:653.626667pt;}
.x3c{left:663.866667pt;}
.x17{left:665.533333pt;}
.xe{left:673.213333pt;}
.x65{left:675.133333pt;}
.x67{left:684.413322pt;}
.x47{left:711.866667pt;}
.x25{left:730.146667pt;}
.x50{left:747.426667pt;}
.x2e{left:754.146667pt;}
.x38{left:778.466667pt;}
.x5e{left:797.026667pt;}
.x43{left:815.906667pt;}
.x3d{left:824.546667pt;}
.x55{left:844.093333pt;}
.x27{left:853.053333pt;}
.x48{left:881.853333pt;}
.x19{left:1013.413333pt;}
}




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