
    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_37329b4b88a9c480ea5e9549.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_2b25b16d6f61ce3a9808d63a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_5d4f23377140ffa94b43deb4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_553cfd89ccb4c44aec475943.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_016ce5ad20a64607b64fba49.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_a7a3bb9f51df70de63691dc1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.053223;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_662327257a3fe9797ca02277.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.766602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7da334dffe4f967c85b34d21.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.752441;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_3ba45ad2995de53baee75361.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.776855;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_e78771e6fa2f496d44739812.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.053223;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_c76f596afb24e430461b2421.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1c{letter-spacing:-1.632000px;}
.ls21{letter-spacing:-1.500000px;}
.ls2c{letter-spacing:-1.224000px;}
.ls10{letter-spacing:-0.672000px;}
.ls33{letter-spacing:-0.600000px;}
.ls1a{letter-spacing:-0.564000px;}
.ls7{letter-spacing:-0.504000px;}
.ls34{letter-spacing:-0.480000px;}
.ls20{letter-spacing:-0.462000px;}
.ls2e{letter-spacing:-0.456000px;}
.ls9{letter-spacing:-0.444000px;}
.ls3d{letter-spacing:-0.420000px;}
.ls2{letter-spacing:-0.372000px;}
.ls1d{letter-spacing:-0.336000px;}
.ls1e{letter-spacing:-0.300000px;}
.ls38{letter-spacing:-0.240000px;}
.ls1{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.192000px;}
.ls11{letter-spacing:-0.144000px;}
.ls18{letter-spacing:-0.120000px;}
.ls23{letter-spacing:-0.114000px;}
.ls30{letter-spacing:-0.084000px;}
.ls19{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.012000px;}
.lsa{letter-spacing:0.042000px;}
.ls3c{letter-spacing:0.060000px;}
.ls35{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.150000px;}
.ls3{letter-spacing:0.228000px;}
.lse{letter-spacing:0.276000px;}
.ls3a{letter-spacing:0.300000px;}
.ls2d{letter-spacing:0.312000px;}
.ls26{letter-spacing:0.348000px;}
.ls39{letter-spacing:0.360000px;}
.ls3b{letter-spacing:0.420000px;}
.ls22{letter-spacing:0.456000px;}
.ls14{letter-spacing:0.468000px;}
.ls17{letter-spacing:0.492000px;}
.ls36{letter-spacing:0.600000px;}
.ls2f{letter-spacing:0.624000px;}
.lsb{letter-spacing:0.648000px;}
.ls1f{letter-spacing:0.684000px;}
.ls37{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.996000px;}
.ls32{letter-spacing:1.020000px;}
.lsc{letter-spacing:1.080000px;}
.ls31{letter-spacing:1.140000px;}
.ls28{letter-spacing:1.200000px;}
.ls24{letter-spacing:1.728000px;}
.ls25{letter-spacing:3.228000px;}
.ls29{letter-spacing:6.228000px;}
.ls2a{letter-spacing:12.228000px;}
.ls2b{letter-spacing:17.634000px;}
.ls27{letter-spacing:21.228000px;}
.ls13{letter-spacing:34.134000px;}
.lsd{letter-spacing:42.228000px;}
.ls5{letter-spacing:57.468000px;}
.ls16{letter-spacing:62.118000px;}
.ls12{letter-spacing:64.470000px;}
.ls15{letter-spacing:848.058000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1c{word-spacing:-72.000000px;}
.ws5{word-spacing:-69.000000px;}
.ws10{word-spacing:-60.000000px;}
.ws0{word-spacing:-35.040000px;}
.ws11{word-spacing:-33.036000px;}
.ws21{word-spacing:-21.612000px;}
.wsb{word-spacing:-21.504000px;}
.wsc{word-spacing:-21.024000px;}
.ws1b{word-spacing:-17.472000px;}
.ws3{word-spacing:-17.268000px;}
.ws17{word-spacing:-16.956000px;}
.ws20{word-spacing:-16.896000px;}
.ws1a{word-spacing:-16.620000px;}
.ws1e{word-spacing:-16.584000px;}
.wsd{word-spacing:-16.548000px;}
.ws1d{word-spacing:-16.416000px;}
.wsf{word-spacing:-16.272000px;}
.ws13{word-spacing:-16.212000px;}
.ws12{word-spacing:-16.152000px;}
.wse{word-spacing:-16.128000px;}
.ws16{word-spacing:-15.972000px;}
.ws4{word-spacing:-15.828000px;}
.ws1f{word-spacing:-15.816000px;}
.ws2{word-spacing:-15.768000px;}
.ws14{word-spacing:-15.708000px;}
.ws19{word-spacing:-14.802000px;}
.wsa{word-spacing:-14.640000px;}
.ws18{word-spacing:-14.454000px;}
.ws25{word-spacing:-14.280000px;}
.ws28{word-spacing:-13.920000px;}
.ws24{word-spacing:-13.680000px;}
.ws9{word-spacing:-13.560000px;}
.ws27{word-spacing:-13.440000px;}
.ws26{word-spacing:-13.320000px;}
.ws29{word-spacing:-13.140000px;}
.ws23{word-spacing:-13.080000px;}
.ws22{word-spacing:-12.960000px;}
.ws8{word-spacing:-12.852000px;}
.ws6{word-spacing:-12.354000px;}
.ws7{word-spacing:-12.246000px;}
.ws15{word-spacing:-10.512000px;}
.ws1{word-spacing:0.000000px;}
._16{margin-left:-20.052000px;}
._14{margin-left:-15.870000px;}
._11{margin-left:-14.070000px;}
._f{margin-left:-12.696000px;}
._b{margin-left:-10.296000px;}
._a{margin-left:-8.598000px;}
._15{margin-left:-6.936000px;}
._c{margin-left:-5.070000px;}
._d{margin-left:-3.972000px;}
._10{margin-left:-2.460000px;}
._1{margin-left:-1.404000px;}
._0{width:1.092000px;}
._9{width:2.142000px;}
._e{width:3.354000px;}
._5{width:4.632000px;}
._7{width:5.700000px;}
._6{width:7.332000px;}
._1a{width:8.376000px;}
._1c{width:9.390000px;}
._1b{width:11.202000px;}
._1d{width:12.906000px;}
._17{width:14.880000px;}
._24{width:15.966000px;}
._22{width:17.538000px;}
._1f{width:18.852000px;}
._1e{width:19.932000px;}
._19{width:21.684000px;}
._18{width:22.740000px;}
._29{width:24.234000px;}
._28{width:25.770000px;}
._20{width:26.928000px;}
._27{width:27.984000px;}
._26{width:29.106000px;}
._12{width:31.392000px;}
._13{width:32.664000px;}
._21{width:34.056000px;}
._23{width:35.316000px;}
._2d{width:39.564000px;}
._2c{width:51.120000px;}
._2{width:72.540000px;}
._30{width:76.944000px;}
._4{width:97.344000px;}
._3{width:98.748000px;}
._25{width:122.652000px;}
._2e{width:138.060000px;}
._2a{width:163.584000px;}
._2b{width:164.592000px;}
._31{width:217.308000px;}
._2f{width:244.644000px;}
._8{width:848.148000px;}
.fc5{color:rgb(255,87,188);}
.fc6{color:rgb(36,36,36);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(64,64,64);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(81,40,255);}
.fc0{color:rgb(38,38,38);}
.fs8{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs5{font-size:69.000000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:75.893905px;}
.fs2{font-size:96.000000px;}
.fs4{font-size:144.000000px;}
.fs1{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y14{bottom:3.375000px;}
.y232{bottom:4.110000px;}
.y2f{bottom:4.125000px;}
.y227{bottom:4.140000px;}
.y273{bottom:4.162500px;}
.y245{bottom:4.170000px;}
.y177{bottom:4.860000px;}
.y117{bottom:4.875000px;}
.y189{bottom:4.912500px;}
.y181{bottom:4.920000px;}
.y10f{bottom:5.625000px;}
.y18{bottom:6.000000px;}
.y24{bottom:6.375000px;}
.y1f{bottom:6.390000px;}
.y1d{bottom:8.985000px;}
.y1cc{bottom:11.235000px;}
.y1b3{bottom:11.250000px;}
.y196{bottom:12.750000px;}
.y1e9{bottom:15.735000px;}
.y1e2{bottom:15.750000px;}
.y1ef{bottom:16.125000px;}
.y231{bottom:22.110000px;}
.y229{bottom:22.125000px;}
.y226{bottom:22.140000px;}
.y262{bottom:22.162500px;}
.y244{bottom:22.170000px;}
.y23e{bottom:22.485000px;}
.y20b{bottom:22.500000px;}
.y271{bottom:22.515000px;}
.y21f{bottom:22.530000px;}
.y22c{bottom:22.537500px;}
.y224{bottom:22.545000px;}
.y1c3{bottom:26.617500px;}
.y173{bottom:26.625000px;}
.y1ad{bottom:26.655000px;}
.y1ba{bottom:26.985000px;}
.y116{bottom:27.000000px;}
.y176{bottom:27.030000px;}
.y188{bottom:27.037500px;}
.y180{bottom:27.045000px;}
.y1e0{bottom:27.750000px;}
.y1c{bottom:30.735000px;}
.y1f1{bottom:32.625000px;}
.y1cb{bottom:32.985000px;}
.y1b2{bottom:33.000000px;}
.y1e7{bottom:33.030000px;}
.y1ed{bottom:33.045000px;}
.y195{bottom:34.500000px;}
.y1da{bottom:36.360000px;}
.y1f0{bottom:37.500000px;}
.y1eb{bottom:37.875000px;}
.y1e8{bottom:37.905000px;}
.y1ee{bottom:37.920000px;}
.y230{bottom:40.485000px;}
.y20a{bottom:40.500000px;}
.y250{bottom:40.515000px;}
.y221{bottom:40.530000px;}
.y261{bottom:40.537500px;}
.y223{bottom:40.545000px;}
.y276{bottom:40.860000px;}
.y218{bottom:40.875000px;}
.y211{bottom:40.905000px;}
.y22b{bottom:40.912500px;}
.y215{bottom:40.920000px;}
.y1ab{bottom:42.375000px;}
.y1c9{bottom:48.735000px;}
.y115{bottom:48.750000px;}
.y1c2{bottom:48.757500px;}
.y175{bottom:48.780000px;}
.y172{bottom:48.787500px;}
.y16f{bottom:48.795000px;}
.y168{bottom:49.125000px;}
.y1d4{bottom:49.155000px;}
.y187{bottom:49.162500px;}
.y19b{bottom:49.170000px;}
.y1b{bottom:52.905000px;}
.y1ca{bottom:55.110000px;}
.y1b1{bottom:55.125000px;}
.y194{bottom:56.625000px;}
.y1d9{bottom:58.155000px;}
.y22f{bottom:58.860000px;}
.y21a{bottom:58.875000px;}
.y21e{bottom:58.905000px;}
.y260{bottom:58.912500px;}
.y214{bottom:58.920000px;}
.y235{bottom:59.250000px;}
.y23b{bottom:59.265000px;}
.y210{bottom:59.280000px;}
.y253{bottom:59.287500px;}
.y248{bottom:59.295000px;}
.y1aa{bottom:64.500000px;}
.y171{bottom:70.537500px;}
.y114{bottom:70.875000px;}
.y11a{bottom:70.905000px;}
.y186{bottom:70.912500px;}
.y16c{bottom:70.920000px;}
.y1c5{bottom:76.912500px;}
.y219{bottom:77.250000px;}
.y20f{bottom:77.280000px;}
.y25f{bottom:77.287500px;}
.y213{bottom:77.295000px;}
.y23a{bottom:77.640000px;}
.y234{bottom:77.655000px;}
.y247{bottom:77.670000px;}
.y193{bottom:78.375000px;}
.y1a9{bottom:86.295000px;}
.y13{bottom:88.162500px;}
.y1b0{bottom:92.625000px;}
.y113{bottom:92.655000px;}
.y1c0{bottom:92.662500px;}
.y16e{bottom:92.670000px;}
.y119{bottom:93.030000px;}
.y16b{bottom:93.045000px;}
.y185{bottom:93.082500px;}
.y17f{bottom:93.090000px;}
.y20e{bottom:95.655000px;}
.y25e{bottom:95.662500px;}
.y217{bottom:95.670000px;}
.y243{bottom:95.700000px;}
.y1c4{bottom:99.037500px;}
.y192{bottom:100.500000px;}
.y21b{bottom:103.162500px;}
.y12{bottom:105.037500px;}
.y170{bottom:105.412500px;}
.y242{bottom:113.700000px;}
.y20d{bottom:114.030000px;}
.y25b{bottom:114.045000px;}
.y1af{bottom:114.780000px;}
.y1bf{bottom:114.787500px;}
.y112{bottom:114.795000px;}
.y17b{bottom:114.810000px;}
.y184{bottom:114.832500px;}
.y17e{bottom:114.840000px;}
.y1e5{bottom:118.530000px;}
.yde{bottom:120.787500px;}
.y14e{bottom:121.537500px;}
.y55{bottom:121.912500px;}
.y191{bottom:122.655000px;}
.y201{bottom:123.787500px;}
.y1a7{bottom:124.170000px;}
.y1bb{bottom:124.912500px;}
.ydd{bottom:126.037500px;}
.y12f{bottom:128.287500px;}
.y252{bottom:130.162500px;}
.y22a{bottom:130.912500px;}
.y267{bottom:131.662500px;}
.y241{bottom:132.075000px;}
.y264{bottom:132.405000px;}
.y25a{bottom:132.450000px;}
.y25d{bottom:132.787500px;}
.y1dc{bottom:136.530000px;}
.y1be{bottom:136.537500px;}
.y111{bottom:136.905000px;}
.y16a{bottom:136.920000px;}
.y17a{bottom:136.935000px;}
.y16d{bottom:136.950000px;}
.y183{bottom:136.957500px;}
.y17d{bottom:136.965000px;}
.y1e4{bottom:140.655000px;}
.ydc{bottom:141.037500px;}
.y10c{bottom:141.412500px;}
.y54{bottom:144.037500px;}
.y14d{bottom:144.412500px;}
.y200{bottom:145.537500px;}
.y1a6{bottom:146.280000px;}
.yee{bottom:146.287500px;}
.y272{bottom:146.662500px;}
.ya6{bottom:150.045000px;}
.y24a{bottom:150.075000px;}
.ybb{bottom:150.420000px;}
.y259{bottom:150.825000px;}
.y12d{bottom:153.045000px;}
.y23c{bottom:153.825000px;}
.y27e{bottom:154.575000px;}
.y1bd{bottom:158.662500px;}
.y179{bottom:158.685000px;}
.y19a{bottom:159.075000px;}
.y182{bottom:159.082500px;}
.ydb{bottom:161.295000px;}
.yed{bottom:161.655000px;}
.y10b{bottom:163.545000px;}
.y53{bottom:166.170000px;}
.yda{bottom:166.545000px;}
.y1ff{bottom:167.670000px;}
.y1a5{bottom:168.405000px;}
.y266{bottom:169.200000px;}
.ya5{bottom:172.155000px;}
.y12c{bottom:175.200000px;}
.y15e{bottom:176.700000px;}
.y1bc{bottom:180.832500px;}
.yd9{bottom:181.200000px;}
.yec{bottom:183.450000px;}
.y228{bottom:186.825000px;}
.y34{bottom:187.200000px;}
.y52{bottom:187.950000px;}
.y14c{bottom:188.700000px;}
.y1fe{bottom:189.825000px;}
.y1a4{bottom:190.155000px;}
.y27d{bottom:191.325000px;}
.ya4{bottom:193.950000px;}
.yba{bottom:194.325000px;}
.y12b{bottom:197.325000px;}
.y144{bottom:197.700000px;}
.y15d{bottom:198.825000px;}
.y19e{bottom:199.950000px;}
.yd8{bottom:201.450000px;}
.y10a{bottom:202.950000px;}
.y251{bottom:204.075000px;}
.yd7{bottom:206.700000px;}
.y51{bottom:210.075000px;}
.y14b{bottom:211.575000px;}
.y1a3{bottom:212.280000px;}
.ya3{bottom:216.075000px;}
.y33{bottom:216.825000px;}
.y12a{bottom:219.075000px;}
.y143{bottom:219.450000px;}
.y15c{bottom:220.575000px;}
.yd6{bottom:221.700000px;}
.ye8{bottom:222.075000px;}
.y249{bottom:223.950000px;}
.y109{bottom:225.075000px;}
.y19d{bottom:227.700000px;}
.y50{bottom:231.825000px;}
.y1fd{bottom:233.700000px;}
.y1a2{bottom:234.075000px;}
.y14a{bottom:234.450000px;}
.ya2{bottom:238.200000px;}
.yf4{bottom:238.575000px;}
.y129{bottom:241.200000px;}
.y142{bottom:241.575000px;}
.yd5{bottom:241.950000px;}
.y15b{bottom:242.700000px;}
.y25c{bottom:243.480000px;}
.ye7{bottom:243.825000px;}
.y239{bottom:246.105000px;}
.y108{bottom:246.825000px;}
.yd4{bottom:247.200000px;}
.y19c{bottom:249.825000px;}
.y4f{bottom:253.950000px;}
.y1fc{bottom:255.450000px;}
.y1b9{bottom:256.200000px;}
.y270{bottom:256.605000px;}
.y32{bottom:257.325000px;}
.ya1{bottom:259.950000px;}
.yb9{bottom:260.325000px;}
.yf3{bottom:260.700000px;}
.yd3{bottom:261.825000px;}
.y128{bottom:262.950000px;}
.y141{bottom:263.700000px;}
.y15a{bottom:264.450000px;}
.y107{bottom:268.950000px;}
.y216{bottom:269.730000px;}
.y1d1{bottom:271.950000px;}
.y199{bottom:273.075000px;}
.y4e{bottom:275.700000px;}
.y1fb{bottom:277.575000px;}
.y1b8{bottom:278.325000px;}
.y24f{bottom:278.355000px;}
.y1c1{bottom:278.700000px;}
.y149{bottom:279.450000px;}
.y265{bottom:279.855000px;}
.ya0{bottom:282.075000px;}
.y82{bottom:282.450000px;}
.y127{bottom:285.075000px;}
.y140{bottom:285.450000px;}
.y106{bottom:291.075000px;}
.y1d0{bottom:294.075000px;}
.y225{bottom:297.480000px;}
.y31{bottom:298.200000px;}
.y1fa{bottom:299.700000px;}
.y1b7{bottom:300.075000px;}
.y148{bottom:301.200000px;}
.y27c{bottom:301.230000px;}
.yd2{bottom:302.325000px;}
.y9f{bottom:303.855000px;}
.yb8{bottom:304.230000px;}
.y159{bottom:306.120000px;}
.y126{bottom:306.870000px;}
.yd1{bottom:307.605000px;}
.y4d{bottom:308.370000px;}
.y26f{bottom:311.355000px;}
.y105{bottom:312.870000px;}
.y1cf{bottom:315.825000px;}
.y246{bottom:316.230000px;}
.y17c{bottom:320.730000px;}
.y81{bottom:321.480000px;}
.y1b6{bottom:322.200000px;}
.yd0{bottom:322.620000px;}
.yf2{bottom:324.105000px;}
.y9e{bottom:325.995000px;}
.y125{bottom:328.995000px;}
.y13f{bottom:329.370000px;}
.y104{bottom:334.980000px;}
.y1ce{bottom:337.980000px;}
.y1b4{bottom:338.370000px;}
.y30{bottom:339.120000px;}
.y80{bottom:343.245000px;}
.y1f9{bottom:343.620000px;}
.y1b5{bottom:343.950000px;}
.ycf{bottom:344.730000px;}
.y4c{bottom:346.620000px;}
.y147{bottom:346.995000px;}
.y9d{bottom:347.730000px;}
.yb7{bottom:348.105000px;}
.y169{bottom:348.525000px;}
.y124{bottom:351.105000px;}
.y13e{bottom:351.480000px;}
.yeb{bottom:353.745000px;}
.y27b{bottom:356.025000px;}
.y103{bottom:356.745000px;}
.y238{bottom:356.775000px;}
.y1cd{bottom:359.745000px;}
.y7f{bottom:365.355000px;}
.y26e{bottom:366.525000px;}
.y146{bottom:369.120000px;}
.y9c{bottom:369.870000px;}
.yb6{bottom:370.245000px;}
.y24e{bottom:370.650000px;}
.y258{bottom:372.150000px;}
.y123{bottom:372.870000px;}
.y13d{bottom:373.245000px;}
.y102{bottom:378.855000px;}
.y2e{bottom:379.995000px;}
.y212{bottom:380.400000px;}
.yf1{bottom:382.995000px;}
.y4b{bottom:383.370000px;}
.y7e{bottom:387.120000px;}
.y1f8{bottom:387.495000px;}
.y12e{bottom:389.370000px;}
.y222{bottom:389.775000px;}
.y9b{bottom:391.980000px;}
.y122{bottom:394.980000px;}
.y13c{bottom:395.355000px;}
.ye6{bottom:397.995000px;}
.y101{bottom:400.995000px;}
.y4a{bottom:405.495000px;}
.y240{bottom:408.900000px;}
.y7d{bottom:409.245000px;}
.y27a{bottom:411.150000px;}
.yb5{bottom:411.495000px;}
.y9a{bottom:413.745000px;}
.ye5{bottom:414.120000px;}
.y121{bottom:416.745000px;}
.y13b{bottom:417.495000px;}
.y100{bottom:422.745000px;}
.y7c{bottom:431.400000px;}
.y99{bottom:435.900000px;}
.y237{bottom:437.070000px;}
.y49{bottom:438.150000px;}
.y2d{bottom:438.525000px;}
.y120{bottom:438.900000px;}
.y13a{bottom:439.275000px;}
.y26d{bottom:439.695000px;}
.y24d{bottom:444.570000px;}
.yff{bottom:444.900000px;}
.y7b{bottom:453.150000px;}
.y1f7{bottom:453.525000px;}
.y2c{bottom:455.025000px;}
.y98{bottom:457.650000px;}
.ye4{bottom:458.025000px;}
.y11f{bottom:461.025000px;}
.y139{bottom:461.400000px;}
.y198{bottom:462.525000px;}
.y1d6{bottom:465.525000px;}
.y279{bottom:465.945000px;}
.yfe{bottom:466.650000px;}
.y20c{bottom:472.695000px;}
.y48{bottom:474.900000px;}
.y7a{bottom:475.275000px;}
.y178{bottom:475.320000px;}
.y2b{bottom:476.025000px;}
.y97{bottom:479.775000px;}
.ye3{bottom:480.150000px;}
.y26c{bottom:481.320000px;}
.y220{bottom:482.070000px;}
.y11e{bottom:482.775000px;}
.y138{bottom:483.150000px;}
.y1de{bottom:483.525000px;}
.yfd{bottom:488.775000px;}
.y47{bottom:496.650000px;}
.y2a{bottom:497.025000px;}
.yb4{bottom:497.400000px;}
.y145{bottom:499.650000px;}
.y236{bottom:500.850000px;}
.y1dd{bottom:501.150000px;}
.y96{bottom:501.900000px;}
.y167{bottom:503.100000px;}
.y11d{bottom:504.900000px;}
.y137{bottom:505.275000px;}
.yce{bottom:507.900000px;}
.yfc{bottom:510.525000px;}
.y233{bottom:518.475000px;}
.y46{bottom:518.775000px;}
.y79{bottom:519.150000px;}
.y278{bottom:520.725000px;}
.y26b{bottom:522.975000px;}
.y95{bottom:523.650000px;}
.ye2{bottom:524.025000px;}
.y283{bottom:525.600000px;}
.y11c{bottom:526.650000px;}
.y136{bottom:527.400000px;}
.yfb{bottom:532.650000px;}
.y263{bottom:537.600000px;}
.y257{bottom:537.975000px;}
.y45{bottom:540.525000px;}
.y29{bottom:541.275000px;}
.y197{bottom:542.025000px;}
.y94{bottom:545.775000px;}
.y282{bottom:547.725000px;}
.y135{bottom:549.150000px;}
.ycd{bottom:551.775000px;}
.yfa{bottom:554.775000px;}
.y23f{bottom:555.975000px;}
.y78{bottom:563.070000px;}
.yb3{bottom:563.445000px;}
.y158{bottom:565.320000px;}
.y93{bottom:567.570000px;}
.ye1{bottom:567.945000px;}
.y11b{bottom:568.320000px;}
.y281{bottom:569.850000px;}
.y134{bottom:571.320000px;}
.y44{bottom:573.195000px;}
.y21d{bottom:574.350000px;}
.y277{bottom:575.850000px;}
.yf9{bottom:576.570000px;}
.y190{bottom:577.695000px;}
.y28{bottom:578.070000px;}
.y1d5{bottom:578.445000px;}
.y77{bottom:585.195000px;}
.y26a{bottom:586.725000px;}
.y92{bottom:589.695000px;}
.y280{bottom:591.630000px;}
.y24c{bottom:592.755000px;}
.y133{bottom:593.070000px;}
.y166{bottom:594.255000px;}
.yf8{bottom:598.695000px;}
.y256{bottom:599.880000px;}
.y209{bottom:601.755000px;}
.y76{bottom:606.945000px;}
.yb2{bottom:607.320000px;}
.y269{bottom:608.505000px;}
.y1f6{bottom:609.195000px;}
.y43{bottom:609.945000px;}
.y207{bottom:610.695000px;}
.y22e{bottom:611.145000px;}
.y91{bottom:611.820000px;}
.y27f{bottom:613.755000px;}
.y27{bottom:614.820000px;}
.y132{bottom:615.195000px;}
.yf7{bottom:620.445000px;}
.y118{bottom:627.195000px;}
.y75{bottom:629.070000px;}
.y268{bottom:630.630000px;}
.y275{bottom:630.645000px;}
.y42{bottom:632.070000px;}
.y206{bottom:632.445000px;}
.y90{bottom:633.570000px;}
.ye0{bottom:633.945000px;}
.y1f5{bottom:636.945000px;}
.y131{bottom:637.320000px;}
.yf6{bottom:637.695000px;}
.y23d{bottom:648.270000px;}
.y74{bottom:651.195000px;}
.y26{bottom:651.570000px;}
.y174{bottom:652.020000px;}
.y41{bottom:653.820000px;}
.y205{bottom:654.570000px;}
.y8f{bottom:655.695000px;}
.y1f4{bottom:659.070000px;}
.y255{bottom:663.630000px;}
.y24b{bottom:666.645000px;}
.y165{bottom:670.380000px;}
.y73{bottom:672.945000px;}
.yb1{bottom:673.320000px;}
.y204{bottom:676.695000px;}
.y8e{bottom:677.445000px;}
.y130{bottom:678.570000px;}
.y1f3{bottom:680.820000px;}
.y208{bottom:681.675000px;}
.y1d3{bottom:681.945000px;}
.y164{bottom:683.925000px;}
.y21c{bottom:685.050000px;}
.y254{bottom:685.425000px;}
.y274{bottom:685.800000px;}
.y40{bottom:686.445000px;}
.y25{bottom:688.350000px;}
.y11{bottom:692.100000px;}
.y72{bottom:695.100000px;}
.ydf{bottom:697.350000px;}
.y203{bottom:698.475000px;}
.y8d{bottom:699.600000px;}
.y1f2{bottom:702.975000px;}
.y22d{bottom:703.425000px;}
.y10{bottom:714.225000px;}
.y1a1{bottom:715.350000px;}
.y3f{bottom:715.725000px;}
.y71{bottom:716.850000px;}
.yb0{bottom:717.225000px;}
.ycc{bottom:719.100000px;}
.y202{bottom:720.600000px;}
.y8c{bottom:721.725000px;}
.y1e3{bottom:722.100000px;}
.y23{bottom:724.725000px;}
.y18f{bottom:730.725000px;}
.yf{bottom:736.350000px;}
.y110{bottom:738.225000px;}
.y70{bottom:738.975000px;}
.ye9{bottom:742.350000px;}
.y8b{bottom:743.475000px;}
.y162{bottom:745.425000px;}
.y3e{bottom:752.475000px;}
.ye{bottom:758.100000px;}
.y6f{bottom:761.100000px;}
.y22{bottom:761.475000px;}
.y1d2{bottom:763.725000px;}
.yc7{bottom:764.475000px;}
.y8a{bottom:765.600000px;}
.y161{bottom:767.595000px;}
.y3d{bottom:774.600000px;}
.yd{bottom:780.225000px;}
.y6e{bottom:782.850000px;}
.yaf{bottom:783.225000px;}
.yc6{bottom:786.600000px;}
.y89{bottom:787.350000px;}
.y1db{bottom:788.475000px;}
.y160{bottom:789.705000px;}
.y1ec{bottom:790.725000px;}
.y163{bottom:791.955000px;}
.y63{bottom:793.725000px;}
.y3c{bottom:796.350000px;}
.y21{bottom:798.225000px;}
.yc{bottom:801.975000px;}
.y1ae{bottom:803.100000px;}
.y6d{bottom:804.975000px;}
.yc5{bottom:808.350000px;}
.y88{bottom:809.475000px;}
.y15f{bottom:811.455000px;}
.y62{bottom:815.850000px;}
.yb{bottom:825.645000px;}
.y6c{bottom:826.755000px;}
.yae{bottom:827.145000px;}
.y3b{bottom:829.020000px;}
.yc4{bottom:830.520000px;}
.y87{bottom:831.630000px;}
.y20{bottom:832.770000px;}
.y61{bottom:837.630000px;}
.y6b{bottom:848.895000px;}
.yc3{bottom:852.270000px;}
.ya{bottom:853.380000px;}
.ycb{bottom:854.880000px;}
.y1e{bottom:856.005000px;}
.y1ea{bottom:859.755000px;}
.y60{bottom:859.770000px;}
.y1a8{bottom:863.130000px;}
.y3a{bottom:865.770000px;}
.y6a{bottom:870.630000px;}
.yad{bottom:871.005000px;}
.yc2{bottom:874.380000px;}
.y86{bottom:875.505000px;}
.y18e{bottom:876.255000px;}
.yca{bottom:876.645000px;}
.y5f{bottom:883.380000px;}
.y9{bottom:883.755000px;}
.y39{bottom:887.880000px;}
.y1c8{bottom:889.395000px;}
.y157{bottom:890.505000px;}
.y69{bottom:892.755000px;}
.y1a{bottom:892.770000px;}
.yac{bottom:893.130000px;}
.yea{bottom:895.005000px;}
.yc1{bottom:896.130000px;}
.y85{bottom:897.255000px;}
.yc9{bottom:898.755000px;}
.y1d8{bottom:899.145000px;}
.y38{bottom:909.630000px;}
.y5e{bottom:911.130000px;}
.y156{bottom:912.630000px;}
.y68{bottom:914.880000px;}
.y10e{bottom:916.755000px;}
.yc0{bottom:918.255000px;}
.y84{bottom:919.380000px;}
.y1ac{bottom:922.770000px;}
.y1e6{bottom:927.645000px;}
.yf0{bottom:931.005000px;}
.y8{bottom:931.380000px;}
.y5d{bottom:932.880000px;}
.y155{bottom:935.505000px;}
.y67{bottom:936.630000px;}
.yab{bottom:937.005000px;}
.ybf{bottom:940.380000px;}
.y37{bottom:942.255000px;}
.y10d{bottom:953.175000px;}
.y5c{bottom:955.050000px;}
.y154{bottom:957.675000px;}
.y66{bottom:958.800000px;}
.y83{bottom:961.050000px;}
.ybe{bottom:962.175000px;}
.y1d7{bottom:975.300000px;}
.y19{bottom:976.425000px;}
.y5b{bottom:976.800000px;}
.y1c7{bottom:977.175000px;}
.y7{bottom:979.050000px;}
.y36{bottom:980.550000px;}
.yaa{bottom:980.925000px;}
.y1a0{bottom:982.425000px;}
.ybd{bottom:984.300000px;}
.y1df{bottom:995.550000px;}
.y18d{bottom:999.675000px;}
.y5a{bottom:1000.425000px;}
.y65{bottom:1002.675000px;}
.ya9{bottom:1003.050000px;}
.y153{bottom:1003.425000px;}
.ybc{bottom:1006.050000px;}
.y17{bottom:1013.175000px;}
.y35{bottom:1018.800000px;}
.yf5{bottom:1019.175000px;}
.y64{bottom:1024.800000px;}
.y152{bottom:1026.300000px;}
.y6{bottom:1026.675000px;}
.y59{bottom:1028.175000px;}
.yc8{bottom:1033.050000px;}
.y1c6{bottom:1037.175000px;}
.y1e1{bottom:1041.300000px;}
.ya8{bottom:1046.925000px;}
.y16{bottom:1047.675000px;}
.y151{bottom:1048.425000px;}
.y58{bottom:1050.300000px;}
.y18c{bottom:1052.175000px;}
.y18b{bottom:1054.425000px;}
.y19f{bottom:1058.925000px;}
.y150{bottom:1070.175000px;}
.y57{bottom:1072.050000px;}
.y5{bottom:1073.925000px;}
.y15{bottom:1076.955000px;}
.yef{bottom:1078.080000px;}
.ya7{bottom:1088.205000px;}
.y14f{bottom:1093.080000px;}
.y56{bottom:1094.205000px;}
.y4{bottom:1115.955000px;}
.y3{bottom:1138.080000px;}
.y2{bottom:1160.205000px;}
.y18a{bottom:1162.455000px;}
.y1{bottom:1181.955000px;}
.h6{height:14.625000px;}
.h21{height:21.750000px;}
.h24{height:22.162500px;}
.h18{height:22.500000px;}
.hb{height:22.875000px;}
.h8{height:23.250000px;}
.ha{height:23.287500px;}
.h12{height:27.000000px;}
.he{height:27.375000px;}
.h11{height:27.412500px;}
.h41{height:36.375000px;}
.h50{height:36.750000px;}
.h4f{height:36.787500px;}
.h14{height:41.774414px;}
.h25{height:43.875000px;}
.h28{height:43.897500px;}
.h2f{height:43.912500px;}
.h32{height:44.250000px;}
.h29{height:44.287500px;}
.h5{height:47.742188px;}
.hd{height:53.709961px;}
.h16{height:54.386719px;}
.h3c{height:54.750000px;}
.h51{height:54.787500px;}
.h45{height:55.125000px;}
.h52{height:55.147500px;}
.h3f{height:55.162500px;}
.h10{height:59.677734px;}
.hf{height:61.435547px;}
.h17{height:62.964844px;}
.h44{height:63.961367px;}
.h3b{height:65.625000px;}
.h15{height:65.645508px;}
.h31{height:65.662500px;}
.h1c{height:66.000000px;}
.h3a{height:66.022500px;}
.h2c{height:66.037500px;}
.h38{height:67.500000px;}
.hc{height:68.629395px;}
.h9{height:70.147500px;}
.h1{height:71.613281px;}
.h2a{height:72.000000px;}
.h34{height:72.022500px;}
.h47{height:73.125000px;}
.h48{height:73.147500px;}
.h4a{height:73.162500px;}
.h49{height:73.537500px;}
.h4{height:73.722656px;}
.h37{height:75.397500px;}
.h36{height:87.750000px;}
.h1f{height:87.772500px;}
.h1e{height:87.787500px;}
.h42{height:91.522500px;}
.h3e{height:91.537500px;}
.h43{height:91.912500px;}
.h3{height:95.484375px;}
.h27{height:103.537500px;}
.h1a{height:109.912500px;}
.h40{height:109.950000px;}
.h4c{height:127.912500px;}
.h4d{height:127.950000px;}
.h4e{height:128.287500px;}
.h3d{height:128.325000px;}
.h33{height:132.022500px;}
.h22{height:132.037500px;}
.h30{height:138.037500px;}
.h23{height:139.537500px;}
.h13{height:143.226562px;}
.h46{height:146.325000px;}
.h7{height:147.445312px;}
.h2d{height:153.780000px;}
.h19{height:153.795000px;}
.h1d{height:153.825000px;}
.h2{height:155.162109px;}
.h4b{height:165.075000px;}
.h20{height:175.950000px;}
.h2e{height:197.700000px;}
.h26{height:251.325000px;}
.h39{height:271.575000px;}
.h2b{height:361.230000px;}
.h35{height:376.980000px;}
.h1b{height:892.500000px;}
.h0{height:1263.000000px;}
.w7{width:37.875000px;}
.w2d{width:62.662500px;}
.w35{width:81.787500px;}
.w1f{width:99.412500px;}
.w2e{width:104.287500px;}
.w8{width:105.450000px;}
.w2c{width:108.787500px;}
.w38{width:111.412500px;}
.w15{width:115.162500px;}
.w3c{width:115.912500px;}
.w19{width:123.412500px;}
.w33{width:123.787500px;}
.w42{width:125.662500px;}
.w40{width:126.412500px;}
.w2b{width:127.912500px;}
.w3f{width:129.412500px;}
.w20{width:130.950000px;}
.w37{width:131.287500px;}
.w23{width:131.662500px;}
.w2{width:133.200000px;}
.w32{width:133.537500px;}
.w14{width:137.287500px;}
.w13{width:139.537500px;}
.wc{width:139.575000px;}
.w2a{width:140.287500px;}
.w30{width:143.287500px;}
.w17{width:143.662500px;}
.w1c{width:144.412500px;}
.w1b{width:144.450000px;}
.w1e{width:144.787500px;}
.w1a{width:144.825000px;}
.w24{width:147.450000px;}
.w1d{width:152.700000px;}
.w18{width:153.795000px;}
.w3e{width:155.325000px;}
.w16{width:155.655000px;}
.w34{width:164.670000px;}
.w39{width:165.405000px;}
.w29{width:165.450000px;}
.w2f{width:166.155000px;}
.w36{width:167.655000px;}
.w43{width:168.450000px;}
.w31{width:171.405000px;}
.w3b{width:181.200000px;}
.w27{width:186.825000px;}
.w3d{width:188.295000px;}
.w25{width:191.325000px;}
.w41{width:206.280000px;}
.w3a{width:216.825000px;}
.w45{width:232.200000px;}
.wf{width:243.075000px;}
.we{width:243.495000px;}
.w10{width:244.995000px;}
.w5{width:251.370000px;}
.w22{width:254.355000px;}
.w3{width:254.370000px;}
.w26{width:259.620000px;}
.w9{width:265.230000px;}
.w21{width:288.120000px;}
.wa{width:322.245000px;}
.w44{width:363.120000px;}
.w4{width:479.820000px;}
.w6{width:483.570000px;}
.w28{width:544.725000px;}
.wd{width:733.800000px;}
.wb{width:892.499973px;}
.w1{width:892.499987px;}
.w0{width:892.500000px;}
.w12{width:1262.999981px;}
.w11{width:1263.000000px;}
.x0{left:0.000000px;}
.x6{left:6.375000px;}
.x28{left:7.875000px;}
.xb{left:15.375000px;}
.x5{left:74.655000px;}
.x1{left:85.162487px;}
.x1b{left:90.787487px;}
.x20{left:93.037487px;}
.x27{left:99.037481px;}
.xf{left:103.162487px;}
.x9{left:112.162487px;}
.xc{left:123.787500px;}
.xa{left:139.199987px;}
.x34{left:186.075000px;}
.x1e{left:187.949973px;}
.x1f{left:196.199987px;}
.x3e{left:204.825000px;}
.x3d{left:210.075000px;}
.x37{left:218.325000px;}
.xd{left:229.995000px;}
.x51{left:234.075000px;}
.x29{left:237.825000px;}
.x13{left:257.744973px;}
.x14{left:265.244987px;}
.x4a{left:268.200000px;}
.x3a{left:273.495000px;}
.x2{left:276.494987px;}
.x1a{left:301.244987px;}
.x56{left:305.325000px;}
.x35{left:317.775000px;}
.x25{left:329.775000px;}
.x8{left:337.275000px;}
.x7{left:340.275000px;}
.x17{left:343.649987px;}
.x45{left:349.244981px;}
.x2a{left:353.745000px;}
.x38{left:366.525000px;}
.x3f{left:371.745000px;}
.x31{left:375.525000px;}
.x4b{left:400.245000px;}
.x10{left:416.819987px;}
.x52{left:423.120000px;}
.x57{left:430.995000px;}
.x1c{left:438.944973px;}
.x1d{left:444.944987px;}
.xe{left:495.975000px;}
.x2b{left:510.150000px;}
.x18{left:511.349973px;}
.x4c{left:512.400000px;}
.x40{left:515.775000px;}
.x19{left:517.724987px;}
.x32{left:520.725000px;}
.x23{left:534.599973px;}
.x24{left:540.599987px;}
.x39{left:558.600000px;}
.x15{left:562.724973px;}
.x16{left:568.724987px;}
.x26{left:573.975000px;}
.x53{left:579.195000px;}
.x3b{left:580.770000px;}
.x58{left:599.445000px;}
.x36{left:606.645000px;}
.x2c{left:654.570000px;}
.x33{left:674.175000px;}
.x4d{left:678.570000px;}
.x41{left:687.975000px;}
.x3c{left:709.425000px;}
.x4{left:729.675000px;}
.x21{left:755.174973px;}
.x22{left:761.219987px;}
.x3{left:766.469987px;}
.x2d{left:809.100000px;}
.x11{left:812.954973px;}
.x12{left:818.954987px;}
.x42{left:822.255000px;}
.x4f{left:872.879981px;}
.x54{left:875.505000px;}
.x50{left:878.879981px;}
.x4e{left:896.130000px;}
.x2e{left:933.255000px;}
.x43{left:946.800000px;}
.x59{left:962.550000px;}
.x55{left:1067.595000px;}
.x46{left:1069.829981px;}
.x47{left:1075.829981px;}
.x2f{left:1078.845000px;}
.x48{left:1091.219981px;}
.x49{left:1097.219981px;}
.x44{left:1112.220000px;}
.x30{left:1141.844981px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1c{letter-spacing:-1.450667pt;}
.ls21{letter-spacing:-1.333333pt;}
.ls2c{letter-spacing:-1.088000pt;}
.ls10{letter-spacing:-0.597333pt;}
.ls33{letter-spacing:-0.533333pt;}
.ls1a{letter-spacing:-0.501333pt;}
.ls7{letter-spacing:-0.448000pt;}
.ls34{letter-spacing:-0.426667pt;}
.ls20{letter-spacing:-0.410667pt;}
.ls2e{letter-spacing:-0.405333pt;}
.ls9{letter-spacing:-0.394667pt;}
.ls3d{letter-spacing:-0.373333pt;}
.ls2{letter-spacing:-0.330667pt;}
.ls1d{letter-spacing:-0.298667pt;}
.ls1e{letter-spacing:-0.266667pt;}
.ls38{letter-spacing:-0.213333pt;}
.ls1{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.170667pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls18{letter-spacing:-0.106667pt;}
.ls23{letter-spacing:-0.101333pt;}
.ls30{letter-spacing:-0.074667pt;}
.ls19{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.010667pt;}
.lsa{letter-spacing:0.037333pt;}
.ls3c{letter-spacing:0.053333pt;}
.ls35{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.133333pt;}
.ls3{letter-spacing:0.202667pt;}
.lse{letter-spacing:0.245333pt;}
.ls3a{letter-spacing:0.266667pt;}
.ls2d{letter-spacing:0.277333pt;}
.ls26{letter-spacing:0.309333pt;}
.ls39{letter-spacing:0.320000pt;}
.ls3b{letter-spacing:0.373333pt;}
.ls22{letter-spacing:0.405333pt;}
.ls14{letter-spacing:0.416000pt;}
.ls17{letter-spacing:0.437333pt;}
.ls36{letter-spacing:0.533333pt;}
.ls2f{letter-spacing:0.554667pt;}
.lsb{letter-spacing:0.576000pt;}
.ls1f{letter-spacing:0.608000pt;}
.ls37{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.885333pt;}
.ls32{letter-spacing:0.906667pt;}
.lsc{letter-spacing:0.960000pt;}
.ls31{letter-spacing:1.013333pt;}
.ls28{letter-spacing:1.066667pt;}
.ls24{letter-spacing:1.536000pt;}
.ls25{letter-spacing:2.869333pt;}
.ls29{letter-spacing:5.536000pt;}
.ls2a{letter-spacing:10.869333pt;}
.ls2b{letter-spacing:15.674667pt;}
.ls27{letter-spacing:18.869333pt;}
.ls13{letter-spacing:30.341333pt;}
.lsd{letter-spacing:37.536000pt;}
.ls5{letter-spacing:51.082667pt;}
.ls16{letter-spacing:55.216000pt;}
.ls12{letter-spacing:57.306667pt;}
.ls15{letter-spacing:753.829333pt;}
.ws1c{word-spacing:-64.000000pt;}
.ws5{word-spacing:-61.333333pt;}
.ws10{word-spacing:-53.333333pt;}
.ws0{word-spacing:-31.146667pt;}
.ws11{word-spacing:-29.365333pt;}
.ws21{word-spacing:-19.210667pt;}
.wsb{word-spacing:-19.114667pt;}
.wsc{word-spacing:-18.688000pt;}
.ws1b{word-spacing:-15.530667pt;}
.ws3{word-spacing:-15.349333pt;}
.ws17{word-spacing:-15.072000pt;}
.ws20{word-spacing:-15.018667pt;}
.ws1a{word-spacing:-14.773333pt;}
.ws1e{word-spacing:-14.741333pt;}
.wsd{word-spacing:-14.709333pt;}
.ws1d{word-spacing:-14.592000pt;}
.wsf{word-spacing:-14.464000pt;}
.ws13{word-spacing:-14.410667pt;}
.ws12{word-spacing:-14.357333pt;}
.wse{word-spacing:-14.336000pt;}
.ws16{word-spacing:-14.197333pt;}
.ws4{word-spacing:-14.069333pt;}
.ws1f{word-spacing:-14.058667pt;}
.ws2{word-spacing:-14.016000pt;}
.ws14{word-spacing:-13.962667pt;}
.ws19{word-spacing:-13.157333pt;}
.wsa{word-spacing:-13.013333pt;}
.ws18{word-spacing:-12.848000pt;}
.ws25{word-spacing:-12.693333pt;}
.ws28{word-spacing:-12.373333pt;}
.ws24{word-spacing:-12.160000pt;}
.ws9{word-spacing:-12.053333pt;}
.ws27{word-spacing:-11.946667pt;}
.ws26{word-spacing:-11.840000pt;}
.ws29{word-spacing:-11.680000pt;}
.ws23{word-spacing:-11.626667pt;}
.ws22{word-spacing:-11.520000pt;}
.ws8{word-spacing:-11.424000pt;}
.ws6{word-spacing:-10.981333pt;}
.ws7{word-spacing:-10.885333pt;}
.ws15{word-spacing:-9.344000pt;}
.ws1{word-spacing:0.000000pt;}
._16{margin-left:-17.824000pt;}
._14{margin-left:-14.106667pt;}
._11{margin-left:-12.506667pt;}
._f{margin-left:-11.285333pt;}
._b{margin-left:-9.152000pt;}
._a{margin-left:-7.642667pt;}
._15{margin-left:-6.165333pt;}
._c{margin-left:-4.506667pt;}
._d{margin-left:-3.530667pt;}
._10{margin-left:-2.186667pt;}
._1{margin-left:-1.248000pt;}
._0{width:0.970667pt;}
._9{width:1.904000pt;}
._e{width:2.981333pt;}
._5{width:4.117333pt;}
._7{width:5.066667pt;}
._6{width:6.517333pt;}
._1a{width:7.445333pt;}
._1c{width:8.346667pt;}
._1b{width:9.957333pt;}
._1d{width:11.472000pt;}
._17{width:13.226667pt;}
._24{width:14.192000pt;}
._22{width:15.589333pt;}
._1f{width:16.757333pt;}
._1e{width:17.717333pt;}
._19{width:19.274667pt;}
._18{width:20.213333pt;}
._29{width:21.541333pt;}
._28{width:22.906667pt;}
._20{width:23.936000pt;}
._27{width:24.874667pt;}
._26{width:25.872000pt;}
._12{width:27.904000pt;}
._13{width:29.034667pt;}
._21{width:30.272000pt;}
._23{width:31.392000pt;}
._2d{width:35.168000pt;}
._2c{width:45.440000pt;}
._2{width:64.480000pt;}
._30{width:68.394667pt;}
._4{width:86.528000pt;}
._3{width:87.776000pt;}
._25{width:109.024000pt;}
._2e{width:122.720000pt;}
._2a{width:145.408000pt;}
._2b{width:146.304000pt;}
._31{width:193.162667pt;}
._2f{width:217.461333pt;}
._8{width:753.909333pt;}
.fs8{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs5{font-size:61.333333pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:67.461249pt;}
.fs2{font-size:85.333333pt;}
.fs4{font-size:128.000000pt;}
.fs1{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:3.000000pt;}
.y232{bottom:3.653333pt;}
.y2f{bottom:3.666667pt;}
.y227{bottom:3.680000pt;}
.y273{bottom:3.700000pt;}
.y245{bottom:3.706667pt;}
.y177{bottom:4.320000pt;}
.y117{bottom:4.333333pt;}
.y189{bottom:4.366667pt;}
.y181{bottom:4.373333pt;}
.y10f{bottom:5.000000pt;}
.y18{bottom:5.333333pt;}
.y24{bottom:5.666667pt;}
.y1f{bottom:5.680000pt;}
.y1d{bottom:7.986667pt;}
.y1cc{bottom:9.986667pt;}
.y1b3{bottom:10.000000pt;}
.y196{bottom:11.333333pt;}
.y1e9{bottom:13.986667pt;}
.y1e2{bottom:14.000000pt;}
.y1ef{bottom:14.333333pt;}
.y231{bottom:19.653333pt;}
.y229{bottom:19.666667pt;}
.y226{bottom:19.680000pt;}
.y262{bottom:19.700000pt;}
.y244{bottom:19.706667pt;}
.y23e{bottom:19.986667pt;}
.y20b{bottom:20.000000pt;}
.y271{bottom:20.013333pt;}
.y21f{bottom:20.026667pt;}
.y22c{bottom:20.033333pt;}
.y224{bottom:20.040000pt;}
.y1c3{bottom:23.660000pt;}
.y173{bottom:23.666667pt;}
.y1ad{bottom:23.693333pt;}
.y1ba{bottom:23.986667pt;}
.y116{bottom:24.000000pt;}
.y176{bottom:24.026667pt;}
.y188{bottom:24.033333pt;}
.y180{bottom:24.040000pt;}
.y1e0{bottom:24.666667pt;}
.y1c{bottom:27.320000pt;}
.y1f1{bottom:29.000000pt;}
.y1cb{bottom:29.320000pt;}
.y1b2{bottom:29.333333pt;}
.y1e7{bottom:29.360000pt;}
.y1ed{bottom:29.373333pt;}
.y195{bottom:30.666667pt;}
.y1da{bottom:32.320000pt;}
.y1f0{bottom:33.333333pt;}
.y1eb{bottom:33.666667pt;}
.y1e8{bottom:33.693333pt;}
.y1ee{bottom:33.706667pt;}
.y230{bottom:35.986667pt;}
.y20a{bottom:36.000000pt;}
.y250{bottom:36.013333pt;}
.y221{bottom:36.026667pt;}
.y261{bottom:36.033333pt;}
.y223{bottom:36.040000pt;}
.y276{bottom:36.320000pt;}
.y218{bottom:36.333333pt;}
.y211{bottom:36.360000pt;}
.y22b{bottom:36.366667pt;}
.y215{bottom:36.373333pt;}
.y1ab{bottom:37.666667pt;}
.y1c9{bottom:43.320000pt;}
.y115{bottom:43.333333pt;}
.y1c2{bottom:43.340000pt;}
.y175{bottom:43.360000pt;}
.y172{bottom:43.366667pt;}
.y16f{bottom:43.373333pt;}
.y168{bottom:43.666667pt;}
.y1d4{bottom:43.693333pt;}
.y187{bottom:43.700000pt;}
.y19b{bottom:43.706667pt;}
.y1b{bottom:47.026667pt;}
.y1ca{bottom:48.986667pt;}
.y1b1{bottom:49.000000pt;}
.y194{bottom:50.333333pt;}
.y1d9{bottom:51.693333pt;}
.y22f{bottom:52.320000pt;}
.y21a{bottom:52.333333pt;}
.y21e{bottom:52.360000pt;}
.y260{bottom:52.366667pt;}
.y214{bottom:52.373333pt;}
.y235{bottom:52.666667pt;}
.y23b{bottom:52.680000pt;}
.y210{bottom:52.693333pt;}
.y253{bottom:52.700000pt;}
.y248{bottom:52.706667pt;}
.y1aa{bottom:57.333333pt;}
.y171{bottom:62.700000pt;}
.y114{bottom:63.000000pt;}
.y11a{bottom:63.026667pt;}
.y186{bottom:63.033333pt;}
.y16c{bottom:63.040000pt;}
.y1c5{bottom:68.366667pt;}
.y219{bottom:68.666667pt;}
.y20f{bottom:68.693333pt;}
.y25f{bottom:68.700000pt;}
.y213{bottom:68.706667pt;}
.y23a{bottom:69.013333pt;}
.y234{bottom:69.026667pt;}
.y247{bottom:69.040000pt;}
.y193{bottom:69.666667pt;}
.y1a9{bottom:76.706667pt;}
.y13{bottom:78.366667pt;}
.y1b0{bottom:82.333333pt;}
.y113{bottom:82.360000pt;}
.y1c0{bottom:82.366667pt;}
.y16e{bottom:82.373333pt;}
.y119{bottom:82.693333pt;}
.y16b{bottom:82.706667pt;}
.y185{bottom:82.740000pt;}
.y17f{bottom:82.746667pt;}
.y20e{bottom:85.026667pt;}
.y25e{bottom:85.033333pt;}
.y217{bottom:85.040000pt;}
.y243{bottom:85.066667pt;}
.y1c4{bottom:88.033333pt;}
.y192{bottom:89.333333pt;}
.y21b{bottom:91.700000pt;}
.y12{bottom:93.366667pt;}
.y170{bottom:93.700000pt;}
.y242{bottom:101.066667pt;}
.y20d{bottom:101.360000pt;}
.y25b{bottom:101.373333pt;}
.y1af{bottom:102.026667pt;}
.y1bf{bottom:102.033333pt;}
.y112{bottom:102.040000pt;}
.y17b{bottom:102.053333pt;}
.y184{bottom:102.073333pt;}
.y17e{bottom:102.080000pt;}
.y1e5{bottom:105.360000pt;}
.yde{bottom:107.366667pt;}
.y14e{bottom:108.033333pt;}
.y55{bottom:108.366667pt;}
.y191{bottom:109.026667pt;}
.y201{bottom:110.033333pt;}
.y1a7{bottom:110.373333pt;}
.y1bb{bottom:111.033333pt;}
.ydd{bottom:112.033333pt;}
.y12f{bottom:114.033333pt;}
.y252{bottom:115.700000pt;}
.y22a{bottom:116.366667pt;}
.y267{bottom:117.033333pt;}
.y241{bottom:117.400000pt;}
.y264{bottom:117.693333pt;}
.y25a{bottom:117.733333pt;}
.y25d{bottom:118.033333pt;}
.y1dc{bottom:121.360000pt;}
.y1be{bottom:121.366667pt;}
.y111{bottom:121.693333pt;}
.y16a{bottom:121.706667pt;}
.y17a{bottom:121.720000pt;}
.y16d{bottom:121.733333pt;}
.y183{bottom:121.740000pt;}
.y17d{bottom:121.746667pt;}
.y1e4{bottom:125.026667pt;}
.ydc{bottom:125.366667pt;}
.y10c{bottom:125.700000pt;}
.y54{bottom:128.033333pt;}
.y14d{bottom:128.366667pt;}
.y200{bottom:129.366667pt;}
.y1a6{bottom:130.026667pt;}
.yee{bottom:130.033333pt;}
.y272{bottom:130.366667pt;}
.ya6{bottom:133.373333pt;}
.y24a{bottom:133.400000pt;}
.ybb{bottom:133.706667pt;}
.y259{bottom:134.066667pt;}
.y12d{bottom:136.040000pt;}
.y23c{bottom:136.733333pt;}
.y27e{bottom:137.400000pt;}
.y1bd{bottom:141.033333pt;}
.y179{bottom:141.053333pt;}
.y19a{bottom:141.400000pt;}
.y182{bottom:141.406667pt;}
.ydb{bottom:143.373333pt;}
.yed{bottom:143.693333pt;}
.y10b{bottom:145.373333pt;}
.y53{bottom:147.706667pt;}
.yda{bottom:148.040000pt;}
.y1ff{bottom:149.040000pt;}
.y1a5{bottom:149.693333pt;}
.y266{bottom:150.400000pt;}
.ya5{bottom:153.026667pt;}
.y12c{bottom:155.733333pt;}
.y15e{bottom:157.066667pt;}
.y1bc{bottom:160.740000pt;}
.yd9{bottom:161.066667pt;}
.yec{bottom:163.066667pt;}
.y228{bottom:166.066667pt;}
.y34{bottom:166.400000pt;}
.y52{bottom:167.066667pt;}
.y14c{bottom:167.733333pt;}
.y1fe{bottom:168.733333pt;}
.y1a4{bottom:169.026667pt;}
.y27d{bottom:170.066667pt;}
.ya4{bottom:172.400000pt;}
.yba{bottom:172.733333pt;}
.y12b{bottom:175.400000pt;}
.y144{bottom:175.733333pt;}
.y15d{bottom:176.733333pt;}
.y19e{bottom:177.733333pt;}
.yd8{bottom:179.066667pt;}
.y10a{bottom:180.400000pt;}
.y251{bottom:181.400000pt;}
.yd7{bottom:183.733333pt;}
.y51{bottom:186.733333pt;}
.y14b{bottom:188.066667pt;}
.y1a3{bottom:188.693333pt;}
.ya3{bottom:192.066667pt;}
.y33{bottom:192.733333pt;}
.y12a{bottom:194.733333pt;}
.y143{bottom:195.066667pt;}
.y15c{bottom:196.066667pt;}
.yd6{bottom:197.066667pt;}
.ye8{bottom:197.400000pt;}
.y249{bottom:199.066667pt;}
.y109{bottom:200.066667pt;}
.y19d{bottom:202.400000pt;}
.y50{bottom:206.066667pt;}
.y1fd{bottom:207.733333pt;}
.y1a2{bottom:208.066667pt;}
.y14a{bottom:208.400000pt;}
.ya2{bottom:211.733333pt;}
.yf4{bottom:212.066667pt;}
.y129{bottom:214.400000pt;}
.y142{bottom:214.733333pt;}
.yd5{bottom:215.066667pt;}
.y15b{bottom:215.733333pt;}
.y25c{bottom:216.426667pt;}
.ye7{bottom:216.733333pt;}
.y239{bottom:218.760000pt;}
.y108{bottom:219.400000pt;}
.yd4{bottom:219.733333pt;}
.y19c{bottom:222.066667pt;}
.y4f{bottom:225.733333pt;}
.y1fc{bottom:227.066667pt;}
.y1b9{bottom:227.733333pt;}
.y270{bottom:228.093333pt;}
.y32{bottom:228.733333pt;}
.ya1{bottom:231.066667pt;}
.yb9{bottom:231.400000pt;}
.yf3{bottom:231.733333pt;}
.yd3{bottom:232.733333pt;}
.y128{bottom:233.733333pt;}
.y141{bottom:234.400000pt;}
.y15a{bottom:235.066667pt;}
.y107{bottom:239.066667pt;}
.y216{bottom:239.760000pt;}
.y1d1{bottom:241.733333pt;}
.y199{bottom:242.733333pt;}
.y4e{bottom:245.066667pt;}
.y1fb{bottom:246.733333pt;}
.y1b8{bottom:247.400000pt;}
.y24f{bottom:247.426667pt;}
.y1c1{bottom:247.733333pt;}
.y149{bottom:248.400000pt;}
.y265{bottom:248.760000pt;}
.ya0{bottom:250.733333pt;}
.y82{bottom:251.066667pt;}
.y127{bottom:253.400000pt;}
.y140{bottom:253.733333pt;}
.y106{bottom:258.733333pt;}
.y1d0{bottom:261.400000pt;}
.y225{bottom:264.426667pt;}
.y31{bottom:265.066667pt;}
.y1fa{bottom:266.400000pt;}
.y1b7{bottom:266.733333pt;}
.y148{bottom:267.733333pt;}
.y27c{bottom:267.760000pt;}
.yd2{bottom:268.733333pt;}
.y9f{bottom:270.093333pt;}
.yb8{bottom:270.426667pt;}
.y159{bottom:272.106667pt;}
.y126{bottom:272.773333pt;}
.yd1{bottom:273.426667pt;}
.y4d{bottom:274.106667pt;}
.y26f{bottom:276.760000pt;}
.y105{bottom:278.106667pt;}
.y1cf{bottom:280.733333pt;}
.y246{bottom:281.093333pt;}
.y17c{bottom:285.093333pt;}
.y81{bottom:285.760000pt;}
.y1b6{bottom:286.400000pt;}
.yd0{bottom:286.773333pt;}
.yf2{bottom:288.093333pt;}
.y9e{bottom:289.773333pt;}
.y125{bottom:292.440000pt;}
.y13f{bottom:292.773333pt;}
.y104{bottom:297.760000pt;}
.y1ce{bottom:300.426667pt;}
.y1b4{bottom:300.773333pt;}
.y30{bottom:301.440000pt;}
.y80{bottom:305.106667pt;}
.y1f9{bottom:305.440000pt;}
.y1b5{bottom:305.733333pt;}
.ycf{bottom:306.426667pt;}
.y4c{bottom:308.106667pt;}
.y147{bottom:308.440000pt;}
.y9d{bottom:309.093333pt;}
.yb7{bottom:309.426667pt;}
.y169{bottom:309.800000pt;}
.y124{bottom:312.093333pt;}
.y13e{bottom:312.426667pt;}
.yeb{bottom:314.440000pt;}
.y27b{bottom:316.466667pt;}
.y103{bottom:317.106667pt;}
.y238{bottom:317.133333pt;}
.y1cd{bottom:319.773333pt;}
.y7f{bottom:324.760000pt;}
.y26e{bottom:325.800000pt;}
.y146{bottom:328.106667pt;}
.y9c{bottom:328.773333pt;}
.yb6{bottom:329.106667pt;}
.y24e{bottom:329.466667pt;}
.y258{bottom:330.800000pt;}
.y123{bottom:331.440000pt;}
.y13d{bottom:331.773333pt;}
.y102{bottom:336.760000pt;}
.y2e{bottom:337.773333pt;}
.y212{bottom:338.133333pt;}
.yf1{bottom:340.440000pt;}
.y4b{bottom:340.773333pt;}
.y7e{bottom:344.106667pt;}
.y1f8{bottom:344.440000pt;}
.y12e{bottom:346.106667pt;}
.y222{bottom:346.466667pt;}
.y9b{bottom:348.426667pt;}
.y122{bottom:351.093333pt;}
.y13c{bottom:351.426667pt;}
.ye6{bottom:353.773333pt;}
.y101{bottom:356.440000pt;}
.y4a{bottom:360.440000pt;}
.y240{bottom:363.466667pt;}
.y7d{bottom:363.773333pt;}
.y27a{bottom:365.466667pt;}
.yb5{bottom:365.773333pt;}
.y9a{bottom:367.773333pt;}
.ye5{bottom:368.106667pt;}
.y121{bottom:370.440000pt;}
.y13b{bottom:371.106667pt;}
.y100{bottom:375.773333pt;}
.y7c{bottom:383.466667pt;}
.y99{bottom:387.466667pt;}
.y237{bottom:388.506667pt;}
.y49{bottom:389.466667pt;}
.y2d{bottom:389.800000pt;}
.y120{bottom:390.133333pt;}
.y13a{bottom:390.466667pt;}
.y26d{bottom:390.840000pt;}
.y24d{bottom:395.173333pt;}
.yff{bottom:395.466667pt;}
.y7b{bottom:402.800000pt;}
.y1f7{bottom:403.133333pt;}
.y2c{bottom:404.466667pt;}
.y98{bottom:406.800000pt;}
.ye4{bottom:407.133333pt;}
.y11f{bottom:409.800000pt;}
.y139{bottom:410.133333pt;}
.y198{bottom:411.133333pt;}
.y1d6{bottom:413.800000pt;}
.y279{bottom:414.173333pt;}
.yfe{bottom:414.800000pt;}
.y20c{bottom:420.173333pt;}
.y48{bottom:422.133333pt;}
.y7a{bottom:422.466667pt;}
.y178{bottom:422.506667pt;}
.y2b{bottom:423.133333pt;}
.y97{bottom:426.466667pt;}
.ye3{bottom:426.800000pt;}
.y26c{bottom:427.840000pt;}
.y220{bottom:428.506667pt;}
.y11e{bottom:429.133333pt;}
.y138{bottom:429.466667pt;}
.y1de{bottom:429.800000pt;}
.yfd{bottom:434.466667pt;}
.y47{bottom:441.466667pt;}
.y2a{bottom:441.800000pt;}
.yb4{bottom:442.133333pt;}
.y145{bottom:444.133333pt;}
.y236{bottom:445.200000pt;}
.y1dd{bottom:445.466667pt;}
.y96{bottom:446.133333pt;}
.y167{bottom:447.200000pt;}
.y11d{bottom:448.800000pt;}
.y137{bottom:449.133333pt;}
.yce{bottom:451.466667pt;}
.yfc{bottom:453.800000pt;}
.y233{bottom:460.866667pt;}
.y46{bottom:461.133333pt;}
.y79{bottom:461.466667pt;}
.y278{bottom:462.866667pt;}
.y26b{bottom:464.866667pt;}
.y95{bottom:465.466667pt;}
.ye2{bottom:465.800000pt;}
.y283{bottom:467.200000pt;}
.y11c{bottom:468.133333pt;}
.y136{bottom:468.800000pt;}
.yfb{bottom:473.466667pt;}
.y263{bottom:477.866667pt;}
.y257{bottom:478.200000pt;}
.y45{bottom:480.466667pt;}
.y29{bottom:481.133333pt;}
.y197{bottom:481.800000pt;}
.y94{bottom:485.133333pt;}
.y282{bottom:486.866667pt;}
.y135{bottom:488.133333pt;}
.ycd{bottom:490.466667pt;}
.yfa{bottom:493.133333pt;}
.y23f{bottom:494.200000pt;}
.y78{bottom:500.506667pt;}
.yb3{bottom:500.840000pt;}
.y158{bottom:502.506667pt;}
.y93{bottom:504.506667pt;}
.ye1{bottom:504.840000pt;}
.y11b{bottom:505.173333pt;}
.y281{bottom:506.533333pt;}
.y134{bottom:507.840000pt;}
.y44{bottom:509.506667pt;}
.y21d{bottom:510.533333pt;}
.y277{bottom:511.866667pt;}
.yf9{bottom:512.506667pt;}
.y190{bottom:513.506667pt;}
.y28{bottom:513.840000pt;}
.y1d5{bottom:514.173333pt;}
.y77{bottom:520.173333pt;}
.y26a{bottom:521.533333pt;}
.y92{bottom:524.173333pt;}
.y280{bottom:525.893333pt;}
.y24c{bottom:526.893333pt;}
.y133{bottom:527.173333pt;}
.y166{bottom:528.226667pt;}
.yf8{bottom:532.173333pt;}
.y256{bottom:533.226667pt;}
.y209{bottom:534.893333pt;}
.y76{bottom:539.506667pt;}
.yb2{bottom:539.840000pt;}
.y269{bottom:540.893333pt;}
.y1f6{bottom:541.506667pt;}
.y43{bottom:542.173333pt;}
.y207{bottom:542.840000pt;}
.y22e{bottom:543.240000pt;}
.y91{bottom:543.840000pt;}
.y27f{bottom:545.560000pt;}
.y27{bottom:546.506667pt;}
.y132{bottom:546.840000pt;}
.yf7{bottom:551.506667pt;}
.y118{bottom:557.506667pt;}
.y75{bottom:559.173333pt;}
.y268{bottom:560.560000pt;}
.y275{bottom:560.573333pt;}
.y42{bottom:561.840000pt;}
.y206{bottom:562.173333pt;}
.y90{bottom:563.173333pt;}
.ye0{bottom:563.506667pt;}
.y1f5{bottom:566.173333pt;}
.y131{bottom:566.506667pt;}
.yf6{bottom:566.840000pt;}
.y23d{bottom:576.240000pt;}
.y74{bottom:578.840000pt;}
.y26{bottom:579.173333pt;}
.y174{bottom:579.573333pt;}
.y41{bottom:581.173333pt;}
.y205{bottom:581.840000pt;}
.y8f{bottom:582.840000pt;}
.y1f4{bottom:585.840000pt;}
.y255{bottom:589.893333pt;}
.y24b{bottom:592.573333pt;}
.y165{bottom:595.893333pt;}
.y73{bottom:598.173333pt;}
.yb1{bottom:598.506667pt;}
.y204{bottom:601.506667pt;}
.y8e{bottom:602.173333pt;}
.y130{bottom:603.173333pt;}
.y1f3{bottom:605.173333pt;}
.y208{bottom:605.933333pt;}
.y1d3{bottom:606.173333pt;}
.y164{bottom:607.933333pt;}
.y21c{bottom:608.933333pt;}
.y254{bottom:609.266667pt;}
.y274{bottom:609.600000pt;}
.y40{bottom:610.173333pt;}
.y25{bottom:611.866667pt;}
.y11{bottom:615.200000pt;}
.y72{bottom:617.866667pt;}
.ydf{bottom:619.866667pt;}
.y203{bottom:620.866667pt;}
.y8d{bottom:621.866667pt;}
.y1f2{bottom:624.866667pt;}
.y22d{bottom:625.266667pt;}
.y10{bottom:634.866667pt;}
.y1a1{bottom:635.866667pt;}
.y3f{bottom:636.200000pt;}
.y71{bottom:637.200000pt;}
.yb0{bottom:637.533333pt;}
.ycc{bottom:639.200000pt;}
.y202{bottom:640.533333pt;}
.y8c{bottom:641.533333pt;}
.y1e3{bottom:641.866667pt;}
.y23{bottom:644.200000pt;}
.y18f{bottom:649.533333pt;}
.yf{bottom:654.533333pt;}
.y110{bottom:656.200000pt;}
.y70{bottom:656.866667pt;}
.ye9{bottom:659.866667pt;}
.y8b{bottom:660.866667pt;}
.y162{bottom:662.600000pt;}
.y3e{bottom:668.866667pt;}
.ye{bottom:673.866667pt;}
.y6f{bottom:676.533333pt;}
.y22{bottom:676.866667pt;}
.y1d2{bottom:678.866667pt;}
.yc7{bottom:679.533333pt;}
.y8a{bottom:680.533333pt;}
.y161{bottom:682.306667pt;}
.y3d{bottom:688.533333pt;}
.yd{bottom:693.533333pt;}
.y6e{bottom:695.866667pt;}
.yaf{bottom:696.200000pt;}
.yc6{bottom:699.200000pt;}
.y89{bottom:699.866667pt;}
.y1db{bottom:700.866667pt;}
.y160{bottom:701.960000pt;}
.y1ec{bottom:702.866667pt;}
.y163{bottom:703.960000pt;}
.y63{bottom:705.533333pt;}
.y3c{bottom:707.866667pt;}
.y21{bottom:709.533333pt;}
.yc{bottom:712.866667pt;}
.y1ae{bottom:713.866667pt;}
.y6d{bottom:715.533333pt;}
.yc5{bottom:718.533333pt;}
.y88{bottom:719.533333pt;}
.y15f{bottom:721.293333pt;}
.y62{bottom:725.200000pt;}
.yb{bottom:733.906667pt;}
.y6c{bottom:734.893333pt;}
.yae{bottom:735.240000pt;}
.y3b{bottom:736.906667pt;}
.yc4{bottom:738.240000pt;}
.y87{bottom:739.226667pt;}
.y20{bottom:740.240000pt;}
.y61{bottom:744.560000pt;}
.y6b{bottom:754.573333pt;}
.yc3{bottom:757.573333pt;}
.ya{bottom:758.560000pt;}
.ycb{bottom:759.893333pt;}
.y1e{bottom:760.893333pt;}
.y1ea{bottom:764.226667pt;}
.y60{bottom:764.240000pt;}
.y1a8{bottom:767.226667pt;}
.y3a{bottom:769.573333pt;}
.y6a{bottom:773.893333pt;}
.yad{bottom:774.226667pt;}
.yc2{bottom:777.226667pt;}
.y86{bottom:778.226667pt;}
.y18e{bottom:778.893333pt;}
.yca{bottom:779.240000pt;}
.y5f{bottom:785.226667pt;}
.y9{bottom:785.560000pt;}
.y39{bottom:789.226667pt;}
.y1c8{bottom:790.573333pt;}
.y157{bottom:791.560000pt;}
.y69{bottom:793.560000pt;}
.y1a{bottom:793.573333pt;}
.yac{bottom:793.893333pt;}
.yea{bottom:795.560000pt;}
.yc1{bottom:796.560000pt;}
.y85{bottom:797.560000pt;}
.yc9{bottom:798.893333pt;}
.y1d8{bottom:799.240000pt;}
.y38{bottom:808.560000pt;}
.y5e{bottom:809.893333pt;}
.y156{bottom:811.226667pt;}
.y68{bottom:813.226667pt;}
.y10e{bottom:814.893333pt;}
.yc0{bottom:816.226667pt;}
.y84{bottom:817.226667pt;}
.y1ac{bottom:820.240000pt;}
.y1e6{bottom:824.573333pt;}
.yf0{bottom:827.560000pt;}
.y8{bottom:827.893333pt;}
.y5d{bottom:829.226667pt;}
.y155{bottom:831.560000pt;}
.y67{bottom:832.560000pt;}
.yab{bottom:832.893333pt;}
.ybf{bottom:835.893333pt;}
.y37{bottom:837.560000pt;}
.y10d{bottom:847.266667pt;}
.y5c{bottom:848.933333pt;}
.y154{bottom:851.266667pt;}
.y66{bottom:852.266667pt;}
.y83{bottom:854.266667pt;}
.ybe{bottom:855.266667pt;}
.y1d7{bottom:866.933333pt;}
.y19{bottom:867.933333pt;}
.y5b{bottom:868.266667pt;}
.y1c7{bottom:868.600000pt;}
.y7{bottom:870.266667pt;}
.y36{bottom:871.600000pt;}
.yaa{bottom:871.933333pt;}
.y1a0{bottom:873.266667pt;}
.ybd{bottom:874.933333pt;}
.y1df{bottom:884.933333pt;}
.y18d{bottom:888.600000pt;}
.y5a{bottom:889.266667pt;}
.y65{bottom:891.266667pt;}
.ya9{bottom:891.600000pt;}
.y153{bottom:891.933333pt;}
.ybc{bottom:894.266667pt;}
.y17{bottom:900.600000pt;}
.y35{bottom:905.600000pt;}
.yf5{bottom:905.933333pt;}
.y64{bottom:910.933333pt;}
.y152{bottom:912.266667pt;}
.y6{bottom:912.600000pt;}
.y59{bottom:913.933333pt;}
.yc8{bottom:918.266667pt;}
.y1c6{bottom:921.933333pt;}
.y1e1{bottom:925.600000pt;}
.ya8{bottom:930.600000pt;}
.y16{bottom:931.266667pt;}
.y151{bottom:931.933333pt;}
.y58{bottom:933.600000pt;}
.y18c{bottom:935.266667pt;}
.y18b{bottom:937.266667pt;}
.y19f{bottom:941.266667pt;}
.y150{bottom:951.266667pt;}
.y57{bottom:952.933333pt;}
.y5{bottom:954.600000pt;}
.y15{bottom:957.293333pt;}
.yef{bottom:958.293333pt;}
.ya7{bottom:967.293333pt;}
.y14f{bottom:971.626667pt;}
.y56{bottom:972.626667pt;}
.y4{bottom:991.960000pt;}
.y3{bottom:1011.626667pt;}
.y2{bottom:1031.293333pt;}
.y18a{bottom:1033.293333pt;}
.y1{bottom:1050.626667pt;}
.h6{height:13.000000pt;}
.h21{height:19.333333pt;}
.h24{height:19.700000pt;}
.h18{height:20.000000pt;}
.hb{height:20.333333pt;}
.h8{height:20.666667pt;}
.ha{height:20.700000pt;}
.h12{height:24.000000pt;}
.he{height:24.333333pt;}
.h11{height:24.366667pt;}
.h41{height:32.333333pt;}
.h50{height:32.666667pt;}
.h4f{height:32.700000pt;}
.h14{height:37.132812pt;}
.h25{height:39.000000pt;}
.h28{height:39.020000pt;}
.h2f{height:39.033333pt;}
.h32{height:39.333333pt;}
.h29{height:39.366667pt;}
.h5{height:42.437500pt;}
.hd{height:47.742188pt;}
.h16{height:48.343750pt;}
.h3c{height:48.666667pt;}
.h51{height:48.700000pt;}
.h45{height:49.000000pt;}
.h52{height:49.020000pt;}
.h3f{height:49.033333pt;}
.h10{height:53.046875pt;}
.hf{height:54.609375pt;}
.h17{height:55.968750pt;}
.h44{height:56.854549pt;}
.h3b{height:58.333333pt;}
.h15{height:58.351562pt;}
.h31{height:58.366667pt;}
.h1c{height:58.666667pt;}
.h3a{height:58.686667pt;}
.h2c{height:58.700000pt;}
.h38{height:60.000000pt;}
.hc{height:61.003906pt;}
.h9{height:62.353333pt;}
.h1{height:63.656250pt;}
.h2a{height:64.000000pt;}
.h34{height:64.020000pt;}
.h47{height:65.000000pt;}
.h48{height:65.020000pt;}
.h4a{height:65.033333pt;}
.h49{height:65.366667pt;}
.h4{height:65.531250pt;}
.h37{height:67.020000pt;}
.h36{height:78.000000pt;}
.h1f{height:78.020000pt;}
.h1e{height:78.033333pt;}
.h42{height:81.353333pt;}
.h3e{height:81.366667pt;}
.h43{height:81.700000pt;}
.h3{height:84.875000pt;}
.h27{height:92.033333pt;}
.h1a{height:97.700000pt;}
.h40{height:97.733333pt;}
.h4c{height:113.700000pt;}
.h4d{height:113.733333pt;}
.h4e{height:114.033333pt;}
.h3d{height:114.066667pt;}
.h33{height:117.353333pt;}
.h22{height:117.366667pt;}
.h30{height:122.700000pt;}
.h23{height:124.033333pt;}
.h13{height:127.312500pt;}
.h46{height:130.066667pt;}
.h7{height:131.062500pt;}
.h2d{height:136.693333pt;}
.h19{height:136.706667pt;}
.h1d{height:136.733333pt;}
.h2{height:137.921875pt;}
.h4b{height:146.733333pt;}
.h20{height:156.400000pt;}
.h2e{height:175.733333pt;}
.h26{height:223.400000pt;}
.h39{height:241.400000pt;}
.h2b{height:321.093333pt;}
.h35{height:335.093333pt;}
.h1b{height:793.333333pt;}
.h0{height:1122.666667pt;}
.w7{width:33.666667pt;}
.w2d{width:55.700000pt;}
.w35{width:72.700000pt;}
.w1f{width:88.366667pt;}
.w2e{width:92.700000pt;}
.w8{width:93.733333pt;}
.w2c{width:96.700000pt;}
.w38{width:99.033333pt;}
.w15{width:102.366667pt;}
.w3c{width:103.033333pt;}
.w19{width:109.700000pt;}
.w33{width:110.033333pt;}
.w42{width:111.700000pt;}
.w40{width:112.366667pt;}
.w2b{width:113.700000pt;}
.w3f{width:115.033333pt;}
.w20{width:116.400000pt;}
.w37{width:116.700000pt;}
.w23{width:117.033333pt;}
.w2{width:118.400000pt;}
.w32{width:118.700000pt;}
.w14{width:122.033333pt;}
.w13{width:124.033333pt;}
.wc{width:124.066667pt;}
.w2a{width:124.700000pt;}
.w30{width:127.366667pt;}
.w17{width:127.700000pt;}
.w1c{width:128.366667pt;}
.w1b{width:128.400000pt;}
.w1e{width:128.700000pt;}
.w1a{width:128.733333pt;}
.w24{width:131.066667pt;}
.w1d{width:135.733333pt;}
.w18{width:136.706667pt;}
.w3e{width:138.066667pt;}
.w16{width:138.360000pt;}
.w34{width:146.373333pt;}
.w39{width:147.026667pt;}
.w29{width:147.066667pt;}
.w2f{width:147.693333pt;}
.w36{width:149.026667pt;}
.w43{width:149.733333pt;}
.w31{width:152.360000pt;}
.w3b{width:161.066667pt;}
.w27{width:166.066667pt;}
.w3d{width:167.373333pt;}
.w25{width:170.066667pt;}
.w41{width:183.360000pt;}
.w3a{width:192.733333pt;}
.w45{width:206.400000pt;}
.wf{width:216.066667pt;}
.we{width:216.440000pt;}
.w10{width:217.773333pt;}
.w5{width:223.440000pt;}
.w22{width:226.093333pt;}
.w3{width:226.106667pt;}
.w26{width:230.773333pt;}
.w9{width:235.760000pt;}
.w21{width:256.106667pt;}
.wa{width:286.440000pt;}
.w44{width:322.773333pt;}
.w4{width:426.506667pt;}
.w6{width:429.840000pt;}
.w28{width:484.200000pt;}
.wd{width:652.266667pt;}
.wb{width:793.333310pt;}
.w1{width:793.333322pt;}
.w0{width:793.333333pt;}
.w12{width:1122.666650pt;}
.w11{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x6{left:5.666667pt;}
.x28{left:7.000000pt;}
.xb{left:13.666667pt;}
.x5{left:66.360000pt;}
.x1{left:75.699988pt;}
.x1b{left:80.699988pt;}
.x20{left:82.699988pt;}
.x27{left:88.033317pt;}
.xf{left:91.699988pt;}
.x9{left:99.699988pt;}
.xc{left:110.033333pt;}
.xa{left:123.733322pt;}
.x34{left:165.400000pt;}
.x1e{left:167.066643pt;}
.x1f{left:174.399988pt;}
.x3e{left:182.066667pt;}
.x3d{left:186.733333pt;}
.x37{left:194.066667pt;}
.xd{left:204.440000pt;}
.x51{left:208.066667pt;}
.x29{left:211.400000pt;}
.x13{left:229.106643pt;}
.x14{left:235.773322pt;}
.x4a{left:238.400000pt;}
.x3a{left:243.106667pt;}
.x2{left:245.773322pt;}
.x1a{left:267.773322pt;}
.x56{left:271.400000pt;}
.x35{left:282.466667pt;}
.x25{left:293.133333pt;}
.x8{left:299.800000pt;}
.x7{left:302.466667pt;}
.x17{left:305.466655pt;}
.x45{left:310.439983pt;}
.x2a{left:314.440000pt;}
.x38{left:325.800000pt;}
.x3f{left:330.440000pt;}
.x31{left:333.800000pt;}
.x4b{left:355.773333pt;}
.x10{left:370.506655pt;}
.x52{left:376.106667pt;}
.x57{left:383.106667pt;}
.x1c{left:390.173310pt;}
.x1d{left:395.506655pt;}
.xe{left:440.866667pt;}
.x2b{left:453.466667pt;}
.x18{left:454.533310pt;}
.x4c{left:455.466667pt;}
.x40{left:458.466667pt;}
.x19{left:460.199988pt;}
.x32{left:462.866667pt;}
.x23{left:475.199976pt;}
.x24{left:480.533322pt;}
.x39{left:496.533333pt;}
.x15{left:500.199976pt;}
.x16{left:505.533322pt;}
.x26{left:510.200000pt;}
.x53{left:514.840000pt;}
.x3b{left:516.240000pt;}
.x58{left:532.840000pt;}
.x36{left:539.240000pt;}
.x2c{left:581.840000pt;}
.x33{left:599.266667pt;}
.x4d{left:603.173333pt;}
.x41{left:611.533333pt;}
.x3c{left:630.600000pt;}
.x4{left:648.600000pt;}
.x21{left:671.266643pt;}
.x22{left:676.639988pt;}
.x3{left:681.306655pt;}
.x2d{left:719.200000pt;}
.x11{left:722.626643pt;}
.x12{left:727.959988pt;}
.x42{left:730.893333pt;}
.x4f{left:775.893317pt;}
.x54{left:778.226667pt;}
.x50{left:781.226650pt;}
.x4e{left:796.560000pt;}
.x2e{left:829.560000pt;}
.x43{left:841.600000pt;}
.x59{left:855.600000pt;}
.x55{left:948.973333pt;}
.x46{left:950.959983pt;}
.x47{left:956.293317pt;}
.x2f{left:958.973333pt;}
.x48{left:969.973317pt;}
.x49{left:975.306650pt;}
.x44{left:988.640000pt;}
.x30{left:1014.973317pt;}
}




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