
    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_038b6a26deb78b85de425b07.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936035;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_a07b701c6ae2e38297e9b7a7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_4cacb4e0bd3e481ccaf19a87.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_abdbe1d91ae04678a69b0c12.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_13daffd74b4092617b00e00b.woff2')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_32dc270551f3200b17c8afae.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.682617;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_6be86f68b822968f9b8d17e4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_294eb6a9f794e362d40f80e2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.939941;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_c2f9aa186a4281ebbabd260e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.722656;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_6c94eb27487802cda57a38e6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.895996;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_b5a3fd7ede9dcfb717724d82.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.927246;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_6630d15a815a3df7aa79349d.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_eb6285344579a94b623ea890.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.936035;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_419bc9e37f24e41b7dd9c853.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.763184;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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.v5{vertical-align:38.023800px;}
.v4{vertical-align:52.815000px;}
.v3{vertical-align:59.217600px;}
.ls29{letter-spacing:-1.683360px;}
.ls39{letter-spacing:-0.541080px;}
.ls24{letter-spacing:-0.360720px;}
.ls15{letter-spacing:-0.300600px;}
.ls25{letter-spacing:-0.240480px;}
.ls13{letter-spacing:-0.180360px;}
.ls2{letter-spacing:-0.180000px;}
.ls32{letter-spacing:-0.162000px;}
.ls31{letter-spacing:-0.131760px;}
.ls11{letter-spacing:-0.120240px;}
.ls10{letter-spacing:-0.119880px;}
.ls34{letter-spacing:-0.108000px;}
.ls6{letter-spacing:-0.095760px;}
.ls1b{letter-spacing:-0.090000px;}
.ls12{letter-spacing:-0.072000px;}
.ls41{letter-spacing:-0.065880px;}
.ls1a{letter-spacing:-0.060120px;}
.ls33{letter-spacing:-0.054000px;}
.ls1{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.049680px;}
.ls8{letter-spacing:0.060120px;}
.ls1d{letter-spacing:0.064800px;}
.ls1c{letter-spacing:0.065880px;}
.ls40{letter-spacing:0.066000px;}
.ls3d{letter-spacing:0.072000px;}
.ls26{letter-spacing:0.072144px;}
.lsf{letter-spacing:0.078156px;}
.ls3a{letter-spacing:0.084168px;}
.lsc{letter-spacing:0.090000px;}
.ls2c{letter-spacing:0.090180px;}
.ls18{letter-spacing:0.102204px;}
.ls35{letter-spacing:0.108216px;}
.ls3e{letter-spacing:0.118584px;}
.ls2b{letter-spacing:0.119880px;}
.ls5{letter-spacing:0.120240px;}
.ls19{letter-spacing:0.126252px;}
.ls9{letter-spacing:0.136800px;}
.ls36{letter-spacing:0.138276px;}
.ls20{letter-spacing:0.144936px;}
.ls7{letter-spacing:0.173880px;}
.ls14{letter-spacing:0.180360px;}
.ls2e{letter-spacing:0.239760px;}
.ls42{letter-spacing:0.263520px;}
.ls2d{letter-spacing:0.383040px;}
.ls17{letter-spacing:0.450000px;}
.ls4{letter-spacing:0.450900px;}
.ls3c{letter-spacing:5.976000px;}
.ls2f{letter-spacing:13.500000px;}
.ls1f{letter-spacing:34.587000px;}
.ls37{letter-spacing:38.368584px;}
.lsb{letter-spacing:55.274760px;}
.lsd{letter-spacing:55.310400px;}
.lse{letter-spacing:63.546840px;}
.ls1e{letter-spacing:63.566640px;}
.lsa{letter-spacing:63.571320px;}
.ls22{letter-spacing:63.907560px;}
.ls21{letter-spacing:63.932040px;}
.ls23{letter-spacing:72.925560px;}
.ls3f{letter-spacing:80.320320px;}
.ls3b{letter-spacing:94.945800px;}
.ls30{letter-spacing:112.328880px;}
.ls38{letter-spacing:117.615600px;}
.ls0{letter-spacing:847.271160px;}
.ls27{letter-spacing:847.286640px;}
.ls28{letter-spacing:847.297800px;}
.ls2a{letter-spacing:1522.727640px;}
.ls3{letter-spacing:1550.785320px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(51,51,51),0 0.015em rgb(51,51,51),0.015em 0 rgb(51,51,51),0 -0.015em  rgb(51,51,51);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(51,51,51);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1f{word-spacing:-60.120000px;}
.ws0{word-spacing:-49.860000px;}
.ws3b{word-spacing:-35.230320px;}
.ws36{word-spacing:-33.566400px;}
.ws15{word-spacing:-25.020000px;}
.ws16{word-spacing:-24.840000px;}
.ws2f{word-spacing:-18.380520px;}
.ws3a{word-spacing:-16.536000px;}
.ws37{word-spacing:-16.535880px;}
.ws38{word-spacing:-16.470000px;}
.ws39{word-spacing:-16.404120px;}
.ws2b{word-spacing:-16.338240px;}
.ws4{word-spacing:-15.480900px;}
.ws26{word-spacing:-15.210360px;}
.ws1e{word-spacing:-15.090120px;}
.wse{word-spacing:-15.030000px;}
.ws33{word-spacing:-14.969880px;}
.wsc{word-spacing:-14.909760px;}
.wsf{word-spacing:-14.849640px;}
.ws24{word-spacing:-14.789520px;}
.wsd{word-spacing:-14.729400px;}
.ws2a{word-spacing:-14.669280px;}
.ws5{word-spacing:-13.707360px;}
.ws20{word-spacing:-13.587120px;}
.ws34{word-spacing:-13.346640px;}
.ws28{word-spacing:-12.353040px;}
.ws29{word-spacing:-11.970000px;}
.ws27{word-spacing:-11.903760px;}
.ws1d{word-spacing:-9.720000px;}
.ws35{word-spacing:-0.432000px;}
.ws8{word-spacing:-0.360720px;}
.ws22{word-spacing:-0.300600px;}
.ws19{word-spacing:-0.270000px;}
.ws9{word-spacing:-0.240480px;}
.ws41{word-spacing:-0.210000px;}
.ws25{word-spacing:-0.180360px;}
.ws18{word-spacing:-0.180000px;}
.ws14{word-spacing:-0.120240px;}
.ws1c{word-spacing:-0.090000px;}
.ws21{word-spacing:-0.065880px;}
.wsb{word-spacing:-0.060120px;}
.ws3f{word-spacing:-0.030000px;}
.ws2{word-spacing:0.000000px;}
.wsa{word-spacing:0.060120px;}
.ws3c{word-spacing:0.065880px;}
.ws40{word-spacing:0.066000px;}
.ws1b{word-spacing:0.090000px;}
.ws6{word-spacing:0.095760px;}
.ws43{word-spacing:0.120000px;}
.ws1{word-spacing:0.120240px;}
.ws3e{word-spacing:0.131760px;}
.ws7{word-spacing:0.173880px;}
.ws3{word-spacing:0.180000px;}
.ws1a{word-spacing:0.180360px;}
.ws3d{word-spacing:0.197640px;}
.ws12{word-spacing:0.216000px;}
.ws11{word-spacing:0.240480px;}
.ws2d{word-spacing:0.270000px;}
.ws13{word-spacing:0.300600px;}
.ws2c{word-spacing:0.324000px;}
.ws31{word-spacing:0.329400px;}
.ws10{word-spacing:0.359640px;}
.ws23{word-spacing:0.360720px;}
.ws17{word-spacing:0.420840px;}
.ws32{word-spacing:0.461160px;}
.ws42{word-spacing:0.528000px;}
.ws30{word-spacing:0.541080px;}
.ws2e{word-spacing:0.702000px;}
._2{margin-left:-14.375448px;}
._3{margin-left:-13.359600px;}
._7{margin-left:-10.141632px;}
._5{margin-left:-7.256520px;}
._6{margin-left:-4.685112px;}
._4{margin-left:-2.810808px;}
._1{margin-left:-1.286712px;}
._0{width:1.080000px;}
._8{width:2.814912px;}
._9{width:70.220160px;}
.fc8{color:rgb(20,0,0);}
.fc5{color:rgb(56,57,57);}
.fc4{color:rgb(17,85,204);}
.fc3{color:rgb(59,111,182);}
.fc2{color:rgb(112,115,114);}
.fc1{color:rgb(24,151,76);}
.fc9{color:rgb(118,118,118);}
.fc7{color:rgb(51,51,51);}
.fc6{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs4{font-size:47.880000px;}
.fsa{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs3{font-size:65.880000px;}
.fs6{font-size:72.000000px;}
.fs9{font-size:78.120000px;}
.fs7{font-size:90.000000px;}
.fs1{font-size:119.880000px;}
.fs5{font-size:173.880000px;}
.fs2{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y94{bottom:3.240000px;}
.y226{bottom:3.780000px;}
.y13{bottom:4.500000px;}
.y9e{bottom:9.720000px;}
.y225{bottom:22.500000px;}
.y11{bottom:23.850000px;}
.y7{bottom:26.370000px;}
.y14{bottom:33.030000px;}
.yf{bottom:40.500000px;}
.y3{bottom:45.270000px;}
.ye{bottom:46.800000px;}
.yc{bottom:62.910000px;}
.y12{bottom:70.650000px;}
.y208{bottom:71.280000px;}
.y5{bottom:85.860000px;}
.y10{bottom:87.300000px;}
.ya2{bottom:113.490000px;}
.y1a8{bottom:119.674980px;}
.y170{bottom:124.457040px;}
.yd3{bottom:127.800000px;}
.ya1{bottom:130.676040px;}
.y96{bottom:132.750000px;}
.y1a7{bottom:136.688940px;}
.y16f{bottom:142.733520px;}
.y215{bottom:144.795420px;}
.yd2{bottom:146.160000px;}
.ya0{bottom:151.470000px;}
.y1a6{bottom:155.055600px;}
.y4e{bottom:158.008320px;}
.y16e{bottom:161.100180px;}
.y214{bottom:161.809380px;}
.yd1{bottom:164.430000px;}
.y9f{bottom:164.700000px;}
.y1e1{bottom:164.771280px;}
.y1a5{bottom:172.069560px;}
.y4d{bottom:175.022280px;}
.y213{bottom:178.823340px;}
.y16d{bottom:179.466840px;}
.y1e0{bottom:181.785240px;}
.yd0{bottom:182.754360px;}
.y116{bottom:188.708760px;}
.y1a4{bottom:190.346040px;}
.y4c{bottom:193.388940px;}
.y77{bottom:195.746040px;}
.y212{bottom:197.190000px;}
.y16c{bottom:197.833500px;}
.y1df{bottom:198.799200px;}
.ycf{bottom:199.768320px;}
.y115{bottom:205.722720px;}
.y1a3{bottom:207.360000px;}
.y4b{bottom:210.312720px;}
.y76{bottom:212.760000px;}
.y211{bottom:215.010000px;}
.y1de{bottom:215.813160px;}
.y16b{bottom:216.109980px;}
.yce{bottom:216.782280px;}
.y114{bottom:224.089380px;}
.y4a{bottom:228.679380px;}
.y75{bottom:229.763340px;}
.y1dd{bottom:232.827120px;}
.y210{bottom:234.090000px;}
.y16a{bottom:234.476640px;}
.ycd{bottom:235.148940px;}
.y95{bottom:237.060000px;}
.y232{bottom:237.978000px;}
.y1a2{bottom:240.473070px;}
.y113{bottom:242.456040px;}
.y9d{bottom:246.780000px;}
.y49{bottom:247.046040px;}
.y74{bottom:248.130000px;}
.y1dc{bottom:249.841080px;}
.y169{bottom:251.490600px;}
.ycc{bottom:252.162900px;}
.y20f{bottom:253.255140px;}
.y231{bottom:257.532000px;}
.y112{bottom:259.470000px;}
.y9c{bottom:263.790000px;}
.y48{bottom:264.060000px;}
.y1db{bottom:264.330000px;}
.y73{bottom:265.133340px;}
.y142{bottom:267.383340px;}
.y168{bottom:269.857260px;}
.ycb{bottom:270.529560px;}
.y20e{bottom:270.720000px;}
.y1af{bottom:276.107250px;}
.y230{bottom:277.086000px;}
.y1b2{bottom:277.140150px;}
.y111{bottom:277.492500px;}
.y9b{bottom:282.060000px;}
.y47{bottom:282.420000px;}
.y72{bottom:283.500000px;}
.y167{bottom:286.871220px;}
.yca{bottom:287.543520px;}
.y20d{bottom:288.986040px;}
.y1b1{bottom:290.910150px;}
.y110{bottom:294.506460px;}
.y22f{bottom:296.640000px;}
.y141{bottom:298.796040px;}
.y9a{bottom:299.070000px;}
.y1e2{bottom:299.216700px;}
.y46{bottom:300.720600px;}
.y71{bottom:301.770000px;}
.y166{bottom:303.885180px;}
.y1b0{bottom:304.680150px;}
.yc9{bottom:305.820000px;}
.y20c{bottom:306.000000px;}
.y10f{bottom:312.873120px;}
.y140{bottom:315.810000px;}
.y99{bottom:317.430000px;}
.y70{bottom:318.780000px;}
.y45{bottom:318.997080px;}
.y207{bottom:319.770000px;}
.y165{bottom:322.251840px;}
.y10e{bottom:331.239780px;}
.y22e{bottom:331.740000px;}
.y13f{bottom:332.820000px;}
.y98{bottom:334.440000px;}
.y6f{bottom:335.778120px;}
.y44{bottom:336.011040px;}
.y20b{bottom:340.020000px;}
.y164{bottom:340.528320px;}
.yc8{bottom:340.920000px;}
.y1a1{bottom:342.900000px;}
.y10d{bottom:349.606440px;}
.y13e{bottom:351.990000px;}
.y6e{bottom:352.792080px;}
.y97{bottom:352.800000px;}
.y43{bottom:354.377700px;}
.y20a{bottom:357.030000px;}
.y163{bottom:358.894980px;}
.y1da{bottom:364.500000px;}
.y10c{bottom:366.620400px;}
.y22d{bottom:367.764570px;}
.y6d{bottom:369.806040px;}
.y13d{bottom:371.070000px;}
.y42{bottom:372.744360px;}
.y1a0{bottom:373.672710px;}
.y209{bottom:374.040000px;}
.y162{bottom:377.261640px;}
.y1d9{bottom:383.212260px;}
.y10b{bottom:384.896880px;}
.y93{bottom:384.930000px;}
.y6c{bottom:386.820000px;}
.y22c{bottom:387.288540px;}
.yc7{bottom:389.696040px;}
.y41{bottom:389.758320px;}
.y13c{bottom:390.228480px;}
.y161{bottom:395.628300px;}
.y1d8{bottom:400.226220px;}
.y10a{bottom:403.263540px;}
.y206{bottom:404.820000px;}
.yc6{bottom:406.710000px;}
.y13b{bottom:407.693340px;}
.y40{bottom:408.124980px;}
.y22b{bottom:408.165210px;}
.y1ae{bottom:410.263200px;}
.y6b{bottom:410.580000px;}
.y160{bottom:413.994960px;}
.y1d7{bottom:417.150000px;}
.y109{bottom:421.630200px;}
.yc5{bottom:425.066040px;}
.y3f{bottom:425.138940px;}
.y205{bottom:425.746620px;}
.y13a{bottom:426.060000px;}
.y92{bottom:426.870000px;}
.y22a{bottom:427.689180px;}
.y15f{bottom:432.271440px;}
.y1d6{bottom:435.506040px;}
.y108{bottom:439.996860px;}
.y6a{bottom:440.280000px;}
.yc4{bottom:442.080000px;}
.y204{bottom:442.670400px;}
.y3e{bottom:443.415420px;}
.y139{bottom:443.675160px;}
.y91{bottom:445.230000px;}
.y229{bottom:447.303330px;}
.y15e{bottom:450.638100px;}
.y1d5{bottom:452.520000px;}
.y107{bottom:458.273340px;}
.y203{bottom:459.684360px;}
.y3d{bottom:460.429380px;}
.y138{bottom:461.951640px;}
.y90{bottom:463.582080px;}
.y69{bottom:464.670000px;}
.y15d{bottom:467.652060px;}
.y228{bottom:468.180000px;}
.y1ad{bottom:469.378950px;}
.y1d4{bottom:469.526040px;}
.y106{bottom:476.640000px;}
.y202{bottom:476.698320px;}
.y3c{bottom:477.443340px;}
.y137{bottom:478.965600px;}
.y8f{bottom:480.596040px;}
.y68{bottom:483.026040px;}
.yc3{bottom:484.470000px;}
.y15c{bottom:486.018720px;}
.y1d3{bottom:486.540000px;}
.y201{bottom:493.712280px;}
.y105{bottom:495.006660px;}
.y3b{bottom:495.810000px;}
.y136{bottom:497.332260px;}
.y8e{bottom:497.610000px;}
.y67{bottom:500.040000px;}
.y15b{bottom:503.032680px;}
.yc2{bottom:503.190000px;}
.y227{bottom:503.280000px;}
.y1d2{bottom:503.550000px;}
.y200{bottom:512.078940px;}
.y104{bottom:513.373320px;}
.y135{bottom:514.346220px;}
.y8d{bottom:515.880000px;}
.y3a{bottom:517.770000px;}
.y66{bottom:518.392080px;}
.yc1{bottom:520.200000px;}
.y1d1{bottom:520.507260px;}
.y15a{bottom:521.399340px;}
.y1a9{bottom:528.495000px;}
.y1ff{bottom:529.092900px;}
.y1ac{bottom:529.536750px;}
.y134{bottom:531.360180px;}
.y103{bottom:531.739980px;}
.y8c{bottom:534.240000px;}
.y65{bottom:535.406040px;}
.y1d0{bottom:537.521220px;}
.yc0{bottom:538.560000px;}
.y159{bottom:539.675820px;}
.y1ab{bottom:543.306750px;}
.y1fe{bottom:546.106860px;}
.y133{bottom:548.374140px;}
.y102{bottom:550.016460px;}
.y64{bottom:552.420000px;}
.y8b{bottom:552.600000px;}
.y224{bottom:554.490000px;}
.y1cf{bottom:554.535180px;}
.ybf{bottom:556.901640px;}
.y1aa{bottom:557.076750px;}
.y158{bottom:558.042480px;}
.y39{bottom:558.966420px;}
.y1fd{bottom:563.120820px;}
.y132{bottom:566.650620px;}
.y101{bottom:568.383120px;}
.y8a{bottom:569.610000px;}
.y63{bottom:570.682080px;}
.y1ce{bottom:571.549140px;}
.ybe{bottom:573.915600px;}
.y38{bottom:575.980380px;}
.y157{bottom:576.409140px;}
.y1fc{bottom:580.134780px;}
.y19f{bottom:580.230000px;}
.y131{bottom:585.017280px;}
.y89{bottom:586.620000px;}
.y100{bottom:586.749780px;}
.y62{bottom:587.696040px;}
.y1cd{bottom:589.915800px;}
.ybd{bottom:592.192080px;}
.y37{bottom:592.994340px;}
.y156{bottom:593.423100px;}
.y1fb{bottom:597.148740px;}
.y19e{bottom:600.210000px;}
.y130{bottom:603.383940px;}
.y88{bottom:603.626040px;}
.yff{bottom:603.763740px;}
.y61{bottom:604.710000px;}
.y1cc{bottom:608.282460px;}
.ybc{bottom:609.206040px;}
.y36{bottom:610.008300px;}
.y155{bottom:610.437060px;}
.y1fa{bottom:614.162700px;}
.y19d{bottom:620.086320px;}
.y87{bottom:620.640000px;}
.yfe{bottom:620.777700px;}
.y12f{bottom:621.750600px;}
.y1cb{bottom:625.206240px;}
.ybb{bottom:626.220000px;}
.y35{bottom:626.932080px;}
.y154{bottom:627.451020px;}
.y60{bottom:628.470000px;}
.y223{bottom:629.730000px;}
.y1f9{bottom:631.176660px;}
.y86{bottom:639.000000px;}
.yfd{bottom:639.144360px;}
.y12e{bottom:640.117260px;}
.y19c{bottom:640.151370px;}
.y1ca{bottom:642.220200px;}
.y34{bottom:643.946040px;}
.yba{bottom:644.580000px;}
.y153{bottom:645.817680px;}
.y1f8{bottom:648.190620px;}
.y19b{bottom:657.165330px;}
.y85{bottom:657.265860px;}
.yfc{bottom:657.420840px;}
.y12d{bottom:658.393740px;}
.y20{bottom:658.522080px;}
.y1c9{bottom:659.234160px;}
.y33{bottom:660.960000px;}
.yb9{bottom:661.590000px;}
.y152{bottom:664.094160px;}
.y1f7{bottom:666.557280px;}
.y188{bottom:669.127860px;}
.yea{bottom:671.850000px;}
.y222{bottom:672.750360px;}
.y5f{bottom:673.826040px;}
.y19a{bottom:674.179290px;}
.y84{bottom:674.370000px;}
.y1f{bottom:675.536040px;}
.yfb{bottom:675.787500px;}
.y1c8{bottom:676.248120px;}
.y12c{bottom:676.760400px;}
.y32{bottom:677.970000px;}
.yb8{bottom:681.660000px;}
.y151{bottom:682.460820px;}
.y1f6{bottom:683.571240px;}
.y187{bottom:686.141820px;}
.y5e{bottom:690.840000px;}
.y199{bottom:691.193250px;}
.y1e{bottom:692.550000px;}
.y1c7{bottom:693.262080px;}
.yfa{bottom:694.154160px;}
.y221{bottom:694.260150px;}
.y12b{bottom:695.127060px;}
.y31{bottom:696.330000px;}
.yb7{bottom:700.376040px;}
.y1f5{bottom:700.585200px;}
.y150{bottom:700.827480px;}
.y186{bottom:703.155780px;}
.ye9{bottom:703.248120px;}
.y5d{bottom:707.850000px;}
.y198{bottom:709.469730px;}
.y1c6{bottom:710.276040px;}
.yf9{bottom:712.520820px;}
.y12a{bottom:713.493720px;}
.y30{bottom:714.690000px;}
.y83{bottom:716.760000px;}
.yb6{bottom:717.390000px;}
.y1f4{bottom:717.599160px;}
.y14f{bottom:717.841440px;}
.y1d{bottom:719.370000px;}
.y185{bottom:720.169740px;}
.ye8{bottom:720.262080px;}
.y5c{bottom:726.206040px;}
.y1c5{bottom:727.290000px;}
.y197{bottom:727.836390px;}
.yf8{bottom:730.797300px;}
.y129{bottom:731.770200px;}
.y2f{bottom:733.050000px;}
.yb5{bottom:734.400000px;}
.y1f3{bottom:735.875640px;}
.y14e{bottom:736.208100px;}
.y184{bottom:737.183700px;}
.y220{bottom:737.273610px;}
.ye7{bottom:737.276040px;}
.y5b{bottom:743.220000px;}
.y1c4{bottom:744.296040px;}
.y196{bottom:744.850350px;}
.yf7{bottom:749.163960px;}
.y128{bottom:750.136860px;}
.yb4{bottom:752.752080px;}
.y1f2{bottom:752.889600px;}
.y14d{bottom:753.222060px;}
.y183{bottom:754.197660px;}
.ye6{bottom:754.290000px;}
.y1c{bottom:755.640000px;}
.y21f{bottom:756.000000px;}
.y5a{bottom:760.226040px;}
.y1c3{bottom:761.310000px;}
.y195{bottom:761.864310px;}
.y82{bottom:765.450000px;}
.yf6{bottom:767.530620px;}
.y127{bottom:768.503520px;}
.yb3{bottom:769.766040px;}
.y1f1{bottom:769.903560px;}
.y182{bottom:771.211620px;}
.ye5{bottom:771.300000px;}
.y14c{bottom:771.498540px;}
.y2e{bottom:772.380000px;}
.y59{bottom:777.240000px;}
.y1c2{bottom:778.680000px;}
.y194{bottom:780.230970px;}
.y126{bottom:785.517480px;}
.yf5{bottom:785.897280px;}
.yb2{bottom:786.780000px;}
.y1f0{bottom:786.917520px;}
.y181{bottom:788.225580px;}
.y14b{bottom:788.512500px;}
.ye4{bottom:789.570000px;}
.y1b{bottom:791.910000px;}
.y2d{bottom:792.990000px;}
.y58{bottom:794.250000px;}
.y1c1{bottom:795.955320px;}
.y193{bottom:798.597630px;}
.y125{bottom:802.531440px;}
.y81{bottom:803.418120px;}
.yb1{bottom:803.761200px;}
.y1ef{bottom:803.931480px;}
.yf4{bottom:804.263940px;}
.y180{bottom:805.149360px;}
.ya{bottom:805.316040px;}
.y14a{bottom:805.526460px;}
.ye3{bottom:806.580000px;}
.y57{bottom:812.516040px;}
.y1c0{bottom:813.330000px;}
.y192{bottom:816.874110px;}
.y21e{bottom:817.200000px;}
.y80{bottom:820.432080px;}
.yb0{bottom:820.775160px;}
.y124{bottom:820.898100px;}
.y1ee{bottom:820.945440px;}
.y9{bottom:822.330000px;}
.yf3{bottom:822.540420px;}
.y17f{bottom:823.516020px;}
.ye2{bottom:824.933340px;}
.y1a{bottom:828.270000px;}
.y56{bottom:829.530000px;}
.y1bf{bottom:830.276820px;}
.y2c{bottom:834.120000px;}
.y191{bottom:835.240770px;}
.y7f{bottom:837.446040px;}
.yaf{bottom:837.789120px;}
.y1ed{bottom:837.959400px;}
.y123{bottom:839.174580px;}
.yf2{bottom:839.554380px;}
.y17e{bottom:840.529980px;}
.y149{bottom:840.907080px;}
.ye1{bottom:843.300000px;}
.y55{bottom:846.536040px;}
.y1be{bottom:847.561320px;}
.y2b{bottom:852.479850px;}
.y21d{bottom:853.037910px;}
.y190{bottom:853.607430px;}
.y7e{bottom:854.460000px;}
.y1ec{bottom:854.973360px;}
.yae{bottom:855.344160px;}
.y122{bottom:856.188540px;}
.yf1{bottom:856.568340px;}
.y17d{bottom:858.896640px;}
.y148{bottom:859.273740px;}
.ye0{bottom:860.310000px;}
.y54{bottom:863.550000px;}
.y19{bottom:864.540000px;}
.y1bd{bottom:864.575280px;}
.y2a{bottom:870.840000px;}
.y18f{bottom:871.974090px;}
.y1eb{bottom:871.987320px;}
.yad{bottom:872.358120px;}
.y7d{bottom:872.820000px;}
.y121{bottom:873.202500px;}
.yf0{bottom:874.935000px;}
.y17c{bottom:877.263300px;}
.y147{bottom:877.640400px;}
.y4{bottom:878.580000px;}
.ydf{bottom:878.670000px;}
.y53{bottom:880.560000px;}
.y1bc{bottom:881.589240px;}
.y21c{bottom:887.682060px;}
.y1ea{bottom:889.001280px;}
.y29{bottom:889.200000px;}
.yac{bottom:889.372080px;}
.y18e{bottom:890.250570px;}
.y7c{bottom:891.176040px;}
.y120{bottom:891.569160px;}
.yef{bottom:893.301660px;}
.y17b{bottom:895.629960px;}
.yde{bottom:895.680000px;}
.y146{bottom:895.916880px;}
.y52{bottom:897.570000px;}
.y1bb{bottom:898.603200px;}
.y18{bottom:900.900000px;}
.y8{bottom:904.950000px;}
.y1e9{bottom:906.015240px;}
.y28{bottom:906.210000px;}
.yab{bottom:906.386040px;}
.y21b{bottom:907.206030px;}
.y7b{bottom:908.190000px;}
.y18d{bottom:908.617230px;}
.y11f{bottom:909.935820px;}
.yee{bottom:911.668320px;}
.y145{bottom:912.930840px;}
.y17a{bottom:913.906440px;}
.ydd{bottom:913.950000px;}
.y1ba{bottom:915.977880px;}
.y1e8{bottom:923.029200px;}
.y27{bottom:923.216040px;}
.yaa{bottom:923.400000px;}
.y7a{bottom:926.546040px;}
.y21a{bottom:926.730000px;}
.y18c{bottom:926.983890px;}
.y11e{bottom:928.302480px;}
.yed{bottom:929.944800px;}
.y144{bottom:931.297500px;}
.y179{bottom:932.273100px;}
.ydc{bottom:932.291460px;}
.y1b9{bottom:933.262380px;}
.y51{bottom:936.900000px;}
.y17{bottom:937.170000px;}
.y1e7{bottom:940.043160px;}
.y26{bottom:940.230000px;}
.ya9{bottom:941.666040px;}
.y79{bottom:943.560000px;}
.y18b{bottom:945.350550px;}
.y219{bottom:946.356030px;}
.y11d{bottom:946.578960px;}
.yec{bottom:948.311460px;}
.y178{bottom:949.287060px;}
.y143{bottom:949.664160px;}
.y1b8{bottom:950.637060px;}
.ydb{bottom:950.658120px;}
.y1e6{bottom:957.057120px;}
.y25{bottom:958.590000px;}
.ya8{bottom:958.680000px;}
.y50{bottom:959.310000px;}
.y18a{bottom:963.717210px;}
.y6{bottom:964.440000px;}
.y11c{bottom:964.945620px;}
.y78{bottom:964.980000px;}
.y177{bottom:966.301020px;}
.yeb{bottom:966.678120px;}
.y1b7{bottom:967.651020px;}
.yda{bottom:967.672080px;}
.y1e5{bottom:974.071080px;}
.ya7{bottom:975.690000px;}
.y16{bottom:978.911550px;}
.y24{bottom:980.550000px;}
.y189{bottom:980.731170px;}
.y218{bottom:980.910000px;}
.y11b{bottom:983.312280px;}
.y176{bottom:983.314980px;}
.y4f{bottom:983.692080px;}
.y1b6{bottom:984.664980px;}
.yd9{bottom:984.686040px;}
.y1e4{bottom:988.560000px;}
.ya6{bottom:994.050000px;}
.y11a{bottom:1000.326240px;}
.y23{bottom:1000.706040px;}
.y175{bottom:1001.681640px;}
.yd8{bottom:1001.700000px;}
.y1b5{bottom:1003.031640px;}
.ya5{bottom:1012.410000px;}
.y216{bottom:1014.643950px;}
.y217{bottom:1016.010000px;}
.y119{bottom:1017.340200px;}
.y22{bottom:1017.720000px;}
.y174{bottom:1020.048300px;}
.yd7{bottom:1020.056040px;}
.y1b4{bottom:1021.308120px;}
.y15{bottom:1028.250000px;}
.ya4{bottom:1033.837200px;}
.y118{bottom:1035.706860px;}
.y173{bottom:1037.062260px;}
.yd6{bottom:1037.070000px;}
.y1b3{bottom:1038.322080px;}
.y117{bottom:1053.983340px;}
.y172{bottom:1053.986040px;}
.yd5{bottom:1055.336040px;}
.y21{bottom:1057.950000px;}
.y1e3{bottom:1070.640000px;}
.ya3{bottom:1070.730000px;}
.y171{bottom:1071.000000px;}
.yd4{bottom:1072.350000px;}
.yd{bottom:1089.360000px;}
.y2{bottom:1097.910000px;}
.yb{bottom:1108.530000px;}
.y1{bottom:1198.080000px;}
.h10{height:16.921500px;}
.h1c{height:17.010000px;}
.h12{height:29.970000px;}
.ha{height:35.910000px;}
.h21{height:37.620000px;}
.h18{height:40.500000px;}
.h2{height:45.090000px;}
.h1e{height:45.109440px;}
.hf{height:47.962441px;}
.h15{height:48.978281px;}
.h8{height:49.410000px;}
.h20{height:49.410120px;}
.hd{height:52.417969px;}
.hc{height:54.000000px;}
.h9{height:54.450000px;}
.h17{height:58.590000px;}
.he{height:65.522461px;}
.h14{height:79.900488px;}
.h1d{height:85.050000px;}
.h7{height:85.501500px;}
.h4{height:87.275918px;}
.h16{height:87.302558px;}
.h13{height:87.323438px;}
.h3{height:88.470000px;}
.h1f{height:92.023800px;}
.h1a{height:99.716400px;}
.h19{height:99.717600px;}
.h1b{height:102.225000px;}
.hb{height:130.410000px;}
.h6{height:131.044922px;}
.h11{height:147.870000px;}
.h5{height:164.070000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:179.640000px;}
.w8{width:268.020000px;}
.w3{width:287.010000px;}
.w5{width:457.198500px;}
.w2{width:457.291500px;}
.w7{width:466.650000px;}
.wb{width:555.030000px;}
.wc{width:619.830000px;}
.w9{width:735.750000px;}
.w6{width:745.740000px;}
.w4{width:786.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:7.740000px;}
.x11{left:35.100000px;}
.x5{left:55.260000px;}
.x7{left:92.790000px;}
.x1{left:97.830000px;}
.x2{left:104.130000px;}
.x20{left:106.290000px;}
.x14{left:112.140000px;}
.x1b{left:118.214250px;}
.xc{left:124.830000px;}
.x13{left:133.290000px;}
.xd{left:151.832520px;}
.x1c{left:157.741050px;}
.x12{left:160.290000px;}
.x1d{left:164.491050px;}
.xe{left:178.830000px;}
.xb{left:194.940000px;}
.x9{left:198.900000px;}
.x4{left:205.290000px;}
.x15{left:214.200000px;}
.x17{left:232.829100px;}
.x18{left:259.796610px;}
.x1f{left:278.910000px;}
.xa{left:306.270000px;}
.x6{left:495.180000px;}
.x8{left:555.030000px;}
.x3{left:561.420000px;}
.x10{left:565.920000px;}
.x16{left:604.890000px;}
.x1e{left:835.830000px;}
.x19{left:849.330000px;}
.x1a{left:851.579550px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.v5{vertical-align:33.798933pt;}
.v4{vertical-align:46.946667pt;}
.v3{vertical-align:52.637867pt;}
.ls29{letter-spacing:-1.496320pt;}
.ls39{letter-spacing:-0.480960pt;}
.ls24{letter-spacing:-0.320640pt;}
.ls15{letter-spacing:-0.267200pt;}
.ls25{letter-spacing:-0.213760pt;}
.ls13{letter-spacing:-0.160320pt;}
.ls2{letter-spacing:-0.160000pt;}
.ls32{letter-spacing:-0.144000pt;}
.ls31{letter-spacing:-0.117120pt;}
.ls11{letter-spacing:-0.106880pt;}
.ls10{letter-spacing:-0.106560pt;}
.ls34{letter-spacing:-0.096000pt;}
.ls6{letter-spacing:-0.085120pt;}
.ls1b{letter-spacing:-0.080000pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls41{letter-spacing:-0.058560pt;}
.ls1a{letter-spacing:-0.053440pt;}
.ls33{letter-spacing:-0.048000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.044160pt;}
.ls8{letter-spacing:0.053440pt;}
.ls1d{letter-spacing:0.057600pt;}
.ls1c{letter-spacing:0.058560pt;}
.ls40{letter-spacing:0.058667pt;}
.ls3d{letter-spacing:0.064000pt;}
.ls26{letter-spacing:0.064128pt;}
.lsf{letter-spacing:0.069472pt;}
.ls3a{letter-spacing:0.074816pt;}
.lsc{letter-spacing:0.080000pt;}
.ls2c{letter-spacing:0.080160pt;}
.ls18{letter-spacing:0.090848pt;}
.ls35{letter-spacing:0.096192pt;}
.ls3e{letter-spacing:0.105408pt;}
.ls2b{letter-spacing:0.106560pt;}
.ls5{letter-spacing:0.106880pt;}
.ls19{letter-spacing:0.112224pt;}
.ls9{letter-spacing:0.121600pt;}
.ls36{letter-spacing:0.122912pt;}
.ls20{letter-spacing:0.128832pt;}
.ls7{letter-spacing:0.154560pt;}
.ls14{letter-spacing:0.160320pt;}
.ls2e{letter-spacing:0.213120pt;}
.ls42{letter-spacing:0.234240pt;}
.ls2d{letter-spacing:0.340480pt;}
.ls17{letter-spacing:0.400000pt;}
.ls4{letter-spacing:0.400800pt;}
.ls3c{letter-spacing:5.312000pt;}
.ls2f{letter-spacing:12.000000pt;}
.ls1f{letter-spacing:30.744000pt;}
.ls37{letter-spacing:34.105408pt;}
.lsb{letter-spacing:49.133120pt;}
.lsd{letter-spacing:49.164800pt;}
.lse{letter-spacing:56.486080pt;}
.ls1e{letter-spacing:56.503680pt;}
.lsa{letter-spacing:56.507840pt;}
.ls22{letter-spacing:56.806720pt;}
.ls21{letter-spacing:56.828480pt;}
.ls23{letter-spacing:64.822720pt;}
.ls3f{letter-spacing:71.395840pt;}
.ls3b{letter-spacing:84.396267pt;}
.ls30{letter-spacing:99.847893pt;}
.ls38{letter-spacing:104.547200pt;}
.ls0{letter-spacing:753.129920pt;}
.ls27{letter-spacing:753.143680pt;}
.ls28{letter-spacing:753.153600pt;}
.ls2a{letter-spacing:1353.535680pt;}
.ls3{letter-spacing:1378.475840pt;}
.ws1f{word-spacing:-53.440000pt;}
.ws0{word-spacing:-44.320000pt;}
.ws3b{word-spacing:-31.315840pt;}
.ws36{word-spacing:-29.836800pt;}
.ws15{word-spacing:-22.240000pt;}
.ws16{word-spacing:-22.080000pt;}
.ws2f{word-spacing:-16.338240pt;}
.ws3a{word-spacing:-14.698667pt;}
.ws37{word-spacing:-14.698560pt;}
.ws38{word-spacing:-14.640000pt;}
.ws39{word-spacing:-14.581440pt;}
.ws2b{word-spacing:-14.522880pt;}
.ws4{word-spacing:-13.760800pt;}
.ws26{word-spacing:-13.520320pt;}
.ws1e{word-spacing:-13.413440pt;}
.wse{word-spacing:-13.360000pt;}
.ws33{word-spacing:-13.306560pt;}
.wsc{word-spacing:-13.253120pt;}
.wsf{word-spacing:-13.199680pt;}
.ws24{word-spacing:-13.146240pt;}
.wsd{word-spacing:-13.092800pt;}
.ws2a{word-spacing:-13.039360pt;}
.ws5{word-spacing:-12.184320pt;}
.ws20{word-spacing:-12.077440pt;}
.ws34{word-spacing:-11.863680pt;}
.ws28{word-spacing:-10.980480pt;}
.ws29{word-spacing:-10.640000pt;}
.ws27{word-spacing:-10.581120pt;}
.ws1d{word-spacing:-8.640000pt;}
.ws35{word-spacing:-0.384000pt;}
.ws8{word-spacing:-0.320640pt;}
.ws22{word-spacing:-0.267200pt;}
.ws19{word-spacing:-0.240000pt;}
.ws9{word-spacing:-0.213760pt;}
.ws41{word-spacing:-0.186667pt;}
.ws25{word-spacing:-0.160320pt;}
.ws18{word-spacing:-0.160000pt;}
.ws14{word-spacing:-0.106880pt;}
.ws1c{word-spacing:-0.080000pt;}
.ws21{word-spacing:-0.058560pt;}
.wsb{word-spacing:-0.053440pt;}
.ws3f{word-spacing:-0.026667pt;}
.ws2{word-spacing:0.000000pt;}
.wsa{word-spacing:0.053440pt;}
.ws3c{word-spacing:0.058560pt;}
.ws40{word-spacing:0.058667pt;}
.ws1b{word-spacing:0.080000pt;}
.ws6{word-spacing:0.085120pt;}
.ws43{word-spacing:0.106667pt;}
.ws1{word-spacing:0.106880pt;}
.ws3e{word-spacing:0.117120pt;}
.ws7{word-spacing:0.154560pt;}
.ws3{word-spacing:0.160000pt;}
.ws1a{word-spacing:0.160320pt;}
.ws3d{word-spacing:0.175680pt;}
.ws12{word-spacing:0.192000pt;}
.ws11{word-spacing:0.213760pt;}
.ws2d{word-spacing:0.240000pt;}
.ws13{word-spacing:0.267200pt;}
.ws2c{word-spacing:0.288000pt;}
.ws31{word-spacing:0.292800pt;}
.ws10{word-spacing:0.319680pt;}
.ws23{word-spacing:0.320640pt;}
.ws17{word-spacing:0.374080pt;}
.ws32{word-spacing:0.409920pt;}
.ws42{word-spacing:0.469333pt;}
.ws30{word-spacing:0.480960pt;}
.ws2e{word-spacing:0.624000pt;}
._2{margin-left:-12.778176pt;}
._3{margin-left:-11.875200pt;}
._7{margin-left:-9.014784pt;}
._5{margin-left:-6.450240pt;}
._6{margin-left:-4.164544pt;}
._4{margin-left:-2.498496pt;}
._1{margin-left:-1.143744pt;}
._0{width:0.960000pt;}
._8{width:2.502144pt;}
._9{width:62.417920pt;}
.fs8{font-size:34.560000pt;}
.fs4{font-size:42.560000pt;}
.fsa{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs3{font-size:58.560000pt;}
.fs6{font-size:64.000000pt;}
.fs9{font-size:69.440000pt;}
.fs7{font-size:80.000000pt;}
.fs1{font-size:106.560000pt;}
.fs5{font-size:154.560000pt;}
.fs2{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y94{bottom:2.880000pt;}
.y226{bottom:3.360000pt;}
.y13{bottom:4.000000pt;}
.y9e{bottom:8.640000pt;}
.y225{bottom:20.000000pt;}
.y11{bottom:21.200000pt;}
.y7{bottom:23.440000pt;}
.y14{bottom:29.360000pt;}
.yf{bottom:36.000000pt;}
.y3{bottom:40.240000pt;}
.ye{bottom:41.600000pt;}
.yc{bottom:55.920000pt;}
.y12{bottom:62.800000pt;}
.y208{bottom:63.360000pt;}
.y5{bottom:76.320000pt;}
.y10{bottom:77.600000pt;}
.ya2{bottom:100.880000pt;}
.y1a8{bottom:106.377760pt;}
.y170{bottom:110.628480pt;}
.yd3{bottom:113.600000pt;}
.ya1{bottom:116.156480pt;}
.y96{bottom:118.000000pt;}
.y1a7{bottom:121.501280pt;}
.y16f{bottom:126.874240pt;}
.y215{bottom:128.707040pt;}
.yd2{bottom:129.920000pt;}
.ya0{bottom:134.640000pt;}
.y1a6{bottom:137.827200pt;}
.y4e{bottom:140.451840pt;}
.y16e{bottom:143.200160pt;}
.y214{bottom:143.830560pt;}
.yd1{bottom:146.160000pt;}
.y9f{bottom:146.400000pt;}
.y1e1{bottom:146.463360pt;}
.y1a5{bottom:152.950720pt;}
.y4d{bottom:155.575360pt;}
.y213{bottom:158.954080pt;}
.y16d{bottom:159.526080pt;}
.y1e0{bottom:161.586880pt;}
.yd0{bottom:162.448320pt;}
.y116{bottom:167.741120pt;}
.y1a4{bottom:169.196480pt;}
.y4c{bottom:171.901280pt;}
.y77{bottom:173.996480pt;}
.y212{bottom:175.280000pt;}
.y16c{bottom:175.852000pt;}
.y1df{bottom:176.710400pt;}
.ycf{bottom:177.571840pt;}
.y115{bottom:182.864640pt;}
.y1a3{bottom:184.320000pt;}
.y4b{bottom:186.944640pt;}
.y76{bottom:189.120000pt;}
.y211{bottom:191.120000pt;}
.y1de{bottom:191.833920pt;}
.y16b{bottom:192.097760pt;}
.yce{bottom:192.695360pt;}
.y114{bottom:199.190560pt;}
.y4a{bottom:203.270560pt;}
.y75{bottom:204.234080pt;}
.y1dd{bottom:206.957440pt;}
.y210{bottom:208.080000pt;}
.y16a{bottom:208.423680pt;}
.ycd{bottom:209.021280pt;}
.y95{bottom:210.720000pt;}
.y232{bottom:211.536000pt;}
.y1a2{bottom:213.753840pt;}
.y113{bottom:215.516480pt;}
.y9d{bottom:219.360000pt;}
.y49{bottom:219.596480pt;}
.y74{bottom:220.560000pt;}
.y1dc{bottom:222.080960pt;}
.y169{bottom:223.547200pt;}
.ycc{bottom:224.144800pt;}
.y20f{bottom:225.115680pt;}
.y231{bottom:228.917333pt;}
.y112{bottom:230.640000pt;}
.y9c{bottom:234.480000pt;}
.y48{bottom:234.720000pt;}
.y1db{bottom:234.960000pt;}
.y73{bottom:235.674080pt;}
.y142{bottom:237.674080pt;}
.y168{bottom:239.873120pt;}
.ycb{bottom:240.470720pt;}
.y20e{bottom:240.640000pt;}
.y1af{bottom:245.428667pt;}
.y230{bottom:246.298667pt;}
.y1b2{bottom:246.346800pt;}
.y111{bottom:246.660000pt;}
.y9b{bottom:250.720000pt;}
.y47{bottom:251.040000pt;}
.y72{bottom:252.000000pt;}
.y167{bottom:254.996640pt;}
.yca{bottom:255.594240pt;}
.y20d{bottom:256.876480pt;}
.y1b1{bottom:258.586800pt;}
.y110{bottom:261.783520pt;}
.y22f{bottom:263.680000pt;}
.y141{bottom:265.596480pt;}
.y9a{bottom:265.840000pt;}
.y1e2{bottom:265.970400pt;}
.y46{bottom:267.307200pt;}
.y71{bottom:268.240000pt;}
.y166{bottom:270.120160pt;}
.y1b0{bottom:270.826800pt;}
.yc9{bottom:271.840000pt;}
.y20c{bottom:272.000000pt;}
.y10f{bottom:278.109440pt;}
.y140{bottom:280.720000pt;}
.y99{bottom:282.160000pt;}
.y70{bottom:283.360000pt;}
.y45{bottom:283.552960pt;}
.y207{bottom:284.240000pt;}
.y165{bottom:286.446080pt;}
.y10e{bottom:294.435360pt;}
.y22e{bottom:294.880000pt;}
.y13f{bottom:295.840000pt;}
.y98{bottom:297.280000pt;}
.y6f{bottom:298.469440pt;}
.y44{bottom:298.676480pt;}
.y20b{bottom:302.240000pt;}
.y164{bottom:302.691840pt;}
.yc8{bottom:303.040000pt;}
.y1a1{bottom:304.800000pt;}
.y10d{bottom:310.761280pt;}
.y13e{bottom:312.880000pt;}
.y6e{bottom:313.592960pt;}
.y97{bottom:313.600000pt;}
.y43{bottom:315.002400pt;}
.y20a{bottom:317.360000pt;}
.y163{bottom:319.017760pt;}
.y1da{bottom:324.000000pt;}
.y10c{bottom:325.884800pt;}
.y22d{bottom:326.901840pt;}
.y6d{bottom:328.716480pt;}
.y13d{bottom:329.840000pt;}
.y42{bottom:331.328320pt;}
.y1a0{bottom:332.153520pt;}
.y209{bottom:332.480000pt;}
.y162{bottom:335.343680pt;}
.y1d9{bottom:340.633120pt;}
.y10b{bottom:342.130560pt;}
.y93{bottom:342.160000pt;}
.y6c{bottom:343.840000pt;}
.y22c{bottom:344.256480pt;}
.yc7{bottom:346.396480pt;}
.y41{bottom:346.451840pt;}
.y13c{bottom:346.869760pt;}
.y161{bottom:351.669600pt;}
.y1d8{bottom:355.756640pt;}
.y10a{bottom:358.456480pt;}
.y206{bottom:359.840000pt;}
.yc6{bottom:361.520000pt;}
.y13b{bottom:362.394080pt;}
.y40{bottom:362.777760pt;}
.y22b{bottom:362.813520pt;}
.y1ae{bottom:364.678400pt;}
.y6b{bottom:364.960000pt;}
.y160{bottom:367.995520pt;}
.y1d7{bottom:370.800000pt;}
.y109{bottom:374.782400pt;}
.yc5{bottom:377.836480pt;}
.y3f{bottom:377.901280pt;}
.y205{bottom:378.441440pt;}
.y13a{bottom:378.720000pt;}
.y92{bottom:379.440000pt;}
.y22a{bottom:380.168160pt;}
.y15f{bottom:384.241280pt;}
.y1d6{bottom:387.116480pt;}
.y108{bottom:391.108320pt;}
.y6a{bottom:391.360000pt;}
.yc4{bottom:392.960000pt;}
.y204{bottom:393.484800pt;}
.y3e{bottom:394.147040pt;}
.y139{bottom:394.377920pt;}
.y91{bottom:395.760000pt;}
.y229{bottom:397.602960pt;}
.y15e{bottom:400.567200pt;}
.y1d5{bottom:402.240000pt;}
.y107{bottom:407.354080pt;}
.y203{bottom:408.608320pt;}
.y3d{bottom:409.270560pt;}
.y138{bottom:410.623680pt;}
.y90{bottom:412.072960pt;}
.y69{bottom:413.040000pt;}
.y15d{bottom:415.690720pt;}
.y228{bottom:416.160000pt;}
.y1ad{bottom:417.225733pt;}
.y1d4{bottom:417.356480pt;}
.y106{bottom:423.680000pt;}
.y202{bottom:423.731840pt;}
.y3c{bottom:424.394080pt;}
.y137{bottom:425.747200pt;}
.y8f{bottom:427.196480pt;}
.y68{bottom:429.356480pt;}
.yc3{bottom:430.640000pt;}
.y15c{bottom:432.016640pt;}
.y1d3{bottom:432.480000pt;}
.y201{bottom:438.855360pt;}
.y105{bottom:440.005920pt;}
.y3b{bottom:440.720000pt;}
.y136{bottom:442.073120pt;}
.y8e{bottom:442.320000pt;}
.y67{bottom:444.480000pt;}
.y15b{bottom:447.140160pt;}
.yc2{bottom:447.280000pt;}
.y227{bottom:447.360000pt;}
.y1d2{bottom:447.600000pt;}
.y200{bottom:455.181280pt;}
.y104{bottom:456.331840pt;}
.y135{bottom:457.196640pt;}
.y8d{bottom:458.560000pt;}
.y3a{bottom:460.240000pt;}
.y66{bottom:460.792960pt;}
.yc1{bottom:462.400000pt;}
.y1d1{bottom:462.673120pt;}
.y15a{bottom:463.466080pt;}
.y1a9{bottom:469.773333pt;}
.y1ff{bottom:470.304800pt;}
.y1ac{bottom:470.699333pt;}
.y134{bottom:472.320160pt;}
.y103{bottom:472.657760pt;}
.y8c{bottom:474.880000pt;}
.y65{bottom:475.916480pt;}
.y1d0{bottom:477.796640pt;}
.yc0{bottom:478.720000pt;}
.y159{bottom:479.711840pt;}
.y1ab{bottom:482.939333pt;}
.y1fe{bottom:485.428320pt;}
.y133{bottom:487.443680pt;}
.y102{bottom:488.903520pt;}
.y64{bottom:491.040000pt;}
.y8b{bottom:491.200000pt;}
.y224{bottom:492.880000pt;}
.y1cf{bottom:492.920160pt;}
.ybf{bottom:495.023680pt;}
.y1aa{bottom:495.179333pt;}
.y158{bottom:496.037760pt;}
.y39{bottom:496.859040pt;}
.y1fd{bottom:500.551840pt;}
.y132{bottom:503.689440pt;}
.y101{bottom:505.229440pt;}
.y8a{bottom:506.320000pt;}
.y63{bottom:507.272960pt;}
.y1ce{bottom:508.043680pt;}
.ybe{bottom:510.147200pt;}
.y38{bottom:511.982560pt;}
.y157{bottom:512.363680pt;}
.y1fc{bottom:515.675360pt;}
.y19f{bottom:515.760000pt;}
.y131{bottom:520.015360pt;}
.y89{bottom:521.440000pt;}
.y100{bottom:521.555360pt;}
.y62{bottom:522.396480pt;}
.y1cd{bottom:524.369600pt;}
.ybd{bottom:526.392960pt;}
.y37{bottom:527.106080pt;}
.y156{bottom:527.487200pt;}
.y1fb{bottom:530.798880pt;}
.y19e{bottom:533.520000pt;}
.y130{bottom:536.341280pt;}
.y88{bottom:536.556480pt;}
.yff{bottom:536.678880pt;}
.y61{bottom:537.520000pt;}
.y1cc{bottom:540.695520pt;}
.ybc{bottom:541.516480pt;}
.y36{bottom:542.229600pt;}
.y155{bottom:542.610720pt;}
.y1fa{bottom:545.922400pt;}
.y19d{bottom:551.187840pt;}
.y87{bottom:551.680000pt;}
.yfe{bottom:551.802400pt;}
.y12f{bottom:552.667200pt;}
.y1cb{bottom:555.738880pt;}
.ybb{bottom:556.640000pt;}
.y35{bottom:557.272960pt;}
.y154{bottom:557.734240pt;}
.y60{bottom:558.640000pt;}
.y223{bottom:559.760000pt;}
.y1f9{bottom:561.045920pt;}
.y86{bottom:568.000000pt;}
.yfd{bottom:568.128320pt;}
.y12e{bottom:568.993120pt;}
.y19c{bottom:569.023440pt;}
.y1ca{bottom:570.862400pt;}
.y34{bottom:572.396480pt;}
.yba{bottom:572.960000pt;}
.y153{bottom:574.060160pt;}
.y1f8{bottom:576.169440pt;}
.y19b{bottom:584.146960pt;}
.y85{bottom:584.236320pt;}
.yfc{bottom:584.374080pt;}
.y12d{bottom:585.238880pt;}
.y20{bottom:585.352960pt;}
.y1c9{bottom:585.985920pt;}
.y33{bottom:587.520000pt;}
.yb9{bottom:588.080000pt;}
.y152{bottom:590.305920pt;}
.y1f7{bottom:592.495360pt;}
.y188{bottom:594.780320pt;}
.yea{bottom:597.200000pt;}
.y222{bottom:598.000320pt;}
.y5f{bottom:598.956480pt;}
.y19a{bottom:599.270480pt;}
.y84{bottom:599.440000pt;}
.y1f{bottom:600.476480pt;}
.yfb{bottom:600.700000pt;}
.y1c8{bottom:601.109440pt;}
.y12c{bottom:601.564800pt;}
.y32{bottom:602.640000pt;}
.yb8{bottom:605.920000pt;}
.y151{bottom:606.631840pt;}
.y1f6{bottom:607.618880pt;}
.y187{bottom:609.903840pt;}
.y5e{bottom:614.080000pt;}
.y199{bottom:614.394000pt;}
.y1e{bottom:615.600000pt;}
.y1c7{bottom:616.232960pt;}
.yfa{bottom:617.025920pt;}
.y221{bottom:617.120133pt;}
.y12b{bottom:617.890720pt;}
.y31{bottom:618.960000pt;}
.yb7{bottom:622.556480pt;}
.y1f5{bottom:622.742400pt;}
.y150{bottom:622.957760pt;}
.y186{bottom:625.027360pt;}
.ye9{bottom:625.109440pt;}
.y5d{bottom:629.200000pt;}
.y198{bottom:630.639760pt;}
.y1c6{bottom:631.356480pt;}
.yf9{bottom:633.351840pt;}
.y12a{bottom:634.216640pt;}
.y30{bottom:635.280000pt;}
.y83{bottom:637.120000pt;}
.yb6{bottom:637.680000pt;}
.y1f4{bottom:637.865920pt;}
.y14f{bottom:638.081280pt;}
.y1d{bottom:639.440000pt;}
.y185{bottom:640.150880pt;}
.ye8{bottom:640.232960pt;}
.y5c{bottom:645.516480pt;}
.y1c5{bottom:646.480000pt;}
.y197{bottom:646.965680pt;}
.yf8{bottom:649.597600pt;}
.y129{bottom:650.462400pt;}
.y2f{bottom:651.600000pt;}
.yb5{bottom:652.800000pt;}
.y1f3{bottom:654.111680pt;}
.y14e{bottom:654.407200pt;}
.y184{bottom:655.274400pt;}
.y220{bottom:655.354320pt;}
.ye7{bottom:655.356480pt;}
.y5b{bottom:660.640000pt;}
.y1c4{bottom:661.596480pt;}
.y196{bottom:662.089200pt;}
.yf7{bottom:665.923520pt;}
.y128{bottom:666.788320pt;}
.yb4{bottom:669.112960pt;}
.y1f2{bottom:669.235200pt;}
.y14d{bottom:669.530720pt;}
.y183{bottom:670.397920pt;}
.ye6{bottom:670.480000pt;}
.y1c{bottom:671.680000pt;}
.y21f{bottom:672.000000pt;}
.y5a{bottom:675.756480pt;}
.y1c3{bottom:676.720000pt;}
.y195{bottom:677.212720pt;}
.y82{bottom:680.400000pt;}
.yf6{bottom:682.249440pt;}
.y127{bottom:683.114240pt;}
.yb3{bottom:684.236480pt;}
.y1f1{bottom:684.358720pt;}
.y182{bottom:685.521440pt;}
.ye5{bottom:685.600000pt;}
.y14c{bottom:685.776480pt;}
.y2e{bottom:686.560000pt;}
.y59{bottom:690.880000pt;}
.y1c2{bottom:692.160000pt;}
.y194{bottom:693.538640pt;}
.y126{bottom:698.237760pt;}
.yf5{bottom:698.575360pt;}
.yb2{bottom:699.360000pt;}
.y1f0{bottom:699.482240pt;}
.y181{bottom:700.644960pt;}
.y14b{bottom:700.900000pt;}
.ye4{bottom:701.840000pt;}
.y1b{bottom:703.920000pt;}
.y2d{bottom:704.880000pt;}
.y58{bottom:706.000000pt;}
.y1c1{bottom:707.515840pt;}
.y193{bottom:709.864560pt;}
.y125{bottom:713.361280pt;}
.y81{bottom:714.149440pt;}
.yb1{bottom:714.454400pt;}
.y1ef{bottom:714.605760pt;}
.yf4{bottom:714.901280pt;}
.y180{bottom:715.688320pt;}
.ya{bottom:715.836480pt;}
.y14a{bottom:716.023520pt;}
.ye3{bottom:716.960000pt;}
.y57{bottom:722.236480pt;}
.y1c0{bottom:722.960000pt;}
.y192{bottom:726.110320pt;}
.y21e{bottom:726.400000pt;}
.y80{bottom:729.272960pt;}
.yb0{bottom:729.577920pt;}
.y124{bottom:729.687200pt;}
.y1ee{bottom:729.729280pt;}
.y9{bottom:730.960000pt;}
.yf3{bottom:731.147040pt;}
.y17f{bottom:732.014240pt;}
.ye2{bottom:733.274080pt;}
.y1a{bottom:736.240000pt;}
.y56{bottom:737.360000pt;}
.y1bf{bottom:738.023840pt;}
.y2c{bottom:741.440000pt;}
.y191{bottom:742.436240pt;}
.y7f{bottom:744.396480pt;}
.yaf{bottom:744.701440pt;}
.y1ed{bottom:744.852800pt;}
.y123{bottom:745.932960pt;}
.yf2{bottom:746.270560pt;}
.y17e{bottom:747.137760pt;}
.y149{bottom:747.472960pt;}
.ye1{bottom:749.600000pt;}
.y55{bottom:752.476480pt;}
.y1be{bottom:753.387840pt;}
.y2b{bottom:757.759867pt;}
.y21d{bottom:758.255920pt;}
.y190{bottom:758.762160pt;}
.y7e{bottom:759.520000pt;}
.y1ec{bottom:759.976320pt;}
.yae{bottom:760.305920pt;}
.y122{bottom:761.056480pt;}
.yf1{bottom:761.394080pt;}
.y17d{bottom:763.463680pt;}
.y148{bottom:763.798880pt;}
.ye0{bottom:764.720000pt;}
.y54{bottom:767.600000pt;}
.y19{bottom:768.480000pt;}
.y1bd{bottom:768.511360pt;}
.y2a{bottom:774.080000pt;}
.y18f{bottom:775.088080pt;}
.y1eb{bottom:775.099840pt;}
.yad{bottom:775.429440pt;}
.y7d{bottom:775.840000pt;}
.y121{bottom:776.180000pt;}
.yf0{bottom:777.720000pt;}
.y17c{bottom:779.789600pt;}
.y147{bottom:780.124800pt;}
.y4{bottom:780.960000pt;}
.ydf{bottom:781.040000pt;}
.y53{bottom:782.720000pt;}
.y1bc{bottom:783.634880pt;}
.y21c{bottom:789.050720pt;}
.y1ea{bottom:790.223360pt;}
.y29{bottom:790.400000pt;}
.yac{bottom:790.552960pt;}
.y18e{bottom:791.333840pt;}
.y7c{bottom:792.156480pt;}
.y120{bottom:792.505920pt;}
.yef{bottom:794.045920pt;}
.y17b{bottom:796.115520pt;}
.yde{bottom:796.160000pt;}
.y146{bottom:796.370560pt;}
.y52{bottom:797.840000pt;}
.y1bb{bottom:798.758400pt;}
.y18{bottom:800.800000pt;}
.y8{bottom:804.400000pt;}
.y1e9{bottom:805.346880pt;}
.y28{bottom:805.520000pt;}
.yab{bottom:805.676480pt;}
.y21b{bottom:806.405360pt;}
.y7b{bottom:807.280000pt;}
.y18d{bottom:807.659760pt;}
.y11f{bottom:808.831840pt;}
.yee{bottom:810.371840pt;}
.y145{bottom:811.494080pt;}
.y17a{bottom:812.361280pt;}
.ydd{bottom:812.400000pt;}
.y1ba{bottom:814.202560pt;}
.y1e8{bottom:820.470400pt;}
.y27{bottom:820.636480pt;}
.yaa{bottom:820.800000pt;}
.y7a{bottom:823.596480pt;}
.y21a{bottom:823.760000pt;}
.y18c{bottom:823.985680pt;}
.y11e{bottom:825.157760pt;}
.yed{bottom:826.617600pt;}
.y144{bottom:827.820000pt;}
.y179{bottom:828.687200pt;}
.ydc{bottom:828.703520pt;}
.y1b9{bottom:829.566560pt;}
.y51{bottom:832.800000pt;}
.y17{bottom:833.040000pt;}
.y1e7{bottom:835.593920pt;}
.y26{bottom:835.760000pt;}
.ya9{bottom:837.036480pt;}
.y79{bottom:838.720000pt;}
.y18b{bottom:840.311600pt;}
.y219{bottom:841.205360pt;}
.y11d{bottom:841.403520pt;}
.yec{bottom:842.943520pt;}
.y178{bottom:843.810720pt;}
.y143{bottom:844.145920pt;}
.y1b8{bottom:845.010720pt;}
.ydb{bottom:845.029440pt;}
.y1e6{bottom:850.717440pt;}
.y25{bottom:852.080000pt;}
.ya8{bottom:852.160000pt;}
.y50{bottom:852.720000pt;}
.y18a{bottom:856.637520pt;}
.y6{bottom:857.280000pt;}
.y11c{bottom:857.729440pt;}
.y78{bottom:857.760000pt;}
.y177{bottom:858.934240pt;}
.yeb{bottom:859.269440pt;}
.y1b7{bottom:860.134240pt;}
.yda{bottom:860.152960pt;}
.y1e5{bottom:865.840960pt;}
.ya7{bottom:867.280000pt;}
.y16{bottom:870.143600pt;}
.y24{bottom:871.600000pt;}
.y189{bottom:871.761040pt;}
.y218{bottom:871.920000pt;}
.y11b{bottom:874.055360pt;}
.y176{bottom:874.057760pt;}
.y4f{bottom:874.392960pt;}
.y1b6{bottom:875.257760pt;}
.yd9{bottom:875.276480pt;}
.y1e4{bottom:878.720000pt;}
.ya6{bottom:883.600000pt;}
.y11a{bottom:889.178880pt;}
.y23{bottom:889.516480pt;}
.y175{bottom:890.383680pt;}
.yd8{bottom:890.400000pt;}
.y1b5{bottom:891.583680pt;}
.ya5{bottom:899.920000pt;}
.y216{bottom:901.905733pt;}
.y217{bottom:903.120000pt;}
.y119{bottom:904.302400pt;}
.y22{bottom:904.640000pt;}
.y174{bottom:906.709600pt;}
.yd7{bottom:906.716480pt;}
.y1b4{bottom:907.829440pt;}
.y15{bottom:914.000000pt;}
.ya4{bottom:918.966400pt;}
.y118{bottom:920.628320pt;}
.y173{bottom:921.833120pt;}
.yd6{bottom:921.840000pt;}
.y1b3{bottom:922.952960pt;}
.y117{bottom:936.874080pt;}
.y172{bottom:936.876480pt;}
.yd5{bottom:938.076480pt;}
.y21{bottom:940.400000pt;}
.y1e3{bottom:951.680000pt;}
.ya3{bottom:951.760000pt;}
.y171{bottom:952.000000pt;}
.yd4{bottom:953.200000pt;}
.yd{bottom:968.320000pt;}
.y2{bottom:975.920000pt;}
.yb{bottom:985.360000pt;}
.y1{bottom:1064.960000pt;}
.h10{height:15.041333pt;}
.h1c{height:15.120000pt;}
.h12{height:26.640000pt;}
.ha{height:31.920000pt;}
.h21{height:33.440000pt;}
.h18{height:36.000000pt;}
.h2{height:40.080000pt;}
.h1e{height:40.097280pt;}
.hf{height:42.633281pt;}
.h15{height:43.536250pt;}
.h8{height:43.920000pt;}
.h20{height:43.920107pt;}
.hd{height:46.593750pt;}
.hc{height:48.000000pt;}
.h9{height:48.400000pt;}
.h17{height:52.080000pt;}
.he{height:58.242188pt;}
.h14{height:71.022656pt;}
.h1d{height:75.600000pt;}
.h7{height:76.001333pt;}
.h4{height:77.578594pt;}
.h16{height:77.602274pt;}
.h13{height:77.620834pt;}
.h3{height:78.640000pt;}
.h1f{height:81.798933pt;}
.h1a{height:88.636800pt;}
.h19{height:88.637867pt;}
.h1b{height:90.866667pt;}
.hb{height:115.920000pt;}
.h6{height:116.484375pt;}
.h11{height:131.440000pt;}
.h5{height:145.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:159.680000pt;}
.w8{width:238.240000pt;}
.w3{width:255.120000pt;}
.w5{width:406.398667pt;}
.w2{width:406.481333pt;}
.w7{width:414.800000pt;}
.wb{width:493.360000pt;}
.wc{width:550.960000pt;}
.w9{width:654.000000pt;}
.w6{width:662.880000pt;}
.w4{width:699.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:6.880000pt;}
.x11{left:31.200000pt;}
.x5{left:49.120000pt;}
.x7{left:82.480000pt;}
.x1{left:86.960000pt;}
.x2{left:92.560000pt;}
.x20{left:94.480000pt;}
.x14{left:99.680000pt;}
.x1b{left:105.079333pt;}
.xc{left:110.960000pt;}
.x13{left:118.480000pt;}
.xd{left:134.962240pt;}
.x1c{left:140.214267pt;}
.x12{left:142.480000pt;}
.x1d{left:146.214267pt;}
.xe{left:158.960000pt;}
.xb{left:173.280000pt;}
.x9{left:176.800000pt;}
.x4{left:182.480000pt;}
.x15{left:190.400000pt;}
.x17{left:206.959200pt;}
.x18{left:230.930320pt;}
.x1f{left:247.920000pt;}
.xa{left:272.240000pt;}
.x6{left:440.160000pt;}
.x8{left:493.360000pt;}
.x3{left:499.040000pt;}
.x10{left:503.040000pt;}
.x16{left:537.680000pt;}
.x1e{left:742.960000pt;}
.x19{left:754.960000pt;}
.x1a{left:756.959600pt;}
}




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