
    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_30581b5fb520f31afaf0a662.woff')format("woff");}.ff1{font-family:ff1;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_89eba81ae9341acd4cf8d527.woff')format("woff");}.ff2{font-family:ff2;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_29fed012d6aa67b3ed335f9e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5f63741968c09a5b6cfd4fa4.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d49333757d6832fabfbb05cc.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_187931e620cee396f48269d4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.903809;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_d64fddb8f74b4cab50e566f9.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_23f6eba95f5ab1f1af84e1c1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_3b9945ec231d578b734abb01.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_d8aef7547df1586857a22c13.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_b0bb8634110c92235f7e32ee.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_8cf7b716ef5db035fe870b99.woff')format("woff");}.ffc{font-family:ffc;line-height:0.904297;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_cc69ba037e1b0b1223b606cc.woff')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ce40c2f8b940bbdeb4bc316f.woff')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_85a18206ab3247fa8045149f.woff')format("woff");}.fff{font-family:fff;line-height:0.949219;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_ec63d62fad72d350ce7ce007.woff')format("woff");}.ff10{font-family:ff10;line-height:0.905762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls20{letter-spacing:-7.478496px;}
.ls1c{letter-spacing:-6.219936px;}
.ls1e{letter-spacing:-4.762656px;}
.ls22{letter-spacing:-2.570112px;}
.ls21{letter-spacing:-1.430784px;}
.lsd{letter-spacing:-0.238464px;}
.ls1d{letter-spacing:-0.205344px;}
.lse{letter-spacing:-0.198720px;}
.ls9{letter-spacing:-0.158976px;}
.lsf{letter-spacing:-0.125856px;}
.ls8{letter-spacing:-0.119232px;}
.ls1f{letter-spacing:-0.086112px;}
.ls7{letter-spacing:-0.079488px;}
.lsa{letter-spacing:-0.059616px;}
.ls14{letter-spacing:-0.014400px;}
.ls6{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.000576px;}
.ls11{letter-spacing:0.005400px;}
.ls23{letter-spacing:0.010080px;}
.ls13{letter-spacing:0.014400px;}
.ls4{letter-spacing:0.083520px;}
.ls3{letter-spacing:0.158688px;}
.lsc{letter-spacing:0.283968px;}
.lsb{letter-spacing:0.317376px;}
.ls0{letter-spacing:0.334080px;}
.ls2{letter-spacing:0.359136px;}
.ls1{letter-spacing:0.400896px;}
.ls5{letter-spacing:1.404288px;}
.ls15{letter-spacing:1.671408px;}
.ls10{letter-spacing:12.453120px;}
.ls18{letter-spacing:33.984000px;}
.ls19{letter-spacing:38.026944px;}
.ls1a{letter-spacing:54.866736px;}
.ls17{letter-spacing:64.007424px;}
.ls1b{letter-spacing:212.011200px;}
.ls12{letter-spacing:245.011680px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-21.239136px;}
.ws8{word-spacing:-18.014400px;}
.wsa{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.985600px;}
.ws0{word-spacing:-16.560000px;}
.wse{word-spacing:-16.500384px;}
.ws1{word-spacing:-16.480512px;}
.wsd{word-spacing:-16.473888px;}
.ws3{word-spacing:-16.440768px;}
.ws6{word-spacing:-16.434144px;}
.ws2{word-spacing:-16.401024px;}
.ws5{word-spacing:-16.361280px;}
.ws10{word-spacing:-16.321536px;}
.ws11{word-spacing:-13.989888px;}
.wsc{word-spacing:-11.797344px;}
.wsf{word-spacing:-10.340064px;}
.wsb{word-spacing:-0.072000px;}
.ws7{word-spacing:0.000000px;}
._14{margin-left:-5.327424px;}
._d{margin-left:-4.305600px;}
._c{margin-left:-3.245760px;}
._10{margin-left:-2.168640px;}
._2{margin-left:-1.002240px;}
._0{width:1.059840px;}
._3{width:2.132928px;}
._6{width:3.298752px;}
._7{width:4.438080px;}
._f{width:5.855616px;}
._e{width:7.021440px;}
._9{width:8.743680px;}
._a{width:9.772416px;}
._4{width:10.929600px;}
._5{width:12.519360px;}
._b{width:14.374080px;}
._15{width:15.477120px;}
._16{width:16.747200px;}
._8{width:17.951040px;}
._1d{width:19.152000px;}
._19{width:20.419200px;}
._11{width:21.726720px;}
._12{width:23.250240px;}
._18{width:24.825600px;}
._1a{width:26.136000px;}
._17{width:27.439200px;}
._1b{width:28.900800px;}
._28{width:30.099456px;}
._23{width:31.154400px;}
._13{width:32.248800px;}
._29{width:33.359472px;}
._2a{width:35.445600px;}
._26{width:37.160640px;}
._25{width:38.419200px;}
._3c{width:39.931200px;}
._37{width:41.497920px;}
._24{width:42.526080px;}
._21{width:50.899968px;}
._30{width:55.260000px;}
._2e{width:58.557600px;}
._2b{width:61.768800px;}
._3d{width:64.432800px;}
._27{width:68.823360px;}
._32{width:101.192832px;}
._22{width:102.883968px;}
._35{width:107.186976px;}
._2c{width:113.761152px;}
._1c{width:114.867648px;}
._34{width:123.638400px;}
._20{width:125.273088px;}
._3b{width:128.304000px;}
._39{width:166.010400px;}
._1f{width:193.643712px;}
._1e{width:195.154848px;}
._33{width:198.856800px;}
._31{width:202.471200px;}
._3a{width:212.450400px;}
._2f{width:243.273888px;}
._2d{width:308.073600px;}
._36{width:387.352800px;}
._38{width:690.062400px;}
._1{width:1911.553920px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:24.480000px;}
.fs4{font-size:47.520000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y1e3{bottom:3.600000px;}
.y1cf{bottom:3.660000px;}
.y1f7{bottom:3.720000px;}
.y116{bottom:3.840000px;}
.y169{bottom:3.900000px;}
.y184{bottom:3.960000px;}
.y1b3{bottom:4.080000px;}
.y113{bottom:4.140000px;}
.y181{bottom:4.200000px;}
.y1ba{bottom:4.320000px;}
.y11c{bottom:4.380000px;}
.y110{bottom:4.440000px;}
.y158{bottom:4.500000px;}
.y1ad{bottom:4.620000px;}
.y119{bottom:4.680000px;}
.y19e{bottom:4.740000px;}
.y1f5{bottom:4.800000px;}
.y199{bottom:4.860000px;}
.y15a{bottom:4.920000px;}
.y133{bottom:4.980000px;}
.y152{bottom:5.040000px;}
.y1cd{bottom:5.100000px;}
.y155{bottom:5.160000px;}
.y1a9{bottom:5.220000px;}
.y162{bottom:5.280000px;}
.y151{bottom:5.340000px;}
.y15e{bottom:5.460000px;}
.y1d1{bottom:5.580000px;}
.y5c{bottom:5.820000px;}
.y14f{bottom:6.000000px;}
.y168{bottom:6.060000px;}
.y196{bottom:6.120000px;}
.y14c{bottom:6.420000px;}
.y195{bottom:6.720000px;}
.y14d{bottom:6.960000px;}
.y10d{bottom:7.200000px;}
.y166{bottom:7.380000px;}
.y171{bottom:7.680000px;}
.y173{bottom:7.860000px;}
.y175{bottom:8.040000px;}
.y16f{bottom:9.300000px;}
.y139{bottom:11.460000px;}
.y137{bottom:13.320000px;}
.y135{bottom:13.680000px;}
.y1de{bottom:14.340000px;}
.y1a6{bottom:14.580000px;}
.y193{bottom:15.840000px;}
.y14a{bottom:16.680000px;}
.y115{bottom:22.560000px;}
.y1a8{bottom:22.800000px;}
.y19b{bottom:22.920000px;}
.y1af{bottom:23.040000px;}
.y1b2{bottom:23.160000px;}
.y112{bottom:23.220000px;}
.y1b6{bottom:23.280000px;}
.y1ac{bottom:23.340000px;}
.y1b9{bottom:23.400000px;}
.y11b{bottom:23.460000px;}
.y10f{bottom:23.520000px;}
.y157{bottom:23.580000px;}
.y1df{bottom:23.700000px;}
.y118{bottom:23.760000px;}
.y1e1{bottom:23.820000px;}
.y15c{bottom:24.120000px;}
.y1e9{bottom:24.180000px;}
.y154{bottom:24.240000px;}
.y161{bottom:24.360000px;}
.y1b8{bottom:42.120000px;}
.y1b1{bottom:42.240000px;}
.y1b5{bottom:42.360000px;}
.y1ab{bottom:42.420000px;}
.y62{bottom:43.200000px;}
.y1e8{bottom:43.260000px;}
.y61{bottom:64.080000px;}
.y6{bottom:64.085760px;}
.y3{bottom:65.940000px;}
.y60{bottom:83.160000px;}
.y5{bottom:83.162880px;}
.y2{bottom:86.820000px;}
.y4{bottom:102.240000px;}
.y5e{bottom:107.340000px;}
.yb9{bottom:122.040000px;}
.y9c{bottom:125.280000px;}
.y21d{bottom:126.000000px;}
.yb8{bottom:127.440000px;}
.y5d{bottom:128.220000px;}
.y83{bottom:129.600000px;}
.y2f{bottom:131.808960px;}
.yd3{bottom:132.480000px;}
.y17f{bottom:134.640000px;}
.y1db{bottom:136.440000px;}
.y164{bottom:137.160000px;}
.y10b{bottom:138.600000px;}
.yf4{bottom:139.680000px;}
.y9b{bottom:140.400000px;}
.yb7{bottom:142.920000px;}
.y227{bottom:145.440000px;}
.y21c{bottom:146.880000px;}
.y1fa{bottom:149.400000px;}
.y82{bottom:150.120000px;}
.y2e{bottom:150.886080px;}
.yd2{bottom:153.000000px;}
.y5b{bottom:154.440000px;}
.y17e{bottom:155.520000px;}
.y1da{bottom:156.960000px;}
.y163{bottom:158.040000px;}
.y131{bottom:159.120000px;}
.y10a{bottom:159.480000px;}
.y9a{bottom:161.280000px;}
.yf3{bottom:161.640000px;}
.y234{bottom:162.360000px;}
.yb6{bottom:163.440000px;}
.y226{bottom:166.320000px;}
.y1f9{bottom:166.500000px;}
.y21b{bottom:167.400000px;}
.y2d{bottom:169.963200px;}
.y81{bottom:171.000000px;}
.yd1{bottom:173.880000px;}
.y160{bottom:174.000000px;}
.y5a{bottom:175.320000px;}
.y17d{bottom:176.040000px;}
.y1d9{bottom:177.840000px;}
.y130{bottom:179.640000px;}
.y109{bottom:180.000000px;}
.y99{bottom:181.800000px;}
.y233{bottom:182.880000px;}
.yf2{bottom:183.600000px;}
.yb5{bottom:184.320000px;}
.y1f8{bottom:184.500000px;}
.y1f6{bottom:186.000000px;}
.y225{bottom:186.840000px;}
.y21a{bottom:188.280000px;}
.y2c{bottom:188.676000px;}
.y80{bottom:191.520000px;}
.yd0{bottom:194.400000px;}
.y59{bottom:195.840000px;}
.y17c{bottom:196.920000px;}
.y1d8{bottom:198.360000px;}
.y12f{bottom:200.520000px;}
.y108{bottom:200.880000px;}
.y98{bottom:202.680000px;}
.y232{bottom:203.760000px;}
.y1f4{bottom:204.000000px;}
.yf1{bottom:204.480000px;}
.yb4{bottom:204.840000px;}
.y224{bottom:207.720000px;}
.y2b{bottom:207.753120px;}
.y219{bottom:208.800000px;}
.y7f{bottom:212.400000px;}
.y15f{bottom:213.000000px;}
.ycf{bottom:215.280000px;}
.y58{bottom:216.720000px;}
.y17b{bottom:217.440000px;}
.y1d7{bottom:219.240000px;}
.y12e{bottom:221.040000px;}
.y107{bottom:221.400000px;}
.y97{bottom:223.200000px;}
.y1f3{bottom:223.500000px;}
.y231{bottom:224.280000px;}
.yf0{bottom:225.000000px;}
.yb3{bottom:225.720000px;}
.y2a{bottom:226.830240px;}
.y223{bottom:228.240000px;}
.y218{bottom:229.680000px;}
.y15d{bottom:232.500000px;}
.y7e{bottom:232.920000px;}
.yce{bottom:235.800000px;}
.y57{bottom:237.240000px;}
.y17a{bottom:238.320000px;}
.y1d6{bottom:239.760000px;}
.y12d{bottom:241.920000px;}
.y106{bottom:242.280000px;}
.y96{bottom:244.080000px;}
.y230{bottom:245.160000px;}
.yef{bottom:245.880000px;}
.y29{bottom:245.907360px;}
.yb2{bottom:246.240000px;}
.y1f2{bottom:249.120000px;}
.y217{bottom:250.200000px;}
.y15b{bottom:252.000000px;}
.y7d{bottom:253.800000px;}
.ycd{bottom:256.680000px;}
.y56{bottom:258.120000px;}
.y179{bottom:258.840000px;}
.y1d5{bottom:260.640000px;}
.y12c{bottom:262.440000px;}
.y105{bottom:262.800000px;}
.y95{bottom:264.600000px;}
.y28{bottom:264.620160px;}
.y22f{bottom:265.680000px;}
.yee{bottom:266.400000px;}
.yb1{bottom:267.120000px;}
.y222{bottom:269.640000px;}
.y1f1{bottom:270.000000px;}
.y216{bottom:271.080000px;}
.y7c{bottom:274.320000px;}
.ycc{bottom:277.200000px;}
.y55{bottom:278.640000px;}
.y178{bottom:279.720000px;}
.y1d4{bottom:281.160000px;}
.y12b{bottom:283.320000px;}
.y104{bottom:283.680000px;}
.y27{bottom:283.697280px;}
.y94{bottom:285.480000px;}
.y22e{bottom:286.560000px;}
.yed{bottom:287.280000px;}
.yb0{bottom:287.640000px;}
.y1f0{bottom:290.520000px;}
.y159{bottom:291.000000px;}
.y215{bottom:291.600000px;}
.y7b{bottom:295.200000px;}
.ycb{bottom:298.080000px;}
.y177{bottom:300.240000px;}
.y1d3{bottom:302.040000px;}
.y26{bottom:302.774400px;}
.y12a{bottom:303.840000px;}
.y103{bottom:304.200000px;}
.y93{bottom:305.640000px;}
.y22d{bottom:307.080000px;}
.yec{bottom:307.800000px;}
.y1ff{bottom:308.160000px;}
.yaf{bottom:308.520000px;}
.y156{bottom:310.500000px;}
.y1ef{bottom:311.400000px;}
.y214{bottom:312.480000px;}
.y7a{bottom:315.720000px;}
.yca{bottom:318.600000px;}
.y221{bottom:320.040000px;}
.y176{bottom:321.120000px;}
.y25{bottom:321.487200px;}
.y1d2{bottom:322.560000px;}
.y54{bottom:324.360000px;}
.y102{bottom:324.720000px;}
.y92{bottom:325.080000px;}
.y22c{bottom:327.960000px;}
.yeb{bottom:328.680000px;}
.yae{bottom:329.040000px;}
.y1ee{bottom:331.920000px;}
.y213{bottom:333.000000px;}
.y79{bottom:336.600000px;}
.y1d0{bottom:337.500000px;}
.yc9{bottom:339.480000px;}
.y24{bottom:340.564320px;}
.y220{bottom:340.920000px;}
.y91{bottom:341.640000px;}
.y129{bottom:345.240000px;}
.y101{bottom:345.600000px;}
.y53{bottom:346.320000px;}
.y153{bottom:348.000000px;}
.y22b{bottom:348.480000px;}
.yea{bottom:349.200000px;}
.y1fe{bottom:349.560000px;}
.yad{bottom:349.920000px;}
.y1ed{bottom:352.800000px;}
.y212{bottom:353.880000px;}
.y174{bottom:357.000000px;}
.y78{bottom:357.120000px;}
.y1ce{bottom:358.500000px;}
.y23{bottom:359.641440px;}
.yc8{bottom:360.000000px;}
.y21f{bottom:361.440000px;}
.y100{bottom:366.120000px;}
.y1a3{bottom:366.480000px;}
.y52{bottom:368.280000px;}
.y22a{bottom:369.360000px;}
.ye9{bottom:370.080000px;}
.yac{bottom:370.440000px;}
.y1ec{bottom:373.320000px;}
.y211{bottom:374.400000px;}
.y1cc{bottom:376.500000px;}
.y77{bottom:378.000000px;}
.y22{bottom:378.718560px;}
.y172{bottom:379.500000px;}
.yc7{bottom:380.880000px;}
.y21e{bottom:382.320000px;}
.yff{bottom:387.000000px;}
.y229{bottom:389.880000px;}
.y51{bottom:390.348720px;}
.ye8{bottom:390.600000px;}
.y1fd{bottom:390.960000px;}
.yab{bottom:391.320000px;}
.y1eb{bottom:394.200000px;}
.y210{bottom:395.280000px;}
.y1cb{bottom:396.000000px;}
.y76{bottom:398.520000px;}
.yc6{bottom:401.400000px;}
.y170{bottom:402.000000px;}
.y150{bottom:406.500000px;}
.y1a2{bottom:407.880000px;}
.y228{bottom:410.400000px;}
.ye7{bottom:411.480000px;}
.yaa{bottom:411.840000px;}
.y1ea{bottom:414.720000px;}
.y20f{bottom:415.800000px;}
.y21{bottom:416.525040px;}
.y75{bottom:419.400000px;}
.y1ca{bottom:421.560000px;}
.yc5{bottom:422.280000px;}
.y16e{bottom:424.500000px;}
.y14e{bottom:426.000000px;}
.y1a1{bottom:428.040000px;}
.y50{bottom:430.308000px;}
.y1e7{bottom:430.500000px;}
.ye6{bottom:432.000000px;}
.y1fc{bottom:432.360000px;}
.ya9{bottom:432.720000px;}
.y20e{bottom:436.680000px;}
.y74{bottom:439.920000px;}
.y1c9{bottom:442.440000px;}
.yc4{bottom:442.800000px;}
.y149{bottom:447.000000px;}
.y1a0{bottom:447.480000px;}
.y4f{bottom:449.385120px;}
.ye5{bottom:452.880000px;}
.ya8{bottom:453.240000px;}
.y20{bottom:456.120000px;}
.y20d{bottom:457.200000px;}
.y73{bottom:460.800000px;}
.y1c8{bottom:462.960000px;}
.yc3{bottom:463.680000px;}
.y19f{bottom:468.000000px;}
.y4e{bottom:468.462240px;}
.y14b{bottom:469.500000px;}
.ye4{bottom:473.400000px;}
.y16d{bottom:473.760000px;}
.ya7{bottom:474.120000px;}
.y1f{bottom:475.215840px;}
.y20c{bottom:478.080000px;}
.y72{bottom:481.320000px;}
.y1c7{bottom:483.840000px;}
.yc2{bottom:484.200000px;}
.y19d{bottom:484.500000px;}
.y4d{bottom:487.175040px;}
.y1e6{bottom:489.000000px;}
.ye3{bottom:494.280000px;}
.y1e{bottom:494.292960px;}
.ya6{bottom:494.640000px;}
.y148{bottom:496.080000px;}
.y20b{bottom:498.600000px;}
.y71{bottom:502.200000px;}
.y1c6{bottom:504.360000px;}
.yc1{bottom:504.720000px;}
.y4c{bottom:506.252160px;}
.y1d{bottom:513.005760px;}
.ye2{bottom:514.800000px;}
.y16c{bottom:515.160000px;}
.ya5{bottom:515.520000px;}
.y147{bottom:516.600000px;}
.y20a{bottom:519.480000px;}
.y19c{bottom:522.000000px;}
.y70{bottom:522.720000px;}
.y1c5{bottom:525.240000px;}
.y4b{bottom:525.329280px;}
.yc0{bottom:525.600000px;}
.y1e5{bottom:526.500000px;}
.y1fb{bottom:531.720000px;}
.ye1{bottom:535.680000px;}
.ya4{bottom:536.040000px;}
.y146{bottom:537.480000px;}
.y209{bottom:540.000000px;}
.y6f{bottom:543.600000px;}
.y4a{bottom:544.042080px;}
.y1c4{bottom:545.760000px;}
.ybf{bottom:546.120000px;}
.y1c{bottom:551.160000px;}
.yfe{bottom:553.680000px;}
.ye0{bottom:556.200000px;}
.y16b{bottom:556.560000px;}
.ya3{bottom:556.920000px;}
.y145{bottom:558.000000px;}
.y208{bottom:560.880000px;}
.y19a{bottom:561.000000px;}
.y49{bottom:563.119200px;}
.y1e4{bottom:564.000000px;}
.y6e{bottom:564.120000px;}
.y1c3{bottom:566.640000px;}
.ybe{bottom:567.000000px;}
.y1b{bottom:569.879280px;}
.yfd{bottom:574.200000px;}
.ydf{bottom:577.080000px;}
.ya2{bottom:577.440000px;}
.y144{bottom:578.880000px;}
.y207{bottom:581.400000px;}
.y48{bottom:582.196320px;}
.ybd{bottom:583.560000px;}
.y6d{bottom:585.000000px;}
.y1c2{bottom:587.160000px;}
.y1a{bottom:588.956400px;}
.yfc{bottom:595.080000px;}
.y128{bottom:596.520000px;}
.yde{bottom:597.600000px;}
.ya1{bottom:597.960000px;}
.y198{bottom:598.500000px;}
.y143{bottom:599.400000px;}
.y47{bottom:601.273440px;}
.y1e0{bottom:601.500000px;}
.y206{bottom:602.280000px;}
.y1e2{bottom:603.000000px;}
.y6c{bottom:605.520000px;}
.y19{bottom:608.033520px;}
.y1c1{bottom:608.040000px;}
.yfb{bottom:615.600000px;}
.y127{bottom:616.680000px;}
.y197{bottom:618.000000px;}
.ydd{bottom:618.480000px;}
.ya0{bottom:618.840000px;}
.y46{bottom:619.986240px;}
.y142{bottom:620.280000px;}
.y205{bottom:622.800000px;}
.y6b{bottom:626.400000px;}
.y1c0{bottom:628.560000px;}
.y126{bottom:635.400000px;}
.yfa{bottom:636.480000px;}
.ydc{bottom:639.000000px;}
.y45{bottom:639.063360px;}
.y9f{bottom:639.360000px;}
.y1dd{bottom:640.500000px;}
.y141{bottom:640.800000px;}
.y204{bottom:643.680000px;}
.y18{bottom:645.840000px;}
.y6a{bottom:646.920000px;}
.y1bf{bottom:649.440000px;}
.y125{bottom:654.480000px;}
.yf9{bottom:657.000000px;}
.y44{bottom:658.140480px;}
.ydb{bottom:659.880000px;}
.y9e{bottom:660.240000px;}
.y140{bottom:661.680000px;}
.y69{bottom:663.480000px;}
.y203{bottom:664.200000px;}
.y17{bottom:664.935840px;}
.y1be{bottom:669.960000px;}
.y124{bottom:673.920000px;}
.y43{bottom:676.853280px;}
.yf8{bottom:677.880000px;}
.y194{bottom:678.000000px;}
.yda{bottom:680.400000px;}
.y9d{bottom:680.760000px;}
.y13f{bottom:682.200000px;}
.y16{bottom:684.012960px;}
.y1dc{bottom:684.360000px;}
.y202{bottom:685.080000px;}
.y1bd{bottom:690.840000px;}
.y123{bottom:694.800000px;}
.y42{bottom:695.930400px;}
.yf7{bottom:698.400000px;}
.yd9{bottom:701.280000px;}
.y90{bottom:701.640000px;}
.y15{bottom:702.725760px;}
.y13e{bottom:703.080000px;}
.y192{bottom:705.240000px;}
.y201{bottom:705.600000px;}
.y1bc{bottom:711.360000px;}
.y41{bottom:715.007520px;}
.y122{bottom:715.320000px;}
.yf6{bottom:719.280000px;}
.yd8{bottom:721.800000px;}
.y8f{bottom:722.160000px;}
.y13d{bottom:723.600000px;}
.y191{bottom:725.760000px;}
.y200{bottom:726.480000px;}
.y1bb{bottom:731.520000px;}
.yf5{bottom:735.840000px;}
.y121{bottom:736.200000px;}
.y14{bottom:740.880000px;}
.y8e{bottom:743.040000px;}
.y13c{bottom:744.480000px;}
.y190{bottom:746.640000px;}
.y1b7{bottom:747.000000px;}
.y40{bottom:752.814000px;}
.y120{bottom:756.720000px;}
.y13{bottom:759.612960px;}
.y8d{bottom:763.560000px;}
.yd7{bottom:763.920000px;}
.y13b{bottom:765.000000px;}
.y18f{bottom:767.160000px;}
.y3f{bottom:771.891120px;}
.y11f{bottom:777.600000px;}
.y12{bottom:778.690080px;}
.y8c{bottom:784.440000px;}
.y13a{bottom:785.880000px;}
.y18e{bottom:788.040000px;}
.y3e{bottom:790.968240px;}
.y11{bottom:797.767200px;}
.y11e{bottom:798.120000px;}
.y138{bottom:802.500000px;}
.y1b4{bottom:804.000000px;}
.y8b{bottom:804.960000px;}
.yd6{bottom:805.320000px;}
.y18d{bottom:808.560000px;}
.y3d{bottom:809.681040px;}
.y10{bottom:816.480000px;}
.y11d{bottom:819.000000px;}
.y8a{bottom:825.840000px;}
.yd5{bottom:826.200000px;}
.y136{bottom:828.000000px;}
.y3c{bottom:828.758160px;}
.y18c{bottom:829.440000px;}
.y11a{bottom:835.500000px;}
.y89{bottom:846.360000px;}
.yd4{bottom:847.080000px;}
.y3b{bottom:847.835280px;}
.y18b{bottom:849.960000px;}
.y134{bottom:855.000000px;}
.yf{bottom:856.800000px;}
.y1b0{bottom:861.000000px;}
.y16a{bottom:862.500000px;}
.y3a{bottom:866.548080px;}
.y88{bottom:867.240000px;}
.ybc{bottom:869.040000px;}
.y18a{bottom:870.840000px;}
.y117{bottom:873.000000px;}
.ye{bottom:877.680000px;}
.y132{bottom:883.500000px;}
.y39{bottom:885.625200px;}
.y87{bottom:887.760000px;}
.ybb{bottom:889.560000px;}
.y189{bottom:891.360000px;}
.yd{bottom:898.200000px;}
.y167{bottom:901.500000px;}
.y38{bottom:904.702320px;}
.y86{bottom:908.640000px;}
.yba{bottom:909.720000px;}
.y114{bottom:912.000000px;}
.y188{bottom:912.240000px;}
.y1ae{bottom:918.000000px;}
.y165{bottom:922.500000px;}
.y37{bottom:923.779440px;}
.y85{bottom:929.160000px;}
.y187{bottom:932.760000px;}
.yc{bottom:939.600000px;}
.y36{bottom:942.492240px;}
.y111{bottom:949.500000px;}
.y84{bottom:950.040000px;}
.y186{bottom:953.640000px;}
.y1aa{bottom:955.500000px;}
.yb{bottom:960.480000px;}
.y35{bottom:961.569360px;}
.y185{bottom:970.500000px;}
.y68{bottom:970.560000px;}
.y34{bottom:980.646480px;}
.ya{bottom:981.000000px;}
.y10e{bottom:987.000000px;}
.y183{bottom:990.000000px;}
.y67{bottom:991.440000px;}
.y33{bottom:999.359280px;}
.y182{bottom:1008.000000px;}
.y66{bottom:1011.960000px;}
.y1a5{bottom:1012.500000px;}
.y1a7{bottom:1014.000000px;}
.y32{bottom:1018.436400px;}
.y9{bottom:1023.127200px;}
.y10c{bottom:1026.000000px;}
.y180{bottom:1029.000000px;}
.y65{bottom:1032.840000px;}
.y8{bottom:1047.243600px;}
.y64{bottom:1053.360000px;}
.y1a4{bottom:1056.240000px;}
.y31{bottom:1056.242880px;}
.y7{bottom:1071.360000px;}
.y63{bottom:1074.240000px;}
.y30{bottom:1075.320000px;}
.y5f{bottom:1092.240000px;}
.y1{bottom:1096.500000px;}
.h17{height:19.500000px;}
.hf{height:21.000000px;}
.h15{height:22.500000px;}
.hc{height:24.000000px;}
.h18{height:25.500000px;}
.h12{height:27.000000px;}
.h11{height:28.500000px;}
.h10{height:30.000000px;}
.h9{height:31.672266px;}
.hd{height:39.000000px;}
.he{height:40.500000px;}
.h19{height:43.500000px;}
.h13{height:45.000000px;}
.h16{height:45.507656px;}
.h5{height:46.025156px;}
.h8{height:47.988281px;}
.hb{height:49.359375px;}
.ha{height:49.992188px;}
.h4{height:50.027344px;}
.h1a{height:58.500000px;}
.h7{height:58.833281px;}
.h1b{height:60.000000px;}
.h14{height:61.647188px;}
.h3{height:63.949219px;}
.h6{height:74.181094px;}
.h2{height:145.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1c{width:54.000000px;}
.w1d{width:55.500000px;}
.w11{width:57.000000px;}
.w20{width:66.000000px;}
.w27{width:67.500000px;}
.w24{width:69.000000px;}
.we{width:75.000000px;}
.wd{width:87.000000px;}
.w4{width:108.000000px;}
.w10{width:112.500000px;}
.w17{width:120.000000px;}
.w1f{width:129.000000px;}
.w3{width:138.000000px;}
.w29{width:148.500000px;}
.w25{width:150.000000px;}
.w1e{width:160.500000px;}
.w1a{width:166.500000px;}
.w19{width:168.000000px;}
.w18{width:169.500000px;}
.w16{width:174.000000px;}
.wc{width:181.500000px;}
.wa{width:192.000000px;}
.wb{width:193.500000px;}
.w22{width:252.000000px;}
.w9{width:256.500000px;}
.w28{width:262.500000px;}
.w23{width:264.000000px;}
.w7{width:265.500000px;}
.w5{width:267.000000px;}
.w15{width:276.000000px;}
.w13{width:282.000000px;}
.w8{width:286.500000px;}
.w6{width:288.000000px;}
.w26{width:298.500000px;}
.w14{width:343.500000px;}
.w12{width:345.000000px;}
.w21{width:384.000000px;}
.wf{width:400.500000px;}
.w1b{width:415.500000px;}
.w2{width:534.000000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x1a{left:8.219964px;}
.x2{left:9.599850px;}
.x27{left:11.003532px;}
.x36{left:12.964920px;}
.x6c{left:15.282480px;}
.x76{left:16.490760px;}
.x2b{left:18.339108px;}
.x21{left:20.106432px;}
.x46{left:21.455160px;}
.x4a{left:22.557480px;}
.x34{left:23.600112px;}
.x2e{left:24.698736px;}
.x5b{left:25.925880px;}
.x5d{left:26.955600px;}
.x2f{left:28.889268px;}
.x2d{left:31.091688px;}
.x47{left:32.659920px;}
.x26{left:34.314336px;}
.x67{left:38.066520px;}
.x44{left:39.613764px;}
.x41{left:41.339880px;}
.x32{left:42.508680px;}
.x39{left:43.878660px;}
.x45{left:45.465120px;}
.x2a{left:46.662000px;}
.x5e{left:47.752416px;}
.x68{left:49.982160px;}
.x5f{left:51.877404px;}
.x40{left:52.911228px;}
.x59{left:54.169560px;}
.x3f{left:57.582240px;}
.x57{left:59.900028px;}
.x33{left:62.936160px;}
.x30{left:66.469488px;}
.x73{left:69.521880px;}
.x37{left:75.984000px;}
.x4f{left:82.964520px;}
.x62{left:84.675000px;}
.x61{left:86.640036px;}
.x28{left:91.191300px;}
.x6f{left:95.062560px;}
.x7a{left:97.551984px;}
.x23{left:100.182480px;}
.x55{left:102.675120px;}
.x2c{left:104.601120px;}
.x53{left:106.800000px;}
.x25{left:110.172480px;}
.x35{left:111.812280px;}
.x60{left:114.277560px;}
.x20{left:117.000000px;}
.x54{left:118.007796px;}
.x6d{left:119.323608px;}
.x50{left:121.942440px;}
.x3a{left:123.180000px;}
.x72{left:125.055888px;}
.x4{left:127.440000px;}
.x3d{left:129.167280px;}
.xb{left:131.535900px;}
.x4d{left:133.500000px;}
.x48{left:135.000000px;}
.x51{left:136.500000px;}
.x9{left:138.789900px;}
.x18{left:140.884230px;}
.x5{left:144.773100px;}
.x71{left:147.309720px;}
.x6{left:154.398780px;}
.x3b{left:163.019760px;}
.x56{left:166.142208px;}
.x8{left:167.571900px;}
.x3c{left:169.965072px;}
.x29{left:175.028640px;}
.x19{left:176.345850px;}
.x1d{left:181.439928px;}
.x70{left:186.242064px;}
.x63{left:187.567392px;}
.x7b{left:191.265012px;}
.x31{left:199.750560px;}
.x38{left:210.215760px;}
.x7{left:212.131980px;}
.x22{left:223.500000px;}
.x79{left:240.944160px;}
.x1{left:264.000000px;}
.x58{left:306.000000px;}
.xc{left:386.109900px;}
.x66{left:393.000000px;}
.x74{left:394.500000px;}
.xa{left:398.601900px;}
.x3{left:405.424650px;}
.x5a{left:424.500000px;}
.x12{left:445.455390px;}
.x75{left:462.000000px;}
.x4e{left:477.000000px;}
.x52{left:480.000000px;}
.x24{left:489.000000px;}
.x42{left:493.500000px;}
.x10{left:505.853220px;}
.x6e{left:511.500000px;}
.x1b{left:525.000120px;}
.x49{left:534.000000px;}
.x64{left:541.500000px;}
.x13{left:543.908850px;}
.x69{left:552.000000px;}
.xf{left:558.596820px;}
.x16{left:568.606380px;}
.x78{left:573.000000px;}
.x3e{left:579.000000px;}
.x14{left:589.697250px;}
.x5c{left:592.500000px;}
.xe{left:594.349860px;}
.xd{left:598.887300px;}
.x77{left:610.500000px;}
.x4b{left:645.000000px;}
.x65{left:648.000000px;}
.x43{left:652.500000px;}
.x17{left:660.238950px;}
.x15{left:670.317900px;}
.x11{left:673.089150px;}
.x6a{left:679.500000px;}
.x4c{left:700.500000px;}
.x1e{left:731.234520px;}
.x6b{left:744.000000px;}
.x1c{left:753.014880px;}
.x1f{left:764.640000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-6.647552pt;}
.ls1c{letter-spacing:-5.528832pt;}
.ls1e{letter-spacing:-4.233472pt;}
.ls22{letter-spacing:-2.284544pt;}
.ls21{letter-spacing:-1.271808pt;}
.lsd{letter-spacing:-0.211968pt;}
.ls1d{letter-spacing:-0.182528pt;}
.lse{letter-spacing:-0.176640pt;}
.ls9{letter-spacing:-0.141312pt;}
.lsf{letter-spacing:-0.111872pt;}
.ls8{letter-spacing:-0.105984pt;}
.ls1f{letter-spacing:-0.076544pt;}
.ls7{letter-spacing:-0.070656pt;}
.lsa{letter-spacing:-0.052992pt;}
.ls14{letter-spacing:-0.012800pt;}
.ls6{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.000512pt;}
.ls11{letter-spacing:0.004800pt;}
.ls23{letter-spacing:0.008960pt;}
.ls13{letter-spacing:0.012800pt;}
.ls4{letter-spacing:0.074240pt;}
.ls3{letter-spacing:0.141056pt;}
.lsc{letter-spacing:0.252416pt;}
.lsb{letter-spacing:0.282112pt;}
.ls0{letter-spacing:0.296960pt;}
.ls2{letter-spacing:0.319232pt;}
.ls1{letter-spacing:0.356352pt;}
.ls5{letter-spacing:1.248256pt;}
.ls15{letter-spacing:1.485696pt;}
.ls10{letter-spacing:11.069440pt;}
.ls18{letter-spacing:30.208000pt;}
.ls19{letter-spacing:33.801728pt;}
.ls1a{letter-spacing:48.770432pt;}
.ls17{letter-spacing:56.895488pt;}
.ls1b{letter-spacing:188.454400pt;}
.ls12{letter-spacing:217.788160pt;}
.ws4{word-spacing:-18.879232pt;}
.ws8{word-spacing:-16.012800pt;}
.wsa{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.987200pt;}
.ws0{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.667008pt;}
.ws1{word-spacing:-14.649344pt;}
.wsd{word-spacing:-14.643456pt;}
.ws3{word-spacing:-14.614016pt;}
.ws6{word-spacing:-14.608128pt;}
.ws2{word-spacing:-14.578688pt;}
.ws5{word-spacing:-14.543360pt;}
.ws10{word-spacing:-14.508032pt;}
.ws11{word-spacing:-12.435456pt;}
.wsc{word-spacing:-10.486528pt;}
.wsf{word-spacing:-9.191168pt;}
.wsb{word-spacing:-0.064000pt;}
.ws7{word-spacing:0.000000pt;}
._14{margin-left:-4.735488pt;}
._d{margin-left:-3.827200pt;}
._c{margin-left:-2.885120pt;}
._10{margin-left:-1.927680pt;}
._2{margin-left:-0.890880pt;}
._0{width:0.942080pt;}
._3{width:1.895936pt;}
._6{width:2.932224pt;}
._7{width:3.944960pt;}
._f{width:5.204992pt;}
._e{width:6.241280pt;}
._9{width:7.772160pt;}
._a{width:8.686592pt;}
._4{width:9.715200pt;}
._5{width:11.128320pt;}
._b{width:12.776960pt;}
._15{width:13.757440pt;}
._16{width:14.886400pt;}
._8{width:15.956480pt;}
._1d{width:17.024000pt;}
._19{width:18.150400pt;}
._11{width:19.312640pt;}
._12{width:20.666880pt;}
._18{width:22.067200pt;}
._1a{width:23.232000pt;}
._17{width:24.390400pt;}
._1b{width:25.689600pt;}
._28{width:26.755072pt;}
._23{width:27.692800pt;}
._13{width:28.665600pt;}
._29{width:29.652864pt;}
._2a{width:31.507200pt;}
._26{width:33.031680pt;}
._25{width:34.150400pt;}
._3c{width:35.494400pt;}
._37{width:36.887040pt;}
._24{width:37.800960pt;}
._21{width:45.244416pt;}
._30{width:49.120000pt;}
._2e{width:52.051200pt;}
._2b{width:54.905600pt;}
._3d{width:57.273600pt;}
._27{width:61.176320pt;}
._32{width:89.949184pt;}
._22{width:91.452416pt;}
._35{width:95.277312pt;}
._2c{width:101.121024pt;}
._1c{width:102.104576pt;}
._34{width:109.900800pt;}
._20{width:111.353856pt;}
._3b{width:114.048000pt;}
._39{width:147.564800pt;}
._1f{width:172.127744pt;}
._1e{width:173.470976pt;}
._33{width:176.761600pt;}
._31{width:179.974400pt;}
._3a{width:188.844800pt;}
._2f{width:216.243456pt;}
._2d{width:273.843200pt;}
._36{width:344.313600pt;}
._38{width:613.388800pt;}
._1{width:1699.159040pt;}
.fs3{font-size:21.760000pt;}
.fs4{font-size:42.240000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y1e3{bottom:3.200000pt;}
.y1cf{bottom:3.253333pt;}
.y1f7{bottom:3.306667pt;}
.y116{bottom:3.413333pt;}
.y169{bottom:3.466667pt;}
.y184{bottom:3.520000pt;}
.y1b3{bottom:3.626667pt;}
.y113{bottom:3.680000pt;}
.y181{bottom:3.733333pt;}
.y1ba{bottom:3.840000pt;}
.y11c{bottom:3.893333pt;}
.y110{bottom:3.946667pt;}
.y158{bottom:4.000000pt;}
.y1ad{bottom:4.106667pt;}
.y119{bottom:4.160000pt;}
.y19e{bottom:4.213333pt;}
.y1f5{bottom:4.266667pt;}
.y199{bottom:4.320000pt;}
.y15a{bottom:4.373333pt;}
.y133{bottom:4.426667pt;}
.y152{bottom:4.480000pt;}
.y1cd{bottom:4.533333pt;}
.y155{bottom:4.586667pt;}
.y1a9{bottom:4.640000pt;}
.y162{bottom:4.693333pt;}
.y151{bottom:4.746667pt;}
.y15e{bottom:4.853333pt;}
.y1d1{bottom:4.960000pt;}
.y5c{bottom:5.173333pt;}
.y14f{bottom:5.333333pt;}
.y168{bottom:5.386667pt;}
.y196{bottom:5.440000pt;}
.y14c{bottom:5.706667pt;}
.y195{bottom:5.973333pt;}
.y14d{bottom:6.186667pt;}
.y10d{bottom:6.400000pt;}
.y166{bottom:6.560000pt;}
.y171{bottom:6.826667pt;}
.y173{bottom:6.986667pt;}
.y175{bottom:7.146667pt;}
.y16f{bottom:8.266667pt;}
.y139{bottom:10.186667pt;}
.y137{bottom:11.840000pt;}
.y135{bottom:12.160000pt;}
.y1de{bottom:12.746667pt;}
.y1a6{bottom:12.960000pt;}
.y193{bottom:14.080000pt;}
.y14a{bottom:14.826667pt;}
.y115{bottom:20.053333pt;}
.y1a8{bottom:20.266667pt;}
.y19b{bottom:20.373333pt;}
.y1af{bottom:20.480000pt;}
.y1b2{bottom:20.586667pt;}
.y112{bottom:20.640000pt;}
.y1b6{bottom:20.693333pt;}
.y1ac{bottom:20.746667pt;}
.y1b9{bottom:20.800000pt;}
.y11b{bottom:20.853333pt;}
.y10f{bottom:20.906667pt;}
.y157{bottom:20.960000pt;}
.y1df{bottom:21.066667pt;}
.y118{bottom:21.120000pt;}
.y1e1{bottom:21.173333pt;}
.y15c{bottom:21.440000pt;}
.y1e9{bottom:21.493333pt;}
.y154{bottom:21.546667pt;}
.y161{bottom:21.653333pt;}
.y1b8{bottom:37.440000pt;}
.y1b1{bottom:37.546667pt;}
.y1b5{bottom:37.653333pt;}
.y1ab{bottom:37.706667pt;}
.y62{bottom:38.400000pt;}
.y1e8{bottom:38.453333pt;}
.y61{bottom:56.960000pt;}
.y6{bottom:56.965120pt;}
.y3{bottom:58.613333pt;}
.y60{bottom:73.920000pt;}
.y5{bottom:73.922560pt;}
.y2{bottom:77.173333pt;}
.y4{bottom:90.880000pt;}
.y5e{bottom:95.413333pt;}
.yb9{bottom:108.480000pt;}
.y9c{bottom:111.360000pt;}
.y21d{bottom:112.000000pt;}
.yb8{bottom:113.280000pt;}
.y5d{bottom:113.973333pt;}
.y83{bottom:115.200000pt;}
.y2f{bottom:117.163520pt;}
.yd3{bottom:117.760000pt;}
.y17f{bottom:119.680000pt;}
.y1db{bottom:121.280000pt;}
.y164{bottom:121.920000pt;}
.y10b{bottom:123.200000pt;}
.yf4{bottom:124.160000pt;}
.y9b{bottom:124.800000pt;}
.yb7{bottom:127.040000pt;}
.y227{bottom:129.280000pt;}
.y21c{bottom:130.560000pt;}
.y1fa{bottom:132.800000pt;}
.y82{bottom:133.440000pt;}
.y2e{bottom:134.120960pt;}
.yd2{bottom:136.000000pt;}
.y5b{bottom:137.280000pt;}
.y17e{bottom:138.240000pt;}
.y1da{bottom:139.520000pt;}
.y163{bottom:140.480000pt;}
.y131{bottom:141.440000pt;}
.y10a{bottom:141.760000pt;}
.y9a{bottom:143.360000pt;}
.yf3{bottom:143.680000pt;}
.y234{bottom:144.320000pt;}
.yb6{bottom:145.280000pt;}
.y226{bottom:147.840000pt;}
.y1f9{bottom:148.000000pt;}
.y21b{bottom:148.800000pt;}
.y2d{bottom:151.078400pt;}
.y81{bottom:152.000000pt;}
.yd1{bottom:154.560000pt;}
.y160{bottom:154.666667pt;}
.y5a{bottom:155.840000pt;}
.y17d{bottom:156.480000pt;}
.y1d9{bottom:158.080000pt;}
.y130{bottom:159.680000pt;}
.y109{bottom:160.000000pt;}
.y99{bottom:161.600000pt;}
.y233{bottom:162.560000pt;}
.yf2{bottom:163.200000pt;}
.yb5{bottom:163.840000pt;}
.y1f8{bottom:164.000000pt;}
.y1f6{bottom:165.333333pt;}
.y225{bottom:166.080000pt;}
.y21a{bottom:167.360000pt;}
.y2c{bottom:167.712000pt;}
.y80{bottom:170.240000pt;}
.yd0{bottom:172.800000pt;}
.y59{bottom:174.080000pt;}
.y17c{bottom:175.040000pt;}
.y1d8{bottom:176.320000pt;}
.y12f{bottom:178.240000pt;}
.y108{bottom:178.560000pt;}
.y98{bottom:180.160000pt;}
.y232{bottom:181.120000pt;}
.y1f4{bottom:181.333333pt;}
.yf1{bottom:181.760000pt;}
.yb4{bottom:182.080000pt;}
.y224{bottom:184.640000pt;}
.y2b{bottom:184.669440pt;}
.y219{bottom:185.600000pt;}
.y7f{bottom:188.800000pt;}
.y15f{bottom:189.333333pt;}
.ycf{bottom:191.360000pt;}
.y58{bottom:192.640000pt;}
.y17b{bottom:193.280000pt;}
.y1d7{bottom:194.880000pt;}
.y12e{bottom:196.480000pt;}
.y107{bottom:196.800000pt;}
.y97{bottom:198.400000pt;}
.y1f3{bottom:198.666667pt;}
.y231{bottom:199.360000pt;}
.yf0{bottom:200.000000pt;}
.yb3{bottom:200.640000pt;}
.y2a{bottom:201.626880pt;}
.y223{bottom:202.880000pt;}
.y218{bottom:204.160000pt;}
.y15d{bottom:206.666667pt;}
.y7e{bottom:207.040000pt;}
.yce{bottom:209.600000pt;}
.y57{bottom:210.880000pt;}
.y17a{bottom:211.840000pt;}
.y1d6{bottom:213.120000pt;}
.y12d{bottom:215.040000pt;}
.y106{bottom:215.360000pt;}
.y96{bottom:216.960000pt;}
.y230{bottom:217.920000pt;}
.yef{bottom:218.560000pt;}
.y29{bottom:218.584320pt;}
.yb2{bottom:218.880000pt;}
.y1f2{bottom:221.440000pt;}
.y217{bottom:222.400000pt;}
.y15b{bottom:224.000000pt;}
.y7d{bottom:225.600000pt;}
.ycd{bottom:228.160000pt;}
.y56{bottom:229.440000pt;}
.y179{bottom:230.080000pt;}
.y1d5{bottom:231.680000pt;}
.y12c{bottom:233.280000pt;}
.y105{bottom:233.600000pt;}
.y95{bottom:235.200000pt;}
.y28{bottom:235.217920pt;}
.y22f{bottom:236.160000pt;}
.yee{bottom:236.800000pt;}
.yb1{bottom:237.440000pt;}
.y222{bottom:239.680000pt;}
.y1f1{bottom:240.000000pt;}
.y216{bottom:240.960000pt;}
.y7c{bottom:243.840000pt;}
.ycc{bottom:246.400000pt;}
.y55{bottom:247.680000pt;}
.y178{bottom:248.640000pt;}
.y1d4{bottom:249.920000pt;}
.y12b{bottom:251.840000pt;}
.y104{bottom:252.160000pt;}
.y27{bottom:252.175360pt;}
.y94{bottom:253.760000pt;}
.y22e{bottom:254.720000pt;}
.yed{bottom:255.360000pt;}
.yb0{bottom:255.680000pt;}
.y1f0{bottom:258.240000pt;}
.y159{bottom:258.666667pt;}
.y215{bottom:259.200000pt;}
.y7b{bottom:262.400000pt;}
.ycb{bottom:264.960000pt;}
.y177{bottom:266.880000pt;}
.y1d3{bottom:268.480000pt;}
.y26{bottom:269.132800pt;}
.y12a{bottom:270.080000pt;}
.y103{bottom:270.400000pt;}
.y93{bottom:271.680000pt;}
.y22d{bottom:272.960000pt;}
.yec{bottom:273.600000pt;}
.y1ff{bottom:273.920000pt;}
.yaf{bottom:274.240000pt;}
.y156{bottom:276.000000pt;}
.y1ef{bottom:276.800000pt;}
.y214{bottom:277.760000pt;}
.y7a{bottom:280.640000pt;}
.yca{bottom:283.200000pt;}
.y221{bottom:284.480000pt;}
.y176{bottom:285.440000pt;}
.y25{bottom:285.766400pt;}
.y1d2{bottom:286.720000pt;}
.y54{bottom:288.320000pt;}
.y102{bottom:288.640000pt;}
.y92{bottom:288.960000pt;}
.y22c{bottom:291.520000pt;}
.yeb{bottom:292.160000pt;}
.yae{bottom:292.480000pt;}
.y1ee{bottom:295.040000pt;}
.y213{bottom:296.000000pt;}
.y79{bottom:299.200000pt;}
.y1d0{bottom:300.000000pt;}
.yc9{bottom:301.760000pt;}
.y24{bottom:302.723840pt;}
.y220{bottom:303.040000pt;}
.y91{bottom:303.680000pt;}
.y129{bottom:306.880000pt;}
.y101{bottom:307.200000pt;}
.y53{bottom:307.840000pt;}
.y153{bottom:309.333333pt;}
.y22b{bottom:309.760000pt;}
.yea{bottom:310.400000pt;}
.y1fe{bottom:310.720000pt;}
.yad{bottom:311.040000pt;}
.y1ed{bottom:313.600000pt;}
.y212{bottom:314.560000pt;}
.y174{bottom:317.333333pt;}
.y78{bottom:317.440000pt;}
.y1ce{bottom:318.666667pt;}
.y23{bottom:319.681280pt;}
.yc8{bottom:320.000000pt;}
.y21f{bottom:321.280000pt;}
.y100{bottom:325.440000pt;}
.y1a3{bottom:325.760000pt;}
.y52{bottom:327.360000pt;}
.y22a{bottom:328.320000pt;}
.ye9{bottom:328.960000pt;}
.yac{bottom:329.280000pt;}
.y1ec{bottom:331.840000pt;}
.y211{bottom:332.800000pt;}
.y1cc{bottom:334.666667pt;}
.y77{bottom:336.000000pt;}
.y22{bottom:336.638720pt;}
.y172{bottom:337.333333pt;}
.yc7{bottom:338.560000pt;}
.y21e{bottom:339.840000pt;}
.yff{bottom:344.000000pt;}
.y229{bottom:346.560000pt;}
.y51{bottom:346.976640pt;}
.ye8{bottom:347.200000pt;}
.y1fd{bottom:347.520000pt;}
.yab{bottom:347.840000pt;}
.y1eb{bottom:350.400000pt;}
.y210{bottom:351.360000pt;}
.y1cb{bottom:352.000000pt;}
.y76{bottom:354.240000pt;}
.yc6{bottom:356.800000pt;}
.y170{bottom:357.333333pt;}
.y150{bottom:361.333333pt;}
.y1a2{bottom:362.560000pt;}
.y228{bottom:364.800000pt;}
.ye7{bottom:365.760000pt;}
.yaa{bottom:366.080000pt;}
.y1ea{bottom:368.640000pt;}
.y20f{bottom:369.600000pt;}
.y21{bottom:370.244480pt;}
.y75{bottom:372.800000pt;}
.y1ca{bottom:374.720000pt;}
.yc5{bottom:375.360000pt;}
.y16e{bottom:377.333333pt;}
.y14e{bottom:378.666667pt;}
.y1a1{bottom:380.480000pt;}
.y50{bottom:382.496000pt;}
.y1e7{bottom:382.666667pt;}
.ye6{bottom:384.000000pt;}
.y1fc{bottom:384.320000pt;}
.ya9{bottom:384.640000pt;}
.y20e{bottom:388.160000pt;}
.y74{bottom:391.040000pt;}
.y1c9{bottom:393.280000pt;}
.yc4{bottom:393.600000pt;}
.y149{bottom:397.333333pt;}
.y1a0{bottom:397.760000pt;}
.y4f{bottom:399.453440pt;}
.ye5{bottom:402.560000pt;}
.ya8{bottom:402.880000pt;}
.y20{bottom:405.440000pt;}
.y20d{bottom:406.400000pt;}
.y73{bottom:409.600000pt;}
.y1c8{bottom:411.520000pt;}
.yc3{bottom:412.160000pt;}
.y19f{bottom:416.000000pt;}
.y4e{bottom:416.410880pt;}
.y14b{bottom:417.333333pt;}
.ye4{bottom:420.800000pt;}
.y16d{bottom:421.120000pt;}
.ya7{bottom:421.440000pt;}
.y1f{bottom:422.414080pt;}
.y20c{bottom:424.960000pt;}
.y72{bottom:427.840000pt;}
.y1c7{bottom:430.080000pt;}
.yc2{bottom:430.400000pt;}
.y19d{bottom:430.666667pt;}
.y4d{bottom:433.044480pt;}
.y1e6{bottom:434.666667pt;}
.ye3{bottom:439.360000pt;}
.y1e{bottom:439.371520pt;}
.ya6{bottom:439.680000pt;}
.y148{bottom:440.960000pt;}
.y20b{bottom:443.200000pt;}
.y71{bottom:446.400000pt;}
.y1c6{bottom:448.320000pt;}
.yc1{bottom:448.640000pt;}
.y4c{bottom:450.001920pt;}
.y1d{bottom:456.005120pt;}
.ye2{bottom:457.600000pt;}
.y16c{bottom:457.920000pt;}
.ya5{bottom:458.240000pt;}
.y147{bottom:459.200000pt;}
.y20a{bottom:461.760000pt;}
.y19c{bottom:464.000000pt;}
.y70{bottom:464.640000pt;}
.y1c5{bottom:466.880000pt;}
.y4b{bottom:466.959360pt;}
.yc0{bottom:467.200000pt;}
.y1e5{bottom:468.000000pt;}
.y1fb{bottom:472.640000pt;}
.ye1{bottom:476.160000pt;}
.ya4{bottom:476.480000pt;}
.y146{bottom:477.760000pt;}
.y209{bottom:480.000000pt;}
.y6f{bottom:483.200000pt;}
.y4a{bottom:483.592960pt;}
.y1c4{bottom:485.120000pt;}
.ybf{bottom:485.440000pt;}
.y1c{bottom:489.920000pt;}
.yfe{bottom:492.160000pt;}
.ye0{bottom:494.400000pt;}
.y16b{bottom:494.720000pt;}
.ya3{bottom:495.040000pt;}
.y145{bottom:496.000000pt;}
.y208{bottom:498.560000pt;}
.y19a{bottom:498.666667pt;}
.y49{bottom:500.550400pt;}
.y1e4{bottom:501.333333pt;}
.y6e{bottom:501.440000pt;}
.y1c3{bottom:503.680000pt;}
.ybe{bottom:504.000000pt;}
.y1b{bottom:506.559360pt;}
.yfd{bottom:510.400000pt;}
.ydf{bottom:512.960000pt;}
.ya2{bottom:513.280000pt;}
.y144{bottom:514.560000pt;}
.y207{bottom:516.800000pt;}
.y48{bottom:517.507840pt;}
.ybd{bottom:518.720000pt;}
.y6d{bottom:520.000000pt;}
.y1c2{bottom:521.920000pt;}
.y1a{bottom:523.516800pt;}
.yfc{bottom:528.960000pt;}
.y128{bottom:530.240000pt;}
.yde{bottom:531.200000pt;}
.ya1{bottom:531.520000pt;}
.y198{bottom:532.000000pt;}
.y143{bottom:532.800000pt;}
.y47{bottom:534.465280pt;}
.y1e0{bottom:534.666667pt;}
.y206{bottom:535.360000pt;}
.y1e2{bottom:536.000000pt;}
.y6c{bottom:538.240000pt;}
.y19{bottom:540.474240pt;}
.y1c1{bottom:540.480000pt;}
.yfb{bottom:547.200000pt;}
.y127{bottom:548.160000pt;}
.y197{bottom:549.333333pt;}
.ydd{bottom:549.760000pt;}
.ya0{bottom:550.080000pt;}
.y46{bottom:551.098880pt;}
.y142{bottom:551.360000pt;}
.y205{bottom:553.600000pt;}
.y6b{bottom:556.800000pt;}
.y1c0{bottom:558.720000pt;}
.y126{bottom:564.800000pt;}
.yfa{bottom:565.760000pt;}
.ydc{bottom:568.000000pt;}
.y45{bottom:568.056320pt;}
.y9f{bottom:568.320000pt;}
.y1dd{bottom:569.333333pt;}
.y141{bottom:569.600000pt;}
.y204{bottom:572.160000pt;}
.y18{bottom:574.080000pt;}
.y6a{bottom:575.040000pt;}
.y1bf{bottom:577.280000pt;}
.y125{bottom:581.760000pt;}
.yf9{bottom:584.000000pt;}
.y44{bottom:585.013760pt;}
.ydb{bottom:586.560000pt;}
.y9e{bottom:586.880000pt;}
.y140{bottom:588.160000pt;}
.y69{bottom:589.760000pt;}
.y203{bottom:590.400000pt;}
.y17{bottom:591.054080pt;}
.y1be{bottom:595.520000pt;}
.y124{bottom:599.040000pt;}
.y43{bottom:601.647360pt;}
.yf8{bottom:602.560000pt;}
.y194{bottom:602.666667pt;}
.yda{bottom:604.800000pt;}
.y9d{bottom:605.120000pt;}
.y13f{bottom:606.400000pt;}
.y16{bottom:608.011520pt;}
.y1dc{bottom:608.320000pt;}
.y202{bottom:608.960000pt;}
.y1bd{bottom:614.080000pt;}
.y123{bottom:617.600000pt;}
.y42{bottom:618.604800pt;}
.yf7{bottom:620.800000pt;}
.yd9{bottom:623.360000pt;}
.y90{bottom:623.680000pt;}
.y15{bottom:624.645120pt;}
.y13e{bottom:624.960000pt;}
.y192{bottom:626.880000pt;}
.y201{bottom:627.200000pt;}
.y1bc{bottom:632.320000pt;}
.y41{bottom:635.562240pt;}
.y122{bottom:635.840000pt;}
.yf6{bottom:639.360000pt;}
.yd8{bottom:641.600000pt;}
.y8f{bottom:641.920000pt;}
.y13d{bottom:643.200000pt;}
.y191{bottom:645.120000pt;}
.y200{bottom:645.760000pt;}
.y1bb{bottom:650.240000pt;}
.yf5{bottom:654.080000pt;}
.y121{bottom:654.400000pt;}
.y14{bottom:658.560000pt;}
.y8e{bottom:660.480000pt;}
.y13c{bottom:661.760000pt;}
.y190{bottom:663.680000pt;}
.y1b7{bottom:664.000000pt;}
.y40{bottom:669.168000pt;}
.y120{bottom:672.640000pt;}
.y13{bottom:675.211520pt;}
.y8d{bottom:678.720000pt;}
.yd7{bottom:679.040000pt;}
.y13b{bottom:680.000000pt;}
.y18f{bottom:681.920000pt;}
.y3f{bottom:686.125440pt;}
.y11f{bottom:691.200000pt;}
.y12{bottom:692.168960pt;}
.y8c{bottom:697.280000pt;}
.y13a{bottom:698.560000pt;}
.y18e{bottom:700.480000pt;}
.y3e{bottom:703.082880pt;}
.y11{bottom:709.126400pt;}
.y11e{bottom:709.440000pt;}
.y138{bottom:713.333333pt;}
.y1b4{bottom:714.666667pt;}
.y8b{bottom:715.520000pt;}
.yd6{bottom:715.840000pt;}
.y18d{bottom:718.720000pt;}
.y3d{bottom:719.716480pt;}
.y10{bottom:725.760000pt;}
.y11d{bottom:728.000000pt;}
.y8a{bottom:734.080000pt;}
.yd5{bottom:734.400000pt;}
.y136{bottom:736.000000pt;}
.y3c{bottom:736.673920pt;}
.y18c{bottom:737.280000pt;}
.y11a{bottom:742.666667pt;}
.y89{bottom:752.320000pt;}
.yd4{bottom:752.960000pt;}
.y3b{bottom:753.631360pt;}
.y18b{bottom:755.520000pt;}
.y134{bottom:760.000000pt;}
.yf{bottom:761.600000pt;}
.y1b0{bottom:765.333333pt;}
.y16a{bottom:766.666667pt;}
.y3a{bottom:770.264960pt;}
.y88{bottom:770.880000pt;}
.ybc{bottom:772.480000pt;}
.y18a{bottom:774.080000pt;}
.y117{bottom:776.000000pt;}
.ye{bottom:780.160000pt;}
.y132{bottom:785.333333pt;}
.y39{bottom:787.222400pt;}
.y87{bottom:789.120000pt;}
.ybb{bottom:790.720000pt;}
.y189{bottom:792.320000pt;}
.yd{bottom:798.400000pt;}
.y167{bottom:801.333333pt;}
.y38{bottom:804.179840pt;}
.y86{bottom:807.680000pt;}
.yba{bottom:808.640000pt;}
.y114{bottom:810.666667pt;}
.y188{bottom:810.880000pt;}
.y1ae{bottom:816.000000pt;}
.y165{bottom:820.000000pt;}
.y37{bottom:821.137280pt;}
.y85{bottom:825.920000pt;}
.y187{bottom:829.120000pt;}
.yc{bottom:835.200000pt;}
.y36{bottom:837.770880pt;}
.y111{bottom:844.000000pt;}
.y84{bottom:844.480000pt;}
.y186{bottom:847.680000pt;}
.y1aa{bottom:849.333333pt;}
.yb{bottom:853.760000pt;}
.y35{bottom:854.728320pt;}
.y185{bottom:862.666667pt;}
.y68{bottom:862.720000pt;}
.y34{bottom:871.685760pt;}
.ya{bottom:872.000000pt;}
.y10e{bottom:877.333333pt;}
.y183{bottom:880.000000pt;}
.y67{bottom:881.280000pt;}
.y33{bottom:888.319360pt;}
.y182{bottom:896.000000pt;}
.y66{bottom:899.520000pt;}
.y1a5{bottom:900.000000pt;}
.y1a7{bottom:901.333333pt;}
.y32{bottom:905.276800pt;}
.y9{bottom:909.446400pt;}
.y10c{bottom:912.000000pt;}
.y180{bottom:914.666667pt;}
.y65{bottom:918.080000pt;}
.y8{bottom:930.883200pt;}
.y64{bottom:936.320000pt;}
.y1a4{bottom:938.880000pt;}
.y31{bottom:938.882560pt;}
.y7{bottom:952.320000pt;}
.y63{bottom:954.880000pt;}
.y30{bottom:955.840000pt;}
.y5f{bottom:970.880000pt;}
.y1{bottom:974.666667pt;}
.h17{height:17.333333pt;}
.hf{height:18.666667pt;}
.h15{height:20.000000pt;}
.hc{height:21.333333pt;}
.h18{height:22.666667pt;}
.h12{height:24.000000pt;}
.h11{height:25.333333pt;}
.h10{height:26.666667pt;}
.h9{height:28.153125pt;}
.hd{height:34.666667pt;}
.he{height:36.000000pt;}
.h19{height:38.666667pt;}
.h13{height:40.000000pt;}
.h16{height:40.451250pt;}
.h5{height:40.911250pt;}
.h8{height:42.656250pt;}
.hb{height:43.875000pt;}
.ha{height:44.437500pt;}
.h4{height:44.468750pt;}
.h1a{height:52.000000pt;}
.h7{height:52.296250pt;}
.h1b{height:53.333333pt;}
.h14{height:54.797500pt;}
.h3{height:56.843750pt;}
.h6{height:65.938750pt;}
.h2{height:129.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1c{width:48.000000pt;}
.w1d{width:49.333333pt;}
.w11{width:50.666667pt;}
.w20{width:58.666667pt;}
.w27{width:60.000000pt;}
.w24{width:61.333333pt;}
.we{width:66.666667pt;}
.wd{width:77.333333pt;}
.w4{width:96.000000pt;}
.w10{width:100.000000pt;}
.w17{width:106.666667pt;}
.w1f{width:114.666667pt;}
.w3{width:122.666667pt;}
.w29{width:132.000000pt;}
.w25{width:133.333333pt;}
.w1e{width:142.666667pt;}
.w1a{width:148.000000pt;}
.w19{width:149.333333pt;}
.w18{width:150.666667pt;}
.w16{width:154.666667pt;}
.wc{width:161.333333pt;}
.wa{width:170.666667pt;}
.wb{width:172.000000pt;}
.w22{width:224.000000pt;}
.w9{width:228.000000pt;}
.w28{width:233.333333pt;}
.w23{width:234.666667pt;}
.w7{width:236.000000pt;}
.w5{width:237.333333pt;}
.w15{width:245.333333pt;}
.w13{width:250.666667pt;}
.w8{width:254.666667pt;}
.w6{width:256.000000pt;}
.w26{width:265.333333pt;}
.w14{width:305.333333pt;}
.w12{width:306.666667pt;}
.w21{width:341.333333pt;}
.wf{width:356.000000pt;}
.w1b{width:369.333333pt;}
.w2{width:474.666667pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1a{left:7.306635pt;}
.x2{left:8.533200pt;}
.x27{left:9.780917pt;}
.x36{left:11.524373pt;}
.x6c{left:13.584427pt;}
.x76{left:14.658453pt;}
.x2b{left:16.301429pt;}
.x21{left:17.872384pt;}
.x46{left:19.071253pt;}
.x4a{left:20.051093pt;}
.x34{left:20.977877pt;}
.x2e{left:21.954432pt;}
.x5b{left:23.045227pt;}
.x5d{left:23.960533pt;}
.x2f{left:25.679349pt;}
.x2d{left:27.637056pt;}
.x47{left:29.031040pt;}
.x26{left:30.501632pt;}
.x67{left:33.836907pt;}
.x44{left:35.212235pt;}
.x41{left:36.746560pt;}
.x32{left:37.785493pt;}
.x39{left:39.003253pt;}
.x45{left:40.413440pt;}
.x2a{left:41.477333pt;}
.x5e{left:42.446592pt;}
.x68{left:44.428587pt;}
.x5f{left:46.113248pt;}
.x40{left:47.032203pt;}
.x59{left:48.150720pt;}
.x3f{left:51.184213pt;}
.x57{left:53.244469pt;}
.x33{left:55.943253pt;}
.x30{left:59.083989pt;}
.x73{left:61.797227pt;}
.x37{left:67.541333pt;}
.x4f{left:73.746240pt;}
.x62{left:75.266667pt;}
.x61{left:77.013365pt;}
.x28{left:81.058933pt;}
.x6f{left:84.500053pt;}
.x7a{left:86.712875pt;}
.x23{left:89.051093pt;}
.x55{left:91.266773pt;}
.x2c{left:92.978773pt;}
.x53{left:94.933333pt;}
.x25{left:97.931093pt;}
.x35{left:99.388693pt;}
.x60{left:101.580053pt;}
.x20{left:104.000000pt;}
.x54{left:104.895819pt;}
.x6d{left:106.065429pt;}
.x50{left:108.393280pt;}
.x3a{left:109.493333pt;}
.x72{left:111.160789pt;}
.x4{left:113.280000pt;}
.x3d{left:114.815360pt;}
.xb{left:116.920800pt;}
.x4d{left:118.666667pt;}
.x48{left:120.000000pt;}
.x51{left:121.333333pt;}
.x9{left:123.368800pt;}
.x18{left:125.230427pt;}
.x5{left:128.687200pt;}
.x71{left:130.941973pt;}
.x6{left:137.243360pt;}
.x3b{left:144.906453pt;}
.x56{left:147.681963pt;}
.x8{left:148.952800pt;}
.x3c{left:151.080064pt;}
.x29{left:155.581013pt;}
.x19{left:156.751867pt;}
.x1d{left:161.279936pt;}
.x70{left:165.548501pt;}
.x63{left:166.726571pt;}
.x7b{left:170.013344pt;}
.x31{left:177.556053pt;}
.x38{left:186.858453pt;}
.x7{left:188.561760pt;}
.x22{left:198.666667pt;}
.x79{left:214.172587pt;}
.x1{left:234.666667pt;}
.x58{left:272.000000pt;}
.xc{left:343.208800pt;}
.x66{left:349.333333pt;}
.x74{left:350.666667pt;}
.xa{left:354.312800pt;}
.x3{left:360.377467pt;}
.x5a{left:377.333333pt;}
.x12{left:395.960347pt;}
.x75{left:410.666667pt;}
.x4e{left:424.000000pt;}
.x52{left:426.666667pt;}
.x24{left:434.666667pt;}
.x42{left:438.666667pt;}
.x10{left:449.647307pt;}
.x6e{left:454.666667pt;}
.x1b{left:466.666773pt;}
.x49{left:474.666667pt;}
.x64{left:481.333333pt;}
.x13{left:483.474533pt;}
.x69{left:490.666667pt;}
.xf{left:496.530507pt;}
.x16{left:505.427893pt;}
.x78{left:509.333333pt;}
.x3e{left:514.666667pt;}
.x14{left:524.175333pt;}
.x5c{left:526.666667pt;}
.xe{left:528.310987pt;}
.xd{left:532.344267pt;}
.x77{left:542.666667pt;}
.x4b{left:573.333333pt;}
.x65{left:576.000000pt;}
.x43{left:580.000000pt;}
.x17{left:586.879067pt;}
.x15{left:595.838133pt;}
.x11{left:598.301467pt;}
.x6a{left:604.000000pt;}
.x4c{left:622.666667pt;}
.x1e{left:649.986240pt;}
.x6b{left:661.333333pt;}
.x1c{left:669.346560pt;}
.x1f{left:679.680000pt;}
}




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