
    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_0e385952526363050c4cb59b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_5a832e78b8f3e24522dcb80f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_478ae09c0e37e6db8893ce98.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fafcec2a01ed4b4ee6d3a99b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.691406;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_0b3c190ee02572f39e0c0c7a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_eb7b7f54ff9cadc2286e8953.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.706543;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_19dc3541ce8aebe3389115b9.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f3a5dac80e118b65268ffcd7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3925c7db18f56d3b3457c445.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ec7539702f4cb7a588aee3bc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.730469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_23468c6375b47e08b4012d93.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ecb52ddfe4c841c41fd4add7.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_c9d8ef777a97a9de221bb1cb.woff2')format("woff");}.fff{font-family:fff;line-height:0.926270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_feecb06296decffc2214ae01.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_8525a7a5c2d8b718673b134d.woff2')format("woff");}.ff11{font-family:ff11;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;}
.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);}
.v1{vertical-align:-25.200000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:27.360000px;}
.v3{vertical-align:48.240000px;}
.v2{vertical-align:54.720000px;}
.v4{vertical-align:102.960000px;}
.ls1d{letter-spacing:-0.792000px;}
.lsb{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.017280px;}
.lsa{letter-spacing:-0.008640px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.008640px;}
.ls4{letter-spacing:0.012960px;}
.ls6{letter-spacing:0.017280px;}
.ls5{letter-spacing:0.025920px;}
.ls19{letter-spacing:0.034560px;}
.ls1b{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.149760px;}
.ls7{letter-spacing:0.150000px;}
.ls8{letter-spacing:0.174240px;}
.ls2{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.720000px;}
.ls3{letter-spacing:5.940000px;}
.ls15{letter-spacing:19.512000px;}
.ls14{letter-spacing:19.656000px;}
.ls13{letter-spacing:20.232000px;}
.ls1a{letter-spacing:54.864000px;}
.lse{letter-spacing:77.904000px;}
.ls12{letter-spacing:792.552000px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.ws5{word-spacing:-19.457280px;}
.wsf{word-spacing:-19.448640px;}
.wse{word-spacing:-19.440000px;}
.ws7{word-spacing:-19.431360px;}
.ws6{word-spacing:-19.422720px;}
.wsa{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.wsd{word-spacing:-17.568000px;}
.ws11{word-spacing:-17.208000px;}
.ws4{word-spacing:-15.840000px;}
.ws2{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.580000px;}
.ws13{word-spacing:-12.780000px;}
.ws12{word-spacing:-12.420000px;}
.ws3{word-spacing:-12.060000px;}
.ws0{word-spacing:0.000000px;}
._28{margin-left:-368.424000px;}
._29{margin-left:-331.348320px;}
._25{margin-left:-13.716000px;}
._21{margin-left:-9.960000px;}
._1e{margin-left:-5.004720px;}
._9{margin-left:-3.518640px;}
._7{margin-left:-2.380320px;}
._4{margin-left:-1.003680px;}
._0{width:1.015920px;}
._1{width:2.551200px;}
._6{width:4.464000px;}
._8{width:5.904000px;}
._f{width:7.523520px;}
._a{width:8.712000px;}
._c{width:9.776160px;}
._b{width:10.800000px;}
._10{width:12.144000px;}
._18{width:13.152000px;}
._1c{width:14.363760px;}
._17{width:15.696000px;}
._16{width:16.987680px;}
._1b{width:19.216080px;}
._11{width:20.808000px;}
._24{width:21.811680px;}
._e{width:22.824000px;}
._1a{width:24.624000px;}
._1d{width:25.771680px;}
._1f{width:27.715680px;}
._d{width:28.944000px;}
._12{width:31.896000px;}
._13{width:33.768000px;}
._19{width:34.776000px;}
._2e{width:35.992080px;}
._15{width:37.932000px;}
._14{width:39.024000px;}
._2c{width:44.292000px;}
._31{width:51.984000px;}
._32{width:53.039520px;}
._2f{width:54.288000px;}
._30{width:55.440000px;}
._27{width:66.976800px;}
._22{width:68.556000px;}
._26{width:73.552800px;}
._2b{width:92.460000px;}
._2a{width:110.375760px;}
._2d{width:138.144000px;}
._3{width:157.870560px;}
._23{width:198.000000px;}
._2{width:532.440000px;}
._5{width:761.693280px;}
._20{width:2380.056000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc6{color:rgb(5,5,5);}
.fc5{color:rgb(5,16,62);}
.fc4{color:rgb(32,33,36);}
.fc3{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:5.760000px;}
.fsc{font-size:18.000000px;}
.fsf{font-size:38.880000px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:48.240000px;}
.fs7{font-size:51.120000px;}
.fsd{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fse{font-size:77.760000px;}
.fs9{font-size:84.240000px;}
.fs2{font-size:102.000000px;}
.fsb{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:0.171000px;}
.y28{bottom:3.051000px;}
.y29{bottom:3.231000px;}
.y1d4{bottom:3.885000px;}
.y21d{bottom:4.305000px;}
.y1d8{bottom:4.395000px;}
.y162{bottom:4.485000px;}
.y158{bottom:4.500000px;}
.y15e{bottom:4.515000px;}
.y225{bottom:5.205000px;}
.y2b{bottom:6.651000px;}
.y2d0{bottom:11.145000px;}
.y2c8{bottom:12.255000px;}
.y1cd{bottom:13.965000px;}
.y1fe{bottom:14.415000px;}
.y159{bottom:14.760000px;}
.y1f6{bottom:15.300000px;}
.y12f{bottom:18.735000px;}
.y12a{bottom:19.275000px;}
.y161{bottom:25.185000px;}
.y157{bottom:25.200000px;}
.y224{bottom:25.725000px;}
.y21c{bottom:26.445000px;}
.y2c7{bottom:26.835000px;}
.y127{bottom:27.735000px;}
.y2c9{bottom:29.520000px;}
.y125{bottom:32.220000px;}
.y1f9{bottom:33.135000px;}
.y2cf{bottom:34.770000px;}
.y1cc{bottom:35.205000px;}
.y6{bottom:35.925007px;}
.y167{bottom:36.000000px;}
.y121{bottom:36.540000px;}
.y123{bottom:37.440000px;}
.y12c{bottom:37.455000px;}
.y56{bottom:39.276000px;}
.y2c6{bottom:41.595000px;}
.y1d2{bottom:45.285000px;}
.y1fd{bottom:45.375000px;}
.y164{bottom:45.900000px;}
.y15f{bottom:45.945000px;}
.y1f5{bottom:46.260000px;}
.y15b{bottom:46.305000px;}
.y1d6{bottom:46.335000px;}
.y21b{bottom:47.145000px;}
.y223{bottom:47.865000px;}
.y12e{bottom:50.235000px;}
.y129{bottom:50.955000px;}
.y2c5{bottom:56.175000px;}
.y2ce{bottom:58.530000px;}
.y2d{bottom:58.536000px;}
.y1f8{bottom:64.815000px;}
.y5{bottom:66.525004px;}
.y166{bottom:67.320000px;}
.y222{bottom:68.385000px;}
.y21a{bottom:69.105000px;}
.y2e{bottom:70.056000px;}
.y2cd{bottom:73.110000px;}
.y2a{bottom:74.025000px;}
.y1fc{bottom:76.515000px;}
.y1f4{bottom:77.220000px;}
.y2c3{bottom:79.920000px;}
.y2cc{bottom:87.870000px;}
.y221{bottom:90.525000px;}
.y219{bottom:91.245000px;}
.y27{bottom:95.265000px;}
.y4{bottom:97.125005px;}
.y1fb{bottom:107.475000px;}
.y220{bottom:111.090000px;}
.y2cb{bottom:111.450000px;}
.y218{bottom:111.810000px;}
.y55{bottom:131.616000px;}
.y1ca{bottom:132.336000px;}
.yfa{bottom:132.516000px;}
.y21f{bottom:133.050000px;}
.y217{bottom:133.770000px;}
.y155{bottom:134.856000px;}
.y54{bottom:136.836000px;}
.yaf{bottom:138.816000px;}
.y21{bottom:139.264499px;}
.y2bf{bottom:139.356000px;}
.y1f2{bottom:140.616000px;}
.yc3{bottom:142.056000px;}
.y82{bottom:142.596000px;}
.y25c{bottom:143.496000px;}
.y23c{bottom:145.296000px;}
.y53{bottom:150.510000px;}
.y11f{bottom:152.670000px;}
.y1c9{bottom:153.030000px;}
.yd9{bottom:153.210000px;}
.y19d{bottom:153.390000px;}
.y21e{bottom:155.190000px;}
.y154{bottom:155.550000px;}
.y216{bottom:155.910000px;}
.ye7{bottom:158.790000px;}
.yae{bottom:159.510000px;}
.y1f1{bottom:161.310000px;}
.y81{bottom:163.290000px;}
.y1b2{bottom:164.010000px;}
.y25b{bottom:164.190000px;}
.y28f{bottom:165.810000px;}
.y23b{bottom:165.990000px;}
.y104{bottom:167.610000px;}
.y1c8{bottom:173.730000px;}
.yd8{bottom:173.910000px;}
.y19c{bottom:174.090000px;}
.y153{bottom:176.250000px;}
.y179{bottom:176.430000px;}
.y2be{bottom:177.510000px;}
.ye6{bottom:179.310000px;}
.yad{bottom:180.210000px;}
.y1f0{bottom:182.010000px;}
.yc2{bottom:182.190000px;}
.y278{bottom:183.810000px;}
.y1b1{bottom:184.710000px;}
.y215{bottom:184.725000px;}
.y25a{bottom:184.890000px;}
.y28e{bottom:186.510000px;}
.y23a{bottom:186.690000px;}
.y2a0{bottom:189.210000px;}
.y11e{bottom:192.630000px;}
.y1c7{bottom:194.430000px;}
.yd7{bottom:194.610000px;}
.y19b{bottom:194.790000px;}
.y18{bottom:196.933500px;}
.y152{bottom:196.950000px;}
.ye5{bottom:200.010000px;}
.yac{bottom:200.910000px;}
.y80{bottom:201.990000px;}
.y178{bottom:202.170000px;}
.y1ef{bottom:202.530000px;}
.yc1{bottom:202.890000px;}
.y277{bottom:204.510000px;}
.y257{bottom:204.690000px;}
.y1b0{bottom:205.410000px;}
.y2b2{bottom:207.210000px;}
.y239{bottom:207.390000px;}
.y103{bottom:207.570000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y29f{bottom:209.910000px;}
.y1c6{bottom:215.130000px;}
.yd6{bottom:215.310000px;}
.y2bd{bottom:215.670000px;}
.y151{bottom:217.650000px;}
.ye4{bottom:220.710000px;}
.yab{bottom:221.610000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y7f{bottom:222.690000px;}
.y259{bottom:223.410000px;}
.yc0{bottom:223.590000px;}
.y28d{bottom:225.210000px;}
.y256{bottom:225.390000px;}
.y1af{bottom:226.110000px;}
.y238{bottom:228.090000px;}
.y52{bottom:230.430000px;}
.y11d{bottom:232.770000px;}
.yf9{bottom:233.310000px;}
.y19a{bottom:233.850000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y177{bottom:235.650000px;}
.y1c5{bottom:235.830000px;}
.yd5{bottom:236.010000px;}
.y150{bottom:238.170000px;}
.y1ee{bottom:241.230000px;}
.ye3{bottom:241.410000px;}
.yaa{bottom:242.310000px;}
.y276{bottom:243.210000px;}
.y7e{bottom:243.390000px;}
.ybf{bottom:244.290000px;}
.y28c{bottom:245.910000px;}
.y255{bottom:246.090000px;}
.y1ae{bottom:246.810000px;}
.y102{bottom:247.710000px;}
.y29e{bottom:248.610000px;}
.y252{bottom:248.790000px;}
.y2bc{bottom:253.830000px;}
.yf8{bottom:254.010000px;}
.y1c4{bottom:256.530000px;}
.yd4{bottom:256.710000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y176{bottom:261.390000px;}
.y1ed{bottom:261.930000px;}
.ye2{bottom:262.110000px;}
.ya9{bottom:263.010000px;}
.y275{bottom:263.910000px;}
.y7d{bottom:264.090000px;}
.ybe{bottom:264.990000px;}
.y2b1{bottom:266.610000px;}
.y237{bottom:266.790000px;}
.y1ad{bottom:267.510000px;}
.y51{bottom:269.130000px;}
.y29d{bottom:269.310000px;}
.y251{bottom:269.490000px;}
.y11c{bottom:271.290000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y199{bottom:273.990000px;}
.yf7{bottom:274.710000px;}
.y14f{bottom:276.915000px;}
.y1c3{bottom:277.275000px;}
.ye1{bottom:282.855000px;}
.ya8{bottom:283.755000px;}
.y274{bottom:284.655000px;}
.y7c{bottom:284.835000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.ybd{bottom:285.735000px;}
.y2b8{bottom:287.355000px;}
.y236{bottom:287.535000px;}
.y101{bottom:287.895000px;}
.y1ac{bottom:288.255000px;}
.y50{bottom:289.695000px;}
.y29c{bottom:290.055000px;}
.y250{bottom:290.235000px;}
.y2bb{bottom:292.035000px;}
.y11b{bottom:292.215000px;}
.y198{bottom:294.735000px;}
.yd3{bottom:295.455000px;}
.y14e{bottom:297.615000px;}
.y1c2{bottom:297.975000px;}
.y1ec{bottom:300.675000px;}
.ye0{bottom:303.555000px;}
.ya7{bottom:304.455000px;}
.y273{bottom:305.355000px;}
.y7b{bottom:305.535000px;}
.ybc{bottom:306.435000px;}
.y235{bottom:308.235000px;}
.y100{bottom:308.595000px;}
.y1ab{bottom:308.955000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y24f{bottom:310.935000px;}
.y1ff{bottom:312.540000px;}
.y1fa{bottom:314.700000px;}
.y197{bottom:315.435000px;}
.yd2{bottom:316.155000px;}
.y175{bottom:316.335000px;}
.y1c1{bottom:318.675000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.ydf{bottom:324.255000px;}
.ya6{bottom:325.155000px;}
.y28b{bottom:326.055000px;}
.y7a{bottom:326.235000px;}
.ybb{bottom:327.135000px;}
.y29b{bottom:328.755000px;}
.y234{bottom:328.935000px;}
.yff{bottom:329.115000px;}
.y1aa{bottom:329.655000px;}
.y4f{bottom:330.195000px;}
.y11a{bottom:330.555000px;}
.y24e{bottom:331.635000px;}
.y196{bottom:336.135000px;}
.y14d{bottom:336.315000px;}
.y1eb{bottom:336.495000px;}
.yf6{bottom:336.855000px;}
.y174{bottom:337.035000px;}
.y272{bottom:344.055000px;}
.yde{bottom:344.955000px;}
.ya5{bottom:345.855000px;}
.y2b7{bottom:346.755000px;}
.y79{bottom:346.935000px;}
.yba{bottom:347.835000px;}
.yf{bottom:348.133500px;}
.y29a{bottom:349.455000px;}
.y233{bottom:349.635000px;}
.y1a9{bottom:350.355000px;}
.y4e{bottom:350.895000px;}
.y1f7{bottom:353.400000px;}
.yd1{bottom:354.675000px;}
.y195{bottom:356.835000px;}
.y1c0{bottom:357.375000px;}
.yf5{bottom:357.555000px;}
.y214{bottom:358.995000px;}
.y271{bottom:364.755000px;}
.ya4{bottom:366.555000px;}
.y2b6{bottom:367.455000px;}
.y78{bottom:367.635000px;}
.yfe{bottom:367.815000px;}
.y2ba{bottom:368.355000px;}
.yb9{bottom:368.535000px;}
.y119{bottom:369.255000px;}
.y24d{bottom:369.975000px;}
.y232{bottom:370.335000px;}
.y14c{bottom:371.055000px;}
.y4d{bottom:371.595000px;}
.y12d{bottom:372.120000px;}
.y128{bottom:372.480000px;}
.y173{bottom:372.495000px;}
.y12b{bottom:374.820000px;}
.y1ea{bottom:375.195000px;}
.yd0{bottom:375.555000px;}
.y194{bottom:377.535000px;}
.yf4{bottom:378.075000px;}
.y14b{bottom:383.115000px;}
.ydd{bottom:383.475000px;}
.y270{bottom:385.455000px;}
.ye{bottom:386.785499px;}
.ya3{bottom:387.255000px;}
.y299{bottom:388.155000px;}
.y77{bottom:388.335000px;}
.yfd{bottom:388.515000px;}
.yb8{bottom:389.235000px;}
.y231{bottom:391.035000px;}
.y1a8{bottom:391.755000px;}
.y4c{bottom:392.295000px;}
.y172{bottom:393.375000px;}
.y193{bottom:398.235000px;}
.y213{bottom:399.855000px;}
.y118{bottom:403.095000px;}
.y2b9{bottom:403.275000px;}
.y2ac{bottom:403.455000px;}
.ydc{bottom:404.355000px;}
.y28a{bottom:406.155000px;}
.ya2{bottom:407.955000px;}
.yd{bottom:408.044999px;}
.y298{bottom:408.855000px;}
.y76{bottom:409.035000px;}
.ycf{bottom:409.755000px;}
.yb7{bottom:409.935000px;}
.y24c{bottom:410.655000px;}
.y230{bottom:411.735000px;}
.y4b{bottom:412.995000px;}
.y1e9{bottom:413.715000px;}
.y171{bottom:414.075000px;}
.y14a{bottom:415.695000px;}
.yf3{bottom:416.775000px;}
.y1bf{bottom:417.855000px;}
.y192{bottom:418.935000px;}
.yfc{bottom:422.715000px;}
.y26f{bottom:424.155000px;}
.y2b0{bottom:426.855000px;}
.y297{bottom:429.555000px;}
.y75{bottom:429.735000px;}
.y1a7{bottom:430.455000px;}
.yb6{bottom:430.635000px;}
.y24b{bottom:431.355000px;}
.y22f{bottom:432.435000px;}
.y4a{bottom:433.695000px;}
.y170{bottom:434.775000px;}
.y149{bottom:435.135000px;}
.y117{bottom:437.115000px;}
.yf2{bottom:437.655000px;}
.ydb{bottom:438.555000px;}
.y1be{bottom:438.735000px;}
.y191{bottom:439.635000px;}
.y26e{bottom:444.855000px;}
.ya1{bottom:446.655000px;}
.y1e8{bottom:449.355000px;}
.y74{bottom:450.435000px;}
.y1a6{bottom:451.155000px;}
.yb5{bottom:451.335000px;}
.y24a{bottom:452.055000px;}
.y22e{bottom:453.135000px;}
.y49{bottom:454.395000px;}
.y16f{bottom:455.475000px;}
.y148{bottom:455.835000px;}
.y212{bottom:459.435000px;}
.y190{bottom:460.335000px;}
.y1bd{bottom:462.495000px;}
.y289{bottom:465.555000px;}
.ya0{bottom:467.355000px;}
.y296{bottom:468.255000px;}
.yf1{bottom:468.795000px;}
.y73{bottom:471.135000px;}
.y1a5{bottom:471.855000px;}
.yb4{bottom:472.035000px;}
.y249{bottom:472.755000px;}
.y22d{bottom:473.835000px;}
.y48{bottom:475.095000px;}
.y16e{bottom:476.175000px;}
.y147{bottom:476.535000px;}
.y1bc{bottom:478.875000px;}
.y211{bottom:480.135000px;}
.y18f{bottom:481.035000px;}
.y26d{bottom:483.555000px;}
.yc{bottom:484.864502px;}
.y1e7{bottom:485.175000px;}
.y288{bottom:486.255000px;}
.y9f{bottom:488.055000px;}
.y295{bottom:488.955000px;}
.y254{bottom:491.835000px;}
.yb3{bottom:492.735000px;}
.y248{bottom:493.455000px;}
.y47{bottom:495.795000px;}
.y146{bottom:497.235000px;}
.y1d5{bottom:500.040000px;}
.y210{bottom:500.835000px;}
.y18e{bottom:501.735000px;}
.yb{bottom:502.864502px;}
.y26c{bottom:504.255000px;}
.y116{bottom:505.155000px;}
.y1e6{bottom:506.055000px;}
.y287{bottom:506.955000px;}
.y9e{bottom:508.755000px;}
.y294{bottom:509.655000px;}
.y72{bottom:509.835000px;}
.y1a4{bottom:510.375000px;}
.y22c{bottom:512.535000px;}
.yb2{bottom:513.435000px;}
.y247{bottom:514.155000px;}
.y126{bottom:514.500000px;}
.y16d{bottom:515.055000px;}
.y46{bottom:516.495000px;}
.y1d0{bottom:517.935000px;}
.ya{bottom:520.864502px;}
.y20f{bottom:521.535000px;}
.y26b{bottom:524.955000px;}
.y1d7{bottom:525.135000px;}
.y2b5{bottom:527.655000px;}
.y9d{bottom:529.455000px;}
.y71{bottom:530.535000px;}
.y22b{bottom:533.235000px;}
.y246{bottom:534.855000px;}
.y145{bottom:536.295000px;}
.y45{bottom:537.195000px;}
.y9{bottom:538.864499px;}
.y1cf{bottom:539.175000px;}
.y115{bottom:539.355000px;}
.y18d{bottom:540.435000px;}
.y1e5{bottom:541.515000px;}
.y20e{bottom:542.235000px;}
.y2ab{bottom:542.955000px;}
.y286{bottom:545.655000px;}
.y293{bottom:548.355000px;}
.y9c{bottom:550.155000px;}
.y1a3{bottom:550.515000px;}
.y253{bottom:550.875000px;}
.y70{bottom:551.235000px;}
.yb1{bottom:551.955000px;}
.y22a{bottom:553.935000px;}
.y16c{bottom:555.195000px;}
.y245{bottom:555.555000px;}
.y8{bottom:556.864499px;}
.y44{bottom:557.895000px;}
.y18c{bottom:561.165000px;}
.y26a{bottom:563.685000px;}
.y285{bottom:566.385000px;}
.y292{bottom:569.085000px;}
.y9b{bottom:570.885000px;}
.y6f{bottom:571.965000px;}
.y229{bottom:574.665000px;}
.y114{bottom:574.845000px;}
.y16b{bottom:575.925000px;}
.y144{bottom:576.465000px;}
.y1e4{bottom:577.185000px;}
.y43{bottom:578.625000px;}
.y20d{bottom:581.145000px;}
.y2aa{bottom:581.685000px;}
.y18b{bottom:581.865000px;}
.y269{bottom:584.385000px;}
.y284{bottom:587.085000px;}
.y1a2{bottom:590.505000px;}
.y9a{bottom:591.585000px;}
.y6e{bottom:592.665000px;}
.y244{bottom:594.285000px;}
.y228{bottom:595.365000px;}
.y143{bottom:597.165000px;}
.y42{bottom:599.325000px;}
.y2a9{bottom:602.385000px;}
.y18a{bottom:602.565000px;}
.y2af{bottom:605.085000px;}
.y283{bottom:607.785000px;}
.y113{bottom:608.865000px;}
.y99{bottom:612.285000px;}
.y1e3{bottom:613.005000px;}
.y6d{bottom:613.365000px;}
.y16a{bottom:614.985000px;}
.y227{bottom:615.885000px;}
.y142{bottom:617.865000px;}
.y41{bottom:620.025000px;}
.y20c{bottom:621.285000px;}
.y1d9{bottom:622.725000px;}
.y268{bottom:623.085000px;}
.y189{bottom:623.265000px;}
.y2ae{bottom:625.785000px;}
.y291{bottom:628.485000px;}
.y1f3{bottom:628.665000px;}
.y1a1{bottom:630.645000px;}
.y98{bottom:632.985000px;}
.y6c{bottom:633.885000px;}
.y243{bottom:635.685000px;}
.y141{bottom:638.565000px;}
.y40{bottom:640.725000px;}
.y2a8{bottom:641.085000px;}
.y20b{bottom:641.985000px;}
.y112{bottom:642.705000px;}
.y267{bottom:643.785000px;}
.y188{bottom:643.965000px;}
.y282{bottom:646.485000px;}
.y1e2{bottom:648.645000px;}
.y97{bottom:653.685000px;}
.y6b{bottom:654.585000px;}
.y169{bottom:654.945000px;}
.y242{bottom:656.385000px;}
.y122{bottom:658.365000px;}
.y140{bottom:659.265000px;}
.y124{bottom:660.885000px;}
.y2a7{bottom:661.785000px;}
.y266{bottom:664.485000px;}
.y281{bottom:667.185000px;}
.y120{bottom:667.365000px;}
.y1a0{bottom:670.425000px;}
.y165{bottom:672.045000px;}
.y96{bottom:674.385000px;}
.y6a{bottom:675.285000px;}
.y111{bottom:676.725000px;}
.y241{bottom:677.085000px;}
.y3f{bottom:679.245000px;}
.y13f{bottom:679.965000px;}
.y20a{bottom:680.685000px;}
.y2a6{bottom:682.485000px;}
.y187{bottom:682.665000px;}
.y1e1{bottom:684.285000px;}
.y265{bottom:685.185000px;}
.y280{bottom:687.885000px;}
.y19f{bottom:691.305000px;}
.y95{bottom:695.085000px;}
.y1d1{bottom:695.520000px;}
.y1cb{bottom:695.700000px;}
.y69{bottom:695.985000px;}
.y240{bottom:697.785000px;}
.y13e{bottom:700.665000px;}
.y186{bottom:703.185000px;}
.y1e0{bottom:704.805000px;}
.y2ad{bottom:705.885000px;}
.y2b4{bottom:708.585000px;}
.y1ce{bottom:709.665000px;}
.y110{bottom:710.745000px;}
.y168{bottom:714.165000px;}
.y94{bottom:715.785000px;}
.y68{bottom:716.685000px;}
.y23f{bottom:718.485000px;}
.y3e{bottom:719.385000px;}
.y1d3{bottom:720.105000px;}
.y2a5{bottom:721.185000px;}
.y13d{bottom:721.365000px;}
.y264{bottom:723.885000px;}
.y19e{bottom:725.505000px;}
.y7{bottom:726.298500px;}
.y27f{bottom:726.585000px;}
.y93{bottom:736.485000px;}
.y67{bottom:737.385000px;}
.y1df{bottom:739.005000px;}
.y23e{bottom:739.185000px;}
.y209{bottom:740.085000px;}
.y2a4{bottom:741.885000px;}
.y13c{bottom:742.065000px;}
.y3d{bottom:743.325000px;}
.y10f{bottom:744.585000px;}
.y27e{bottom:747.285000px;}
.y3{bottom:752.599495px;}
.y163{bottom:756.285000px;}
.y3c{bottom:757.185000px;}
.y66{bottom:758.085000px;}
.y1de{bottom:759.885000px;}
.y2a3{bottom:762.585000px;}
.y10e{bottom:763.665000px;}
.y185{bottom:763.845000px;}
.y263{bottom:765.285000px;}
.y2b3{bottom:767.985000px;}
.y3b{bottom:770.865000px;}
.y2d1{bottom:776.085000px;}
.y92{bottom:777.885000px;}
.y65{bottom:778.785000px;}
.y208{bottom:779.145000px;}
.y1dd{bottom:780.585000px;}
.y13b{bottom:780.765000px;}
.y10d{bottom:783.105000px;}
.y2a2{bottom:783.285000px;}
.yce{bottom:784.005000px;}
.y3a{bottom:784.725000px;}
.y27d{bottom:785.985000px;}
.y226{bottom:798.585000px;}
.y39{bottom:799.125000px;}
.y64{bottom:799.485000px;}
.y1dc{bottom:801.285000px;}
.y13a{bottom:801.465000px;}
.y10c{bottom:803.805000px;}
.y184{bottom:803.985000px;}
.ycd{bottom:804.525000px;}
.y27c{bottom:806.685000px;}
.y1bb{bottom:806.865000px;}
.y2ca{bottom:812.460000px;}
.y91{bottom:816.585000px;}
.y38{bottom:817.125000px;}
.y15a{bottom:819.285000px;}
.y160{bottom:819.300000px;}
.y63{bottom:820.185000px;}
.y1db{bottom:821.985000px;}
.y139{bottom:822.165000px;}
.y183{bottom:824.505000px;}
.y262{bottom:824.685000px;}
.y1ba{bottom:827.385000px;}
.y36{bottom:836.745000px;}
.y90{bottom:837.285000px;}
.y207{bottom:839.985000px;}
.y62{bottom:840.885000px;}
.y10b{bottom:842.685000px;}
.y138{bottom:842.865000px;}
.y37{bottom:844.305000px;}
.ycc{bottom:844.665000px;}
.y261{bottom:845.430000px;}
.y290{bottom:848.130000px;}
.y8f{bottom:858.030000px;}
.yf0{bottom:858.930000px;}
.y206{bottom:860.730000px;}
.y61{bottom:861.630000px;}
.y35{bottom:862.530000px;}
.y2a1{bottom:863.430000px;}
.y137{bottom:863.610000px;}
.y182{bottom:864.690000px;}
.ycb{bottom:865.410000px;}
.y27b{bottom:866.130000px;}
.y1b9{bottom:867.570000px;}
.y8e{bottom:878.730000px;}
.y2{bottom:879.369000px;}
.yef{bottom:879.630000px;}
.y1da{bottom:881.430000px;}
.y15d{bottom:882.135000px;}
.y15c{bottom:882.150000px;}
.y60{bottom:882.330000px;}
.y34{bottom:882.870000px;}
.y260{bottom:884.130000px;}
.y136{bottom:884.310000px;}
.y181{bottom:885.210000px;}
.y27a{bottom:886.830000px;}
.y1b8{bottom:888.090000px;}
.y8d{bottom:899.430000px;}
.yee{bottom:900.330000px;}
.y205{bottom:902.130000px;}
.y5f{bottom:903.030000px;}
.y10a{bottom:903.570000px;}
.y25f{bottom:904.830000px;}
.y135{bottom:905.010000px;}
.yca{bottom:905.550000px;}
.y279{bottom:907.530000px;}
.y33{bottom:911.310000px;}
.y8c{bottom:920.130000px;}
.yed{bottom:921.030000px;}
.y204{bottom:922.830000px;}
.y5e{bottom:923.730000px;}
.y109{bottom:924.270000px;}
.y180{bottom:925.350000px;}
.y25e{bottom:925.530000px;}
.y134{bottom:925.710000px;}
.yc9{bottom:926.070000px;}
.y1b7{bottom:928.230000px;}
.y8b{bottom:940.830000px;}
.y258{bottom:941.550000px;}
.yec{bottom:941.730000px;}
.yfb{bottom:942.090000px;}
.y203{bottom:943.530000px;}
.y5d{bottom:944.430000px;}
.y108{bottom:944.970000px;}
.y2c4{bottom:945.135000px;}
.y2c2{bottom:945.150000px;}
.y32{bottom:945.870000px;}
.y17f{bottom:946.050000px;}
.y25d{bottom:946.230000px;}
.y133{bottom:946.410000px;}
.y8a{bottom:961.530000px;}
.yeb{bottom:962.430000px;}
.y202{bottom:964.230000px;}
.y5c{bottom:965.130000px;}
.y107{bottom:965.670000px;}
.yc8{bottom:966.210000px;}
.y1{bottom:966.726000px;}
.y1b6{bottom:966.930000px;}
.y132{bottom:967.110000px;}
.y31{bottom:980.250000px;}
.y89{bottom:982.230000px;}
.yea{bottom:983.130000px;}
.y17e{bottom:984.570000px;}
.y201{bottom:984.930000px;}
.y156{bottom:985.650000px;}
.y5b{bottom:985.830000px;}
.y1b5{bottom:987.630000px;}
.y88{bottom:1002.930000px;}
.yb0{bottom:1003.650000px;}
.ye9{bottom:1003.830000px;}
.y106{bottom:1004.370000px;}
.yc7{bottom:1005.090000px;}
.y17d{bottom:1005.450000px;}
.y200{bottom:1005.630000px;}
.y131{bottom:1005.810000px;}
.y5a{bottom:1006.530000px;}
.y1b4{bottom:1008.330000px;}
.y87{bottom:1023.630000px;}
.ye8{bottom:1024.530000px;}
.y105{bottom:1025.070000px;}
.y23d{bottom:1026.330000px;}
.y130{bottom:1026.510000px;}
.y59{bottom:1027.230000px;}
.y30{bottom:1032.810000px;}
.y17c{bottom:1044.150000px;}
.y86{bottom:1044.330000px;}
.yc6{bottom:1045.230000px;}
.yda{bottom:1045.590000px;}
.y1b3{bottom:1047.030000px;}
.y58{bottom:1047.930000px;}
.y85{bottom:1065.030000px;}
.yc5{bottom:1065.930000px;}
.y2c1{bottom:1068.810000px;}
.y17b{bottom:1082.310000px;}
.y2f{bottom:1085.550000px;}
.y84{bottom:1085.730000px;}
.y57{bottom:1086.450000px;}
.yc4{bottom:1104.990000px;}
.y83{bottom:1106.430000px;}
.y2c0{bottom:1106.970000px;}
.y17a{bottom:1108.050000px;}
.y26{bottom:1126.050000px;}
.y25{bottom:1143.720000px;}
.y24{bottom:1160.820000px;}
.y23{bottom:1178.100000px;}
.y22{bottom:1195.380000px;}
.hb{height:14.571000px;}
.h15{height:17.666016px;}
.h3e{height:20.685000px;}
.he{height:21.231000px;}
.h1d{height:27.945000px;}
.h7{height:32.130000px;}
.hd{height:32.905898px;}
.h18{height:37.494141px;}
.h2c{height:41.385000px;}
.h2e{height:41.391000px;}
.h35{height:41.395500px;}
.h2f{height:41.400000px;}
.h12{height:41.756133px;}
.h10{height:45.184219px;}
.h6{height:45.900000px;}
.hf{height:47.344922px;}
.h3{height:48.195000px;}
.h20{height:50.027344px;}
.hc{height:50.171484px;}
.h27{height:50.625000px;}
.h36{height:50.800781px;}
.h1f{height:53.640000px;}
.h2{height:55.080000px;}
.h1e{height:58.621992px;}
.h9{height:58.651172px;}
.ha{height:60.226875px;}
.h38{height:60.480000px;}
.h24{height:61.020000px;}
.h39{height:61.560000px;}
.h32{height:62.095500px;}
.h31{height:62.100000px;}
.h30{height:62.122500px;}
.h1a{height:65.010937px;}
.h3a{height:65.520000px;}
.h26{height:67.320000px;}
.h25{height:69.840000px;}
.h40{height:70.628906px;}
.h1c{height:70.664062px;}
.h29{height:71.280000px;}
.h28{height:72.540000px;}
.h23{height:72.562500px;}
.h22{height:74.004654px;}
.h41{height:74.704922px;}
.h21{height:76.279219px;}
.h19{height:76.317188px;}
.h5{height:78.030000px;}
.h1b{height:78.367500px;}
.h13{height:82.635820px;}
.h16{height:82.676953px;}
.h34{height:83.520000px;}
.h11{height:84.240000px;}
.h3c{height:85.140000px;}
.h3b{height:93.600000px;}
.h44{height:100.425000px;}
.h42{height:100.431000px;}
.h43{height:100.440000px;}
.h2d{height:104.242500px;}
.h2a{height:105.520781px;}
.h2b{height:118.904063px;}
.h4{height:119.055004px;}
.h14{height:121.179375px;}
.h3d{height:123.840000px;}
.h46{height:131.961000px;}
.h45{height:131.962500px;}
.h33{height:146.340000px;}
.h37{height:153.760781px;}
.h3f{height:172.095000px;}
.h0{height:1262.833500px;}
.h17{height:1262.864960px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:63.885000px;}
.wa{width:92.340000px;}
.wc{width:93.600000px;}
.w6{width:117.540000px;}
.w8{width:125.460000px;}
.wd{width:132.345000px;}
.w20{width:137.010000px;}
.w10{width:146.182500px;}
.wf{width:161.850000px;}
.w9{width:168.165000px;}
.w12{width:168.675000px;}
.we{width:175.905000px;}
.w15{width:183.960000px;}
.w16{width:189.540000px;}
.w14{width:190.800000px;}
.w18{width:271.875000px;}
.wb{width:287.670000px;}
.w19{width:307.335000px;}
.w17{width:312.015000px;}
.w11{width:320.070000px;}
.w13{width:320.085000px;}
.w1b{width:321.900000px;}
.w1e{width:321.915000px;}
.w1c{width:346.560000px;}
.w1a{width:346.566000px;}
.w1d{width:346.575000px;}
.w4{width:488.970000px;}
.w1f{width:509.850000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w7{width:892.957500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:2.325000px;}
.x65{left:7.731000px;}
.x40{left:9.180000px;}
.x5c{left:13.500000px;}
.x29{left:15.120000px;}
.x2c{left:16.740000px;}
.x5b{left:18.540000px;}
.x27{left:25.596000px;}
.x2d{left:26.676000px;}
.x3d{left:27.900000px;}
.x2e{left:30.600000px;}
.x9{left:31.860000px;}
.x30{left:35.625000px;}
.x38{left:38.190000px;}
.x62{left:39.975000px;}
.xc{left:42.300000px;}
.x60{left:44.280000px;}
.x39{left:45.525000px;}
.x1b{left:50.399998px;}
.x58{left:52.995000px;}
.x36{left:55.800000px;}
.x57{left:60.015000px;}
.xb{left:62.280000px;}
.x26{left:64.080000px;}
.x3e{left:66.240000px;}
.x3b{left:68.040000px;}
.x5d{left:70.596000px;}
.x3a{left:71.820000px;}
.x42{left:88.200000px;}
.x5f{left:98.310000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x3f{left:114.660000px;}
.x63{left:117.405000px;}
.x41{left:120.960000px;}
.x3c{left:122.760000px;}
.x64{left:126.165000px;}
.x5{left:127.656000px;}
.x14{left:129.276000px;}
.x1a{left:133.056000px;}
.x31{left:135.036000px;}
.xf{left:138.996000px;}
.x67{left:145.656000px;}
.x18{left:148.896000px;}
.xe{left:155.190000px;}
.x16{left:159.330000px;}
.x6{left:170.145000px;}
.x59{left:176.250000px;}
.x17{left:180.750000px;}
.x7{left:189.030000px;}
.x4{left:203.484001px;}
.x15{left:210.630000px;}
.x44{left:240.150000px;}
.x21{left:243.930000px;}
.x43{left:246.270000px;}
.x23{left:252.750000px;}
.x49{left:259.275000px;}
.x35{left:275.295000px;}
.x10{left:277.275000px;}
.x25{left:285.015000px;}
.x56{left:301.320000px;}
.x55{left:304.380000px;}
.x1f{left:309.495000px;}
.x46{left:312.375000px;}
.x5a{left:313.455000px;}
.x33{left:317.955000px;}
.x11{left:320.835000px;}
.x4b{left:322.275000px;}
.x28{left:324.075000px;}
.x47{left:325.695000px;}
.x4e{left:333.795000px;}
.x34{left:335.055000px;}
.x1d{left:337.035000px;}
.x4a{left:340.815000px;}
.x5e{left:342.435000px;}
.x19{left:343.695000px;}
.x4d{left:348.195000px;}
.x32{left:352.515000px;}
.x66{left:354.675000px;}
.x24{left:356.475000px;}
.x45{left:364.395000px;}
.x20{left:367.815000px;}
.x1e{left:370.695000px;}
.x50{left:373.215000px;}
.x22{left:375.195000px;}
.x48{left:436.605000px;}
.xd{left:446.505000px;}
.x3{left:454.959000px;}
.x2b{left:464.340000px;}
.x2a{left:473.880000px;}
.x2f{left:477.120000px;}
.x12{left:547.282500px;}
.x51{left:564.480000px;}
.x13{left:572.145000px;}
.x53{left:586.545000px;}
.x37{left:596.100000px;}
.x54{left:611.970000px;}
.x68{left:633.390000px;}
.x8{left:659.130000px;}
.x61{left:690.975000px;}
.x52{left:710.430000px;}
.x1c{left:754.710000px;}
.x4f{left:766.770000px;}
.x4c{left:773.100000px;}
@media print{
.v1{vertical-align:-22.400000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:24.320000pt;}
.v3{vertical-align:42.880000pt;}
.v2{vertical-align:48.640000pt;}
.v4{vertical-align:91.520000pt;}
.ls1d{letter-spacing:-0.704000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.015360pt;}
.lsa{letter-spacing:-0.007680pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.007680pt;}
.ls4{letter-spacing:0.011520pt;}
.ls6{letter-spacing:0.015360pt;}
.ls5{letter-spacing:0.023040pt;}
.ls19{letter-spacing:0.030720pt;}
.ls1b{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.133120pt;}
.ls7{letter-spacing:0.133333pt;}
.ls8{letter-spacing:0.154880pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.640000pt;}
.ls3{letter-spacing:5.280000pt;}
.ls15{letter-spacing:17.344000pt;}
.ls14{letter-spacing:17.472000pt;}
.ls13{letter-spacing:17.984000pt;}
.ls1a{letter-spacing:48.768000pt;}
.lse{letter-spacing:69.248000pt;}
.ls12{letter-spacing:704.490667pt;}
.ws9{word-spacing:-64.000000pt;}
.ws5{word-spacing:-17.295360pt;}
.wsf{word-spacing:-17.287680pt;}
.wse{word-spacing:-17.280000pt;}
.ws7{word-spacing:-17.272320pt;}
.ws6{word-spacing:-17.264640pt;}
.wsa{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.wsd{word-spacing:-15.616000pt;}
.ws11{word-spacing:-15.296000pt;}
.ws4{word-spacing:-14.080000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.960000pt;}
.ws13{word-spacing:-11.360000pt;}
.ws12{word-spacing:-11.040000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws0{word-spacing:0.000000pt;}
._28{margin-left:-327.488000pt;}
._29{margin-left:-294.531840pt;}
._25{margin-left:-12.192000pt;}
._21{margin-left:-8.853333pt;}
._1e{margin-left:-4.448640pt;}
._9{margin-left:-3.127680pt;}
._7{margin-left:-2.115840pt;}
._4{margin-left:-0.892160pt;}
._0{width:0.903040pt;}
._1{width:2.267733pt;}
._6{width:3.968000pt;}
._8{width:5.248000pt;}
._f{width:6.687573pt;}
._a{width:7.744000pt;}
._c{width:8.689920pt;}
._b{width:9.600000pt;}
._10{width:10.794667pt;}
._18{width:11.690667pt;}
._1c{width:12.767787pt;}
._17{width:13.952000pt;}
._16{width:15.100160pt;}
._1b{width:17.080960pt;}
._11{width:18.496000pt;}
._24{width:19.388160pt;}
._e{width:20.288000pt;}
._1a{width:21.888000pt;}
._1d{width:22.908160pt;}
._1f{width:24.636160pt;}
._d{width:25.728000pt;}
._12{width:28.352000pt;}
._13{width:30.016000pt;}
._19{width:30.912000pt;}
._2e{width:31.992960pt;}
._15{width:33.717333pt;}
._14{width:34.688000pt;}
._2c{width:39.370667pt;}
._31{width:46.208000pt;}
._32{width:47.146240pt;}
._2f{width:48.256000pt;}
._30{width:49.280000pt;}
._27{width:59.534933pt;}
._22{width:60.938667pt;}
._26{width:65.380267pt;}
._2b{width:82.186667pt;}
._2a{width:98.111787pt;}
._2d{width:122.794667pt;}
._3{width:140.329387pt;}
._23{width:176.000000pt;}
._2{width:473.280000pt;}
._5{width:677.060693pt;}
._20{width:2115.605333pt;}
.fsa{font-size:5.120000pt;}
.fsc{font-size:16.000000pt;}
.fsf{font-size:34.560000pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:42.880000pt;}
.fs7{font-size:45.440000pt;}
.fsd{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fse{font-size:69.120000pt;}
.fs9{font-size:74.880000pt;}
.fs2{font-size:90.666667pt;}
.fsb{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:0.152000pt;}
.y28{bottom:2.712000pt;}
.y29{bottom:2.872000pt;}
.y1d4{bottom:3.453333pt;}
.y21d{bottom:3.826667pt;}
.y1d8{bottom:3.906667pt;}
.y162{bottom:3.986667pt;}
.y158{bottom:4.000000pt;}
.y15e{bottom:4.013333pt;}
.y225{bottom:4.626667pt;}
.y2b{bottom:5.912000pt;}
.y2d0{bottom:9.906667pt;}
.y2c8{bottom:10.893333pt;}
.y1cd{bottom:12.413333pt;}
.y1fe{bottom:12.813333pt;}
.y159{bottom:13.120000pt;}
.y1f6{bottom:13.600000pt;}
.y12f{bottom:16.653333pt;}
.y12a{bottom:17.133333pt;}
.y161{bottom:22.386667pt;}
.y157{bottom:22.400000pt;}
.y224{bottom:22.866667pt;}
.y21c{bottom:23.506667pt;}
.y2c7{bottom:23.853333pt;}
.y127{bottom:24.653333pt;}
.y2c9{bottom:26.240000pt;}
.y125{bottom:28.640000pt;}
.y1f9{bottom:29.453333pt;}
.y2cf{bottom:30.906667pt;}
.y1cc{bottom:31.293333pt;}
.y6{bottom:31.933340pt;}
.y167{bottom:32.000000pt;}
.y121{bottom:32.480000pt;}
.y123{bottom:33.280000pt;}
.y12c{bottom:33.293333pt;}
.y56{bottom:34.912000pt;}
.y2c6{bottom:36.973333pt;}
.y1d2{bottom:40.253333pt;}
.y1fd{bottom:40.333333pt;}
.y164{bottom:40.800000pt;}
.y15f{bottom:40.840000pt;}
.y1f5{bottom:41.120000pt;}
.y15b{bottom:41.160000pt;}
.y1d6{bottom:41.186667pt;}
.y21b{bottom:41.906667pt;}
.y223{bottom:42.546667pt;}
.y12e{bottom:44.653333pt;}
.y129{bottom:45.293333pt;}
.y2c5{bottom:49.933333pt;}
.y2ce{bottom:52.026667pt;}
.y2d{bottom:52.032000pt;}
.y1f8{bottom:57.613333pt;}
.y5{bottom:59.133337pt;}
.y166{bottom:59.840000pt;}
.y222{bottom:60.786667pt;}
.y21a{bottom:61.426667pt;}
.y2e{bottom:62.272000pt;}
.y2cd{bottom:64.986667pt;}
.y2a{bottom:65.800000pt;}
.y1fc{bottom:68.013333pt;}
.y1f4{bottom:68.640000pt;}
.y2c3{bottom:71.040000pt;}
.y2cc{bottom:78.106667pt;}
.y221{bottom:80.466667pt;}
.y219{bottom:81.106667pt;}
.y27{bottom:84.680000pt;}
.y4{bottom:86.333337pt;}
.y1fb{bottom:95.533333pt;}
.y220{bottom:98.746667pt;}
.y2cb{bottom:99.066667pt;}
.y218{bottom:99.386667pt;}
.y55{bottom:116.992000pt;}
.y1ca{bottom:117.632000pt;}
.yfa{bottom:117.792000pt;}
.y21f{bottom:118.266667pt;}
.y217{bottom:118.906667pt;}
.y155{bottom:119.872000pt;}
.y54{bottom:121.632000pt;}
.yaf{bottom:123.392000pt;}
.y21{bottom:123.790666pt;}
.y2bf{bottom:123.872000pt;}
.y1f2{bottom:124.992000pt;}
.yc3{bottom:126.272000pt;}
.y82{bottom:126.752000pt;}
.y25c{bottom:127.552000pt;}
.y23c{bottom:129.152000pt;}
.y53{bottom:133.786667pt;}
.y11f{bottom:135.706667pt;}
.y1c9{bottom:136.026667pt;}
.yd9{bottom:136.186667pt;}
.y19d{bottom:136.346667pt;}
.y21e{bottom:137.946667pt;}
.y154{bottom:138.266667pt;}
.y216{bottom:138.586667pt;}
.ye7{bottom:141.146667pt;}
.yae{bottom:141.786667pt;}
.y1f1{bottom:143.386667pt;}
.y81{bottom:145.146667pt;}
.y1b2{bottom:145.786667pt;}
.y25b{bottom:145.946667pt;}
.y28f{bottom:147.386667pt;}
.y23b{bottom:147.546667pt;}
.y104{bottom:148.986667pt;}
.y1c8{bottom:154.426667pt;}
.yd8{bottom:154.586667pt;}
.y19c{bottom:154.746667pt;}
.y153{bottom:156.666667pt;}
.y179{bottom:156.826667pt;}
.y2be{bottom:157.786667pt;}
.ye6{bottom:159.386667pt;}
.yad{bottom:160.186667pt;}
.y1f0{bottom:161.786667pt;}
.yc2{bottom:161.946667pt;}
.y278{bottom:163.386667pt;}
.y1b1{bottom:164.186667pt;}
.y215{bottom:164.200000pt;}
.y25a{bottom:164.346667pt;}
.y28e{bottom:165.786667pt;}
.y23a{bottom:165.946667pt;}
.y2a0{bottom:168.186667pt;}
.y11e{bottom:171.226667pt;}
.y1c7{bottom:172.826667pt;}
.yd7{bottom:172.986667pt;}
.y19b{bottom:173.146667pt;}
.y18{bottom:175.052000pt;}
.y152{bottom:175.066667pt;}
.ye5{bottom:177.786667pt;}
.yac{bottom:178.586667pt;}
.y80{bottom:179.546667pt;}
.y178{bottom:179.706667pt;}
.y1ef{bottom:180.026667pt;}
.yc1{bottom:180.346667pt;}
.y277{bottom:181.786667pt;}
.y257{bottom:181.946667pt;}
.y1b0{bottom:182.586667pt;}
.y2b2{bottom:184.186667pt;}
.y239{bottom:184.346667pt;}
.y103{bottom:184.506667pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y29f{bottom:186.586667pt;}
.y1c6{bottom:191.226667pt;}
.yd6{bottom:191.386667pt;}
.y2bd{bottom:191.706667pt;}
.y151{bottom:193.466667pt;}
.ye4{bottom:196.186667pt;}
.yab{bottom:196.986667pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y7f{bottom:197.946667pt;}
.y259{bottom:198.586667pt;}
.yc0{bottom:198.746667pt;}
.y28d{bottom:200.186667pt;}
.y256{bottom:200.346667pt;}
.y1af{bottom:200.986667pt;}
.y238{bottom:202.746667pt;}
.y52{bottom:204.826667pt;}
.y11d{bottom:206.906667pt;}
.yf9{bottom:207.386667pt;}
.y19a{bottom:207.866667pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y177{bottom:209.466667pt;}
.y1c5{bottom:209.626667pt;}
.yd5{bottom:209.786667pt;}
.y150{bottom:211.706667pt;}
.y1ee{bottom:214.426667pt;}
.ye3{bottom:214.586667pt;}
.yaa{bottom:215.386667pt;}
.y276{bottom:216.186667pt;}
.y7e{bottom:216.346667pt;}
.ybf{bottom:217.146667pt;}
.y28c{bottom:218.586667pt;}
.y255{bottom:218.746667pt;}
.y1ae{bottom:219.386667pt;}
.y102{bottom:220.186667pt;}
.y29e{bottom:220.986667pt;}
.y252{bottom:221.146667pt;}
.y2bc{bottom:225.626667pt;}
.yf8{bottom:225.786667pt;}
.y1c4{bottom:228.026667pt;}
.yd4{bottom:228.186667pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y176{bottom:232.346667pt;}
.y1ed{bottom:232.826667pt;}
.ye2{bottom:232.986667pt;}
.ya9{bottom:233.786667pt;}
.y275{bottom:234.586667pt;}
.y7d{bottom:234.746667pt;}
.ybe{bottom:235.546667pt;}
.y2b1{bottom:236.986667pt;}
.y237{bottom:237.146667pt;}
.y1ad{bottom:237.786667pt;}
.y51{bottom:239.226667pt;}
.y29d{bottom:239.386667pt;}
.y251{bottom:239.546667pt;}
.y11c{bottom:241.146667pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y199{bottom:243.546667pt;}
.yf7{bottom:244.186667pt;}
.y14f{bottom:246.146667pt;}
.y1c3{bottom:246.466667pt;}
.ye1{bottom:251.426667pt;}
.ya8{bottom:252.226667pt;}
.y274{bottom:253.026667pt;}
.y7c{bottom:253.186667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.ybd{bottom:253.986667pt;}
.y2b8{bottom:255.426667pt;}
.y236{bottom:255.586667pt;}
.y101{bottom:255.906667pt;}
.y1ac{bottom:256.226667pt;}
.y50{bottom:257.506667pt;}
.y29c{bottom:257.826667pt;}
.y250{bottom:257.986667pt;}
.y2bb{bottom:259.586667pt;}
.y11b{bottom:259.746667pt;}
.y198{bottom:261.986667pt;}
.yd3{bottom:262.626667pt;}
.y14e{bottom:264.546667pt;}
.y1c2{bottom:264.866667pt;}
.y1ec{bottom:267.266667pt;}
.ye0{bottom:269.826667pt;}
.ya7{bottom:270.626667pt;}
.y273{bottom:271.426667pt;}
.y7b{bottom:271.586667pt;}
.ybc{bottom:272.386667pt;}
.y235{bottom:273.986667pt;}
.y100{bottom:274.306667pt;}
.y1ab{bottom:274.626667pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y24f{bottom:276.386667pt;}
.y1ff{bottom:277.813333pt;}
.y1fa{bottom:279.733333pt;}
.y197{bottom:280.386667pt;}
.yd2{bottom:281.026667pt;}
.y175{bottom:281.186667pt;}
.y1c1{bottom:283.266667pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.ydf{bottom:288.226667pt;}
.ya6{bottom:289.026667pt;}
.y28b{bottom:289.826667pt;}
.y7a{bottom:289.986667pt;}
.ybb{bottom:290.786667pt;}
.y29b{bottom:292.226667pt;}
.y234{bottom:292.386667pt;}
.yff{bottom:292.546667pt;}
.y1aa{bottom:293.026667pt;}
.y4f{bottom:293.506667pt;}
.y11a{bottom:293.826667pt;}
.y24e{bottom:294.786667pt;}
.y196{bottom:298.786667pt;}
.y14d{bottom:298.946667pt;}
.y1eb{bottom:299.106667pt;}
.yf6{bottom:299.426667pt;}
.y174{bottom:299.586667pt;}
.y272{bottom:305.826667pt;}
.yde{bottom:306.626667pt;}
.ya5{bottom:307.426667pt;}
.y2b7{bottom:308.226667pt;}
.y79{bottom:308.386667pt;}
.yba{bottom:309.186667pt;}
.yf{bottom:309.452000pt;}
.y29a{bottom:310.626667pt;}
.y233{bottom:310.786667pt;}
.y1a9{bottom:311.426667pt;}
.y4e{bottom:311.906667pt;}
.y1f7{bottom:314.133333pt;}
.yd1{bottom:315.266667pt;}
.y195{bottom:317.186667pt;}
.y1c0{bottom:317.666667pt;}
.yf5{bottom:317.826667pt;}
.y214{bottom:319.106667pt;}
.y271{bottom:324.226667pt;}
.ya4{bottom:325.826667pt;}
.y2b6{bottom:326.626667pt;}
.y78{bottom:326.786667pt;}
.yfe{bottom:326.946667pt;}
.y2ba{bottom:327.426667pt;}
.yb9{bottom:327.586667pt;}
.y119{bottom:328.226667pt;}
.y24d{bottom:328.866667pt;}
.y232{bottom:329.186667pt;}
.y14c{bottom:329.826667pt;}
.y4d{bottom:330.306667pt;}
.y12d{bottom:330.773333pt;}
.y128{bottom:331.093333pt;}
.y173{bottom:331.106667pt;}
.y12b{bottom:333.173333pt;}
.y1ea{bottom:333.506667pt;}
.yd0{bottom:333.826667pt;}
.y194{bottom:335.586667pt;}
.yf4{bottom:336.066667pt;}
.y14b{bottom:340.546667pt;}
.ydd{bottom:340.866667pt;}
.y270{bottom:342.626667pt;}
.ye{bottom:343.809333pt;}
.ya3{bottom:344.226667pt;}
.y299{bottom:345.026667pt;}
.y77{bottom:345.186667pt;}
.yfd{bottom:345.346667pt;}
.yb8{bottom:345.986667pt;}
.y231{bottom:347.586667pt;}
.y1a8{bottom:348.226667pt;}
.y4c{bottom:348.706667pt;}
.y172{bottom:349.666667pt;}
.y193{bottom:353.986667pt;}
.y213{bottom:355.426667pt;}
.y118{bottom:358.306667pt;}
.y2b9{bottom:358.466667pt;}
.y2ac{bottom:358.626667pt;}
.ydc{bottom:359.426667pt;}
.y28a{bottom:361.026667pt;}
.ya2{bottom:362.626667pt;}
.yd{bottom:362.706666pt;}
.y298{bottom:363.426667pt;}
.y76{bottom:363.586667pt;}
.ycf{bottom:364.226667pt;}
.yb7{bottom:364.386667pt;}
.y24c{bottom:365.026667pt;}
.y230{bottom:365.986667pt;}
.y4b{bottom:367.106667pt;}
.y1e9{bottom:367.746667pt;}
.y171{bottom:368.066667pt;}
.y14a{bottom:369.506667pt;}
.yf3{bottom:370.466667pt;}
.y1bf{bottom:371.426667pt;}
.y192{bottom:372.386667pt;}
.yfc{bottom:375.746667pt;}
.y26f{bottom:377.026667pt;}
.y2b0{bottom:379.426667pt;}
.y297{bottom:381.826667pt;}
.y75{bottom:381.986667pt;}
.y1a7{bottom:382.626667pt;}
.yb6{bottom:382.786667pt;}
.y24b{bottom:383.426667pt;}
.y22f{bottom:384.386667pt;}
.y4a{bottom:385.506667pt;}
.y170{bottom:386.466667pt;}
.y149{bottom:386.786667pt;}
.y117{bottom:388.546667pt;}
.yf2{bottom:389.026667pt;}
.ydb{bottom:389.826667pt;}
.y1be{bottom:389.986667pt;}
.y191{bottom:390.786667pt;}
.y26e{bottom:395.426667pt;}
.ya1{bottom:397.026667pt;}
.y1e8{bottom:399.426667pt;}
.y74{bottom:400.386667pt;}
.y1a6{bottom:401.026667pt;}
.yb5{bottom:401.186667pt;}
.y24a{bottom:401.826667pt;}
.y22e{bottom:402.786667pt;}
.y49{bottom:403.906667pt;}
.y16f{bottom:404.866667pt;}
.y148{bottom:405.186667pt;}
.y212{bottom:408.386667pt;}
.y190{bottom:409.186667pt;}
.y1bd{bottom:411.106667pt;}
.y289{bottom:413.826667pt;}
.ya0{bottom:415.426667pt;}
.y296{bottom:416.226667pt;}
.yf1{bottom:416.706667pt;}
.y73{bottom:418.786667pt;}
.y1a5{bottom:419.426667pt;}
.yb4{bottom:419.586667pt;}
.y249{bottom:420.226667pt;}
.y22d{bottom:421.186667pt;}
.y48{bottom:422.306667pt;}
.y16e{bottom:423.266667pt;}
.y147{bottom:423.586667pt;}
.y1bc{bottom:425.666667pt;}
.y211{bottom:426.786667pt;}
.y18f{bottom:427.586667pt;}
.y26d{bottom:429.826667pt;}
.yc{bottom:430.990669pt;}
.y1e7{bottom:431.266667pt;}
.y288{bottom:432.226667pt;}
.y9f{bottom:433.826667pt;}
.y295{bottom:434.626667pt;}
.y254{bottom:437.186667pt;}
.yb3{bottom:437.986667pt;}
.y248{bottom:438.626667pt;}
.y47{bottom:440.706667pt;}
.y146{bottom:441.986667pt;}
.y1d5{bottom:444.480000pt;}
.y210{bottom:445.186667pt;}
.y18e{bottom:445.986667pt;}
.yb{bottom:446.990669pt;}
.y26c{bottom:448.226667pt;}
.y116{bottom:449.026667pt;}
.y1e6{bottom:449.826667pt;}
.y287{bottom:450.626667pt;}
.y9e{bottom:452.226667pt;}
.y294{bottom:453.026667pt;}
.y72{bottom:453.186667pt;}
.y1a4{bottom:453.666667pt;}
.y22c{bottom:455.586667pt;}
.yb2{bottom:456.386667pt;}
.y247{bottom:457.026667pt;}
.y126{bottom:457.333333pt;}
.y16d{bottom:457.826667pt;}
.y46{bottom:459.106667pt;}
.y1d0{bottom:460.386667pt;}
.ya{bottom:462.990669pt;}
.y20f{bottom:463.586667pt;}
.y26b{bottom:466.626667pt;}
.y1d7{bottom:466.786667pt;}
.y2b5{bottom:469.026667pt;}
.y9d{bottom:470.626667pt;}
.y71{bottom:471.586667pt;}
.y22b{bottom:473.986667pt;}
.y246{bottom:475.426667pt;}
.y145{bottom:476.706667pt;}
.y45{bottom:477.506667pt;}
.y9{bottom:478.990666pt;}
.y1cf{bottom:479.266667pt;}
.y115{bottom:479.426667pt;}
.y18d{bottom:480.386667pt;}
.y1e5{bottom:481.346667pt;}
.y20e{bottom:481.986667pt;}
.y2ab{bottom:482.626667pt;}
.y286{bottom:485.026667pt;}
.y293{bottom:487.426667pt;}
.y9c{bottom:489.026667pt;}
.y1a3{bottom:489.346667pt;}
.y253{bottom:489.666667pt;}
.y70{bottom:489.986667pt;}
.yb1{bottom:490.626667pt;}
.y22a{bottom:492.386667pt;}
.y16c{bottom:493.506667pt;}
.y245{bottom:493.826667pt;}
.y8{bottom:494.990666pt;}
.y44{bottom:495.906667pt;}
.y18c{bottom:498.813333pt;}
.y26a{bottom:501.053333pt;}
.y285{bottom:503.453333pt;}
.y292{bottom:505.853333pt;}
.y9b{bottom:507.453333pt;}
.y6f{bottom:508.413333pt;}
.y229{bottom:510.813333pt;}
.y114{bottom:510.973333pt;}
.y16b{bottom:511.933333pt;}
.y144{bottom:512.413333pt;}
.y1e4{bottom:513.053333pt;}
.y43{bottom:514.333333pt;}
.y20d{bottom:516.573333pt;}
.y2aa{bottom:517.053333pt;}
.y18b{bottom:517.213333pt;}
.y269{bottom:519.453333pt;}
.y284{bottom:521.853333pt;}
.y1a2{bottom:524.893333pt;}
.y9a{bottom:525.853333pt;}
.y6e{bottom:526.813333pt;}
.y244{bottom:528.253333pt;}
.y228{bottom:529.213333pt;}
.y143{bottom:530.813333pt;}
.y42{bottom:532.733333pt;}
.y2a9{bottom:535.453333pt;}
.y18a{bottom:535.613333pt;}
.y2af{bottom:537.853333pt;}
.y283{bottom:540.253333pt;}
.y113{bottom:541.213333pt;}
.y99{bottom:544.253333pt;}
.y1e3{bottom:544.893333pt;}
.y6d{bottom:545.213333pt;}
.y16a{bottom:546.653333pt;}
.y227{bottom:547.453333pt;}
.y142{bottom:549.213333pt;}
.y41{bottom:551.133333pt;}
.y20c{bottom:552.253333pt;}
.y1d9{bottom:553.533333pt;}
.y268{bottom:553.853333pt;}
.y189{bottom:554.013333pt;}
.y2ae{bottom:556.253333pt;}
.y291{bottom:558.653333pt;}
.y1f3{bottom:558.813333pt;}
.y1a1{bottom:560.573333pt;}
.y98{bottom:562.653333pt;}
.y6c{bottom:563.453333pt;}
.y243{bottom:565.053333pt;}
.y141{bottom:567.613333pt;}
.y40{bottom:569.533333pt;}
.y2a8{bottom:569.853333pt;}
.y20b{bottom:570.653333pt;}
.y112{bottom:571.293333pt;}
.y267{bottom:572.253333pt;}
.y188{bottom:572.413333pt;}
.y282{bottom:574.653333pt;}
.y1e2{bottom:576.573333pt;}
.y97{bottom:581.053333pt;}
.y6b{bottom:581.853333pt;}
.y169{bottom:582.173333pt;}
.y242{bottom:583.453333pt;}
.y122{bottom:585.213333pt;}
.y140{bottom:586.013333pt;}
.y124{bottom:587.453333pt;}
.y2a7{bottom:588.253333pt;}
.y266{bottom:590.653333pt;}
.y281{bottom:593.053333pt;}
.y120{bottom:593.213333pt;}
.y1a0{bottom:595.933333pt;}
.y165{bottom:597.373333pt;}
.y96{bottom:599.453333pt;}
.y6a{bottom:600.253333pt;}
.y111{bottom:601.533333pt;}
.y241{bottom:601.853333pt;}
.y3f{bottom:603.773333pt;}
.y13f{bottom:604.413333pt;}
.y20a{bottom:605.053333pt;}
.y2a6{bottom:606.653333pt;}
.y187{bottom:606.813333pt;}
.y1e1{bottom:608.253333pt;}
.y265{bottom:609.053333pt;}
.y280{bottom:611.453333pt;}
.y19f{bottom:614.493333pt;}
.y95{bottom:617.853333pt;}
.y1d1{bottom:618.240000pt;}
.y1cb{bottom:618.400000pt;}
.y69{bottom:618.653333pt;}
.y240{bottom:620.253333pt;}
.y13e{bottom:622.813333pt;}
.y186{bottom:625.053333pt;}
.y1e0{bottom:626.493333pt;}
.y2ad{bottom:627.453333pt;}
.y2b4{bottom:629.853333pt;}
.y1ce{bottom:630.813333pt;}
.y110{bottom:631.773333pt;}
.y168{bottom:634.813333pt;}
.y94{bottom:636.253333pt;}
.y68{bottom:637.053333pt;}
.y23f{bottom:638.653333pt;}
.y3e{bottom:639.453333pt;}
.y1d3{bottom:640.093333pt;}
.y2a5{bottom:641.053333pt;}
.y13d{bottom:641.213333pt;}
.y264{bottom:643.453333pt;}
.y19e{bottom:644.893333pt;}
.y7{bottom:645.598667pt;}
.y27f{bottom:645.853333pt;}
.y93{bottom:654.653333pt;}
.y67{bottom:655.453333pt;}
.y1df{bottom:656.893333pt;}
.y23e{bottom:657.053333pt;}
.y209{bottom:657.853333pt;}
.y2a4{bottom:659.453333pt;}
.y13c{bottom:659.613333pt;}
.y3d{bottom:660.733333pt;}
.y10f{bottom:661.853333pt;}
.y27e{bottom:664.253333pt;}
.y3{bottom:668.977329pt;}
.y163{bottom:672.253333pt;}
.y3c{bottom:673.053333pt;}
.y66{bottom:673.853333pt;}
.y1de{bottom:675.453333pt;}
.y2a3{bottom:677.853333pt;}
.y10e{bottom:678.813333pt;}
.y185{bottom:678.973333pt;}
.y263{bottom:680.253333pt;}
.y2b3{bottom:682.653333pt;}
.y3b{bottom:685.213333pt;}
.y2d1{bottom:689.853333pt;}
.y92{bottom:691.453333pt;}
.y65{bottom:692.253333pt;}
.y208{bottom:692.573333pt;}
.y1dd{bottom:693.853333pt;}
.y13b{bottom:694.013333pt;}
.y10d{bottom:696.093333pt;}
.y2a2{bottom:696.253333pt;}
.yce{bottom:696.893333pt;}
.y3a{bottom:697.533333pt;}
.y27d{bottom:698.653333pt;}
.y226{bottom:709.853333pt;}
.y39{bottom:710.333333pt;}
.y64{bottom:710.653333pt;}
.y1dc{bottom:712.253333pt;}
.y13a{bottom:712.413333pt;}
.y10c{bottom:714.493333pt;}
.y184{bottom:714.653333pt;}
.ycd{bottom:715.133333pt;}
.y27c{bottom:717.053333pt;}
.y1bb{bottom:717.213333pt;}
.y2ca{bottom:722.186667pt;}
.y91{bottom:725.853333pt;}
.y38{bottom:726.333333pt;}
.y15a{bottom:728.253333pt;}
.y160{bottom:728.266667pt;}
.y63{bottom:729.053333pt;}
.y1db{bottom:730.653333pt;}
.y139{bottom:730.813333pt;}
.y183{bottom:732.893333pt;}
.y262{bottom:733.053333pt;}
.y1ba{bottom:735.453333pt;}
.y36{bottom:743.773333pt;}
.y90{bottom:744.253333pt;}
.y207{bottom:746.653333pt;}
.y62{bottom:747.453333pt;}
.y10b{bottom:749.053333pt;}
.y138{bottom:749.213333pt;}
.y37{bottom:750.493333pt;}
.ycc{bottom:750.813333pt;}
.y261{bottom:751.493333pt;}
.y290{bottom:753.893333pt;}
.y8f{bottom:762.693333pt;}
.yf0{bottom:763.493333pt;}
.y206{bottom:765.093333pt;}
.y61{bottom:765.893333pt;}
.y35{bottom:766.693333pt;}
.y2a1{bottom:767.493333pt;}
.y137{bottom:767.653333pt;}
.y182{bottom:768.613333pt;}
.ycb{bottom:769.253333pt;}
.y27b{bottom:769.893333pt;}
.y1b9{bottom:771.173333pt;}
.y8e{bottom:781.093333pt;}
.y2{bottom:781.661334pt;}
.yef{bottom:781.893333pt;}
.y1da{bottom:783.493333pt;}
.y15d{bottom:784.120000pt;}
.y15c{bottom:784.133333pt;}
.y60{bottom:784.293333pt;}
.y34{bottom:784.773333pt;}
.y260{bottom:785.893333pt;}
.y136{bottom:786.053333pt;}
.y181{bottom:786.853333pt;}
.y27a{bottom:788.293333pt;}
.y1b8{bottom:789.413333pt;}
.y8d{bottom:799.493333pt;}
.yee{bottom:800.293333pt;}
.y205{bottom:801.893333pt;}
.y5f{bottom:802.693333pt;}
.y10a{bottom:803.173333pt;}
.y25f{bottom:804.293333pt;}
.y135{bottom:804.453333pt;}
.yca{bottom:804.933333pt;}
.y279{bottom:806.693333pt;}
.y33{bottom:810.053333pt;}
.y8c{bottom:817.893333pt;}
.yed{bottom:818.693333pt;}
.y204{bottom:820.293333pt;}
.y5e{bottom:821.093333pt;}
.y109{bottom:821.573333pt;}
.y180{bottom:822.533333pt;}
.y25e{bottom:822.693333pt;}
.y134{bottom:822.853333pt;}
.yc9{bottom:823.173333pt;}
.y1b7{bottom:825.093333pt;}
.y8b{bottom:836.293333pt;}
.y258{bottom:836.933333pt;}
.yec{bottom:837.093333pt;}
.yfb{bottom:837.413333pt;}
.y203{bottom:838.693333pt;}
.y5d{bottom:839.493333pt;}
.y108{bottom:839.973333pt;}
.y2c4{bottom:840.120000pt;}
.y2c2{bottom:840.133333pt;}
.y32{bottom:840.773333pt;}
.y17f{bottom:840.933333pt;}
.y25d{bottom:841.093333pt;}
.y133{bottom:841.253333pt;}
.y8a{bottom:854.693333pt;}
.yeb{bottom:855.493333pt;}
.y202{bottom:857.093333pt;}
.y5c{bottom:857.893333pt;}
.y107{bottom:858.373333pt;}
.yc8{bottom:858.853333pt;}
.y1{bottom:859.312000pt;}
.y1b6{bottom:859.493333pt;}
.y132{bottom:859.653333pt;}
.y31{bottom:871.333333pt;}
.y89{bottom:873.093333pt;}
.yea{bottom:873.893333pt;}
.y17e{bottom:875.173333pt;}
.y201{bottom:875.493333pt;}
.y156{bottom:876.133333pt;}
.y5b{bottom:876.293333pt;}
.y1b5{bottom:877.893333pt;}
.y88{bottom:891.493333pt;}
.yb0{bottom:892.133333pt;}
.ye9{bottom:892.293333pt;}
.y106{bottom:892.773333pt;}
.yc7{bottom:893.413333pt;}
.y17d{bottom:893.733333pt;}
.y200{bottom:893.893333pt;}
.y131{bottom:894.053333pt;}
.y5a{bottom:894.693333pt;}
.y1b4{bottom:896.293333pt;}
.y87{bottom:909.893333pt;}
.ye8{bottom:910.693333pt;}
.y105{bottom:911.173333pt;}
.y23d{bottom:912.293333pt;}
.y130{bottom:912.453333pt;}
.y59{bottom:913.093333pt;}
.y30{bottom:918.053333pt;}
.y17c{bottom:928.133333pt;}
.y86{bottom:928.293333pt;}
.yc6{bottom:929.093333pt;}
.yda{bottom:929.413333pt;}
.y1b3{bottom:930.693333pt;}
.y58{bottom:931.493333pt;}
.y85{bottom:946.693333pt;}
.yc5{bottom:947.493333pt;}
.y2c1{bottom:950.053333pt;}
.y17b{bottom:962.053333pt;}
.y2f{bottom:964.933333pt;}
.y84{bottom:965.093333pt;}
.y57{bottom:965.733333pt;}
.yc4{bottom:982.213333pt;}
.y83{bottom:983.493333pt;}
.y2c0{bottom:983.973333pt;}
.y17a{bottom:984.933333pt;}
.y26{bottom:1000.933333pt;}
.y25{bottom:1016.640000pt;}
.y24{bottom:1031.840000pt;}
.y23{bottom:1047.200000pt;}
.y22{bottom:1062.560000pt;}
.hb{height:12.952000pt;}
.h15{height:15.703125pt;}
.h3e{height:18.386667pt;}
.he{height:18.872000pt;}
.h1d{height:24.840000pt;}
.h7{height:28.560000pt;}
.hd{height:29.249687pt;}
.h18{height:33.328125pt;}
.h2c{height:36.786667pt;}
.h2e{height:36.792000pt;}
.h35{height:36.796000pt;}
.h2f{height:36.800000pt;}
.h12{height:37.116563pt;}
.h10{height:40.163750pt;}
.h6{height:40.800000pt;}
.hf{height:42.084375pt;}
.h3{height:42.840000pt;}
.h20{height:44.468750pt;}
.hc{height:44.596875pt;}
.h27{height:45.000000pt;}
.h36{height:45.156250pt;}
.h1f{height:47.680000pt;}
.h2{height:48.960000pt;}
.h1e{height:52.108438pt;}
.h9{height:52.134375pt;}
.ha{height:53.535000pt;}
.h38{height:53.760000pt;}
.h24{height:54.240000pt;}
.h39{height:54.720000pt;}
.h32{height:55.196000pt;}
.h31{height:55.200000pt;}
.h30{height:55.220000pt;}
.h1a{height:57.787500pt;}
.h3a{height:58.240000pt;}
.h26{height:59.840000pt;}
.h25{height:62.080000pt;}
.h40{height:62.781250pt;}
.h1c{height:62.812500pt;}
.h29{height:63.360000pt;}
.h28{height:64.480000pt;}
.h23{height:64.500000pt;}
.h22{height:65.781915pt;}
.h41{height:66.404375pt;}
.h21{height:67.803750pt;}
.h19{height:67.837500pt;}
.h5{height:69.360000pt;}
.h1b{height:69.660000pt;}
.h13{height:73.454062pt;}
.h16{height:73.490625pt;}
.h34{height:74.240000pt;}
.h11{height:74.880000pt;}
.h3c{height:75.680000pt;}
.h3b{height:83.200000pt;}
.h44{height:89.266667pt;}
.h42{height:89.272000pt;}
.h43{height:89.280000pt;}
.h2d{height:92.660000pt;}
.h2a{height:93.796250pt;}
.h2b{height:105.692500pt;}
.h4{height:105.826671pt;}
.h14{height:107.715000pt;}
.h3d{height:110.080000pt;}
.h46{height:117.298667pt;}
.h45{height:117.300000pt;}
.h33{height:130.080000pt;}
.h37{height:136.676250pt;}
.h3f{height:152.973333pt;}
.h0{height:1122.518667pt;}
.h17{height:1122.546631pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:56.786667pt;}
.wa{width:82.080000pt;}
.wc{width:83.200000pt;}
.w6{width:104.480000pt;}
.w8{width:111.520000pt;}
.wd{width:117.640000pt;}
.w20{width:121.786667pt;}
.w10{width:129.940000pt;}
.wf{width:143.866667pt;}
.w9{width:149.480000pt;}
.w12{width:149.933333pt;}
.we{width:156.360000pt;}
.w15{width:163.520000pt;}
.w16{width:168.480000pt;}
.w14{width:169.600000pt;}
.w18{width:241.666667pt;}
.wb{width:255.706667pt;}
.w19{width:273.186667pt;}
.w17{width:277.346667pt;}
.w11{width:284.506667pt;}
.w13{width:284.520000pt;}
.w1b{width:286.133333pt;}
.w1e{width:286.146667pt;}
.w1c{width:308.053333pt;}
.w1a{width:308.058667pt;}
.w1d{width:308.066667pt;}
.w4{width:434.640000pt;}
.w1f{width:453.200000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w7{width:793.740000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:2.066667pt;}
.x65{left:6.872000pt;}
.x40{left:8.160000pt;}
.x5c{left:12.000000pt;}
.x29{left:13.440000pt;}
.x2c{left:14.880000pt;}
.x5b{left:16.480000pt;}
.x27{left:22.752000pt;}
.x2d{left:23.712000pt;}
.x3d{left:24.800000pt;}
.x2e{left:27.200000pt;}
.x9{left:28.320000pt;}
.x30{left:31.666667pt;}
.x38{left:33.946667pt;}
.x62{left:35.533333pt;}
.xc{left:37.600000pt;}
.x60{left:39.360000pt;}
.x39{left:40.466667pt;}
.x1b{left:44.799998pt;}
.x58{left:47.106667pt;}
.x36{left:49.600000pt;}
.x57{left:53.346667pt;}
.xb{left:55.360000pt;}
.x26{left:56.960000pt;}
.x3e{left:58.880000pt;}
.x3b{left:60.480000pt;}
.x5d{left:62.752000pt;}
.x3a{left:63.840000pt;}
.x42{left:78.400000pt;}
.x5f{left:87.386667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x3f{left:101.920000pt;}
.x63{left:104.360000pt;}
.x41{left:107.520000pt;}
.x3c{left:109.120000pt;}
.x64{left:112.146667pt;}
.x5{left:113.472000pt;}
.x14{left:114.912000pt;}
.x1a{left:118.272000pt;}
.x31{left:120.032000pt;}
.xf{left:123.552000pt;}
.x67{left:129.472000pt;}
.x18{left:132.352000pt;}
.xe{left:137.946667pt;}
.x16{left:141.626667pt;}
.x6{left:151.240000pt;}
.x59{left:156.666667pt;}
.x17{left:160.666667pt;}
.x7{left:168.026667pt;}
.x4{left:180.874667pt;}
.x15{left:187.226667pt;}
.x44{left:213.466667pt;}
.x21{left:216.826667pt;}
.x43{left:218.906667pt;}
.x23{left:224.666667pt;}
.x49{left:230.466667pt;}
.x35{left:244.706667pt;}
.x10{left:246.466667pt;}
.x25{left:253.346667pt;}
.x56{left:267.840000pt;}
.x55{left:270.560000pt;}
.x1f{left:275.106667pt;}
.x46{left:277.666667pt;}
.x5a{left:278.626667pt;}
.x33{left:282.626667pt;}
.x11{left:285.186667pt;}
.x4b{left:286.466667pt;}
.x28{left:288.066667pt;}
.x47{left:289.506667pt;}
.x4e{left:296.706667pt;}
.x34{left:297.826667pt;}
.x1d{left:299.586667pt;}
.x4a{left:302.946667pt;}
.x5e{left:304.386667pt;}
.x19{left:305.506667pt;}
.x4d{left:309.506667pt;}
.x32{left:313.346667pt;}
.x66{left:315.266667pt;}
.x24{left:316.866667pt;}
.x45{left:323.906667pt;}
.x20{left:326.946667pt;}
.x1e{left:329.506667pt;}
.x50{left:331.746667pt;}
.x22{left:333.506667pt;}
.x48{left:388.093333pt;}
.xd{left:396.893333pt;}
.x3{left:404.408000pt;}
.x2b{left:412.746667pt;}
.x2a{left:421.226667pt;}
.x2f{left:424.106667pt;}
.x12{left:486.473333pt;}
.x51{left:501.760000pt;}
.x13{left:508.573333pt;}
.x53{left:521.373333pt;}
.x37{left:529.866667pt;}
.x54{left:543.973333pt;}
.x68{left:563.013333pt;}
.x8{left:585.893333pt;}
.x61{left:614.200000pt;}
.x52{left:631.493333pt;}
.x1c{left:670.853333pt;}
.x4f{left:681.573333pt;}
.x4c{left:687.200000pt;}
}




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