
    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_ac579eb0e772a089e66572f4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_faba1cd22eff9f9eb7dffe69.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a126f5e61693af8489f9a8c9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_1aa8952d75281eae6ae1792e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.115234;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_852974f255096c249f079d65.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4151d4745cef29fec0ca4b26.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_fc33fd5eae31fb9af3456670.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.103027;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_436ddb01950c80bd5d8aa328.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.002930;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_f23b01df0ef151d2460e8327.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.859863;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_e53ef696e1f869ef54ed089b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.916992;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_bbaa011ae2bf3f89de30c9bb.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.002930;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.va{vertical-align:-40.740000px;}
.v4{vertical-align:-23.760000px;}
.v9{vertical-align:-20.460000px;}
.v5{vertical-align:-7.320000px;}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:18.000000px;}
.v3{vertical-align:20.880000px;}
.v2{vertical-align:23.760000px;}
.v8{vertical-align:44.640000px;}
.v7{vertical-align:50.400000px;}
.lsb{letter-spacing:-1.584000px;}
.ls38{letter-spacing:-0.984000px;}
.ls37{letter-spacing:-0.936000px;}
.ls2b{letter-spacing:-0.900000px;}
.ls18{letter-spacing:-0.792000px;}
.ls9{letter-spacing:-0.720000px;}
.ls2c{letter-spacing:-0.648000px;}
.ls6{letter-spacing:-0.576000px;}
.ls33{letter-spacing:-0.504000px;}
.ls14{letter-spacing:-0.432000px;}
.ls13{letter-spacing:-0.324000px;}
.ls5{letter-spacing:-0.305400px;}
.ls35{letter-spacing:-0.262200px;}
.ls26{letter-spacing:-0.223800px;}
.lsd{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.181200px;}
.ls7{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.109200px;}
.ls22{letter-spacing:-0.106800px;}
.ls1e{letter-spacing:-0.097800px;}
.ls20{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.072000px;}
.ls29{letter-spacing:-0.053280px;}
.ls2{letter-spacing:-0.037440px;}
.ls1f{letter-spacing:-0.018000px;}
.ls1{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.018000px;}
.ls12{letter-spacing:0.108000px;}
.ls2d{letter-spacing:0.126000px;}
.ls8{letter-spacing:0.144000px;}
.ls27{letter-spacing:0.145200px;}
.ls24{letter-spacing:0.145440px;}
.ls32{letter-spacing:0.162000px;}
.ls3{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.252000px;}
.ls23{letter-spacing:0.265440px;}
.ls2e{letter-spacing:0.269280px;}
.ls0{letter-spacing:0.288000px;}
.ls3a{letter-spacing:0.360000px;}
.ls28{letter-spacing:0.460200px;}
.ls10{letter-spacing:0.468000px;}
.ls2a{letter-spacing:0.504000px;}
.ls21{letter-spacing:0.666720px;}
.ls25{letter-spacing:0.865440px;}
.lse{letter-spacing:0.936000px;}
.ls15{letter-spacing:1.025280px;}
.ls1c{letter-spacing:1.872000px;}
.ls36{letter-spacing:3.024000px;}
.ls19{letter-spacing:3.185280px;}
.ls39{letter-spacing:5.184000px;}
.ls16{letter-spacing:10.385280px;}
.lsa{letter-spacing:11.664000px;}
.ls1d{letter-spacing:12.276000px;}
.ls3b{letter-spacing:30.096000px;}
.ls30{letter-spacing:44.784000px;}
.ls31{letter-spacing:44.964000px;}
.lsf{letter-spacing:45.504000px;}
.ls1b{letter-spacing:193.104000px;}
.ls34{letter-spacing:228.942000px;}
.ls4{letter-spacing:844.164000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws27{word-spacing:-241.146000px;}
.ws10{word-spacing:-72.000000px;}
.ws1{word-spacing:-23.381280px;}
.ws15{word-spacing:-21.888000px;}
.wsc{word-spacing:-20.952000px;}
.ws1f{word-spacing:-20.520000px;}
.ws2d{word-spacing:-20.376000px;}
.ws0{word-spacing:-20.304000px;}
.ws14{word-spacing:-20.232000px;}
.ws6{word-spacing:-20.160000px;}
.ws5{word-spacing:-20.016000px;}
.wsa{word-spacing:-19.944000px;}
.ws4{word-spacing:-19.872000px;}
.wsb{word-spacing:-19.800000px;}
.ws16{word-spacing:-19.584000px;}
.ws25{word-spacing:-19.512000px;}
.ws12{word-spacing:-19.224000px;}
.ws8{word-spacing:-18.432000px;}
.ws2e{word-spacing:-18.414720px;}
.ws11{word-spacing:-18.305520px;}
.ws2b{word-spacing:-18.152520px;}
.ws3{word-spacing:-18.109320px;}
.ws7{word-spacing:-17.694720px;}
.ws2c{word-spacing:-17.430720px;}
.ws1d{word-spacing:-17.073480px;}
.ws1b{word-spacing:-16.613280px;}
.ws1e{word-spacing:-16.560000px;}
.ws1c{word-spacing:-16.506480px;}
.ws21{word-spacing:-15.138000px;}
.ws23{word-spacing:-15.012000px;}
.ws9{word-spacing:-13.410720px;}
.ws13{word-spacing:-13.229520px;}
.ws22{word-spacing:-13.147200px;}
.ws20{word-spacing:-12.510720px;}
.ws26{word-spacing:-12.236544px;}
.ws2a{word-spacing:-12.204000px;}
.ws18{word-spacing:-11.111160px;}
.wsd{word-spacing:-10.116000px;}
.wsf{word-spacing:-10.008000px;}
.wse{word-spacing:-9.684000px;}
.ws2{word-spacing:0.000000px;}
.ws19{word-spacing:183.264240px;}
.ws29{word-spacing:216.438000px;}
.ws28{word-spacing:216.618000px;}
.ws1a{word-spacing:271.888320px;}
.ws17{word-spacing:282.704880px;}
.ws24{word-spacing:957.330000px;}
._4a{margin-left:-2016.318000px;}
._49{margin-left:-228.942000px;}
._1f{margin-left:-18.576000px;}
._1e{margin-left:-16.866240px;}
._21{margin-left:-14.652000px;}
._22{margin-left:-13.068000px;}
._23{margin-left:-11.484000px;}
._25{margin-left:-9.816000px;}
._20{margin-left:-8.316000px;}
._24{margin-left:-6.501120px;}
._13{margin-left:-5.110080px;}
._9{margin-left:-3.940800px;}
._2{margin-left:-2.181120px;}
._0{margin-left:-1.010880px;}
._1{width:1.080000px;}
._3{width:2.165760px;}
._c{width:3.240000px;}
._10{width:4.608000px;}
._11{width:5.685120px;}
._34{width:6.768000px;}
._e{width:7.884000px;}
._d{width:9.180000px;}
._b{width:10.656000px;}
._a{width:12.312000px;}
._18{width:13.392000px;}
._8{width:14.400000px;}
._39{width:16.068000px;}
._1b{width:17.208000px;}
._7{width:18.576000px;}
._35{width:21.381120px;}
._2c{width:22.898880px;}
._f{width:24.408000px;}
._3a{width:26.064000px;}
._37{width:27.504000px;}
._36{width:29.016000px;}
._3b{width:30.348000px;}
._3c{width:31.428000px;}
._32{width:32.834880px;}
._38{width:33.981120px;}
._27{width:35.568000px;}
._15{width:36.741120px;}
._14{width:38.016000px;}
._3d{width:40.032000px;}
._1a{width:41.448000px;}
._19{width:42.696000px;}
._26{width:44.316000px;}
._29{width:45.536640px;}
._28{width:46.605120px;}
._47{width:47.961120px;}
._43{width:48.998880px;}
._17{width:50.541120px;}
._16{width:51.912000px;}
._4b{width:53.798880px;}
._41{width:54.864000px;}
._2e{width:56.412000px;}
._1c{width:60.912000px;}
._1d{width:61.922880px;}
._3e{width:68.832000px;}
._3f{width:70.128000px;}
._33{width:73.008000px;}
._2a{width:74.685120px;}
._2f{width:102.636000px;}
._31{width:108.540000px;}
._4d{width:114.048000px;}
._4c{width:115.272000px;}
._2d{width:126.864000px;}
._30{width:130.788000px;}
._2b{width:132.480000px;}
._44{width:141.870240px;}
._48{width:142.877760px;}
._40{width:193.104000px;}
._42{width:423.519120px;}
._5{width:638.028000px;}
._6{width:729.588000px;}
._4{width:844.140000px;}
._12{width:845.741280px;}
._46{width:990.486000px;}
._45{width:1123.704000px;}
.fc4{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(25,25,25);}
.fc3{color:rgb(21,21,21);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs9{font-size:40.320000px;}
.fs6{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fsc{font-size:54.144000px;}
.fs8{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fsb{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y155{bottom:2.955000px;}
.y157{bottom:3.990000px;}
.y15d{bottom:5.685000px;}
.y153{bottom:6.300000px;}
.y1b8{bottom:6.660000px;}
.ye9{bottom:7.245000px;}
.y62{bottom:7.365000px;}
.y50{bottom:7.380000px;}
.ye7{bottom:7.410000px;}
.y58{bottom:7.560000px;}
.y1d4{bottom:9.360000px;}
.y124{bottom:9.915000px;}
.y139{bottom:10.005000px;}
.y14f{bottom:10.080000px;}
.y151{bottom:10.650000px;}
.y15a{bottom:10.725000px;}
.y13b{bottom:10.770000px;}
.y1f8{bottom:11.175000px;}
.yf3{bottom:11.880000px;}
.y107{bottom:11.895000px;}
.yf9{bottom:11.910000px;}
.yfc{bottom:11.925000px;}
.y100{bottom:12.060000px;}
.y11a{bottom:12.225000px;}
.yab{bottom:13.125000px;}
.ya9{bottom:13.140000px;}
.y20e{bottom:13.170000px;}
.yad{bottom:13.305000px;}
.ya7{bottom:13.320000px;}
.y20d{bottom:13.350000px;}
.y210{bottom:13.500000px;}
.y12a{bottom:14.580000px;}
.y52{bottom:15.120000px;}
.y16a{bottom:16.035000px;}
.y137{bottom:17.385000px;}
.ye4{bottom:22.290000px;}
.y65{bottom:22.665000px;}
.y5a{bottom:22.680000px;}
.y61{bottom:22.845000px;}
.y4e{bottom:22.860000px;}
.y55{bottom:23.040000px;}
.y105{bottom:24.840000px;}
.y118{bottom:25.005000px;}
.yee{bottom:27.345000px;}
.y128{bottom:27.360000px;}
.y17c{bottom:27.390000px;}
.y11d{bottom:27.540000px;}
.y1b7{bottom:30.420000px;}
.y123{bottom:30.645000px;}
.y51{bottom:30.780000px;}
.y125{bottom:32.610000px;}
.y1d3{bottom:32.940000px;}
.y14e{bottom:33.660000px;}
.y159{bottom:33.945000px;}
.y1f7{bottom:34.395000px;}
.yf0{bottom:37.620000px;}
.yf2{bottom:37.800000px;}
.y102{bottom:37.815000px;}
.yf8{bottom:37.830000px;}
.yfb{bottom:37.845000px;}
.y116{bottom:38.010000px;}
.y11c{bottom:38.160000px;}
.y56{bottom:38.340000px;}
.y60{bottom:38.370000px;}
.y54{bottom:38.520000px;}
.y4f{bottom:38.550000px;}
.y129{bottom:40.500000px;}
.yed{bottom:41.565000px;}
.y17e{bottom:41.580000px;}
.y17a{bottom:41.745000px;}
.y1fa{bottom:41.760000px;}
.yfe{bottom:50.580000px;}
.yf5{bottom:50.610000px;}
.y104{bottom:50.760000px;}
.y117{bottom:50.970000px;}
.y121{bottom:53.490000px;}
.y63{bottom:53.670000px;}
.y5d{bottom:53.820000px;}
.y5f{bottom:53.850000px;}
.y5c{bottom:54.000000px;}
.y2{bottom:56.700000px;}
.y175{bottom:57.600000px;}
.y115{bottom:62.490000px;}
.yf1{bottom:63.720000px;}
.yf7{bottom:63.750000px;}
.y13c{bottom:63.870000px;}
.y119{bottom:63.930000px;}
.y174{bottom:74.805000px;}
.y1{bottom:75.600000px;}
.yff{bottom:89.640000px;}
.yf6{bottom:89.670000px;}
.y173{bottom:92.055000px;}
.yd8{bottom:103.710000px;}
.y211{bottom:106.200000px;}
.y1b6{bottom:108.900000px;}
.y1a0{bottom:110.700000px;}
.y168{bottom:112.320000px;}
.y14d{bottom:113.760000px;}
.yc3{bottom:114.120000px;}
.y44{bottom:115.020000px;}
.y45{bottom:116.460000px;}
.y81{bottom:117.720000px;}
.y22c{bottom:119.160000px;}
.ya3{bottom:120.420000px;}
.ye3{bottom:121.755000px;}
.yd9{bottom:122.040000px;}
.y1e8{bottom:122.730000px;}
.y1df{bottom:125.460000px;}
.y1bd{bottom:128.235000px;}
.yb5{bottom:129.420000px;}
.y1f{bottom:130.680000px;}
.y1c0{bottom:133.305000px;}
.y1c9{bottom:134.310000px;}
.y20f{bottom:134.640000px;}
.y1e9{bottom:136.335000px;}
.y25c{bottom:136.800000px;}
.y1e6{bottom:136.980000px;}
.y1ba{bottom:138.390000px;}
.ycc{bottom:138.960000px;}
.y1a9{bottom:139.680000px;}
.yda{bottom:140.325000px;}
.y112{bottom:142.740000px;}
.y167{bottom:143.460000px;}
.y1c5{bottom:143.490000px;}
.yc2{bottom:145.260000px;}
.y43{bottom:146.160000px;}
.y245{bottom:146.520000px;}
.y1be{bottom:148.575000px;}
.y80{bottom:148.680000px;}
.y1ea{bottom:149.910000px;}
.ya2{bottom:151.380000px;}
.y1c3{bottom:153.645000px;}
.y1a8{bottom:153.930000px;}
.y1aa{bottom:155.670000px;}
.y1cf{bottom:155.880000px;}
.y17b{bottom:156.240000px;}
.y1de{bottom:156.420000px;}
.ydb{bottom:158.655000px;}
.y1bc{bottom:158.760000px;}
.y1ca{bottom:159.765000px;}
.yb4{bottom:160.380000px;}
.y1f3{bottom:161.385000px;}
.y20c{bottom:163.260000px;}
.y1eb{bottom:163.470000px;}
.y1bf{bottom:163.830000px;}
.y1e{bottom:164.160000px;}
.y152{bottom:165.780000px;}
.y25b{bottom:167.940000px;}
.ycb{bottom:168.480000px;}
.y1c2{bottom:168.915000px;}
.y1a4{bottom:169.920000px;}
.y1ab{bottom:171.690000px;}
.y111{bottom:173.880000px;}
.y1bb{bottom:174.030000px;}
.y166{bottom:174.420000px;}
.yc1{bottom:176.250000px;}
.ydc{bottom:176.970000px;}
.y1ec{bottom:177.045000px;}
.y42{bottom:177.150000px;}
.y244{bottom:177.510000px;}
.y1e2{bottom:177.735000px;}
.y49{bottom:178.590000px;}
.y1c6{bottom:179.100000px;}
.y7a{bottom:179.670000px;}
.y19c{bottom:181.290000px;}
.y99{bottom:182.370000px;}
.y1b3{bottom:182.445000px;}
.ya1{bottom:182.550000px;}
.y1c4{bottom:184.170000px;}
.y1cb{bottom:185.220000px;}
.y1a1{bottom:185.910000px;}
.y22a{bottom:186.690000px;}
.y1dd{bottom:187.590000px;}
.y1ac{bottom:187.665000px;}
.y135{bottom:189.210000px;}
.y1c8{bottom:189.285000px;}
.y1ed{bottom:190.650000px;}
.y1e5{bottom:191.310000px;}
.yb3{bottom:191.550000px;}
.y20b{bottom:191.745000px;}
.ydd{bottom:195.270000px;}
.y16d{bottom:196.305000px;}
.y25a{bottom:198.930000px;}
.yca{bottom:199.470000px;}
.y1d{bottom:200.370000px;}
.y1a5{bottom:201.930000px;}
.y1ad{bottom:203.655000px;}
.y1ee{bottom:204.225000px;}
.y110{bottom:204.870000px;}
.y165{bottom:205.590000px;}
.yc0{bottom:206.130000px;}
.y41{bottom:208.290000px;}
.y243{bottom:208.470000px;}
.y1cc{bottom:210.675000px;}
.y79{bottom:210.810000px;}
.y19b{bottom:212.430000px;}
.y98{bottom:213.330000px;}
.ya0{bottom:213.510000px;}
.yde{bottom:213.585000px;}
.y179{bottom:213.885000px;}
.y260{bottom:214.230000px;}
.y16e{bottom:215.070000px;}
.y1ef{bottom:217.800000px;}
.y229{bottom:217.830000px;}
.y1a3{bottom:217.905000px;}
.y1e1{bottom:218.445000px;}
.y1dc{bottom:218.550000px;}
.y1ae{bottom:219.675000px;}
.y1c1{bottom:219.810000px;}
.y20a{bottom:220.185000px;}
.y134{bottom:220.350000px;}
.yb2{bottom:222.510000px;}
.y269{bottom:222.870000px;}
.y25f{bottom:223.590000px;}
.y259{bottom:230.070000px;}
.yc9{bottom:230.610000px;}
.y1f0{bottom:231.375000px;}
.ydf{bottom:231.870000px;}
.y1e3{bottom:232.050000px;}
.y1a2{bottom:233.925000px;}
.y1af{bottom:235.650000px;}
.ybf{bottom:235.830000px;}
.y10f{bottom:236.010000px;}
.y1cd{bottom:236.085000px;}
.y1c{bottom:236.550000px;}
.y40{bottom:239.250000px;}
.y7b{bottom:239.430000px;}
.y242{bottom:239.610000px;}
.y16f{bottom:240.480000px;}
.y78{bottom:241.770000px;}
.y19a{bottom:243.390000px;}
.y97{bottom:244.470000px;}
.y9f{bottom:244.650000px;}
.y1f1{bottom:244.950000px;}
.y1e4{bottom:245.625000px;}
.y261{bottom:247.530000px;}
.y25e{bottom:248.250000px;}
.y228{bottom:248.790000px;}
.y209{bottom:249.345000px;}
.y14c{bottom:249.690000px;}
.y1a7{bottom:249.915000px;}
.ye0{bottom:250.200000px;}
.y133{bottom:251.310000px;}
.y26a{bottom:251.490000px;}
.y1b0{bottom:251.670000px;}
.y262{bottom:253.470000px;}
.yb1{bottom:253.650000px;}
.y264{bottom:254.370000px;}
.y266{bottom:257.070000px;}
.y16c{bottom:257.145000px;}
.y1f2{bottom:258.555000px;}
.y1e7{bottom:259.200000px;}
.y1c7{bottom:260.535000px;}
.y150{bottom:261.000000px;}
.y258{bottom:261.030000px;}
.y1ce{bottom:261.540000px;}
.yc8{bottom:261.570000px;}
.y10e{bottom:266.970000px;}
.y1b1{bottom:267.660000px;}
.y164{bottom:267.690000px;}
.ybe{bottom:268.050000px;}
.ye1{bottom:268.485000px;}
.y3f{bottom:270.390000px;}
.y241{bottom:270.570000px;}
.y1b{bottom:272.730000px;}
.y77{bottom:272.910000px;}
.y1f5{bottom:273.675000px;}
.y199{bottom:274.530000px;}
.y96{bottom:275.430000px;}
.y9e{bottom:275.610000px;}
.y14b{bottom:278.130000px;}
.y263{bottom:279.390000px;}
.y227{bottom:279.930000px;}
.y1db{bottom:280.650000px;}
.y1a6{bottom:281.910000px;}
.y178{bottom:282.270000px;}
.y132{bottom:282.450000px;}
.y1b2{bottom:283.650000px;}
.yb0{bottom:284.610000px;}
.y268{bottom:285.510000px;}
.ye2{bottom:286.815000px;}
.y1d1{bottom:290.700000px;}
.y208{bottom:292.170000px;}
.yc7{bottom:292.710000px;}
.y10d{bottom:298.110000px;}
.y163{bottom:298.650000px;}
.ybd{bottom:300.270000px;}
.y3e{bottom:301.350000px;}
.y240{bottom:301.710000px;}
.y170{bottom:301.830000px;}
.y1b5{bottom:303.810000px;}
.y76{bottom:303.870000px;}
.y95{bottom:305.310000px;}
.y198{bottom:305.490000px;}
.y177{bottom:305.850000px;}
.y1a{bottom:306.570000px;}
.y1f4{bottom:308.595000px;}
.y67{bottom:309.810000px;}
.y267{bottom:310.350000px;}
.y226{bottom:310.890000px;}
.y1da{bottom:311.790000px;}
.y131{bottom:313.410000px;}
.ye5{bottom:314.250000px;}
.yaf{bottom:315.750000px;}
.y207{bottom:323.130000px;}
.yc6{bottom:323.670000px;}
.y1d0{bottom:325.620000px;}
.y10c{bottom:329.070000px;}
.y162{bottom:329.790000px;}
.y3d{bottom:332.490000px;}
.y23f{bottom:332.670000px;}
.y75{bottom:335.010000px;}
.y197{bottom:336.630000px;}
.y19{bottom:337.530000px;}
.y66{bottom:338.250000px;}
.y1b4{bottom:338.760000px;}
.ye6{bottom:341.100000px;}
.y225{bottom:342.030000px;}
.y1d9{bottom:342.750000px;}
.y130{bottom:344.550000px;}
.yae{bottom:346.710000px;}
.y206{bottom:354.270000px;}
.y64{bottom:354.285000px;}
.y171{bottom:357.510000px;}
.y10b{bottom:360.030000px;}
.yd7{bottom:360.180000px;}
.y161{bottom:360.750000px;}
.y23e{bottom:362.730000px;}
.y3c{bottom:363.450000px;}
.yac{bottom:364.185000px;}
.ybc{bottom:364.710000px;}
.y3b{bottom:364.890000px;}
.y74{bottom:365.970000px;}
.y9d{bottom:367.410000px;}
.y196{bottom:367.590000px;}
.y18{bottom:371.190000px;}
.y224{bottom:372.990000px;}
.y1d8{bottom:373.890000px;}
.y12f{bottom:375.510000px;}
.y23d{bottom:378.045000px;}
.y156{bottom:378.540000px;}
.y205{bottom:385.230000px;}
.y5e{bottom:386.145000px;}
.y10a{bottom:391.170000px;}
.y14a{bottom:391.890000px;}
.yaa{bottom:393.525000px;}
.y3a{bottom:394.590000px;}
.yb9{bottom:396.030000px;}
.y73{bottom:397.110000px;}
.y195{bottom:398.730000px;}
.y172{bottom:401.580000px;}
.y223{bottom:404.130000px;}
.y1d7{bottom:404.850000px;}
.y23c{bottom:406.485000px;}
.y12e{bottom:406.650000px;}
.y17{bottom:407.370000px;}
.y204{bottom:416.370000px;}
.y149{bottom:420.375000px;}
.y109{bottom:422.175000px;}
.ya8{bottom:422.715000px;}
.y160{bottom:422.895000px;}
.y39{bottom:425.595000px;}
.y6b{bottom:425.775000px;}
.y72{bottom:428.115000px;}
.y94{bottom:428.295000px;}
.y194{bottom:429.735000px;}
.y154{bottom:431.640000px;}
.y23b{bottom:434.955000px;}
.y222{bottom:435.135000px;}
.y1d6{bottom:435.855000px;}
.y12d{bottom:437.655000px;}
.y16{bottom:441.075000px;}
.y203{bottom:447.375000px;}
.y148{bottom:448.815000px;}
.y5b{bottom:448.995000px;}
.ya6{bottom:451.875000px;}
.y108{bottom:452.235000px;}
.y15f{bottom:454.035000px;}
.y38{bottom:456.555000px;}
.y48{bottom:456.735000px;}
.y71{bottom:459.255000px;}
.y93{bottom:459.435000px;}
.y193{bottom:460.875000px;}
.y23a{bottom:463.395000px;}
.y221{bottom:466.275000px;}
.y1d5{bottom:466.995000px;}
.y106{bottom:467.520000px;}
.y103{bottom:467.535000px;}
.y12c{bottom:468.795000px;}
.y15{bottom:472.215000px;}
.y147{bottom:478.515000px;}
.y15e{bottom:484.995000px;}
.y37{bottom:487.695000px;}
.y176{bottom:487.875000px;}
.y70{bottom:489.135000px;}
.y7f{bottom:490.215000px;}
.y92{bottom:490.395000px;}
.y192{bottom:491.835000px;}
.ya5{bottom:492.195000px;}
.y239{bottom:492.555000px;}
.y202{bottom:495.255000px;}
.y220{bottom:497.235000px;}
.y19f{bottom:497.955000px;}
.y12b{bottom:498.675000px;}
.y169{bottom:502.260000px;}
.y14{bottom:505.695000px;}
.y146{bottom:509.475000px;}
.y59{bottom:511.815000px;}
.y127{bottom:514.695000px;}
.y36{bottom:518.655000px;}
.y6f{bottom:518.835000px;}
.y7e{bottom:520.095000px;}
.y9c{bottom:521.355000px;}
.y91{bottom:521.535000px;}
.y191{bottom:522.975000px;}
.y201{bottom:523.695000px;}
.y1f6{bottom:527.820000px;}
.y21f{bottom:528.375000px;}
.y19e{bottom:529.095000px;}
.y238{bottom:535.395000px;}
.y16b{bottom:539.100000px;}
.y145{bottom:539.355000px;}
.y257{bottom:540.435000px;}
.y13{bottom:541.875000px;}
.y57{bottom:543.495000px;}
.y101{bottom:545.100000px;}
.yfd{bottom:545.115000px;}
.y35{bottom:549.795000px;}
.y6a{bottom:549.975000px;}
.y144{bottom:550.515000px;}
.y1e0{bottom:552.060000px;}
.y200{bottom:552.135000px;}
.y9b{bottom:552.315000px;}
.y90{bottom:552.495000px;}
.y190{bottom:553.935000px;}
.y21e{bottom:559.335000px;}
.y19d{bottom:560.055000px;}
.y237{bottom:566.355000px;}
.y256{bottom:571.575000px;}
.y126{bottom:572.295000px;}
.y53{bottom:575.355000px;}
.y12{bottom:578.055000px;}
.y1ff{bottom:580.575000px;}
.y33{bottom:580.755000px;}
.y6e{bottom:580.935000px;}
.y34{bottom:582.195000px;}
.y8f{bottom:583.455000px;}
.yb8{bottom:583.635000px;}
.y18f{bottom:585.075000px;}
.y21d{bottom:590.475000px;}
.y143{bottom:591.195000px;}
.y236{bottom:597.495000px;}
.y255{bottom:602.535000px;}
.y1fe{bottom:609.735000px;}
.y32{bottom:611.895000px;}
.y47{bottom:612.075000px;}
.ybb{bottom:613.335000px;}
.y8e{bottom:614.415000px;}
.yb7{bottom:614.595000px;}
.y18e{bottom:616.035000px;}
.y11{bottom:616.935000px;}
.y21c{bottom:621.435000px;}
.y142{bottom:622.155000px;}
.y4d{bottom:622.695000px;}
.y235{bottom:628.455000px;}
.y122{bottom:630.060000px;}
.y120{bottom:630.075000px;}
.y254{bottom:633.675000px;}
.y31{bottom:642.855000px;}
.y69{bottom:643.035000px;}
.y22b{bottom:644.295000px;}
.y8d{bottom:645.555000px;}
.yb6{bottom:645.735000px;}
.y18d{bottom:647.175000px;}
.yfa{bottom:648.600000px;}
.yf4{bottom:648.615000px;}
.y1fd{bottom:652.575000px;}
.y141{bottom:653.295000px;}
.y10{bottom:655.815000px;}
.y234{bottom:658.335000px;}
.y253{bottom:664.665000px;}
.y1fc{bottom:669.345000px;}
.y233{bottom:673.665000px;}
.y30{bottom:674.025000px;}
.y8c{bottom:676.545000px;}
.y18c{bottom:678.165000px;}
.y4c{bottom:681.045000px;}
.y252{bottom:681.405000px;}
.y21b{bottom:683.565000px;}
.y140{bottom:684.285000px;}
.yf{bottom:692.025000px;}
.y1fb{bottom:697.785000px;}
.y11f{bottom:698.145000px;}
.y232{bottom:702.105000px;}
.y2f{bottom:704.985000px;}
.y46{bottom:705.165000px;}
.y1d2{bottom:705.345000px;}
.y4b{bottom:706.425000px;}
.y8b{bottom:707.685000px;}
.yc5{bottom:708.945000px;}
.y18b{bottom:709.305000px;}
.y251{bottom:710.025000px;}
.y21a{bottom:714.705000px;}
.y13f{bottom:715.425000px;}
.y1f9{bottom:726.945000px;}
.ye{bottom:728.205000px;}
.y231{bottom:731.445000px;}
.y2e{bottom:736.125000px;}
.y25d{bottom:737.565000px;}
.y8a{bottom:738.645000px;}
.y250{bottom:739.185000px;}
.y158{bottom:739.620000px;}
.y1b9{bottom:739.800000px;}
.y18a{bottom:740.265000px;}
.y219{bottom:745.665000px;}
.yef{bottom:752.145000px;}
.y11e{bottom:755.745000px;}
.yd{bottom:762.045000px;}
.y2d{bottom:767.085000px;}
.y89{bottom:769.785000px;}
.y189{bottom:771.405000px;}
.yd6{bottom:772.455000px;}
.y230{bottom:774.105000px;}
.y218{bottom:776.805000px;}
.y24f{bottom:780.765000px;}
.yd5{bottom:787.935000px;}
.y15c{bottom:790.380000px;}
.yc{bottom:795.525000px;}
.y2c{bottom:798.225000px;}
.y136{bottom:798.300000px;}
.y9a{bottom:799.665000px;}
.y88{bottom:800.745000px;}
.y188{bottom:802.365000px;}
.y22f{bottom:805.245000px;}
.y217{bottom:807.765000px;}
.y13e{bottom:808.485000px;}
.y24e{bottom:810.465000px;}
.y11b{bottom:813.345000px;}
.yd4{bottom:825.915000px;}
.y2b{bottom:829.185000px;}
.yec{bottom:830.460000px;}
.yba{bottom:830.625000px;}
.yb{bottom:831.705000px;}
.y87{bottom:831.885000px;}
.y187{bottom:833.505000px;}
.y22e{bottom:836.205000px;}
.y216{bottom:838.905000px;}
.y13d{bottom:839.625000px;}
.y24d{bottom:841.425000px;}
.y138{bottom:848.700000px;}
.y2a{bottom:860.325000px;}
.y86{bottom:862.845000px;}
.y186{bottom:864.465000px;}
.yd3{bottom:865.695000px;}
.y22d{bottom:867.345000px;}
.ya{bottom:867.885000px;}
.y215{bottom:868.785000px;}
.y114{bottom:871.140000px;}
.y24c{bottom:872.565000px;}
.y15b{bottom:881.100000px;}
.y214{bottom:884.100000px;}
.y29{bottom:891.285000px;}
.y85{bottom:893.985000px;}
.y185{bottom:895.605000px;}
.yeb{bottom:898.485000px;}
.y24b{bottom:903.570000px;}
.yd2{bottom:903.705000px;}
.y9{bottom:911.310000px;}
.y213{bottom:912.570000px;}
.y24a{bottom:920.310000px;}
.y28{bottom:922.470000px;}
.yea{bottom:923.910000px;}
.y84{bottom:924.990000px;}
.y184{bottom:926.610000px;}
.y13a{bottom:935.100000px;}
.yd1{bottom:941.685000px;}
.y212{bottom:941.730000px;}
.y249{bottom:948.750000px;}
.y27{bottom:953.430000px;}
.y8{bottom:955.950000px;}
.y83{bottom:956.130000px;}
.y183{bottom:957.750000px;}
.y113{bottom:960.630000px;}
.y248{bottom:977.190000px;}
.yd0{bottom:981.465000px;}
.y26{bottom:984.570000px;}
.y7d{bottom:984.750000px;}
.y82{bottom:986.010000px;}
.y182{bottom:988.710000px;}
.y7{bottom:992.130000px;}
.y247{bottom:1005.630000px;}
.y25{bottom:1015.530000px;}
.y68{bottom:1015.710000px;}
.y4a{bottom:1016.970000px;}
.ycf{bottom:1019.490000px;}
.y181{bottom:1019.850000px;}
.y6{bottom:1028.310000px;}
.y246{bottom:1034.970000px;}
.y24{bottom:1046.670000px;}
.y7c{bottom:1046.850000px;}
.y180{bottom:1050.810000px;}
.yce{bottom:1057.470000px;}
.y5{bottom:1064.670000px;}
.y23{bottom:1077.630000px;}
.y6d{bottom:1077.810000px;}
.y17f{bottom:1085.730000px;}
.ycd{bottom:1097.280000px;}
.y17d{bottom:1098.870000px;}
.y4{bottom:1100.850000px;}
.y22{bottom:1108.770000px;}
.ya4{bottom:1108.950000px;}
.yc4{bottom:1120.470000px;}
.ye8{bottom:1135.755000px;}
.y3{bottom:1137.030000px;}
.y21{bottom:1139.730000px;}
.y6c{bottom:1139.910000px;}
.y265{bottom:1141.350000px;}
.y20{bottom:1197.180000px;}
.h34{height:13.860150px;}
.h35{height:14.940000px;}
.h33{height:17.280000px;}
.h38{height:18.000000px;}
.h18{height:20.205000px;}
.h17{height:20.340000px;}
.h2d{height:22.320000px;}
.h10{height:28.425000px;}
.h45{height:28.440000px;}
.h11{height:28.461000px;}
.h46{height:28.476000px;}
.h12{height:28.605000px;}
.h47{height:28.620000px;}
.h39{height:28.800000px;}
.h2c{height:29.700000px;}
.hd{height:30.945000px;}
.hc{height:31.125000px;}
.ha{height:37.546875px;}
.h40{height:42.660000px;}
.h15{height:44.534180px;}
.h3f{height:44.652938px;}
.h42{height:45.180000px;}
.h31{height:46.080000px;}
.h36{height:46.260000px;}
.hb{height:46.605000px;}
.h44{height:46.620000px;}
.h9{height:46.650000px;}
.h16{height:49.078125px;}
.h29{height:50.312812px;}
.h7{height:56.320312px;}
.h19{height:56.865000px;}
.h26{height:56.880000px;}
.h3d{height:56.910000px;}
.h3c{height:56.916000px;}
.h2b{height:57.045000px;}
.h24{height:57.055500px;}
.h25{height:57.060000px;}
.hf{height:61.941000px;}
.he{height:62.085000px;}
.h13{height:62.327813px;}
.h8{height:64.546875px;}
.h2a{height:67.170000px;}
.h27{height:67.176000px;}
.h28{height:67.185000px;}
.h2{height:69.086250px;}
.h5{height:75.093750px;}
.h22{height:77.565000px;}
.h1b{height:77.575500px;}
.h1a{height:77.580000px;}
.h23{height:77.601000px;}
.h3{height:87.859687px;}
.h3b{height:89.068359px;}
.h2f{height:96.683906px;}
.h6{height:99.874688px;}
.h1f{height:103.485000px;}
.h20{height:103.495500px;}
.h21{height:103.500000px;}
.h1c{height:103.530000px;}
.h1d{height:103.536000px;}
.h1e{height:103.545000px;}
.h30{height:119.733750px;}
.h4{height:125.406562px;}
.h32{height:149.940000px;}
.h37{height:170.820000px;}
.h2e{height:173.520000px;}
.h14{height:342.720000px;}
.h43{height:345.780000px;}
.h41{height:362.700000px;}
.h3e{height:376.020000px;}
.h3a{height:438.660000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w21{width:14.580000px;}
.w1c{width:19.620000px;}
.w1a{width:20.520000px;}
.w3{width:39.585000px;}
.w5{width:39.600000px;}
.w8{width:39.765000px;}
.w6{width:39.780000px;}
.w4{width:39.801000px;}
.w7{width:39.816000px;}
.w2{width:91.611000px;}
.w15{width:130.845000px;}
.w12{width:130.851000px;}
.w17{width:130.860000px;}
.w13{width:130.881000px;}
.w16{width:131.061000px;}
.w14{width:131.076000px;}
.w1f{width:142.920000px;}
.w2f{width:171.570000px;}
.w1e{width:175.500000px;}
.w2e{width:185.781000px;}
.w25{width:206.841000px;}
.w11{width:218.901000px;}
.w10{width:219.435000px;}
.we{width:219.441000px;}
.wf{width:219.450000px;}
.w2d{width:219.615000px;}
.w2b{width:219.621000px;}
.w2c{width:219.810000px;}
.w22{width:225.180000px;}
.w19{width:231.480000px;}
.w30{width:301.335000px;}
.w9{width:328.341000px;}
.wa{width:328.560000px;}
.w32{width:328.701000px;}
.w33{width:329.280000px;}
.w1d{width:392.040000px;}
.w26{width:450.060000px;}
.w23{width:479.220000px;}
.wc{width:514.080000px;}
.wb{width:545.580000px;}
.wd{width:630.090000px;}
.w18{width:652.500000px;}
.w31{width:658.350000px;}
.w29{width:658.440000px;}
.w2a{width:658.530000px;}
.w28{width:659.070000px;}
.w27{width:659.160000px;}
.w20{width:662.580000px;}
.w24{width:675.000000px;}
.w1b{width:716.940000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:8.265000px;}
.x1f{left:9.360000px;}
.x1b{left:11.520000px;}
.x1a{left:13.320000px;}
.x18{left:15.285000px;}
.x20{left:17.100000px;}
.x44{left:20.865000px;}
.x15{left:23.025000px;}
.x9a{left:24.225000px;}
.x38{left:25.920000px;}
.x43{left:29.370000px;}
.x3f{left:30.420000px;}
.x33{left:31.710000px;}
.x32{left:39.885000px;}
.x3a{left:41.385000px;}
.x46{left:42.825000px;}
.x3e{left:44.640000px;}
.x31{left:46.725000px;}
.x48{left:48.765000px;}
.x41{left:50.385000px;}
.x45{left:52.050000px;}
.x30{left:53.565000px;}
.x47{left:54.750000px;}
.x3b{left:56.505000px;}
.xa4{left:57.585000px;}
.xaa{left:59.025000px;}
.x61{left:61.545000px;}
.xa5{left:63.165000px;}
.x3c{left:65.325000px;}
.x5d{left:66.855000px;}
.x87{left:71.895000px;}
.x37{left:73.425000px;}
.x9f{left:74.685000px;}
.x2a{left:76.710000px;}
.x79{left:79.305000px;}
.xa0{left:81.180000px;}
.xa8{left:86.025000px;}
.x68{left:88.230000px;}
.xa7{left:92.865000px;}
.xa6{left:95.745000px;}
.x93{left:102.630000px;}
.x70{left:103.830000px;}
.x5f{left:106.200000px;}
.x51{left:108.000000px;}
.x81{left:110.085000px;}
.x62{left:115.380000px;}
.x28{left:118.245000px;}
.xb{left:127.656000px;}
.x49{left:130.500000px;}
.x36{left:131.760000px;}
.xa9{left:134.625000px;}
.x88{left:135.900000px;}
.x2d{left:137.124000px;}
.x35{left:140.070000px;}
.x9e{left:141.465000px;}
.x52{left:146.340000px;}
.xa3{left:149.745000px;}
.x8d{left:151.275000px;}
.x69{left:153.075000px;}
.x60{left:155.190000px;}
.x2b{left:159.690000px;}
.x94{left:166.650000px;}
.x71{left:168.660000px;}
.x82{left:170.745000px;}
.x2{left:180.750000px;}
.x78{left:183.990000px;}
.x53{left:185.220000px;}
.x9b{left:187.170000px;}
.x56{left:188.820000px;}
.x5a{left:192.525000px;}
.x5b{left:197.250000px;}
.x89{left:199.905000px;}
.x2f{left:201.600000px;}
.x6{left:205.950000px;}
.x2c{left:207.750000px;}
.x8e{left:215.280000px;}
.xa1{left:216.390000px;}
.x6a{left:217.905000px;}
.x16{left:220.725000px;}
.x7c{left:222.840000px;}
.x59{left:229.395000px;}
.x95{left:230.655000px;}
.xa2{left:232.410000px;}
.x11{left:234.030000px;}
.x34{left:248.145000px;}
.x3{left:251.850000px;}
.x4{left:260.130000px;}
.x8a{left:263.910000px;}
.x63{left:267.195000px;}
.x7a{left:271.545000px;}
.x2e{left:272.595000px;}
.x5c{left:275.550000px;}
.x8f{left:279.285000px;}
.x6b{left:282.750000px;}
.x7d{left:286.920000px;}
.xe{left:293.475000px;}
.x96{left:294.660000px;}
.x72{left:298.335000px;}
.x19{left:301.575000px;}
.x9c{left:313.815000px;}
.x8b{left:327.930000px;}
.x64{left:332.025000px;}
.x5e{left:335.955000px;}
.x1c{left:342.075000px;}
.x4b{left:343.515000px;}
.x9{left:347.655000px;}
.x8{left:350.175000px;}
.x4a{left:355.140000px;}
.x57{left:356.760000px;}
.x97{left:358.665000px;}
.x73{left:363.165000px;}
.x83{left:366.405000px;}
.xd{left:371.595000px;}
.xf{left:382.215000px;}
.x3d{left:391.575000px;}
.x7{left:395.535000px;}
.xa{left:397.335000px;}
.x90{left:407.310000px;}
.x6c{left:412.410000px;}
.x7e{left:415.080000px;}
.x1d{left:422.895000px;}
.x74{left:428.010000px;}
.x8c{left:455.940000px;}
.x29{left:457.455000px;}
.x65{left:461.700000px;}
.x1e{left:463.215000px;}
.x58{left:464.430000px;}
.x6d{left:477.255000px;}
.x7f{left:479.160000px;}
.x5{left:483.735000px;}
.x9d{left:485.400000px;}
.x98{left:486.690000px;}
.x75{left:492.840000px;}
.x84{left:494.565000px;}
.x21{left:503.760000px;}
.x40{left:523.380000px;}
.x7b{left:524.445000px;}
.x66{left:526.530000px;}
.x91{left:535.320000px;}
.x80{left:539.820000px;}
.x6e{left:542.085000px;}
.x22{left:544.080000px;}
.x85{left:555.225000px;}
.x76{left:557.670000px;}
.x54{left:564.840000px;}
.x39{left:566.580000px;}
.x55{left:569.880000px;}
.x23{left:584.580000px;}
.x67{left:591.375000px;}
.x92{left:599.325000px;}
.x6f{left:606.960000px;}
.x99{left:614.700000px;}
.x86{left:619.305000px;}
.x77{left:622.515000px;}
.x24{left:625.080000px;}
.x42{left:654.960000px;}
.x25{left:665.400000px;}
.x4f{left:682.530000px;}
.x50{left:683.970000px;}
.x26{left:705.930000px;}
.x4e{left:731.670000px;}
.x4d{left:733.650000px;}
.x27{left:746.250000px;}
.x4c{left:753.990000px;}
.x13{left:767.490000px;}
.x12{left:771.090000px;}
.x10{left:775.770000px;}
.x14{left:777.570000px;}
.xc{left:779.370000px;}
.x1{left:783.150000px;}
.xae{left:788.370000px;}
.xad{left:795.750000px;}
.xab{left:797.370000px;}
.xac{left:804.930000px;}
@media print{
.va{vertical-align:-36.213333pt;}
.v4{vertical-align:-21.120000pt;}
.v9{vertical-align:-18.186667pt;}
.v5{vertical-align:-6.506667pt;}
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:16.000000pt;}
.v3{vertical-align:18.560000pt;}
.v2{vertical-align:21.120000pt;}
.v8{vertical-align:39.680000pt;}
.v7{vertical-align:44.800000pt;}
.lsb{letter-spacing:-1.408000pt;}
.ls38{letter-spacing:-0.874667pt;}
.ls37{letter-spacing:-0.832000pt;}
.ls2b{letter-spacing:-0.800000pt;}
.ls18{letter-spacing:-0.704000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls2c{letter-spacing:-0.576000pt;}
.ls6{letter-spacing:-0.512000pt;}
.ls33{letter-spacing:-0.448000pt;}
.ls14{letter-spacing:-0.384000pt;}
.ls13{letter-spacing:-0.288000pt;}
.ls5{letter-spacing:-0.271467pt;}
.ls35{letter-spacing:-0.233067pt;}
.ls26{letter-spacing:-0.198933pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.161067pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.097067pt;}
.ls22{letter-spacing:-0.094933pt;}
.ls1e{letter-spacing:-0.086933pt;}
.ls20{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls29{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:-0.033280pt;}
.ls1f{letter-spacing:-0.016000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.016000pt;}
.ls12{letter-spacing:0.096000pt;}
.ls2d{letter-spacing:0.112000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls27{letter-spacing:0.129067pt;}
.ls24{letter-spacing:0.129280pt;}
.ls32{letter-spacing:0.144000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.224000pt;}
.ls23{letter-spacing:0.235947pt;}
.ls2e{letter-spacing:0.239360pt;}
.ls0{letter-spacing:0.256000pt;}
.ls3a{letter-spacing:0.320000pt;}
.ls28{letter-spacing:0.409067pt;}
.ls10{letter-spacing:0.416000pt;}
.ls2a{letter-spacing:0.448000pt;}
.ls21{letter-spacing:0.592640pt;}
.ls25{letter-spacing:0.769280pt;}
.lse{letter-spacing:0.832000pt;}
.ls15{letter-spacing:0.911360pt;}
.ls1c{letter-spacing:1.664000pt;}
.ls36{letter-spacing:2.688000pt;}
.ls19{letter-spacing:2.831360pt;}
.ls39{letter-spacing:4.608000pt;}
.ls16{letter-spacing:9.231360pt;}
.lsa{letter-spacing:10.368000pt;}
.ls1d{letter-spacing:10.912000pt;}
.ls3b{letter-spacing:26.752000pt;}
.ls30{letter-spacing:39.808000pt;}
.ls31{letter-spacing:39.968000pt;}
.lsf{letter-spacing:40.448000pt;}
.ls1b{letter-spacing:171.648000pt;}
.ls34{letter-spacing:203.504000pt;}
.ls4{letter-spacing:750.368000pt;}
.ws27{word-spacing:-214.352000pt;}
.ws10{word-spacing:-64.000000pt;}
.ws1{word-spacing:-20.783360pt;}
.ws15{word-spacing:-19.456000pt;}
.wsc{word-spacing:-18.624000pt;}
.ws1f{word-spacing:-18.240000pt;}
.ws2d{word-spacing:-18.112000pt;}
.ws0{word-spacing:-18.048000pt;}
.ws14{word-spacing:-17.984000pt;}
.ws6{word-spacing:-17.920000pt;}
.ws5{word-spacing:-17.792000pt;}
.wsa{word-spacing:-17.728000pt;}
.ws4{word-spacing:-17.664000pt;}
.wsb{word-spacing:-17.600000pt;}
.ws16{word-spacing:-17.408000pt;}
.ws25{word-spacing:-17.344000pt;}
.ws12{word-spacing:-17.088000pt;}
.ws8{word-spacing:-16.384000pt;}
.ws2e{word-spacing:-16.368640pt;}
.ws11{word-spacing:-16.271573pt;}
.ws2b{word-spacing:-16.135573pt;}
.ws3{word-spacing:-16.097173pt;}
.ws7{word-spacing:-15.728640pt;}
.ws2c{word-spacing:-15.493973pt;}
.ws1d{word-spacing:-15.176427pt;}
.ws1b{word-spacing:-14.767360pt;}
.ws1e{word-spacing:-14.720000pt;}
.ws1c{word-spacing:-14.672427pt;}
.ws21{word-spacing:-13.456000pt;}
.ws23{word-spacing:-13.344000pt;}
.ws9{word-spacing:-11.920640pt;}
.ws13{word-spacing:-11.759573pt;}
.ws22{word-spacing:-11.686400pt;}
.ws20{word-spacing:-11.120640pt;}
.ws26{word-spacing:-10.876928pt;}
.ws2a{word-spacing:-10.848000pt;}
.ws18{word-spacing:-9.876587pt;}
.wsd{word-spacing:-8.992000pt;}
.wsf{word-spacing:-8.896000pt;}
.wse{word-spacing:-8.608000pt;}
.ws2{word-spacing:0.000000pt;}
.ws19{word-spacing:162.901547pt;}
.ws29{word-spacing:192.389333pt;}
.ws28{word-spacing:192.549333pt;}
.ws1a{word-spacing:241.678507pt;}
.ws17{word-spacing:251.293227pt;}
.ws24{word-spacing:850.960000pt;}
._4a{margin-left:-1792.282667pt;}
._49{margin-left:-203.504000pt;}
._1f{margin-left:-16.512000pt;}
._1e{margin-left:-14.992213pt;}
._21{margin-left:-13.024000pt;}
._22{margin-left:-11.616000pt;}
._23{margin-left:-10.208000pt;}
._25{margin-left:-8.725333pt;}
._20{margin-left:-7.392000pt;}
._24{margin-left:-5.778773pt;}
._13{margin-left:-4.542293pt;}
._9{margin-left:-3.502933pt;}
._2{margin-left:-1.938773pt;}
._0{margin-left:-0.898560pt;}
._1{width:0.960000pt;}
._3{width:1.925120pt;}
._c{width:2.880000pt;}
._10{width:4.096000pt;}
._11{width:5.053440pt;}
._34{width:6.016000pt;}
._e{width:7.008000pt;}
._d{width:8.160000pt;}
._b{width:9.472000pt;}
._a{width:10.944000pt;}
._18{width:11.904000pt;}
._8{width:12.800000pt;}
._39{width:14.282667pt;}
._1b{width:15.296000pt;}
._7{width:16.512000pt;}
._35{width:19.005440pt;}
._2c{width:20.354560pt;}
._f{width:21.696000pt;}
._3a{width:23.168000pt;}
._37{width:24.448000pt;}
._36{width:25.792000pt;}
._3b{width:26.976000pt;}
._3c{width:27.936000pt;}
._32{width:29.186560pt;}
._38{width:30.205440pt;}
._27{width:31.616000pt;}
._15{width:32.658773pt;}
._14{width:33.792000pt;}
._3d{width:35.584000pt;}
._1a{width:36.842667pt;}
._19{width:37.952000pt;}
._26{width:39.392000pt;}
._29{width:40.477013pt;}
._28{width:41.426773pt;}
._47{width:42.632107pt;}
._43{width:43.554560pt;}
._17{width:44.925440pt;}
._16{width:46.144000pt;}
._4b{width:47.821227pt;}
._41{width:48.768000pt;}
._2e{width:50.144000pt;}
._1c{width:54.144000pt;}
._1d{width:55.042560pt;}
._3e{width:61.184000pt;}
._3f{width:62.336000pt;}
._33{width:64.896000pt;}
._2a{width:66.386773pt;}
._2f{width:91.232000pt;}
._31{width:96.480000pt;}
._4d{width:101.376000pt;}
._4c{width:102.464000pt;}
._2d{width:112.768000pt;}
._30{width:116.256000pt;}
._2b{width:117.760000pt;}
._44{width:126.106880pt;}
._48{width:127.002453pt;}
._40{width:171.648000pt;}
._42{width:376.461440pt;}
._5{width:567.136000pt;}
._6{width:648.522667pt;}
._4{width:750.346667pt;}
._12{width:751.770027pt;}
._46{width:880.432000pt;}
._45{width:998.848000pt;}
.fs7{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs9{font-size:35.840000pt;}
.fs6{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fsc{font-size:48.128000pt;}
.fs8{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fsb{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y155{bottom:2.626667pt;}
.y157{bottom:3.546667pt;}
.y15d{bottom:5.053333pt;}
.y153{bottom:5.600000pt;}
.y1b8{bottom:5.920000pt;}
.ye9{bottom:6.440000pt;}
.y62{bottom:6.546667pt;}
.y50{bottom:6.560000pt;}
.ye7{bottom:6.586667pt;}
.y58{bottom:6.720000pt;}
.y1d4{bottom:8.320000pt;}
.y124{bottom:8.813333pt;}
.y139{bottom:8.893333pt;}
.y14f{bottom:8.960000pt;}
.y151{bottom:9.466667pt;}
.y15a{bottom:9.533333pt;}
.y13b{bottom:9.573333pt;}
.y1f8{bottom:9.933333pt;}
.yf3{bottom:10.560000pt;}
.y107{bottom:10.573333pt;}
.yf9{bottom:10.586667pt;}
.yfc{bottom:10.600000pt;}
.y100{bottom:10.720000pt;}
.y11a{bottom:10.866667pt;}
.yab{bottom:11.666667pt;}
.ya9{bottom:11.680000pt;}
.y20e{bottom:11.706667pt;}
.yad{bottom:11.826667pt;}
.ya7{bottom:11.840000pt;}
.y20d{bottom:11.866667pt;}
.y210{bottom:12.000000pt;}
.y12a{bottom:12.960000pt;}
.y52{bottom:13.440000pt;}
.y16a{bottom:14.253333pt;}
.y137{bottom:15.453333pt;}
.ye4{bottom:19.813333pt;}
.y65{bottom:20.146667pt;}
.y5a{bottom:20.160000pt;}
.y61{bottom:20.306667pt;}
.y4e{bottom:20.320000pt;}
.y55{bottom:20.480000pt;}
.y105{bottom:22.080000pt;}
.y118{bottom:22.226667pt;}
.yee{bottom:24.306667pt;}
.y128{bottom:24.320000pt;}
.y17c{bottom:24.346667pt;}
.y11d{bottom:24.480000pt;}
.y1b7{bottom:27.040000pt;}
.y123{bottom:27.240000pt;}
.y51{bottom:27.360000pt;}
.y125{bottom:28.986667pt;}
.y1d3{bottom:29.280000pt;}
.y14e{bottom:29.920000pt;}
.y159{bottom:30.173333pt;}
.y1f7{bottom:30.573333pt;}
.yf0{bottom:33.440000pt;}
.yf2{bottom:33.600000pt;}
.y102{bottom:33.613333pt;}
.yf8{bottom:33.626667pt;}
.yfb{bottom:33.640000pt;}
.y116{bottom:33.786667pt;}
.y11c{bottom:33.920000pt;}
.y56{bottom:34.080000pt;}
.y60{bottom:34.106667pt;}
.y54{bottom:34.240000pt;}
.y4f{bottom:34.266667pt;}
.y129{bottom:36.000000pt;}
.yed{bottom:36.946667pt;}
.y17e{bottom:36.960000pt;}
.y17a{bottom:37.106667pt;}
.y1fa{bottom:37.120000pt;}
.yfe{bottom:44.960000pt;}
.yf5{bottom:44.986667pt;}
.y104{bottom:45.120000pt;}
.y117{bottom:45.306667pt;}
.y121{bottom:47.546667pt;}
.y63{bottom:47.706667pt;}
.y5d{bottom:47.840000pt;}
.y5f{bottom:47.866667pt;}
.y5c{bottom:48.000000pt;}
.y2{bottom:50.400000pt;}
.y175{bottom:51.200000pt;}
.y115{bottom:55.546667pt;}
.yf1{bottom:56.640000pt;}
.yf7{bottom:56.666667pt;}
.y13c{bottom:56.773333pt;}
.y119{bottom:56.826667pt;}
.y174{bottom:66.493333pt;}
.y1{bottom:67.200000pt;}
.yff{bottom:79.680000pt;}
.yf6{bottom:79.706667pt;}
.y173{bottom:81.826667pt;}
.yd8{bottom:92.186667pt;}
.y211{bottom:94.400000pt;}
.y1b6{bottom:96.800000pt;}
.y1a0{bottom:98.400000pt;}
.y168{bottom:99.840000pt;}
.y14d{bottom:101.120000pt;}
.yc3{bottom:101.440000pt;}
.y44{bottom:102.240000pt;}
.y45{bottom:103.520000pt;}
.y81{bottom:104.640000pt;}
.y22c{bottom:105.920000pt;}
.ya3{bottom:107.040000pt;}
.ye3{bottom:108.226667pt;}
.yd9{bottom:108.480000pt;}
.y1e8{bottom:109.093333pt;}
.y1df{bottom:111.520000pt;}
.y1bd{bottom:113.986667pt;}
.yb5{bottom:115.040000pt;}
.y1f{bottom:116.160000pt;}
.y1c0{bottom:118.493333pt;}
.y1c9{bottom:119.386667pt;}
.y20f{bottom:119.680000pt;}
.y1e9{bottom:121.186667pt;}
.y25c{bottom:121.600000pt;}
.y1e6{bottom:121.760000pt;}
.y1ba{bottom:123.013333pt;}
.ycc{bottom:123.520000pt;}
.y1a9{bottom:124.160000pt;}
.yda{bottom:124.733333pt;}
.y112{bottom:126.880000pt;}
.y167{bottom:127.520000pt;}
.y1c5{bottom:127.546667pt;}
.yc2{bottom:129.120000pt;}
.y43{bottom:129.920000pt;}
.y245{bottom:130.240000pt;}
.y1be{bottom:132.066667pt;}
.y80{bottom:132.160000pt;}
.y1ea{bottom:133.253333pt;}
.ya2{bottom:134.560000pt;}
.y1c3{bottom:136.573333pt;}
.y1a8{bottom:136.826667pt;}
.y1aa{bottom:138.373333pt;}
.y1cf{bottom:138.560000pt;}
.y17b{bottom:138.880000pt;}
.y1de{bottom:139.040000pt;}
.ydb{bottom:141.026667pt;}
.y1bc{bottom:141.120000pt;}
.y1ca{bottom:142.013333pt;}
.yb4{bottom:142.560000pt;}
.y1f3{bottom:143.453333pt;}
.y20c{bottom:145.120000pt;}
.y1eb{bottom:145.306667pt;}
.y1bf{bottom:145.626667pt;}
.y1e{bottom:145.920000pt;}
.y152{bottom:147.360000pt;}
.y25b{bottom:149.280000pt;}
.ycb{bottom:149.760000pt;}
.y1c2{bottom:150.146667pt;}
.y1a4{bottom:151.040000pt;}
.y1ab{bottom:152.613333pt;}
.y111{bottom:154.560000pt;}
.y1bb{bottom:154.693333pt;}
.y166{bottom:155.040000pt;}
.yc1{bottom:156.666667pt;}
.ydc{bottom:157.306667pt;}
.y1ec{bottom:157.373333pt;}
.y42{bottom:157.466667pt;}
.y244{bottom:157.786667pt;}
.y1e2{bottom:157.986667pt;}
.y49{bottom:158.746667pt;}
.y1c6{bottom:159.200000pt;}
.y7a{bottom:159.706667pt;}
.y19c{bottom:161.146667pt;}
.y99{bottom:162.106667pt;}
.y1b3{bottom:162.173333pt;}
.ya1{bottom:162.266667pt;}
.y1c4{bottom:163.706667pt;}
.y1cb{bottom:164.640000pt;}
.y1a1{bottom:165.253333pt;}
.y22a{bottom:165.946667pt;}
.y1dd{bottom:166.746667pt;}
.y1ac{bottom:166.813333pt;}
.y135{bottom:168.186667pt;}
.y1c8{bottom:168.253333pt;}
.y1ed{bottom:169.466667pt;}
.y1e5{bottom:170.053333pt;}
.yb3{bottom:170.266667pt;}
.y20b{bottom:170.440000pt;}
.ydd{bottom:173.573333pt;}
.y16d{bottom:174.493333pt;}
.y25a{bottom:176.826667pt;}
.yca{bottom:177.306667pt;}
.y1d{bottom:178.106667pt;}
.y1a5{bottom:179.493333pt;}
.y1ad{bottom:181.026667pt;}
.y1ee{bottom:181.533333pt;}
.y110{bottom:182.106667pt;}
.y165{bottom:182.746667pt;}
.yc0{bottom:183.226667pt;}
.y41{bottom:185.146667pt;}
.y243{bottom:185.306667pt;}
.y1cc{bottom:187.266667pt;}
.y79{bottom:187.386667pt;}
.y19b{bottom:188.826667pt;}
.y98{bottom:189.626667pt;}
.ya0{bottom:189.786667pt;}
.yde{bottom:189.853333pt;}
.y179{bottom:190.120000pt;}
.y260{bottom:190.426667pt;}
.y16e{bottom:191.173333pt;}
.y1ef{bottom:193.600000pt;}
.y229{bottom:193.626667pt;}
.y1a3{bottom:193.693333pt;}
.y1e1{bottom:194.173333pt;}
.y1dc{bottom:194.266667pt;}
.y1ae{bottom:195.266667pt;}
.y1c1{bottom:195.386667pt;}
.y20a{bottom:195.720000pt;}
.y134{bottom:195.866667pt;}
.yb2{bottom:197.786667pt;}
.y269{bottom:198.106667pt;}
.y25f{bottom:198.746667pt;}
.y259{bottom:204.506667pt;}
.yc9{bottom:204.986667pt;}
.y1f0{bottom:205.666667pt;}
.ydf{bottom:206.106667pt;}
.y1e3{bottom:206.266667pt;}
.y1a2{bottom:207.933333pt;}
.y1af{bottom:209.466667pt;}
.ybf{bottom:209.626667pt;}
.y10f{bottom:209.786667pt;}
.y1cd{bottom:209.853333pt;}
.y1c{bottom:210.266667pt;}
.y40{bottom:212.666667pt;}
.y7b{bottom:212.826667pt;}
.y242{bottom:212.986667pt;}
.y16f{bottom:213.760000pt;}
.y78{bottom:214.906667pt;}
.y19a{bottom:216.346667pt;}
.y97{bottom:217.306667pt;}
.y9f{bottom:217.466667pt;}
.y1f1{bottom:217.733333pt;}
.y1e4{bottom:218.333333pt;}
.y261{bottom:220.026667pt;}
.y25e{bottom:220.666667pt;}
.y228{bottom:221.146667pt;}
.y209{bottom:221.640000pt;}
.y14c{bottom:221.946667pt;}
.y1a7{bottom:222.146667pt;}
.ye0{bottom:222.400000pt;}
.y133{bottom:223.386667pt;}
.y26a{bottom:223.546667pt;}
.y1b0{bottom:223.706667pt;}
.y262{bottom:225.306667pt;}
.yb1{bottom:225.466667pt;}
.y264{bottom:226.106667pt;}
.y266{bottom:228.506667pt;}
.y16c{bottom:228.573333pt;}
.y1f2{bottom:229.826667pt;}
.y1e7{bottom:230.400000pt;}
.y1c7{bottom:231.586667pt;}
.y150{bottom:232.000000pt;}
.y258{bottom:232.026667pt;}
.y1ce{bottom:232.480000pt;}
.yc8{bottom:232.506667pt;}
.y10e{bottom:237.306667pt;}
.y1b1{bottom:237.920000pt;}
.y164{bottom:237.946667pt;}
.ybe{bottom:238.266667pt;}
.ye1{bottom:238.653333pt;}
.y3f{bottom:240.346667pt;}
.y241{bottom:240.506667pt;}
.y1b{bottom:242.426667pt;}
.y77{bottom:242.586667pt;}
.y1f5{bottom:243.266667pt;}
.y199{bottom:244.026667pt;}
.y96{bottom:244.826667pt;}
.y9e{bottom:244.986667pt;}
.y14b{bottom:247.226667pt;}
.y263{bottom:248.346667pt;}
.y227{bottom:248.826667pt;}
.y1db{bottom:249.466667pt;}
.y1a6{bottom:250.586667pt;}
.y178{bottom:250.906667pt;}
.y132{bottom:251.066667pt;}
.y1b2{bottom:252.133333pt;}
.yb0{bottom:252.986667pt;}
.y268{bottom:253.786667pt;}
.ye2{bottom:254.946667pt;}
.y1d1{bottom:258.400000pt;}
.y208{bottom:259.706667pt;}
.yc7{bottom:260.186667pt;}
.y10d{bottom:264.986667pt;}
.y163{bottom:265.466667pt;}
.ybd{bottom:266.906667pt;}
.y3e{bottom:267.866667pt;}
.y240{bottom:268.186667pt;}
.y170{bottom:268.293333pt;}
.y1b5{bottom:270.053333pt;}
.y76{bottom:270.106667pt;}
.y95{bottom:271.386667pt;}
.y198{bottom:271.546667pt;}
.y177{bottom:271.866667pt;}
.y1a{bottom:272.506667pt;}
.y1f4{bottom:274.306667pt;}
.y67{bottom:275.386667pt;}
.y267{bottom:275.866667pt;}
.y226{bottom:276.346667pt;}
.y1da{bottom:277.146667pt;}
.y131{bottom:278.586667pt;}
.ye5{bottom:279.333333pt;}
.yaf{bottom:280.666667pt;}
.y207{bottom:287.226667pt;}
.yc6{bottom:287.706667pt;}
.y1d0{bottom:289.440000pt;}
.y10c{bottom:292.506667pt;}
.y162{bottom:293.146667pt;}
.y3d{bottom:295.546667pt;}
.y23f{bottom:295.706667pt;}
.y75{bottom:297.786667pt;}
.y197{bottom:299.226667pt;}
.y19{bottom:300.026667pt;}
.y66{bottom:300.666667pt;}
.y1b4{bottom:301.120000pt;}
.ye6{bottom:303.200000pt;}
.y225{bottom:304.026667pt;}
.y1d9{bottom:304.666667pt;}
.y130{bottom:306.266667pt;}
.yae{bottom:308.186667pt;}
.y206{bottom:314.906667pt;}
.y64{bottom:314.920000pt;}
.y171{bottom:317.786667pt;}
.y10b{bottom:320.026667pt;}
.yd7{bottom:320.160000pt;}
.y161{bottom:320.666667pt;}
.y23e{bottom:322.426667pt;}
.y3c{bottom:323.066667pt;}
.yac{bottom:323.720000pt;}
.ybc{bottom:324.186667pt;}
.y3b{bottom:324.346667pt;}
.y74{bottom:325.306667pt;}
.y9d{bottom:326.586667pt;}
.y196{bottom:326.746667pt;}
.y18{bottom:329.946667pt;}
.y224{bottom:331.546667pt;}
.y1d8{bottom:332.346667pt;}
.y12f{bottom:333.786667pt;}
.y23d{bottom:336.040000pt;}
.y156{bottom:336.480000pt;}
.y205{bottom:342.426667pt;}
.y5e{bottom:343.240000pt;}
.y10a{bottom:347.706667pt;}
.y14a{bottom:348.346667pt;}
.yaa{bottom:349.800000pt;}
.y3a{bottom:350.746667pt;}
.yb9{bottom:352.026667pt;}
.y73{bottom:352.986667pt;}
.y195{bottom:354.426667pt;}
.y172{bottom:356.960000pt;}
.y223{bottom:359.226667pt;}
.y1d7{bottom:359.866667pt;}
.y23c{bottom:361.320000pt;}
.y12e{bottom:361.466667pt;}
.y17{bottom:362.106667pt;}
.y204{bottom:370.106667pt;}
.y149{bottom:373.666667pt;}
.y109{bottom:375.266667pt;}
.ya8{bottom:375.746667pt;}
.y160{bottom:375.906667pt;}
.y39{bottom:378.306667pt;}
.y6b{bottom:378.466667pt;}
.y72{bottom:380.546667pt;}
.y94{bottom:380.706667pt;}
.y194{bottom:381.986667pt;}
.y154{bottom:383.680000pt;}
.y23b{bottom:386.626667pt;}
.y222{bottom:386.786667pt;}
.y1d6{bottom:387.426667pt;}
.y12d{bottom:389.026667pt;}
.y16{bottom:392.066667pt;}
.y203{bottom:397.666667pt;}
.y148{bottom:398.946667pt;}
.y5b{bottom:399.106667pt;}
.ya6{bottom:401.666667pt;}
.y108{bottom:401.986667pt;}
.y15f{bottom:403.586667pt;}
.y38{bottom:405.826667pt;}
.y48{bottom:405.986667pt;}
.y71{bottom:408.226667pt;}
.y93{bottom:408.386667pt;}
.y193{bottom:409.666667pt;}
.y23a{bottom:411.906667pt;}
.y221{bottom:414.466667pt;}
.y1d5{bottom:415.106667pt;}
.y106{bottom:415.573333pt;}
.y103{bottom:415.586667pt;}
.y12c{bottom:416.706667pt;}
.y15{bottom:419.746667pt;}
.y147{bottom:425.346667pt;}
.y15e{bottom:431.106667pt;}
.y37{bottom:433.506667pt;}
.y176{bottom:433.666667pt;}
.y70{bottom:434.786667pt;}
.y7f{bottom:435.746667pt;}
.y92{bottom:435.906667pt;}
.y192{bottom:437.186667pt;}
.ya5{bottom:437.506667pt;}
.y239{bottom:437.826667pt;}
.y202{bottom:440.226667pt;}
.y220{bottom:441.986667pt;}
.y19f{bottom:442.626667pt;}
.y12b{bottom:443.266667pt;}
.y169{bottom:446.453333pt;}
.y14{bottom:449.506667pt;}
.y146{bottom:452.866667pt;}
.y59{bottom:454.946667pt;}
.y127{bottom:457.506667pt;}
.y36{bottom:461.026667pt;}
.y6f{bottom:461.186667pt;}
.y7e{bottom:462.306667pt;}
.y9c{bottom:463.426667pt;}
.y91{bottom:463.586667pt;}
.y191{bottom:464.866667pt;}
.y201{bottom:465.506667pt;}
.y1f6{bottom:469.173333pt;}
.y21f{bottom:469.666667pt;}
.y19e{bottom:470.306667pt;}
.y238{bottom:475.906667pt;}
.y16b{bottom:479.200000pt;}
.y145{bottom:479.426667pt;}
.y257{bottom:480.386667pt;}
.y13{bottom:481.666667pt;}
.y57{bottom:483.106667pt;}
.y101{bottom:484.533333pt;}
.yfd{bottom:484.546667pt;}
.y35{bottom:488.706667pt;}
.y6a{bottom:488.866667pt;}
.y144{bottom:489.346667pt;}
.y1e0{bottom:490.720000pt;}
.y200{bottom:490.786667pt;}
.y9b{bottom:490.946667pt;}
.y90{bottom:491.106667pt;}
.y190{bottom:492.386667pt;}
.y21e{bottom:497.186667pt;}
.y19d{bottom:497.826667pt;}
.y237{bottom:503.426667pt;}
.y256{bottom:508.066667pt;}
.y126{bottom:508.706667pt;}
.y53{bottom:511.426667pt;}
.y12{bottom:513.826667pt;}
.y1ff{bottom:516.066667pt;}
.y33{bottom:516.226667pt;}
.y6e{bottom:516.386667pt;}
.y34{bottom:517.506667pt;}
.y8f{bottom:518.626667pt;}
.yb8{bottom:518.786667pt;}
.y18f{bottom:520.066667pt;}
.y21d{bottom:524.866667pt;}
.y143{bottom:525.506667pt;}
.y236{bottom:531.106667pt;}
.y255{bottom:535.586667pt;}
.y1fe{bottom:541.986667pt;}
.y32{bottom:543.906667pt;}
.y47{bottom:544.066667pt;}
.ybb{bottom:545.186667pt;}
.y8e{bottom:546.146667pt;}
.yb7{bottom:546.306667pt;}
.y18e{bottom:547.586667pt;}
.y11{bottom:548.386667pt;}
.y21c{bottom:552.386667pt;}
.y142{bottom:553.026667pt;}
.y4d{bottom:553.506667pt;}
.y235{bottom:558.626667pt;}
.y122{bottom:560.053333pt;}
.y120{bottom:560.066667pt;}
.y254{bottom:563.266667pt;}
.y31{bottom:571.426667pt;}
.y69{bottom:571.586667pt;}
.y22b{bottom:572.706667pt;}
.y8d{bottom:573.826667pt;}
.yb6{bottom:573.986667pt;}
.y18d{bottom:575.266667pt;}
.yfa{bottom:576.533333pt;}
.yf4{bottom:576.546667pt;}
.y1fd{bottom:580.066667pt;}
.y141{bottom:580.706667pt;}
.y10{bottom:582.946667pt;}
.y234{bottom:585.186667pt;}
.y253{bottom:590.813333pt;}
.y1fc{bottom:594.973333pt;}
.y233{bottom:598.813333pt;}
.y30{bottom:599.133333pt;}
.y8c{bottom:601.373333pt;}
.y18c{bottom:602.813333pt;}
.y4c{bottom:605.373333pt;}
.y252{bottom:605.693333pt;}
.y21b{bottom:607.613333pt;}
.y140{bottom:608.253333pt;}
.yf{bottom:615.133333pt;}
.y1fb{bottom:620.253333pt;}
.y11f{bottom:620.573333pt;}
.y232{bottom:624.093333pt;}
.y2f{bottom:626.653333pt;}
.y46{bottom:626.813333pt;}
.y1d2{bottom:626.973333pt;}
.y4b{bottom:627.933333pt;}
.y8b{bottom:629.053333pt;}
.yc5{bottom:630.173333pt;}
.y18b{bottom:630.493333pt;}
.y251{bottom:631.133333pt;}
.y21a{bottom:635.293333pt;}
.y13f{bottom:635.933333pt;}
.y1f9{bottom:646.173333pt;}
.ye{bottom:647.293333pt;}
.y231{bottom:650.173333pt;}
.y2e{bottom:654.333333pt;}
.y25d{bottom:655.613333pt;}
.y8a{bottom:656.573333pt;}
.y250{bottom:657.053333pt;}
.y158{bottom:657.440000pt;}
.y1b9{bottom:657.600000pt;}
.y18a{bottom:658.013333pt;}
.y219{bottom:662.813333pt;}
.yef{bottom:668.573333pt;}
.y11e{bottom:671.773333pt;}
.yd{bottom:677.373333pt;}
.y2d{bottom:681.853333pt;}
.y89{bottom:684.253333pt;}
.y189{bottom:685.693333pt;}
.yd6{bottom:686.626667pt;}
.y230{bottom:688.093333pt;}
.y218{bottom:690.493333pt;}
.y24f{bottom:694.013333pt;}
.yd5{bottom:700.386667pt;}
.y15c{bottom:702.560000pt;}
.yc{bottom:707.133333pt;}
.y2c{bottom:709.533333pt;}
.y136{bottom:709.600000pt;}
.y9a{bottom:710.813333pt;}
.y88{bottom:711.773333pt;}
.y188{bottom:713.213333pt;}
.y22f{bottom:715.773333pt;}
.y217{bottom:718.013333pt;}
.y13e{bottom:718.653333pt;}
.y24e{bottom:720.413333pt;}
.y11b{bottom:722.973333pt;}
.yd4{bottom:734.146667pt;}
.y2b{bottom:737.053333pt;}
.yec{bottom:738.186667pt;}
.yba{bottom:738.333333pt;}
.yb{bottom:739.293333pt;}
.y87{bottom:739.453333pt;}
.y187{bottom:740.893333pt;}
.y22e{bottom:743.293333pt;}
.y216{bottom:745.693333pt;}
.y13d{bottom:746.333333pt;}
.y24d{bottom:747.933333pt;}
.y138{bottom:754.400000pt;}
.y2a{bottom:764.733333pt;}
.y86{bottom:766.973333pt;}
.y186{bottom:768.413333pt;}
.yd3{bottom:769.506667pt;}
.y22d{bottom:770.973333pt;}
.ya{bottom:771.453333pt;}
.y215{bottom:772.253333pt;}
.y114{bottom:774.346667pt;}
.y24c{bottom:775.613333pt;}
.y15b{bottom:783.200000pt;}
.y214{bottom:785.866667pt;}
.y29{bottom:792.253333pt;}
.y85{bottom:794.653333pt;}
.y185{bottom:796.093333pt;}
.yeb{bottom:798.653333pt;}
.y24b{bottom:803.173333pt;}
.yd2{bottom:803.293333pt;}
.y9{bottom:810.053333pt;}
.y213{bottom:811.173333pt;}
.y24a{bottom:818.053333pt;}
.y28{bottom:819.973333pt;}
.yea{bottom:821.253333pt;}
.y84{bottom:822.213333pt;}
.y184{bottom:823.653333pt;}
.y13a{bottom:831.200000pt;}
.yd1{bottom:837.053333pt;}
.y212{bottom:837.093333pt;}
.y249{bottom:843.333333pt;}
.y27{bottom:847.493333pt;}
.y8{bottom:849.733333pt;}
.y83{bottom:849.893333pt;}
.y183{bottom:851.333333pt;}
.y113{bottom:853.893333pt;}
.y248{bottom:868.613333pt;}
.yd0{bottom:872.413333pt;}
.y26{bottom:875.173333pt;}
.y7d{bottom:875.333333pt;}
.y82{bottom:876.453333pt;}
.y182{bottom:878.853333pt;}
.y7{bottom:881.893333pt;}
.y247{bottom:893.893333pt;}
.y25{bottom:902.693333pt;}
.y68{bottom:902.853333pt;}
.y4a{bottom:903.973333pt;}
.ycf{bottom:906.213333pt;}
.y181{bottom:906.533333pt;}
.y6{bottom:914.053333pt;}
.y246{bottom:919.973333pt;}
.y24{bottom:930.373333pt;}
.y7c{bottom:930.533333pt;}
.y180{bottom:934.053333pt;}
.yce{bottom:939.973333pt;}
.y5{bottom:946.373333pt;}
.y23{bottom:957.893333pt;}
.y6d{bottom:958.053333pt;}
.y17f{bottom:965.093333pt;}
.ycd{bottom:975.360000pt;}
.y17d{bottom:976.773333pt;}
.y4{bottom:978.533333pt;}
.y22{bottom:985.573333pt;}
.ya4{bottom:985.733333pt;}
.yc4{bottom:995.973333pt;}
.ye8{bottom:1009.560000pt;}
.y3{bottom:1010.693333pt;}
.y21{bottom:1013.093333pt;}
.y6c{bottom:1013.253333pt;}
.y265{bottom:1014.533333pt;}
.y20{bottom:1064.160000pt;}
.h34{height:12.320133pt;}
.h35{height:13.280000pt;}
.h33{height:15.360000pt;}
.h38{height:16.000000pt;}
.h18{height:17.960000pt;}
.h17{height:18.080000pt;}
.h2d{height:19.840000pt;}
.h10{height:25.266667pt;}
.h45{height:25.280000pt;}
.h11{height:25.298667pt;}
.h46{height:25.312000pt;}
.h12{height:25.426667pt;}
.h47{height:25.440000pt;}
.h39{height:25.600000pt;}
.h2c{height:26.400000pt;}
.hd{height:27.506667pt;}
.hc{height:27.666667pt;}
.ha{height:33.375000pt;}
.h40{height:37.920000pt;}
.h15{height:39.585938pt;}
.h3f{height:39.691500pt;}
.h42{height:40.160000pt;}
.h31{height:40.960000pt;}
.h36{height:41.120000pt;}
.hb{height:41.426667pt;}
.h44{height:41.440000pt;}
.h9{height:41.466667pt;}
.h16{height:43.625000pt;}
.h29{height:44.722500pt;}
.h7{height:50.062500pt;}
.h19{height:50.546667pt;}
.h26{height:50.560000pt;}
.h3d{height:50.586667pt;}
.h3c{height:50.592000pt;}
.h2b{height:50.706667pt;}
.h24{height:50.716000pt;}
.h25{height:50.720000pt;}
.hf{height:55.058667pt;}
.he{height:55.186667pt;}
.h13{height:55.402500pt;}
.h8{height:57.375000pt;}
.h2a{height:59.706667pt;}
.h27{height:59.712000pt;}
.h28{height:59.720000pt;}
.h2{height:61.410000pt;}
.h5{height:66.750000pt;}
.h22{height:68.946667pt;}
.h1b{height:68.956000pt;}
.h1a{height:68.960000pt;}
.h23{height:68.978667pt;}
.h3{height:78.097500pt;}
.h3b{height:79.171875pt;}
.h2f{height:85.941250pt;}
.h6{height:88.777500pt;}
.h1f{height:91.986667pt;}
.h20{height:91.996000pt;}
.h21{height:92.000000pt;}
.h1c{height:92.026667pt;}
.h1d{height:92.032000pt;}
.h1e{height:92.040000pt;}
.h30{height:106.430000pt;}
.h4{height:111.472500pt;}
.h32{height:133.280000pt;}
.h37{height:151.840000pt;}
.h2e{height:154.240000pt;}
.h14{height:304.640000pt;}
.h43{height:307.360000pt;}
.h41{height:322.400000pt;}
.h3e{height:334.240000pt;}
.h3a{height:389.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w21{width:12.960000pt;}
.w1c{width:17.440000pt;}
.w1a{width:18.240000pt;}
.w3{width:35.186667pt;}
.w5{width:35.200000pt;}
.w8{width:35.346667pt;}
.w6{width:35.360000pt;}
.w4{width:35.378667pt;}
.w7{width:35.392000pt;}
.w2{width:81.432000pt;}
.w15{width:116.306667pt;}
.w12{width:116.312000pt;}
.w17{width:116.320000pt;}
.w13{width:116.338667pt;}
.w16{width:116.498667pt;}
.w14{width:116.512000pt;}
.w1f{width:127.040000pt;}
.w2f{width:152.506667pt;}
.w1e{width:156.000000pt;}
.w2e{width:165.138667pt;}
.w25{width:183.858667pt;}
.w11{width:194.578667pt;}
.w10{width:195.053333pt;}
.we{width:195.058667pt;}
.wf{width:195.066667pt;}
.w2d{width:195.213333pt;}
.w2b{width:195.218667pt;}
.w2c{width:195.386667pt;}
.w22{width:200.160000pt;}
.w19{width:205.760000pt;}
.w30{width:267.853333pt;}
.w9{width:291.858667pt;}
.wa{width:292.053333pt;}
.w32{width:292.178667pt;}
.w33{width:292.693333pt;}
.w1d{width:348.480000pt;}
.w26{width:400.053333pt;}
.w23{width:425.973333pt;}
.wc{width:456.960000pt;}
.wb{width:484.960000pt;}
.wd{width:560.080000pt;}
.w18{width:580.000000pt;}
.w31{width:585.200000pt;}
.w29{width:585.280000pt;}
.w2a{width:585.360000pt;}
.w28{width:585.840000pt;}
.w27{width:585.920000pt;}
.w20{width:588.960000pt;}
.w24{width:600.000000pt;}
.w1b{width:637.280000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:7.346667pt;}
.x1f{left:8.320000pt;}
.x1b{left:10.240000pt;}
.x1a{left:11.840000pt;}
.x18{left:13.586667pt;}
.x20{left:15.200000pt;}
.x44{left:18.546667pt;}
.x15{left:20.466667pt;}
.x9a{left:21.533333pt;}
.x38{left:23.040000pt;}
.x43{left:26.106667pt;}
.x3f{left:27.040000pt;}
.x33{left:28.186667pt;}
.x32{left:35.453333pt;}
.x3a{left:36.786667pt;}
.x46{left:38.066667pt;}
.x3e{left:39.680000pt;}
.x31{left:41.533333pt;}
.x48{left:43.346667pt;}
.x41{left:44.786667pt;}
.x45{left:46.266667pt;}
.x30{left:47.613333pt;}
.x47{left:48.666667pt;}
.x3b{left:50.226667pt;}
.xa4{left:51.186667pt;}
.xaa{left:52.466667pt;}
.x61{left:54.706667pt;}
.xa5{left:56.146667pt;}
.x3c{left:58.066667pt;}
.x5d{left:59.426667pt;}
.x87{left:63.906667pt;}
.x37{left:65.266667pt;}
.x9f{left:66.386667pt;}
.x2a{left:68.186667pt;}
.x79{left:70.493333pt;}
.xa0{left:72.160000pt;}
.xa8{left:76.466667pt;}
.x68{left:78.426667pt;}
.xa7{left:82.546667pt;}
.xa6{left:85.106667pt;}
.x93{left:91.226667pt;}
.x70{left:92.293333pt;}
.x5f{left:94.400000pt;}
.x51{left:96.000000pt;}
.x81{left:97.853333pt;}
.x62{left:102.560000pt;}
.x28{left:105.106667pt;}
.xb{left:113.472000pt;}
.x49{left:116.000000pt;}
.x36{left:117.120000pt;}
.xa9{left:119.666667pt;}
.x88{left:120.800000pt;}
.x2d{left:121.888000pt;}
.x35{left:124.506667pt;}
.x9e{left:125.746667pt;}
.x52{left:130.080000pt;}
.xa3{left:133.106667pt;}
.x8d{left:134.466667pt;}
.x69{left:136.066667pt;}
.x60{left:137.946667pt;}
.x2b{left:141.946667pt;}
.x94{left:148.133333pt;}
.x71{left:149.920000pt;}
.x82{left:151.773333pt;}
.x2{left:160.666667pt;}
.x78{left:163.546667pt;}
.x53{left:164.640000pt;}
.x9b{left:166.373333pt;}
.x56{left:167.840000pt;}
.x5a{left:171.133333pt;}
.x5b{left:175.333333pt;}
.x89{left:177.693333pt;}
.x2f{left:179.200000pt;}
.x6{left:183.066667pt;}
.x2c{left:184.666667pt;}
.x8e{left:191.360000pt;}
.xa1{left:192.346667pt;}
.x6a{left:193.693333pt;}
.x16{left:196.200000pt;}
.x7c{left:198.080000pt;}
.x59{left:203.906667pt;}
.x95{left:205.026667pt;}
.xa2{left:206.586667pt;}
.x11{left:208.026667pt;}
.x34{left:220.573333pt;}
.x3{left:223.866667pt;}
.x4{left:231.226667pt;}
.x8a{left:234.586667pt;}
.x63{left:237.506667pt;}
.x7a{left:241.373333pt;}
.x2e{left:242.306667pt;}
.x5c{left:244.933333pt;}
.x8f{left:248.253333pt;}
.x6b{left:251.333333pt;}
.x7d{left:255.040000pt;}
.xe{left:260.866667pt;}
.x96{left:261.920000pt;}
.x72{left:265.186667pt;}
.x19{left:268.066667pt;}
.x9c{left:278.946667pt;}
.x8b{left:291.493333pt;}
.x64{left:295.133333pt;}
.x5e{left:298.626667pt;}
.x1c{left:304.066667pt;}
.x4b{left:305.346667pt;}
.x9{left:309.026667pt;}
.x8{left:311.266667pt;}
.x4a{left:315.680000pt;}
.x57{left:317.120000pt;}
.x97{left:318.813333pt;}
.x73{left:322.813333pt;}
.x83{left:325.693333pt;}
.xd{left:330.306667pt;}
.xf{left:339.746667pt;}
.x3d{left:348.066667pt;}
.x7{left:351.586667pt;}
.xa{left:353.186667pt;}
.x90{left:362.053333pt;}
.x6c{left:366.586667pt;}
.x7e{left:368.960000pt;}
.x1d{left:375.906667pt;}
.x74{left:380.453333pt;}
.x8c{left:405.280000pt;}
.x29{left:406.626667pt;}
.x65{left:410.400000pt;}
.x1e{left:411.746667pt;}
.x58{left:412.826667pt;}
.x6d{left:424.226667pt;}
.x7f{left:425.920000pt;}
.x5{left:429.986667pt;}
.x9d{left:431.466667pt;}
.x98{left:432.613333pt;}
.x75{left:438.080000pt;}
.x84{left:439.613333pt;}
.x21{left:447.786667pt;}
.x40{left:465.226667pt;}
.x7b{left:466.173333pt;}
.x66{left:468.026667pt;}
.x91{left:475.840000pt;}
.x80{left:479.840000pt;}
.x6e{left:481.853333pt;}
.x22{left:483.626667pt;}
.x85{left:493.533333pt;}
.x76{left:495.706667pt;}
.x54{left:502.080000pt;}
.x39{left:503.626667pt;}
.x55{left:506.560000pt;}
.x23{left:519.626667pt;}
.x67{left:525.666667pt;}
.x92{left:532.733333pt;}
.x6f{left:539.520000pt;}
.x99{left:546.400000pt;}
.x86{left:550.493333pt;}
.x77{left:553.346667pt;}
.x24{left:555.626667pt;}
.x42{left:582.186667pt;}
.x25{left:591.466667pt;}
.x4f{left:606.693333pt;}
.x50{left:607.973333pt;}
.x26{left:627.493333pt;}
.x4e{left:650.373333pt;}
.x4d{left:652.133333pt;}
.x27{left:663.333333pt;}
.x4c{left:670.213333pt;}
.x13{left:682.213333pt;}
.x12{left:685.413333pt;}
.x10{left:689.573333pt;}
.x14{left:691.173333pt;}
.xc{left:692.773333pt;}
.x1{left:696.133333pt;}
.xae{left:700.773333pt;}
.xad{left:707.333333pt;}
.xab{left:708.773333pt;}
.xac{left:715.493333pt;}
}




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