
    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_9fb2ed216a092231d604a7b9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_27e5da5737fd5f9c44743094.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_58e24511f5191a71d91fe24c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_99c2b25af26c485ba7607652.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_454d647820169de3b9d7046b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f3b1a8d9d4b90ced1952b365.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f56315bdf81d0982b97cefb6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9beb093efd34584da8aa12b1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.894043;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v8{vertical-align:-76.320000px;}
.v4{vertical-align:-62.760006px;}
.v7{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v5{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:20.880000px;}
.v6{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.v2{vertical-align:30.240000px;}
.ls22{letter-spacing:-1.260000px;}
.ls29{letter-spacing:-0.990000px;}
.ls9{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.540000px;}
.ls16{letter-spacing:-0.538800px;}
.ls1d{letter-spacing:-0.504000px;}
.ls30{letter-spacing:-0.486600px;}
.ls18{letter-spacing:-0.460200px;}
.lsa{letter-spacing:-0.450600px;}
.lsb{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.223800px;}
.ls32{letter-spacing:-0.181200px;}
.ls1e{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012960px;}
.ls2b{letter-spacing:0.045360px;}
.ls23{letter-spacing:0.106800px;}
.lse{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.206400px;}
.ls1a{letter-spacing:0.259800px;}
.ls6{letter-spacing:0.259920px;}
.ls17{letter-spacing:0.269400px;}
.ls15{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.298800px;}
.lsc{letter-spacing:0.305400px;}
.ls2a{letter-spacing:0.314400px;}
.ls2{letter-spacing:0.315360px;}
.ls19{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.493800px;}
.lsf{letter-spacing:0.900000px;}
.ls24{letter-spacing:0.924000px;}
.ls1c{letter-spacing:1.080000px;}
.ls2e{letter-spacing:2.340000px;}
.ls28{letter-spacing:3.060000px;}
.ls21{letter-spacing:3.756000px;}
.ls12{letter-spacing:8.820000px;}
.ls2f{letter-spacing:9.540000px;}
.ls20{letter-spacing:10.260000px;}
.ls1f{letter-spacing:10.980000px;}
.ls25{letter-spacing:11.700000px;}
.ls1b{letter-spacing:15.300000px;}
.ls2c{letter-spacing:16.020000px;}
.ls26{letter-spacing:18.180000px;}
.ls4{letter-spacing:66.240000px;}
.ls5{letter-spacing:66.420000px;}
.ls2d{letter-spacing:74.340000px;}
.ls27{letter-spacing:91.440000px;}
.ls31{letter-spacing:94.500000px;}
.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;}
}
.wsc{word-spacing:-54.360000px;}
.wsf{word-spacing:-48.240000px;}
.ws4{word-spacing:-18.000000px;}
.ws9{word-spacing:-16.865400px;}
.ws1c{word-spacing:-15.864000px;}
.ws10{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.238800px;}
.ws1a{word-spacing:-15.199800px;}
.ws11{word-spacing:-15.146400px;}
.ws1b{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.940000px;}
.ws15{word-spacing:-14.580000px;}
.ws0{word-spacing:-13.860000px;}
.ws18{word-spacing:-13.824000px;}
.ws8{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.482000px;}
.wsa{word-spacing:-13.140000px;}
.ws3{word-spacing:-12.420000px;}
.ws1f{word-spacing:-12.374400px;}
.ws20{word-spacing:-12.105360px;}
.ws1d{word-spacing:-12.060000px;}
.ws22{word-spacing:-11.878800px;}
.wse{word-spacing:-11.836200px;}
.ws1e{word-spacing:-11.700000px;}
.ws13{word-spacing:-11.521200px;}
.ws2{word-spacing:-10.933800px;}
.ws1{word-spacing:-10.440000px;}
.ws14{word-spacing:-9.720000px;}
.ws16{word-spacing:-9.000000px;}
.ws17{word-spacing:-8.856000px;}
.ws19{word-spacing:-7.920000px;}
.ws7{word-spacing:-7.560000px;}
.ws21{word-spacing:-7.073400px;}
.wsd{word-spacing:0.000000px;}
.ws6{word-spacing:58.140000px;}
._3{margin-left:-2.304480px;}
._2{margin-left:-1.036320px;}
._1{width:1.085760px;}
._e{width:2.332320px;}
._0{width:4.301280px;}
._4{width:5.462880px;}
._9{width:6.912000px;}
._13{width:8.272080px;}
._a{width:9.651600px;}
._c{width:11.106000px;}
._b{width:12.168000px;}
._15{width:13.817520px;}
._d{width:15.498000px;}
._16{width:16.782240px;}
._17{width:17.868720px;}
._18{width:19.063440px;}
._1a{width:20.869680px;}
._11{width:21.870000px;}
._12{width:23.212800px;}
._19{width:24.600960px;}
._1b{width:25.945920px;}
._1c{width:27.429840px;}
._6{width:28.496880px;}
._2e{width:32.031360px;}
._2f{width:33.623280px;}
._30{width:35.046000px;}
._22{width:38.229360px;}
._f{width:39.744000px;}
._10{width:41.161200px;}
._29{width:42.221040px;}
._27{width:43.271280px;}
._2a{width:46.156080px;}
._23{width:54.559440px;}
._24{width:55.947360px;}
._1e{width:58.370400px;}
._1f{width:59.503200px;}
._28{width:61.102800px;}
._2b{width:63.242640px;}
._8{width:65.335200px;}
._25{width:74.000160px;}
._26{width:75.481680px;}
._20{width:81.718560px;}
._21{width:83.031600px;}
._2d{width:94.299360px;}
._2c{width:95.430960px;}
._7{width:109.011840px;}
._14{width:118.336317px;}
._1d{width:682.896000px;}
._5{width:2055.281760px;}
.fcb{color:rgb(0,32,96);}
.fcc{color:rgb(0,112,192);}
.fca{color:rgb(0,176,240);}
.fc9{color:rgb(0,0,255);}
.fc7{color:transparent;}
.fc6{color:rgb(3,50,255);}
.fc3{color:rgb(255,0,0);}
.fc8{color:rgb(0,176,80);}
.fc5{color:rgb(166,166,166);}
.fc4{color:rgb(128,128,128);}
.fc2{color:rgb(13,13,13);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsa{font-size:12.240000px;}
.fsb{font-size:18.000000px;}
.fs9{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fsc{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fsd{font-size:84.240000px;}
.fs8{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y47{bottom:4.320000px;}
.ya9{bottom:5.220000px;}
.yb1{bottom:5.565000px;}
.yac{bottom:5.580000px;}
.yb5{bottom:5.745000px;}
.y30{bottom:5.760000px;}
.y162{bottom:6.105000px;}
.yd4{bottom:6.120000px;}
.yaf{bottom:6.330000px;}
.yda{bottom:6.660000px;}
.ydc{bottom:6.840000px;}
.y15c{bottom:7.365000px;}
.ye4{bottom:7.380000px;}
.ybb{bottom:7.545000px;}
.ya8{bottom:8.460000px;}
.yd7{bottom:8.640000px;}
.ye0{bottom:9.000000px;}
.y14b{bottom:10.245000px;}
.y147{bottom:10.800000px;}
.y149{bottom:11.145000px;}
.yd5{bottom:15.120000px;}
.ya6{bottom:17.640000px;}
.y46{bottom:18.180000px;}
.y83{bottom:18.900000px;}
.y4a{bottom:19.260000px;}
.y2f{bottom:19.620000px;}
.y3{bottom:19.800000px;}
.yd3{bottom:23.940000px;}
.y10e{bottom:24.120000px;}
.y2e{bottom:27.180000px;}
.y2{bottom:33.840000px;}
.y2d{bottom:42.660000px;}
.y1{bottom:46.620000px;}
.y2c{bottom:58.140000px;}
.y13a{bottom:71.820000px;}
.y16c{bottom:73.620000px;}
.y2b{bottom:73.800000px;}
.y109{bottom:75.420000px;}
.y181{bottom:76.320000px;}
.yc4{bottom:81.360000px;}
.y80{bottom:89.100000px;}
.y2a{bottom:89.280000px;}
.y203{bottom:89.640000px;}
.y44{bottom:91.440000px;}
.y139{bottom:91.620000px;}
.y16b{bottom:92.520000px;}
.y180{bottom:93.600000px;}
.y108{bottom:95.220000px;}
.y158{bottom:100.080000px;}
.y1c0{bottom:100.260000px;}
.yc3{bottom:101.160000px;}
.y202{bottom:103.500000px;}
.y29{bottom:104.760000px;}
.y7f{bottom:108.900000px;}
.y43{bottom:111.240000px;}
.y138{bottom:111.420000px;}
.y1bf{bottom:114.120000px;}
.y107{bottom:115.020000px;}
.y157{bottom:119.880000px;}
.y28{bottom:120.240000px;}
.yc2{bottom:120.600000px;}
.y201{bottom:121.860000px;}
.y240{bottom:127.980000px;}
.y17f{bottom:128.520000px;}
.y7e{bottom:128.700000px;}
.y16a{bottom:130.500000px;}
.y42{bottom:131.220000px;}
.y1be{bottom:132.300000px;}
.y106{bottom:134.460000px;}
.y200{bottom:135.540000px;}
.y27{bottom:135.900000px;}
.y156{bottom:139.680000px;}
.yc1{bottom:140.760000px;}
.y23f{bottom:141.660000px;}
.y17e{bottom:145.800000px;}
.y1bd{bottom:146.160000px;}
.y7d{bottom:148.500000px;}
.y169{bottom:149.436000px;}
.y41{bottom:151.050000px;}
.y137{bottom:151.230000px;}
.y26{bottom:151.380000px;}
.y1ff{bottom:153.930000px;}
.y105{bottom:154.470000px;}
.y23e{bottom:155.550000px;}
.yc0{bottom:157.530000px;}
.y155{bottom:159.510000px;}
.y17d{bottom:163.110000px;}
.y1bc{bottom:164.550000px;}
.y25{bottom:166.860000px;}
.y1fe{bottom:167.790000px;}
.y7c{bottom:168.330000px;}
.y168{bottom:168.510000px;}
.y23d{bottom:169.410000px;}
.y40{bottom:170.850000px;}
.y136{bottom:171.030000px;}
.ybf{bottom:171.390000px;}
.y104{bottom:174.630000px;}
.y1bb{bottom:178.230000px;}
.y154{bottom:179.310000px;}
.y17c{bottom:179.850000px;}
.y24{bottom:182.340000px;}
.y23c{bottom:183.090000px;}
.ybe{bottom:185.070000px;}
.y1fd{bottom:185.970000px;}
.y167{bottom:187.410000px;}
.y7b{bottom:188.310000px;}
.y3f{bottom:190.650000px;}
.y135{bottom:190.830000px;}
.y1ba{bottom:192.090000px;}
.y103{bottom:194.430000px;}
.y23b{bottom:196.950000px;}
.y17b{bottom:197.130000px;}
.y23{bottom:198.000000px;}
.ybd{bottom:198.930000px;}
.y153{bottom:199.290000px;}
.y1fc{bottom:199.830000px;}
.y32{bottom:201.600000px;}
.y7a{bottom:208.110000px;}
.y3e{bottom:210.450000px;}
.ybc{bottom:210.465000px;}
.y134{bottom:210.630000px;}
.y22{bottom:213.510000px;}
.y1fb{bottom:213.690000px;}
.y102{bottom:214.230000px;}
.y17a{bottom:214.770000px;}
.y152{bottom:219.090000px;}
.y1b9{bottom:224.130000px;}
.y23a{bottom:224.490000px;}
.y166{bottom:225.390000px;}
.y79{bottom:227.910000px;}
.yba{bottom:228.285000px;}
.y21{bottom:228.990000px;}
.y3d{bottom:230.430000px;}
.y1fa{bottom:231.870000px;}
.y179{bottom:232.050000px;}
.y101{bottom:234.030000px;}
.y1b8{bottom:237.990000px;}
.y151{bottom:238.890000px;}
.y165{bottom:243.210000px;}
.y20{bottom:244.470000px;}
.y1f9{bottom:245.730000px;}
.y239{bottom:246.810000px;}
.y78{bottom:247.710000px;}
.y178{bottom:248.970000px;}
.yb9{bottom:249.885000px;}
.y3c{bottom:250.230000px;}
.y133{bottom:250.410000px;}
.y100{bottom:254.010000px;}
.y1b7{bottom:256.170000px;}
.y150{bottom:258.690000px;}
.y1f8{bottom:259.590000px;}
.y1f{bottom:260.130000px;}
.y164{bottom:262.290000px;}
.y177{bottom:266.250000px;}
.y77{bottom:267.510000px;}
.yb8{bottom:267.705000px;}
.y238{bottom:268.410000px;}
.y163{bottom:268.605000px;}
.y3b{bottom:270.030000px;}
.y132{bottom:270.210000px;}
.yff{bottom:273.810000px;}
.y1e{bottom:275.610000px;}
.y1f7{bottom:277.770000px;}
.y14f{bottom:278.490000px;}
.y176{bottom:283.350000px;}
.yb7{bottom:285.885000px;}
.y161{bottom:286.425000px;}
.y76{bottom:287.490000px;}
.y1b6{bottom:288.390000px;}
.y3a{bottom:289.830000px;}
.y131{bottom:290.010000px;}
.y1d{bottom:291.090000px;}
.y1f6{bottom:291.630000px;}
.yfe{bottom:293.610000px;}
.y14e{bottom:298.470000px;}
.y1b5{bottom:302.070000px;}
.y175{bottom:303.510000px;}
.yb6{bottom:303.885000px;}
.y160{bottom:305.325000px;}
.y1c{bottom:306.570000px;}
.y75{bottom:307.290000px;}
.y39{bottom:309.630000px;}
.y130{bottom:309.810000px;}
.y1f5{bottom:309.990000px;}
.yfd{bottom:313.410000px;}
.y1b4{bottom:315.930000px;}
.y14d{bottom:317.010000px;}
.yb4{bottom:321.705000px;}
.y1b{bottom:322.230000px;}
.y15f{bottom:323.145000px;}
.y174{bottom:323.310000px;}
.y237{bottom:323.490000px;}
.y1f4{bottom:323.670000px;}
.y74{bottom:327.090000px;}
.y38{bottom:329.430000px;}
.y12f{bottom:329.610000px;}
.yfc{bottom:333.210000px;}
.y1b3{bottom:334.290000px;}
.y236{bottom:337.170000px;}
.y1a{bottom:337.710000px;}
.y14c{bottom:338.070000px;}
.yb3{bottom:339.885000px;}
.y15e{bottom:340.965000px;}
.y1f3{bottom:342.030000px;}
.y173{bottom:343.110000px;}
.y14a{bottom:344.565000px;}
.y73{bottom:346.890000px;}
.y1b2{bottom:347.970000px;}
.y37{bottom:349.410000px;}
.y12e{bottom:349.590000px;}
.y19{bottom:353.190000px;}
.y235{bottom:355.530000px;}
.y1f2{bottom:355.890000px;}
.yb2{bottom:357.705000px;}
.y15d{bottom:358.965000px;}
.y172{bottom:362.910000px;}
.y1b1{bottom:366.330000px;}
.y72{bottom:366.690000px;}
.y18{bottom:368.670000px;}
.y36{bottom:369.210000px;}
.y12d{bottom:369.390000px;}
.y1f1{bottom:369.570000px;}
.y148{bottom:371.565000px;}
.yfb{bottom:372.990000px;}
.yb0{bottom:375.525000px;}
.y15b{bottom:377.505000px;}
.y1b0{bottom:380.190000px;}
.y171{bottom:382.710000px;}
.y234{bottom:383.070000px;}
.ycd{bottom:386.310000px;}
.y71{bottom:386.670000px;}
.y1f0{bottom:387.930000px;}
.y35{bottom:389.010000px;}
.y12c{bottom:389.190000px;}
.y17{bottom:390.630000px;}
.yfa{bottom:392.790000px;}
.yae{bottom:393.345000px;}
.y1af{bottom:393.870000px;}
.y146{bottom:401.295000px;}
.y233{bottom:401.475000px;}
.y1ef{bottom:401.835000px;}
.y170{bottom:402.735000px;}
.y31{bottom:403.230000px;}
.ycc{bottom:406.155000px;}
.y70{bottom:406.515000px;}
.y34{bottom:408.495000px;}
.y12b{bottom:409.035000px;}
.y1ae{bottom:412.275000px;}
.yad{bottom:412.455000px;}
.yf9{bottom:412.635000px;}
.y232{bottom:415.335000px;}
.y1ee{bottom:415.515000px;}
.y16f{bottom:422.535000px;}
.ycb{bottom:425.955000px;}
.y1ad{bottom:426.135000px;}
.y6f{bottom:426.315000px;}
.y33{bottom:428.655000px;}
.y12a{bottom:428.835000px;}
.y231{bottom:429.015000px;}
.yab{bottom:430.275000px;}
.yf8{bottom:432.435000px;}
.y1ed{bottom:433.875000px;}
.y145{bottom:437.115000px;}
.y1ac{bottom:439.815000px;}
.y16{bottom:442.335000px;}
.y15a{bottom:445.755000px;}
.y6e{bottom:446.115000px;}
.y230{bottom:447.375000px;}
.y1ec{bottom:447.735000px;}
.yaa{bottom:448.095000px;}
.y129{bottom:448.815000px;}
.yf7{bottom:452.415000px;}
.y1ab{bottom:453.675000px;}
.y144{bottom:456.915000px;}
.y16e{bottom:459.795000px;}
.y22f{bottom:461.235000px;}
.y1eb{bottom:461.415000px;}
.y6d{bottom:465.915000px;}
.ya5{bottom:466.815000px;}
.y128{bottom:468.615000px;}
.y1aa{bottom:472.035000px;}
.yf6{bottom:472.215000px;}
.y22e{bottom:474.915000px;}
.y16d{bottom:476.715000px;}
.y143{bottom:476.895000px;}
.y1ea{bottom:479.775000px;}
.ya7{bottom:485.355000px;}
.y1a9{bottom:485.715000px;}
.y6c{bottom:485.895000px;}
.y127{bottom:488.415000px;}
.yf5{bottom:492.015000px;}
.y22d{bottom:493.275000px;}
.y1e9{bottom:493.635000px;}
.y142{bottom:496.695000px;}
.y1a8{bottom:504.075000px;}
.y6b{bottom:505.695000px;}
.y22c{bottom:507.135000px;}
.y126{bottom:508.215000px;}
.yf4{bottom:511.815000px;}
.ya4{bottom:516.495000px;}
.y1a7{bottom:517.935000px;}
.yca{bottom:525.135000px;}
.y22b{bottom:525.315000px;}
.y6a{bottom:525.495000px;}
.y1e8{bottom:525.675000px;}
.y125{bottom:528.015000px;}
.yf3{bottom:531.615000px;}
.ya3{bottom:535.935000px;}
.y1a6{bottom:536.115000px;}
.y141{bottom:536.295000px;}
.y22a{bottom:539.175000px;}
.y1e7{bottom:539.535000px;}
.y69{bottom:545.295000px;}
.y124{bottom:547.995000px;}
.y1a5{bottom:549.975000px;}
.yf2{bottom:551.595000px;}
.ya2{bottom:556.095000px;}
.y229{bottom:557.535000px;}
.y1e6{bottom:557.715000px;}
.y1a4{bottom:563.835000px;}
.y68{bottom:565.095000px;}
.y123{bottom:567.795000px;}
.y228{bottom:571.215000px;}
.yf1{bottom:571.395000px;}
.y1e5{bottom:571.575000px;}
.ya1{bottom:576.075000px;}
.y1a3{bottom:582.015000px;}
.y67{bottom:585.075000px;}
.y122{bottom:587.595000px;}
.y1e4{bottom:589.935000px;}
.yf0{bottom:591.195000px;}
.ya0{bottom:595.875000px;}
.y227{bottom:603.435000px;}
.y1e3{bottom:603.615000px;}
.yc9{bottom:604.515000px;}
.y66{bottom:604.875000px;}
.y121{bottom:607.395000px;}
.y1a2{bottom:609.735000px;}
.yef{bottom:610.995000px;}
.y9f{bottom:615.675000px;}
.y226{bottom:617.115000px;}
.y1e2{bottom:621.975000px;}
.y159{bottom:624.315000px;}
.y65{bottom:624.675000px;}
.y120{bottom:627.195000px;}
.y1a1{bottom:627.915000px;}
.yee{bottom:630.795000px;}
.y225{bottom:630.975000px;}
.y9e{bottom:635.475000px;}
.y1e1{bottom:635.835000px;}
.y1a0{bottom:641.775000px;}
.y64{bottom:644.475000px;}
.y11f{bottom:647.175000px;}
.y224{bottom:649.365000px;}
.yed{bottom:650.805000px;}
.y1e0{bottom:654.045000px;}
.y140{bottom:654.945000px;}
.y9d{bottom:655.305000px;}
.y19f{bottom:655.665000px;}
.y223{bottom:663.045000px;}
.y63{bottom:664.305000px;}
.y11e{bottom:667.005000px;}
.y1df{bottom:667.905000px;}
.yec{bottom:670.605000px;}
.y19e{bottom:673.845000px;}
.y9c{bottom:675.285000px;}
.y222{bottom:676.905000px;}
.y1de{bottom:681.765000px;}
.yc8{bottom:683.925000px;}
.y62{bottom:684.285000px;}
.y11d{bottom:686.805000px;}
.y19d{bottom:687.705000px;}
.yeb{bottom:690.405000px;}
.y9b{bottom:695.085000px;}
.y221{bottom:695.265000px;}
.y1dd{bottom:699.945000px;}
.y19c{bottom:701.565000px;}
.y61{bottom:704.085000px;}
.y11c{bottom:706.605000px;}
.y220{bottom:708.945000px;}
.yea{bottom:710.205000px;}
.y1dc{bottom:713.805000px;}
.y9a{bottom:714.885000px;}
.y19b{bottom:719.745000px;}
.y60{bottom:723.885000px;}
.y21f{bottom:727.305000px;}
.y11b{bottom:727.665000px;}
.ye9{bottom:730.005000px;}
.y1db{bottom:732.165000px;}
.y19a{bottom:733.605000px;}
.y99{bottom:734.685000px;}
.y21e{bottom:741.165000px;}
.y5f{bottom:743.685000px;}
.y1da{bottom:745.845000px;}
.y11a{bottom:747.105000px;}
.y199{bottom:747.465000px;}
.ye8{bottom:749.985000px;}
.y98{bottom:754.125000px;}
.y13f{bottom:754.485000px;}
.y21d{bottom:754.845000px;}
.y119{bottom:760.965000px;}
.yc7{bottom:763.125000px;}
.y5e{bottom:763.485000px;}
.y1d9{bottom:764.205000px;}
.y198{bottom:765.645000px;}
.ye7{bottom:766.545000px;}
.y21c{bottom:773.205000px;}
.y97{bottom:774.105000px;}
.y13e{bottom:774.465000px;}
.y1d8{bottom:778.065000px;}
.y197{bottom:779.505000px;}
.y118{bottom:779.865000px;}
.ye6{bottom:780.405000px;}
.y5d{bottom:783.465000px;}
.y117{bottom:786.345000px;}
.y21b{bottom:787.065000px;}
.y96{bottom:794.265000px;}
.y1d7{bottom:796.245000px;}
.y196{bottom:797.865000px;}
.y21a{bottom:800.745000px;}
.y5c{bottom:803.265000px;}
.y116{bottom:804.165000px;}
.y1d6{bottom:810.105000px;}
.y195{bottom:811.545000px;}
.ye5{bottom:813.165000px;}
.y95{bottom:814.065000px;}
.y219{bottom:819.105000px;}
.ye3{bottom:819.465000px;}
.y115{bottom:822.345000px;}
.y5b{bottom:823.065000px;}
.y194{bottom:825.405000px;}
.y1d5{bottom:828.285000px;}
.y218{bottom:832.785000px;}
.y94{bottom:833.865000px;}
.ye2{bottom:840.705000px;}
.y1d4{bottom:842.145000px;}
.y114{bottom:842.505000px;}
.y5a{bottom:842.865000px;}
.y193{bottom:843.765000px;}
.y217{bottom:846.645000px;}
.y15{bottom:851.505000px;}
.y93{bottom:853.305000px;}
.y13d{bottom:853.665000px;}
.y192{bottom:857.445000px;}
.y113{bottom:860.325000px;}
.y1d3{bottom:860.505000px;}
.ye1{bottom:860.685000px;}
.y59{bottom:862.665000px;}
.y216{bottom:865.005000px;}
.y14{bottom:870.405000px;}
.y92{bottom:873.645000px;}
.y1d2{bottom:874.185000px;}
.y191{bottom:875.805000px;}
.y215{bottom:878.685000px;}
.y112{bottom:879.405000px;}
.ydf{bottom:880.845000px;}
.yc6{bottom:882.285000px;}
.y13{bottom:882.645000px;}
.y1d1{bottom:888.045000px;}
.y190{bottom:889.665000px;}
.y91{bottom:893.445000px;}
.y12{bottom:895.425000px;}
.y214{bottom:897.090000px;}
.y111{bottom:899.430000px;}
.y58{bottom:902.490000px;}
.y18f{bottom:903.390000px;}
.yde{bottom:905.730000px;}
.y1d0{bottom:906.450000px;}
.y213{bottom:910.950000px;}
.y11{bottom:911.310000px;}
.y90{bottom:913.290000px;}
.y110{bottom:919.590000px;}
.y1cf{bottom:920.130000px;}
.y18e{bottom:920.310000px;}
.y10{bottom:920.670000px;}
.y57{bottom:922.290000px;}
.ydd{bottom:924.810000px;}
.y212{bottom:929.130000px;}
.y8f{bottom:933.090000px;}
.yf{bottom:934.710000px;}
.y1ce{bottom:938.490000px;}
.y10f{bottom:939.750000px;}
.y18d{bottom:939.930000px;}
.y56{bottom:942.090000px;}
.y211{bottom:942.990000px;}
.ydb{bottom:944.790000px;}
.y1cd{bottom:952.350000px;}
.y8e{bottom:952.890000px;}
.ye{bottom:957.570000px;}
.y210{bottom:961.350000px;}
.y55{bottom:961.890000px;}
.y18c{bottom:962.250000px;}
.yd9{bottom:964.950000px;}
.y1cc{bottom:966.030000px;}
.y8d{bottom:972.870000px;}
.y20f{bottom:975.030000px;}
.yd{bottom:980.610000px;}
.y54{bottom:981.870000px;}
.y10d{bottom:982.230000px;}
.y1cb{bottom:984.390000px;}
.yd8{bottom:985.110000px;}
.y18b{bottom:987.810000px;}
.y20e{bottom:988.890000px;}
.y8c{bottom:992.310000px;}
.y13c{bottom:992.670000px;}
.y1ca{bottom:998.250000px;}
.yc{bottom:1000.770000px;}
.y53{bottom:1001.670000px;}
.yd6{bottom:1002.930000px;}
.y18a{bottom:1004.910000px;}
.y20d{bottom:1007.250000px;}
.y1c9{bottom:1011.930000px;}
.y8b{bottom:1012.110000px;}
.y13b{bottom:1012.470000px;}
.y20c{bottom:1020.930000px;}
.y52{bottom:1021.470000px;}
.y189{bottom:1022.190000px;}
.y10c{bottom:1024.170000px;}
.yd2{bottom:1027.590000px;}
.y1c8{bottom:1030.290000px;}
.y8a{bottom:1032.270000px;}
.yb{bottom:1035.330000px;}
.y20b{bottom:1039.290000px;}
.y188{bottom:1039.830000px;}
.y51{bottom:1041.270000px;}
.y10b{bottom:1041.450000px;}
.y1c7{bottom:1044.150000px;}
.y89{bottom:1052.070000px;}
.y20a{bottom:1053.150000px;}
.y187{bottom:1056.570000px;}
.y10a{bottom:1060.710000px;}
.y50{bottom:1061.070000px;}
.y1c6{bottom:1062.330000px;}
.ya{bottom:1069.890000px;}
.y209{bottom:1071.330000px;}
.y88{bottom:1072.050000px;}
.y186{bottom:1073.850000px;}
.y1c5{bottom:1076.190000px;}
.yc5{bottom:1080.690000px;}
.y4f{bottom:1081.050000px;}
.y208{bottom:1085.190000px;}
.y1c4{bottom:1090.050000px;}
.yd1{bottom:1091.490000px;}
.y87{bottom:1091.850000px;}
.y207{bottom:1099.050000px;}
.y4e{bottom:1100.850000px;}
.y9{bottom:1101.210000px;}
.y1c3{bottom:1108.230000px;}
.y185{bottom:1108.770000px;}
.y86{bottom:1111.290000px;}
.yd0{bottom:1111.650000px;}
.y45{bottom:1112.730000px;}
.y206{bottom:1117.230000px;}
.y8{bottom:1117.950000px;}
.y4d{bottom:1120.650000px;}
.y1c2{bottom:1122.090000px;}
.y184{bottom:1125.690000px;}
.y85{bottom:1131.090000px;}
.ycf{bottom:1131.450000px;}
.y4c{bottom:1140.450000px;}
.y183{bottom:1142.970000px;}
.y205{bottom:1149.480000px;}
.y84{bottom:1150.920000px;}
.yce{bottom:1151.280000px;}
.y1c1{bottom:1154.160000px;}
.y7{bottom:1155.960000px;}
.y4b{bottom:1160.280000px;}
.y182{bottom:1160.460000px;}
.y204{bottom:1163.160000px;}
.y6{bottom:1167.480000px;}
.y82{bottom:1169.460000px;}
.y5{bottom:1175.940000px;}
.y49{bottom:1178.460000px;}
.y81{bottom:1188.720000px;}
.y4{bottom:1197.540000px;}
.y48{bottom:1197.720000px;}
.h6{height:5.650313px;}
.hf{height:12.012891px;}
.h1b{height:17.805000px;}
.h2d{height:17.820000px;}
.h1c{height:17.985000px;}
.h11{height:18.140625px;}
.h1e{height:18.165000px;}
.h2e{height:18.180000px;}
.h34{height:18.885000px;}
.h25{height:19.065000px;}
.h2c{height:19.080000px;}
.h1d{height:19.101000px;}
.h24{height:19.965000px;}
.h28{height:19.980000px;}
.h2b{height:20.002500px;}
.h23{height:20.145000px;}
.h27{height:20.160000px;}
.h29{height:21.240000px;}
.h1f{height:21.585000px;}
.h33{height:21.981000px;}
.h21{height:23.925000px;}
.h1a{height:24.285000px;}
.h26{height:24.862500px;}
.h32{height:26.985000px;}
.h14{height:27.705000px;}
.h30{height:28.965000px;}
.h31{height:29.001000px;}
.he{height:29.664141px;}
.h2a{height:29.678906px;}
.hd{height:36.281250px;}
.h20{height:37.425000px;}
.h3{height:40.985156px;}
.h19{height:42.825000px;}
.h15{height:42.922699px;}
.h7{height:47.344922px;}
.h4{height:48.616875px;}
.h37{height:50.558906px;}
.h2{height:52.998047px;}
.h2f{height:53.573906px;}
.h8{height:54.421875px;}
.h13{height:55.503468px;}
.h17{height:58.621992px;}
.hb{height:58.651172px;}
.h22{height:59.092031px;}
.h9{height:60.226875px;}
.h35{height:65.010937px;}
.h18{height:65.518594px;}
.hc{height:66.543750px;}
.h12{height:66.757500px;}
.h16{height:70.664062px;}
.h5{height:72.562500px;}
.h36{height:84.898125px;}
.ha{height:121.179375px;}
.h10{height:403.230000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w10{width:47.190000px;}
.we{width:54.705000px;}
.w13{width:55.065000px;}
.wc{width:58.125000px;}
.w14{width:60.825000px;}
.wf{width:61.005000px;}
.w12{width:62.301000px;}
.wd{width:62.481000px;}
.w11{width:66.960000px;}
.w1a{width:73.290000px;}
.w17{width:74.325000px;}
.w1b{width:78.300000px;}
.w21{width:80.085000px;}
.w18{width:81.021000px;}
.w22{width:82.650000px;}
.w19{width:84.585000px;}
.w16{width:87.696000px;}
.w7{width:95.565000px;}
.w20{width:98.481000px;}
.wa{width:100.650000px;}
.w1e{width:101.196000px;}
.w8{width:101.361000px;}
.w1d{width:101.520000px;}
.w3{width:101.730000px;}
.w9{width:101.865000px;}
.w1f{width:106.545000px;}
.w1c{width:162.739500px;}
.w4{width:232.050000px;}
.w15{width:249.859500px;}
.w5{width:327.484500px;}
.wb{width:384.364500px;}
.w6{width:399.480000px;}
.w2{width:640.890000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.xb{left:-36.900000px;}
.xa{left:-19.800000px;}
.x0{left:0.000000px;}
.x11{left:8.089500px;}
.x9{left:10.650000px;}
.x22{left:12.240000px;}
.x26{left:13.845000px;}
.x27{left:15.825000px;}
.x28{left:17.265000px;}
.x1e{left:18.885000px;}
.x20{left:20.865000px;}
.x2f{left:22.845000px;}
.x30{left:24.840000px;}
.x8{left:26.850000px;}
.x31{left:28.080000px;}
.x1a{left:29.145000px;}
.x19{left:32.565000px;}
.x1b{left:34.185000px;}
.x14{left:35.985000px;}
.x1c{left:37.065000px;}
.x16{left:38.685000px;}
.x38{left:40.710000px;}
.x7{left:42.510000px;}
.x6{left:58.710000px;}
.x13{left:68.565000px;}
.x5{left:78.150000px;}
.x2{left:81.036000px;}
.xc{left:108.036000px;}
.x39{left:158.250000px;}
.x32{left:241.635000px;}
.x29{left:330.915000px;}
.x33{left:343.155000px;}
.xe{left:359.715000px;}
.x10{left:384.195000px;}
.x12{left:408.540000px;}
.x2a{left:418.620000px;}
.xf{left:434.265000px;}
.x1{left:435.345000px;}
.x34{left:444.360000px;}
.x3{left:445.605000px;}
.x1d{left:465.420000px;}
.x2b{left:492.960000px;}
.x15{left:504.120000px;}
.x1f{left:523.560000px;}
.x35{left:550.920000px;}
.x2c{left:573.990000px;}
.x21{left:586.050000px;}
.xd{left:590.370000px;}
.x17{left:605.490000px;}
.x23{left:640.770000px;}
.x36{left:649.410000px;}
.x2d{left:658.590000px;}
.x24{left:701.790000px;}
.x18{left:707.370000px;}
.x4{left:721.950000px;}
.x37{left:729.510000px;}
.x2e{left:731.880000px;}
.x25{left:748.980000px;}
@media print{
.v8{vertical-align:-67.840000pt;}
.v4{vertical-align:-55.786672pt;}
.v7{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v5{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:18.560000pt;}
.v6{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.v2{vertical-align:26.880000pt;}
.ls22{letter-spacing:-1.120000pt;}
.ls29{letter-spacing:-0.880000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls16{letter-spacing:-0.478933pt;}
.ls1d{letter-spacing:-0.448000pt;}
.ls30{letter-spacing:-0.432533pt;}
.ls18{letter-spacing:-0.409067pt;}
.lsa{letter-spacing:-0.400533pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.198933pt;}
.ls32{letter-spacing:-0.161067pt;}
.ls1e{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.011520pt;}
.ls2b{letter-spacing:0.040320pt;}
.ls23{letter-spacing:0.094933pt;}
.lse{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.183467pt;}
.ls1a{letter-spacing:0.230933pt;}
.ls6{letter-spacing:0.231040pt;}
.ls17{letter-spacing:0.239467pt;}
.ls15{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.265600pt;}
.lsc{letter-spacing:0.271467pt;}
.ls2a{letter-spacing:0.279467pt;}
.ls2{letter-spacing:0.280320pt;}
.ls19{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.438933pt;}
.lsf{letter-spacing:0.800000pt;}
.ls24{letter-spacing:0.821333pt;}
.ls1c{letter-spacing:0.960000pt;}
.ls2e{letter-spacing:2.080000pt;}
.ls28{letter-spacing:2.720000pt;}
.ls21{letter-spacing:3.338667pt;}
.ls12{letter-spacing:7.840000pt;}
.ls2f{letter-spacing:8.480000pt;}
.ls20{letter-spacing:9.120000pt;}
.ls1f{letter-spacing:9.760000pt;}
.ls25{letter-spacing:10.400000pt;}
.ls1b{letter-spacing:13.600000pt;}
.ls2c{letter-spacing:14.240000pt;}
.ls26{letter-spacing:16.160000pt;}
.ls4{letter-spacing:58.880000pt;}
.ls5{letter-spacing:59.040000pt;}
.ls2d{letter-spacing:66.080000pt;}
.ls27{letter-spacing:81.280000pt;}
.ls31{letter-spacing:84.000000pt;}
.wsc{word-spacing:-48.320000pt;}
.wsf{word-spacing:-42.880000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws9{word-spacing:-14.991467pt;}
.ws1c{word-spacing:-14.101333pt;}
.ws10{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.545600pt;}
.ws1a{word-spacing:-13.510933pt;}
.ws11{word-spacing:-13.463467pt;}
.ws1b{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.280000pt;}
.ws15{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws18{word-spacing:-12.288000pt;}
.ws8{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.984000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws1f{word-spacing:-10.999467pt;}
.ws20{word-spacing:-10.760320pt;}
.ws1d{word-spacing:-10.720000pt;}
.ws22{word-spacing:-10.558933pt;}
.wse{word-spacing:-10.521067pt;}
.ws1e{word-spacing:-10.400000pt;}
.ws13{word-spacing:-10.241067pt;}
.ws2{word-spacing:-9.718933pt;}
.ws1{word-spacing:-9.280000pt;}
.ws14{word-spacing:-8.640000pt;}
.ws16{word-spacing:-8.000000pt;}
.ws17{word-spacing:-7.872000pt;}
.ws19{word-spacing:-7.040000pt;}
.ws7{word-spacing:-6.720000pt;}
.ws21{word-spacing:-6.287467pt;}
.wsd{word-spacing:0.000000pt;}
.ws6{word-spacing:51.680000pt;}
._3{margin-left:-2.048427pt;}
._2{margin-left:-0.921173pt;}
._1{width:0.965120pt;}
._e{width:2.073173pt;}
._0{width:3.823360pt;}
._4{width:4.855893pt;}
._9{width:6.144000pt;}
._13{width:7.352960pt;}
._a{width:8.579200pt;}
._c{width:9.872000pt;}
._b{width:10.816000pt;}
._15{width:12.282240pt;}
._d{width:13.776000pt;}
._16{width:14.917547pt;}
._17{width:15.883307pt;}
._18{width:16.945280pt;}
._1a{width:18.550827pt;}
._11{width:19.440000pt;}
._12{width:20.633600pt;}
._19{width:21.867520pt;}
._1b{width:23.063040pt;}
._1c{width:24.382080pt;}
._6{width:25.330560pt;}
._2e{width:28.472320pt;}
._2f{width:29.887360pt;}
._30{width:31.152000pt;}
._22{width:33.981653pt;}
._f{width:35.328000pt;}
._10{width:36.587733pt;}
._29{width:37.529813pt;}
._27{width:38.463360pt;}
._2a{width:41.027627pt;}
._23{width:48.497280pt;}
._24{width:49.730987pt;}
._1e{width:51.884800pt;}
._1f{width:52.891733pt;}
._28{width:54.313600pt;}
._2b{width:56.215680pt;}
._8{width:58.075733pt;}
._25{width:65.777920pt;}
._26{width:67.094827pt;}
._20{width:72.638720pt;}
._21{width:73.805867pt;}
._2d{width:83.821653pt;}
._2c{width:84.827520pt;}
._7{width:96.899413pt;}
._14{width:105.187837pt;}
._1d{width:607.018667pt;}
._5{width:1826.917120pt;}
.fs6{font-size:5.120000pt;}
.fsa{font-size:10.880000pt;}
.fsb{font-size:16.000000pt;}
.fs9{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fsc{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fsd{font-size:74.880000pt;}
.fs8{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:3.840000pt;}
.ya9{bottom:4.640000pt;}
.yb1{bottom:4.946667pt;}
.yac{bottom:4.960000pt;}
.yb5{bottom:5.106667pt;}
.y30{bottom:5.120000pt;}
.y162{bottom:5.426667pt;}
.yd4{bottom:5.440000pt;}
.yaf{bottom:5.626667pt;}
.yda{bottom:5.920000pt;}
.ydc{bottom:6.080000pt;}
.y15c{bottom:6.546667pt;}
.ye4{bottom:6.560000pt;}
.ybb{bottom:6.706667pt;}
.ya8{bottom:7.520000pt;}
.yd7{bottom:7.680000pt;}
.ye0{bottom:8.000000pt;}
.y14b{bottom:9.106667pt;}
.y147{bottom:9.600000pt;}
.y149{bottom:9.906667pt;}
.yd5{bottom:13.440000pt;}
.ya6{bottom:15.680000pt;}
.y46{bottom:16.160000pt;}
.y83{bottom:16.800000pt;}
.y4a{bottom:17.120000pt;}
.y2f{bottom:17.440000pt;}
.y3{bottom:17.600000pt;}
.yd3{bottom:21.280000pt;}
.y10e{bottom:21.440000pt;}
.y2e{bottom:24.160000pt;}
.y2{bottom:30.080000pt;}
.y2d{bottom:37.920000pt;}
.y1{bottom:41.440000pt;}
.y2c{bottom:51.680000pt;}
.y13a{bottom:63.840000pt;}
.y16c{bottom:65.440000pt;}
.y2b{bottom:65.600000pt;}
.y109{bottom:67.040000pt;}
.y181{bottom:67.840000pt;}
.yc4{bottom:72.320000pt;}
.y80{bottom:79.200000pt;}
.y2a{bottom:79.360000pt;}
.y203{bottom:79.680000pt;}
.y44{bottom:81.280000pt;}
.y139{bottom:81.440000pt;}
.y16b{bottom:82.240000pt;}
.y180{bottom:83.200000pt;}
.y108{bottom:84.640000pt;}
.y158{bottom:88.960000pt;}
.y1c0{bottom:89.120000pt;}
.yc3{bottom:89.920000pt;}
.y202{bottom:92.000000pt;}
.y29{bottom:93.120000pt;}
.y7f{bottom:96.800000pt;}
.y43{bottom:98.880000pt;}
.y138{bottom:99.040000pt;}
.y1bf{bottom:101.440000pt;}
.y107{bottom:102.240000pt;}
.y157{bottom:106.560000pt;}
.y28{bottom:106.880000pt;}
.yc2{bottom:107.200000pt;}
.y201{bottom:108.320000pt;}
.y240{bottom:113.760000pt;}
.y17f{bottom:114.240000pt;}
.y7e{bottom:114.400000pt;}
.y16a{bottom:116.000000pt;}
.y42{bottom:116.640000pt;}
.y1be{bottom:117.600000pt;}
.y106{bottom:119.520000pt;}
.y200{bottom:120.480000pt;}
.y27{bottom:120.800000pt;}
.y156{bottom:124.160000pt;}
.yc1{bottom:125.120000pt;}
.y23f{bottom:125.920000pt;}
.y17e{bottom:129.600000pt;}
.y1bd{bottom:129.920000pt;}
.y7d{bottom:132.000000pt;}
.y169{bottom:132.832000pt;}
.y41{bottom:134.266667pt;}
.y137{bottom:134.426667pt;}
.y26{bottom:134.560000pt;}
.y1ff{bottom:136.826667pt;}
.y105{bottom:137.306667pt;}
.y23e{bottom:138.266667pt;}
.yc0{bottom:140.026667pt;}
.y155{bottom:141.786667pt;}
.y17d{bottom:144.986667pt;}
.y1bc{bottom:146.266667pt;}
.y25{bottom:148.320000pt;}
.y1fe{bottom:149.146667pt;}
.y7c{bottom:149.626667pt;}
.y168{bottom:149.786667pt;}
.y23d{bottom:150.586667pt;}
.y40{bottom:151.866667pt;}
.y136{bottom:152.026667pt;}
.ybf{bottom:152.346667pt;}
.y104{bottom:155.226667pt;}
.y1bb{bottom:158.426667pt;}
.y154{bottom:159.386667pt;}
.y17c{bottom:159.866667pt;}
.y24{bottom:162.080000pt;}
.y23c{bottom:162.746667pt;}
.ybe{bottom:164.506667pt;}
.y1fd{bottom:165.306667pt;}
.y167{bottom:166.586667pt;}
.y7b{bottom:167.386667pt;}
.y3f{bottom:169.466667pt;}
.y135{bottom:169.626667pt;}
.y1ba{bottom:170.746667pt;}
.y103{bottom:172.826667pt;}
.y23b{bottom:175.066667pt;}
.y17b{bottom:175.226667pt;}
.y23{bottom:176.000000pt;}
.ybd{bottom:176.826667pt;}
.y153{bottom:177.146667pt;}
.y1fc{bottom:177.626667pt;}
.y32{bottom:179.200000pt;}
.y7a{bottom:184.986667pt;}
.y3e{bottom:187.066667pt;}
.ybc{bottom:187.080000pt;}
.y134{bottom:187.226667pt;}
.y22{bottom:189.786667pt;}
.y1fb{bottom:189.946667pt;}
.y102{bottom:190.426667pt;}
.y17a{bottom:190.906667pt;}
.y152{bottom:194.746667pt;}
.y1b9{bottom:199.226667pt;}
.y23a{bottom:199.546667pt;}
.y166{bottom:200.346667pt;}
.y79{bottom:202.586667pt;}
.yba{bottom:202.920000pt;}
.y21{bottom:203.546667pt;}
.y3d{bottom:204.826667pt;}
.y1fa{bottom:206.106667pt;}
.y179{bottom:206.266667pt;}
.y101{bottom:208.026667pt;}
.y1b8{bottom:211.546667pt;}
.y151{bottom:212.346667pt;}
.y165{bottom:216.186667pt;}
.y20{bottom:217.306667pt;}
.y1f9{bottom:218.426667pt;}
.y239{bottom:219.386667pt;}
.y78{bottom:220.186667pt;}
.y178{bottom:221.306667pt;}
.yb9{bottom:222.120000pt;}
.y3c{bottom:222.426667pt;}
.y133{bottom:222.586667pt;}
.y100{bottom:225.786667pt;}
.y1b7{bottom:227.706667pt;}
.y150{bottom:229.946667pt;}
.y1f8{bottom:230.746667pt;}
.y1f{bottom:231.226667pt;}
.y164{bottom:233.146667pt;}
.y177{bottom:236.666667pt;}
.y77{bottom:237.786667pt;}
.yb8{bottom:237.960000pt;}
.y238{bottom:238.586667pt;}
.y163{bottom:238.760000pt;}
.y3b{bottom:240.026667pt;}
.y132{bottom:240.186667pt;}
.yff{bottom:243.386667pt;}
.y1e{bottom:244.986667pt;}
.y1f7{bottom:246.906667pt;}
.y14f{bottom:247.546667pt;}
.y176{bottom:251.866667pt;}
.yb7{bottom:254.120000pt;}
.y161{bottom:254.600000pt;}
.y76{bottom:255.546667pt;}
.y1b6{bottom:256.346667pt;}
.y3a{bottom:257.626667pt;}
.y131{bottom:257.786667pt;}
.y1d{bottom:258.746667pt;}
.y1f6{bottom:259.226667pt;}
.yfe{bottom:260.986667pt;}
.y14e{bottom:265.306667pt;}
.y1b5{bottom:268.506667pt;}
.y175{bottom:269.786667pt;}
.yb6{bottom:270.120000pt;}
.y160{bottom:271.400000pt;}
.y1c{bottom:272.506667pt;}
.y75{bottom:273.146667pt;}
.y39{bottom:275.226667pt;}
.y130{bottom:275.386667pt;}
.y1f5{bottom:275.546667pt;}
.yfd{bottom:278.586667pt;}
.y1b4{bottom:280.826667pt;}
.y14d{bottom:281.786667pt;}
.yb4{bottom:285.960000pt;}
.y1b{bottom:286.426667pt;}
.y15f{bottom:287.240000pt;}
.y174{bottom:287.386667pt;}
.y237{bottom:287.546667pt;}
.y1f4{bottom:287.706667pt;}
.y74{bottom:290.746667pt;}
.y38{bottom:292.826667pt;}
.y12f{bottom:292.986667pt;}
.yfc{bottom:296.186667pt;}
.y1b3{bottom:297.146667pt;}
.y236{bottom:299.706667pt;}
.y1a{bottom:300.186667pt;}
.y14c{bottom:300.506667pt;}
.yb3{bottom:302.120000pt;}
.y15e{bottom:303.080000pt;}
.y1f3{bottom:304.026667pt;}
.y173{bottom:304.986667pt;}
.y14a{bottom:306.280000pt;}
.y73{bottom:308.346667pt;}
.y1b2{bottom:309.306667pt;}
.y37{bottom:310.586667pt;}
.y12e{bottom:310.746667pt;}
.y19{bottom:313.946667pt;}
.y235{bottom:316.026667pt;}
.y1f2{bottom:316.346667pt;}
.yb2{bottom:317.960000pt;}
.y15d{bottom:319.080000pt;}
.y172{bottom:322.586667pt;}
.y1b1{bottom:325.626667pt;}
.y72{bottom:325.946667pt;}
.y18{bottom:327.706667pt;}
.y36{bottom:328.186667pt;}
.y12d{bottom:328.346667pt;}
.y1f1{bottom:328.506667pt;}
.y148{bottom:330.280000pt;}
.yfb{bottom:331.546667pt;}
.yb0{bottom:333.800000pt;}
.y15b{bottom:335.560000pt;}
.y1b0{bottom:337.946667pt;}
.y171{bottom:340.186667pt;}
.y234{bottom:340.506667pt;}
.ycd{bottom:343.386667pt;}
.y71{bottom:343.706667pt;}
.y1f0{bottom:344.826667pt;}
.y35{bottom:345.786667pt;}
.y12c{bottom:345.946667pt;}
.y17{bottom:347.226667pt;}
.yfa{bottom:349.146667pt;}
.yae{bottom:349.640000pt;}
.y1af{bottom:350.106667pt;}
.y146{bottom:356.706667pt;}
.y233{bottom:356.866667pt;}
.y1ef{bottom:357.186667pt;}
.y170{bottom:357.986667pt;}
.y31{bottom:358.426667pt;}
.ycc{bottom:361.026667pt;}
.y70{bottom:361.346667pt;}
.y34{bottom:363.106667pt;}
.y12b{bottom:363.586667pt;}
.y1ae{bottom:366.466667pt;}
.yad{bottom:366.626667pt;}
.yf9{bottom:366.786667pt;}
.y232{bottom:369.186667pt;}
.y1ee{bottom:369.346667pt;}
.y16f{bottom:375.586667pt;}
.ycb{bottom:378.626667pt;}
.y1ad{bottom:378.786667pt;}
.y6f{bottom:378.946667pt;}
.y33{bottom:381.026667pt;}
.y12a{bottom:381.186667pt;}
.y231{bottom:381.346667pt;}
.yab{bottom:382.466667pt;}
.yf8{bottom:384.386667pt;}
.y1ed{bottom:385.666667pt;}
.y145{bottom:388.546667pt;}
.y1ac{bottom:390.946667pt;}
.y16{bottom:393.186667pt;}
.y15a{bottom:396.226667pt;}
.y6e{bottom:396.546667pt;}
.y230{bottom:397.666667pt;}
.y1ec{bottom:397.986667pt;}
.yaa{bottom:398.306667pt;}
.y129{bottom:398.946667pt;}
.yf7{bottom:402.146667pt;}
.y1ab{bottom:403.266667pt;}
.y144{bottom:406.146667pt;}
.y16e{bottom:408.706667pt;}
.y22f{bottom:409.986667pt;}
.y1eb{bottom:410.146667pt;}
.y6d{bottom:414.146667pt;}
.ya5{bottom:414.946667pt;}
.y128{bottom:416.546667pt;}
.y1aa{bottom:419.586667pt;}
.yf6{bottom:419.746667pt;}
.y22e{bottom:422.146667pt;}
.y16d{bottom:423.746667pt;}
.y143{bottom:423.906667pt;}
.y1ea{bottom:426.466667pt;}
.ya7{bottom:431.426667pt;}
.y1a9{bottom:431.746667pt;}
.y6c{bottom:431.906667pt;}
.y127{bottom:434.146667pt;}
.yf5{bottom:437.346667pt;}
.y22d{bottom:438.466667pt;}
.y1e9{bottom:438.786667pt;}
.y142{bottom:441.506667pt;}
.y1a8{bottom:448.066667pt;}
.y6b{bottom:449.506667pt;}
.y22c{bottom:450.786667pt;}
.y126{bottom:451.746667pt;}
.yf4{bottom:454.946667pt;}
.ya4{bottom:459.106667pt;}
.y1a7{bottom:460.386667pt;}
.yca{bottom:466.786667pt;}
.y22b{bottom:466.946667pt;}
.y6a{bottom:467.106667pt;}
.y1e8{bottom:467.266667pt;}
.y125{bottom:469.346667pt;}
.yf3{bottom:472.546667pt;}
.ya3{bottom:476.386667pt;}
.y1a6{bottom:476.546667pt;}
.y141{bottom:476.706667pt;}
.y22a{bottom:479.266667pt;}
.y1e7{bottom:479.586667pt;}
.y69{bottom:484.706667pt;}
.y124{bottom:487.106667pt;}
.y1a5{bottom:488.866667pt;}
.yf2{bottom:490.306667pt;}
.ya2{bottom:494.306667pt;}
.y229{bottom:495.586667pt;}
.y1e6{bottom:495.746667pt;}
.y1a4{bottom:501.186667pt;}
.y68{bottom:502.306667pt;}
.y123{bottom:504.706667pt;}
.y228{bottom:507.746667pt;}
.yf1{bottom:507.906667pt;}
.y1e5{bottom:508.066667pt;}
.ya1{bottom:512.066667pt;}
.y1a3{bottom:517.346667pt;}
.y67{bottom:520.066667pt;}
.y122{bottom:522.306667pt;}
.y1e4{bottom:524.386667pt;}
.yf0{bottom:525.506667pt;}
.ya0{bottom:529.666667pt;}
.y227{bottom:536.386667pt;}
.y1e3{bottom:536.546667pt;}
.yc9{bottom:537.346667pt;}
.y66{bottom:537.666667pt;}
.y121{bottom:539.906667pt;}
.y1a2{bottom:541.986667pt;}
.yef{bottom:543.106667pt;}
.y9f{bottom:547.266667pt;}
.y226{bottom:548.546667pt;}
.y1e2{bottom:552.866667pt;}
.y159{bottom:554.946667pt;}
.y65{bottom:555.266667pt;}
.y120{bottom:557.506667pt;}
.y1a1{bottom:558.146667pt;}
.yee{bottom:560.706667pt;}
.y225{bottom:560.866667pt;}
.y9e{bottom:564.866667pt;}
.y1e1{bottom:565.186667pt;}
.y1a0{bottom:570.466667pt;}
.y64{bottom:572.866667pt;}
.y11f{bottom:575.266667pt;}
.y224{bottom:577.213333pt;}
.yed{bottom:578.493333pt;}
.y1e0{bottom:581.373333pt;}
.y140{bottom:582.173333pt;}
.y9d{bottom:582.493333pt;}
.y19f{bottom:582.813333pt;}
.y223{bottom:589.373333pt;}
.y63{bottom:590.493333pt;}
.y11e{bottom:592.893333pt;}
.y1df{bottom:593.693333pt;}
.yec{bottom:596.093333pt;}
.y19e{bottom:598.973333pt;}
.y9c{bottom:600.253333pt;}
.y222{bottom:601.693333pt;}
.y1de{bottom:606.013333pt;}
.yc8{bottom:607.933333pt;}
.y62{bottom:608.253333pt;}
.y11d{bottom:610.493333pt;}
.y19d{bottom:611.293333pt;}
.yeb{bottom:613.693333pt;}
.y9b{bottom:617.853333pt;}
.y221{bottom:618.013333pt;}
.y1dd{bottom:622.173333pt;}
.y19c{bottom:623.613333pt;}
.y61{bottom:625.853333pt;}
.y11c{bottom:628.093333pt;}
.y220{bottom:630.173333pt;}
.yea{bottom:631.293333pt;}
.y1dc{bottom:634.493333pt;}
.y9a{bottom:635.453333pt;}
.y19b{bottom:639.773333pt;}
.y60{bottom:643.453333pt;}
.y21f{bottom:646.493333pt;}
.y11b{bottom:646.813333pt;}
.ye9{bottom:648.893333pt;}
.y1db{bottom:650.813333pt;}
.y19a{bottom:652.093333pt;}
.y99{bottom:653.053333pt;}
.y21e{bottom:658.813333pt;}
.y5f{bottom:661.053333pt;}
.y1da{bottom:662.973333pt;}
.y11a{bottom:664.093333pt;}
.y199{bottom:664.413333pt;}
.ye8{bottom:666.653333pt;}
.y98{bottom:670.333333pt;}
.y13f{bottom:670.653333pt;}
.y21d{bottom:670.973333pt;}
.y119{bottom:676.413333pt;}
.yc7{bottom:678.333333pt;}
.y5e{bottom:678.653333pt;}
.y1d9{bottom:679.293333pt;}
.y198{bottom:680.573333pt;}
.ye7{bottom:681.373333pt;}
.y21c{bottom:687.293333pt;}
.y97{bottom:688.093333pt;}
.y13e{bottom:688.413333pt;}
.y1d8{bottom:691.613333pt;}
.y197{bottom:692.893333pt;}
.y118{bottom:693.213333pt;}
.ye6{bottom:693.693333pt;}
.y5d{bottom:696.413333pt;}
.y117{bottom:698.973333pt;}
.y21b{bottom:699.613333pt;}
.y96{bottom:706.013333pt;}
.y1d7{bottom:707.773333pt;}
.y196{bottom:709.213333pt;}
.y21a{bottom:711.773333pt;}
.y5c{bottom:714.013333pt;}
.y116{bottom:714.813333pt;}
.y1d6{bottom:720.093333pt;}
.y195{bottom:721.373333pt;}
.ye5{bottom:722.813333pt;}
.y95{bottom:723.613333pt;}
.y219{bottom:728.093333pt;}
.ye3{bottom:728.413333pt;}
.y115{bottom:730.973333pt;}
.y5b{bottom:731.613333pt;}
.y194{bottom:733.693333pt;}
.y1d5{bottom:736.253333pt;}
.y218{bottom:740.253333pt;}
.y94{bottom:741.213333pt;}
.ye2{bottom:747.293333pt;}
.y1d4{bottom:748.573333pt;}
.y114{bottom:748.893333pt;}
.y5a{bottom:749.213333pt;}
.y193{bottom:750.013333pt;}
.y217{bottom:752.573333pt;}
.y15{bottom:756.893333pt;}
.y93{bottom:758.493333pt;}
.y13d{bottom:758.813333pt;}
.y192{bottom:762.173333pt;}
.y113{bottom:764.733333pt;}
.y1d3{bottom:764.893333pt;}
.ye1{bottom:765.053333pt;}
.y59{bottom:766.813333pt;}
.y216{bottom:768.893333pt;}
.y14{bottom:773.693333pt;}
.y92{bottom:776.573333pt;}
.y1d2{bottom:777.053333pt;}
.y191{bottom:778.493333pt;}
.y215{bottom:781.053333pt;}
.y112{bottom:781.693333pt;}
.ydf{bottom:782.973333pt;}
.yc6{bottom:784.253333pt;}
.y13{bottom:784.573333pt;}
.y1d1{bottom:789.373333pt;}
.y190{bottom:790.813333pt;}
.y91{bottom:794.173333pt;}
.y12{bottom:795.933333pt;}
.y214{bottom:797.413333pt;}
.y111{bottom:799.493333pt;}
.y58{bottom:802.213333pt;}
.y18f{bottom:803.013333pt;}
.yde{bottom:805.093333pt;}
.y1d0{bottom:805.733333pt;}
.y213{bottom:809.733333pt;}
.y11{bottom:810.053333pt;}
.y90{bottom:811.813333pt;}
.y110{bottom:817.413333pt;}
.y1cf{bottom:817.893333pt;}
.y18e{bottom:818.053333pt;}
.y10{bottom:818.373333pt;}
.y57{bottom:819.813333pt;}
.ydd{bottom:822.053333pt;}
.y212{bottom:825.893333pt;}
.y8f{bottom:829.413333pt;}
.yf{bottom:830.853333pt;}
.y1ce{bottom:834.213333pt;}
.y10f{bottom:835.333333pt;}
.y18d{bottom:835.493333pt;}
.y56{bottom:837.413333pt;}
.y211{bottom:838.213333pt;}
.ydb{bottom:839.813333pt;}
.y1cd{bottom:846.533333pt;}
.y8e{bottom:847.013333pt;}
.ye{bottom:851.173333pt;}
.y210{bottom:854.533333pt;}
.y55{bottom:855.013333pt;}
.y18c{bottom:855.333333pt;}
.yd9{bottom:857.733333pt;}
.y1cc{bottom:858.693333pt;}
.y8d{bottom:864.773333pt;}
.y20f{bottom:866.693333pt;}
.yd{bottom:871.653333pt;}
.y54{bottom:872.773333pt;}
.y10d{bottom:873.093333pt;}
.y1cb{bottom:875.013333pt;}
.yd8{bottom:875.653333pt;}
.y18b{bottom:878.053333pt;}
.y20e{bottom:879.013333pt;}
.y8c{bottom:882.053333pt;}
.y13c{bottom:882.373333pt;}
.y1ca{bottom:887.333333pt;}
.yc{bottom:889.573333pt;}
.y53{bottom:890.373333pt;}
.yd6{bottom:891.493333pt;}
.y18a{bottom:893.253333pt;}
.y20d{bottom:895.333333pt;}
.y1c9{bottom:899.493333pt;}
.y8b{bottom:899.653333pt;}
.y13b{bottom:899.973333pt;}
.y20c{bottom:907.493333pt;}
.y52{bottom:907.973333pt;}
.y189{bottom:908.613333pt;}
.y10c{bottom:910.373333pt;}
.yd2{bottom:913.413333pt;}
.y1c8{bottom:915.813333pt;}
.y8a{bottom:917.573333pt;}
.yb{bottom:920.293333pt;}
.y20b{bottom:923.813333pt;}
.y188{bottom:924.293333pt;}
.y51{bottom:925.573333pt;}
.y10b{bottom:925.733333pt;}
.y1c7{bottom:928.133333pt;}
.y89{bottom:935.173333pt;}
.y20a{bottom:936.133333pt;}
.y187{bottom:939.173333pt;}
.y10a{bottom:942.853333pt;}
.y50{bottom:943.173333pt;}
.y1c6{bottom:944.293333pt;}
.ya{bottom:951.013333pt;}
.y209{bottom:952.293333pt;}
.y88{bottom:952.933333pt;}
.y186{bottom:954.533333pt;}
.y1c5{bottom:956.613333pt;}
.yc5{bottom:960.613333pt;}
.y4f{bottom:960.933333pt;}
.y208{bottom:964.613333pt;}
.y1c4{bottom:968.933333pt;}
.yd1{bottom:970.213333pt;}
.y87{bottom:970.533333pt;}
.y207{bottom:976.933333pt;}
.y4e{bottom:978.533333pt;}
.y9{bottom:978.853333pt;}
.y1c3{bottom:985.093333pt;}
.y185{bottom:985.573333pt;}
.y86{bottom:987.813333pt;}
.yd0{bottom:988.133333pt;}
.y45{bottom:989.093333pt;}
.y206{bottom:993.093333pt;}
.y8{bottom:993.733333pt;}
.y4d{bottom:996.133333pt;}
.y1c2{bottom:997.413333pt;}
.y184{bottom:1000.613333pt;}
.y85{bottom:1005.413333pt;}
.ycf{bottom:1005.733333pt;}
.y4c{bottom:1013.733333pt;}
.y183{bottom:1015.973333pt;}
.y205{bottom:1021.760000pt;}
.y84{bottom:1023.040000pt;}
.yce{bottom:1023.360000pt;}
.y1c1{bottom:1025.920000pt;}
.y7{bottom:1027.520000pt;}
.y4b{bottom:1031.360000pt;}
.y182{bottom:1031.520000pt;}
.y204{bottom:1033.920000pt;}
.y6{bottom:1037.760000pt;}
.y82{bottom:1039.520000pt;}
.y5{bottom:1045.280000pt;}
.y49{bottom:1047.520000pt;}
.y81{bottom:1056.640000pt;}
.y4{bottom:1064.480000pt;}
.y48{bottom:1064.640000pt;}
.h6{height:5.022500pt;}
.hf{height:10.678125pt;}
.h1b{height:15.826667pt;}
.h2d{height:15.840000pt;}
.h1c{height:15.986667pt;}
.h11{height:16.125000pt;}
.h1e{height:16.146667pt;}
.h2e{height:16.160000pt;}
.h34{height:16.786667pt;}
.h25{height:16.946667pt;}
.h2c{height:16.960000pt;}
.h1d{height:16.978667pt;}
.h24{height:17.746667pt;}
.h28{height:17.760000pt;}
.h2b{height:17.780000pt;}
.h23{height:17.906667pt;}
.h27{height:17.920000pt;}
.h29{height:18.880000pt;}
.h1f{height:19.186667pt;}
.h33{height:19.538667pt;}
.h21{height:21.266667pt;}
.h1a{height:21.586667pt;}
.h26{height:22.100000pt;}
.h32{height:23.986667pt;}
.h14{height:24.626667pt;}
.h30{height:25.746667pt;}
.h31{height:25.778667pt;}
.he{height:26.368125pt;}
.h2a{height:26.381250pt;}
.hd{height:32.250000pt;}
.h20{height:33.266667pt;}
.h3{height:36.431250pt;}
.h19{height:38.066667pt;}
.h15{height:38.153511pt;}
.h7{height:42.084375pt;}
.h4{height:43.215000pt;}
.h37{height:44.941250pt;}
.h2{height:47.109375pt;}
.h2f{height:47.621250pt;}
.h8{height:48.375000pt;}
.h13{height:49.336416pt;}
.h17{height:52.108438pt;}
.hb{height:52.134375pt;}
.h22{height:52.526250pt;}
.h9{height:53.535000pt;}
.h35{height:57.787500pt;}
.h18{height:58.238750pt;}
.hc{height:59.150000pt;}
.h12{height:59.340000pt;}
.h16{height:62.812500pt;}
.h5{height:64.500000pt;}
.h36{height:75.465000pt;}
.ha{height:107.715000pt;}
.h10{height:358.426667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w10{width:41.946667pt;}
.we{width:48.626667pt;}
.w13{width:48.946667pt;}
.wc{width:51.666667pt;}
.w14{width:54.066667pt;}
.wf{width:54.226667pt;}
.w12{width:55.378667pt;}
.wd{width:55.538667pt;}
.w11{width:59.520000pt;}
.w1a{width:65.146667pt;}
.w17{width:66.066667pt;}
.w1b{width:69.600000pt;}
.w21{width:71.186667pt;}
.w18{width:72.018667pt;}
.w22{width:73.466667pt;}
.w19{width:75.186667pt;}
.w16{width:77.952000pt;}
.w7{width:84.946667pt;}
.w20{width:87.538667pt;}
.wa{width:89.466667pt;}
.w1e{width:89.952000pt;}
.w8{width:90.098667pt;}
.w1d{width:90.240000pt;}
.w3{width:90.426667pt;}
.w9{width:90.546667pt;}
.w1f{width:94.706667pt;}
.w1c{width:144.657333pt;}
.w4{width:206.266667pt;}
.w15{width:222.097333pt;}
.w5{width:291.097333pt;}
.wb{width:341.657333pt;}
.w6{width:355.093333pt;}
.w2{width:569.680000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.xb{left:-32.800000pt;}
.xa{left:-17.600000pt;}
.x0{left:0.000000pt;}
.x11{left:7.190667pt;}
.x9{left:9.466667pt;}
.x22{left:10.880000pt;}
.x26{left:12.306667pt;}
.x27{left:14.066667pt;}
.x28{left:15.346667pt;}
.x1e{left:16.786667pt;}
.x20{left:18.546667pt;}
.x2f{left:20.306667pt;}
.x30{left:22.080000pt;}
.x8{left:23.866667pt;}
.x31{left:24.960000pt;}
.x1a{left:25.906667pt;}
.x19{left:28.946667pt;}
.x1b{left:30.386667pt;}
.x14{left:31.986667pt;}
.x1c{left:32.946667pt;}
.x16{left:34.386667pt;}
.x38{left:36.186667pt;}
.x7{left:37.786667pt;}
.x6{left:52.186667pt;}
.x13{left:60.946667pt;}
.x5{left:69.466667pt;}
.x2{left:72.032000pt;}
.xc{left:96.032000pt;}
.x39{left:140.666667pt;}
.x32{left:214.786667pt;}
.x29{left:294.146667pt;}
.x33{left:305.026667pt;}
.xe{left:319.746667pt;}
.x10{left:341.506667pt;}
.x12{left:363.146667pt;}
.x2a{left:372.106667pt;}
.xf{left:386.013333pt;}
.x1{left:386.973333pt;}
.x34{left:394.986667pt;}
.x3{left:396.093333pt;}
.x1d{left:413.706667pt;}
.x2b{left:438.186667pt;}
.x15{left:448.106667pt;}
.x1f{left:465.386667pt;}
.x35{left:489.706667pt;}
.x2c{left:510.213333pt;}
.x21{left:520.933333pt;}
.xd{left:524.773333pt;}
.x17{left:538.213333pt;}
.x23{left:569.573333pt;}
.x36{left:577.253333pt;}
.x2d{left:585.413333pt;}
.x24{left:623.813333pt;}
.x18{left:628.773333pt;}
.x4{left:641.733333pt;}
.x37{left:648.453333pt;}
.x2e{left:650.560000pt;}
.x25{left:665.760000pt;}
}




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