
    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_ff19fe9c099db651459be4ea.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.854492;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_4ab60d2dae8d208335f2a434.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005859;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_ea0bc12a3a43478bb46bdb59.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.119629;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_57961909b10af90084fed732.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.690918;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_0995071f30b0d887e5f9ace7.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_01dd17a944f7fad50a08eaee.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3d2ff9ecfbec828742e2af60.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.148926;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_77dca3929366cca8beb3345c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1a6826009b05ea4ab786f613.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.774902;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_21e870fc91a11b05fe416834.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;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_0456ed7ceeec9e7cd9967323.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_d3c12fa52af471a0e46a0568.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_366d9adf430907bd922bf027.woff2')format("woff");}.ffe{font-family:ffe;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;}
.m2{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);}
.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);}
.v1{vertical-align:-130.320000px;}
.v0{vertical-align:0.000000px;}
.ls22{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.642000px;}
.ls6{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.216000px;}
.ls20{letter-spacing:-0.181200px;}
.ls1b{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.126600px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.028080px;}
.ls1a{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.080400px;}
.ls1c{letter-spacing:0.120000px;}
.ls11{letter-spacing:0.144000px;}
.ls1d{letter-spacing:0.179280px;}
.lse{letter-spacing:0.276600px;}
.ls0{letter-spacing:0.324000px;}
.ls5{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.363000px;}
.ls18{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.720000px;}
.ls14{letter-spacing:2.880000px;}
.ls13{letter-spacing:7.200000px;}
.ls12{letter-spacing:15.840000px;}
.ls17{letter-spacing:33.984000px;}
.ls1f{letter-spacing:46.026720px;}
.ls1e{letter-spacing:54.864000px;}
.ls8{letter-spacing:63.485760px;}
.lsb{letter-spacing:70.640640px;}
.ls9{letter-spacing:91.589760px;}
.lsa{letter-spacing:113.189760px;}
.lsf{letter-spacing:132.456000px;}
.lsc{letter-spacing:255.680640px;}
.ls21{letter-spacing:846.180000px;}
.ls15{letter-spacing:849.836640px;}
.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;}
}
.ws11{word-spacing:-72.000000px;}
.ws7{word-spacing:-27.000000px;}
.ws0{word-spacing:-21.420000px;}
.ws1{word-spacing:-20.700000px;}
.ws9{word-spacing:-18.720000px;}
.wsa{word-spacing:-18.504000px;}
.ws10{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.072000px;}
.ws8{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.856000px;}
.ws16{word-spacing:-17.784000px;}
.wsb{word-spacing:-17.712000px;}
.ws3{word-spacing:-15.840000px;}
.wsf{word-spacing:-15.552000px;}
.ws12{word-spacing:-15.300000px;}
.wse{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.682360px;}
.ws6{word-spacing:-14.595960px;}
.ws13{word-spacing:-14.580000px;}
.ws5{word-spacing:-14.192760px;}
.ws14{word-spacing:-12.420000px;}
.ws15{word-spacing:-11.878800px;}
.ws2{word-spacing:0.000000px;}
._8{margin-left:-13.095720px;}
._6{margin-left:-12.038760px;}
._3{margin-left:-10.178880px;}
._7{margin-left:-7.942320px;}
._4{margin-left:-4.716000px;}
._e{margin-left:-3.636000px;}
._5{margin-left:-2.568240px;}
._1{margin-left:-1.170000px;}
._0{width:1.308000px;}
._2{width:2.748000px;}
._15{width:4.266000px;}
._c{width:5.544000px;}
._d{width:6.912000px;}
._a{width:8.352000px;}
._b{width:9.564000px;}
._17{width:10.872000px;}
._18{width:11.898000px;}
._12{width:13.752000px;}
._13{width:15.048000px;}
._11{width:16.320000px;}
._1c{width:19.080000px;}
._19{width:20.898000px;}
._14{width:22.536000px;}
._25{width:23.610000px;}
._26{width:24.768000px;}
._27{width:26.496000px;}
._28{width:27.504000px;}
._29{width:29.160000px;}
._2f{width:30.696000px;}
._f{width:31.752000px;}
._10{width:33.120000px;}
._16{width:34.164000px;}
._1a{width:35.346000px;}
._1b{width:37.296000px;}
._31{width:38.808000px;}
._22{width:41.688000px;}
._23{width:43.092000px;}
._2d{width:44.448000px;}
._2e{width:45.642000px;}
._24{width:47.232000px;}
._1d{width:50.256000px;}
._1e{width:51.480000px;}
._2c{width:53.334000px;}
._2b{width:54.810000px;}
._33{width:56.736000px;}
._32{width:58.032000px;}
._1f{width:59.976000px;}
._20{width:60.984000px;}
._21{width:66.024000px;}
._38{width:68.184000px;}
._35{width:73.224000px;}
._39{width:76.896000px;}
._3a{width:79.236000px;}
._37{width:86.976000px;}
._36{width:149.400000px;}
._3b{width:160.272000px;}
._30{width:194.376000px;}
._34{width:243.864000px;}
._9{width:843.240000px;}
._3c{width:849.836640px;}
._2a{width:2537.910240px;}
.fc3{color:transparent;}
.fc1{color:rgb(227,108,10);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs2{font-size:63.360000px;}
.fs9{font-size:66.240000px;}
.fs4{font-size:69.120000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fsa{font-size:108.000000px;}
.fs3{font-size:120.240000px;}
.fs5{font-size:131.760000px;}
.fs7{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y149{bottom:1.800000px;}
.y156{bottom:1.980000px;}
.y154{bottom:3.780000px;}
.y176{bottom:10.080000px;}
.y178{bottom:10.260000px;}
.y17c{bottom:10.305000px;}
.y159{bottom:10.800000px;}
.y160{bottom:10.980000px;}
.y16a{bottom:12.960000px;}
.y16e{bottom:14.040000px;}
.y148{bottom:19.080000px;}
.y153{bottom:21.240000px;}
.yea{bottom:21.600000px;}
.yec{bottom:21.960000px;}
.yf5{bottom:21.990000px;}
.yf0{bottom:22.140000px;}
.y162{bottom:23.145000px;}
.y15b{bottom:28.620000px;}
.y164{bottom:28.695000px;}
.y15f{bottom:28.800000px;}
.y169{bottom:29.160000px;}
.y16d{bottom:31.680000px;}
.yf9{bottom:32.400000px;}
.yf3{bottom:32.430000px;}
.y147{bottom:36.360000px;}
.y15d{bottom:36.390000px;}
.y173{bottom:36.720000px;}
.y152{bottom:38.520000px;}
.yf1{bottom:42.840000px;}
.yf4{bottom:42.870000px;}
.yef{bottom:43.020000px;}
.y168{bottom:46.440000px;}
.y16c{bottom:49.005000px;}
.y172{bottom:52.920000px;}
.yf8{bottom:53.280000px;}
.y151{bottom:55.800000px;}
.yee{bottom:63.540000px;}
.yf7{bottom:63.720000px;}
.y171{bottom:70.200000px;}
.y3{bottom:72.036000px;}
.y150{bottom:73.080000px;}
.y167{bottom:81.000000px;}
.y170{bottom:87.525000px;}
.y14f{bottom:90.360000px;}
.y166{bottom:98.280000px;}
.y14e{bottom:107.640000px;}
.y2{bottom:108.036000px;}
.y14d{bottom:124.785000px;}
.y158{bottom:132.330000px;}
.yde{bottom:132.696000px;}
.y25b{bottom:133.056000px;}
.y1e2{bottom:136.836000px;}
.y242{bottom:140.256000px;}
.y5f{bottom:142.056000px;}
.y14c{bottom:142.065000px;}
.y1b5{bottom:142.596000px;}
.yc4{bottom:142.776000px;}
.y1f2{bottom:145.836000px;}
.y119{bottom:146.556000px;}
.y103{bottom:148.896000px;}
.y21a{bottom:149.616000px;}
.yab{bottom:149.976000px;}
.y12b{bottom:152.310000px;}
.y1ca{bottom:154.830000px;}
.y1ee{bottom:158.970000px;}
.y14b{bottom:159.345000px;}
.ydd{bottom:163.650000px;}
.y1a{bottom:165.810000px;}
.y1e1{bottom:167.970000px;}
.y1b4{bottom:173.550000px;}
.yc3{bottom:173.910000px;}
.y25a{bottom:174.450000px;}
.y1f1{bottom:176.970000px;}
.y118{bottom:177.690000px;}
.y102{bottom:179.850000px;}
.y219{bottom:180.570000px;}
.yaa{bottom:180.930000px;}
.y241{bottom:181.650000px;}
.y191{bottom:182.190000px;}
.y12a{bottom:183.450000px;}
.y204{bottom:183.630000px;}
.y1c9{bottom:185.970000px;}
.y3b{bottom:187.950000px;}
.y5e{bottom:189.750000px;}
.y1ed{bottom:189.930000px;}
.ydc{bottom:194.790000px;}
.y1e0{bottom:198.930000px;}
.y19{bottom:203.430000px;}
.y1b3{bottom:204.690000px;}
.yc2{bottom:204.870000px;}
.y1f0{bottom:207.930000px;}
.y117{bottom:208.650000px;}
.y101{bottom:210.990000px;}
.y218{bottom:211.710000px;}
.ya9{bottom:212.070000px;}
.y190{bottom:213.330000px;}
.y5d{bottom:213.510000px;}
.y129{bottom:214.410000px;}
.y203{bottom:214.770000px;}
.y259{bottom:215.850000px;}
.y1c8{bottom:216.930000px;}
.y145{bottom:217.470000px;}
.y1ec{bottom:221.070000px;}
.y240{bottom:223.050000px;}
.ydb{bottom:225.750000px;}
.y1df{bottom:230.070000px;}
.y3a{bottom:230.430000px;}
.y1b2{bottom:235.650000px;}
.y18{bottom:236.010000px;}
.y5c{bottom:237.270000px;}
.y1ef{bottom:239.070000px;}
.y116{bottom:239.790000px;}
.y100{bottom:241.950000px;}
.ya8{bottom:243.030000px;}
.y18f{bottom:244.290000px;}
.y128{bottom:245.370000px;}
.y202{bottom:245.730000px;}
.y1c7{bottom:248.070000px;}
.y1eb{bottom:252.030000px;}
.yda{bottom:256.890000px;}
.y258{bottom:257.250000px;}
.y82{bottom:259.230000px;}
.y5b{bottom:261.030000px;}
.y23f{bottom:264.450000px;}
.y1b1{bottom:266.790000px;}
.yc1{bottom:266.970000px;}
.y39{bottom:268.590000px;}
.y1de{bottom:270.030000px;}
.y115{bottom:270.750000px;}
.yff{bottom:273.090000px;}
.ya7{bottom:274.170000px;}
.y18e{bottom:275.250000px;}
.y17{bottom:276.150000px;}
.y201{bottom:276.870000px;}
.y1c6{bottom:279.030000px;}
.y81{bottom:279.930000px;}
.y161{bottom:282.240000px;}
.y5a{bottom:284.970000px;}
.yd9{bottom:287.850000px;}
.y16b{bottom:289.650000px;}
.y1ea{bottom:292.170000px;}
.y1b0{bottom:297.750000px;}
.yc0{bottom:298.110000px;}
.y257{bottom:298.650000px;}
.y38{bottom:299.730000px;}
.y80{bottom:300.990000px;}
.y1dd{bottom:301.170000px;}
.y114{bottom:301.890000px;}
.yfe{bottom:304.050000px;}
.ya6{bottom:305.130000px;}
.y23e{bottom:305.850000px;}
.y18d{bottom:306.390000px;}
.y200{bottom:307.830000px;}
.y59{bottom:308.730000px;}
.y1c5{bottom:310.170000px;}
.y25e{bottom:313.590000px;}
.y144{bottom:316.110000px;}
.yd8{bottom:318.990000px;}
.y7f{bottom:320.790000px;}
.y16{bottom:321.690000px;}
.y1e9{bottom:323.130000px;}
.y127{bottom:325.470000px;}
.y1af{bottom:328.890000px;}
.ybf{bottom:329.070000px;}
.y37{bottom:330.870000px;}
.y1dc{bottom:332.130000px;}
.y58{bottom:332.310000px;}
.y113{bottom:332.850000px;}
.yfd{bottom:335.190000px;}
.ya5{bottom:336.270000px;}
.y18c{bottom:337.395000px;}
.y1ff{bottom:339.015000px;}
.y256{bottom:340.095000px;}
.y1c4{bottom:341.175000px;}
.y25d{bottom:343.155000px;}
.y23d{bottom:347.295000px;}
.yd7{bottom:349.995000px;}
.y1e8{bottom:354.315000px;}
.y126{bottom:356.655000px;}
.y1ae{bottom:359.895000px;}
.ybe{bottom:360.255000px;}
.y7e{bottom:360.615000px;}
.y36{bottom:361.515000px;}
.y1db{bottom:363.315000px;}
.y57{bottom:364.035000px;}
.y143{bottom:365.655000px;}
.y15{bottom:367.095000px;}
.ya4{bottom:367.275000px;}
.y18b{bottom:368.535000px;}
.y1fe{bottom:369.975000px;}
.y1c3{bottom:372.315000px;}
.yfc{bottom:373.755000px;}
.yd6{bottom:381.135000px;}
.y255{bottom:381.495000px;}
.y25c{bottom:382.755000px;}
.y7d{bottom:384.375000px;}
.y1e7{bottom:385.275000px;}
.y23c{bottom:388.695000px;}
.y1ad{bottom:391.035000px;}
.ybd{bottom:391.215000px;}
.y35{bottom:392.115000px;}
.y1da{bottom:394.275000px;}
.y112{bottom:394.995000px;}
.y56{bottom:395.175000px;}
.ya3{bottom:398.235000px;}
.y18a{bottom:399.495000px;}
.y157{bottom:400.680000px;}
.y1fd{bottom:400.935000px;}
.y165{bottom:402.195000px;}
.y1c2{bottom:403.275000px;}
.y125{bottom:407.055000px;}
.y7c{bottom:408.135000px;}
.y14{bottom:411.915000px;}
.y142{bottom:415.155000px;}
.y1e6{bottom:416.235000px;}
.yd5{bottom:419.655000px;}
.y217{bottom:421.995000px;}
.ybc{bottom:422.355000px;}
.y34{bottom:422.715000px;}
.y254{bottom:422.895000px;}
.yfb{bottom:424.515000px;}
.y1d9{bottom:425.235000px;}
.ya2{bottom:429.375000px;}
.y23b{bottom:430.095000px;}
.y189{bottom:430.635000px;}
.y7b{bottom:431.895000px;}
.y1fc{bottom:432.075000px;}
.y1c1{bottom:434.235000px;}
.y124{bottom:438.015000px;}
.y1ac{bottom:439.995000px;}
.y111{bottom:441.075000px;}
.yfa{bottom:441.435000px;}
.y33{bottom:445.035000px;}
.y1a1{bottom:446.835000px;}
.y1e5{bottom:447.375000px;}
.y216{bottom:453.135000px;}
.ybb{bottom:453.315000px;}
.y7a{bottom:455.835000px;}
.y1d8{bottom:456.375000px;}
.y13{bottom:457.095000px;}
.y55{bottom:458.715000px;}
.ya1{bottom:460.335000px;}
.y188{bottom:461.595000px;}
.y1fb{bottom:463.035000px;}
.y253{bottom:464.115000px;}
.y141{bottom:464.655000px;}
.y1c0{bottom:465.375000px;}
.yd4{bottom:468.795000px;}
.y1ab{bottom:471.135000px;}
.y23a{bottom:471.495000px;}
.y110{bottom:472.035000px;}
.y146{bottom:473.655000px;}
.y32{bottom:475.095000px;}
.y1e4{bottom:477.975000px;}
.y79{bottom:479.595000px;}
.y54{bottom:482.475000px;}
.y215{bottom:484.095000px;}
.yba{bottom:484.455000px;}
.y1d7{bottom:487.335000px;}
.y123{bottom:488.415000px;}
.ya0{bottom:491.475000px;}
.y187{bottom:492.735000px;}
.y1fa{bottom:494.175000px;}
.y1bf{bottom:496.335000px;}
.y31{bottom:497.235000px;}
.yd3{bottom:499.935000px;}
.y1aa{bottom:502.095000px;}
.y12{bottom:502.275000px;}
.y10f{bottom:503.175000px;}
.y78{bottom:503.355000px;}
.y252{bottom:505.515000px;}
.y53{bottom:506.235000px;}
.y1e3{bottom:509.115000px;}
.y239{bottom:512.895000px;}
.y140{bottom:514.155000px;}
.y214{bottom:515.235000px;}
.yb9{bottom:515.415000px;}
.y1d6{bottom:518.475000px;}
.yf6{bottom:519.195000px;}
.y122{bottom:519.375000px;}
.y9f{bottom:522.435000px;}
.y77{bottom:527.115000px;}
.y30{bottom:527.295000px;}
.y1be{bottom:527.475000px;}
.y93{bottom:528.555000px;}
.y52{bottom:529.995000px;}
.yd2{bottom:530.895000px;}
.y1a0{bottom:531.435000px;}
.y1a9{bottom:533.235000px;}
.y10e{bottom:534.135000px;}
.y186{bottom:534.315000px;}
.y1f9{bottom:543.135000px;}
.y11{bottom:544.755000px;}
.y213{bottom:546.195000px;}
.yb8{bottom:546.555000px;}
.y251{bottom:546.915000px;}
.y1d5{bottom:549.435000px;}
.y2f{bottom:549.615000px;}
.y76{bottom:551.055000px;}
.y9e{bottom:553.575000px;}
.y51{bottom:553.935000px;}
.y238{bottom:554.295000px;}
.y1bd{bottom:558.435000px;}
.y121{bottom:562.575000px;}
.y13f{bottom:563.655000px;}
.y1a8{bottom:564.195000px;}
.y185{bottom:564.735000px;}
.y10d{bottom:565.275000px;}
.y92{bottom:568.515000px;}
.yd1{bottom:569.415000px;}
.y15e{bottom:573.735000px;}
.y1f8{bottom:574.275000px;}
.y75{bottom:574.815000px;}
.y15c{bottom:576.075000px;}
.y212{bottom:577.335000px;}
.yb7{bottom:577.515000px;}
.y50{bottom:577.695000px;}
.y2e{bottom:579.675000px;}
.y1d4{bottom:580.575000px;}
.y13e{bottom:582.015000px;}
.y9d{bottom:584.535000px;}
.y120{bottom:586.335000px;}
.y250{bottom:588.315000px;}
.y1bc{bottom:589.575000px;}
.y10{bottom:592.275000px;}
.y1a7{bottom:595.335000px;}
.y237{bottom:595.695000px;}
.y10c{bottom:596.235000px;}
.yf2{bottom:597.135000px;}
.y74{bottom:598.575000px;}
.y13d{bottom:601.275000px;}
.y4f{bottom:601.455000px;}
.y2d{bottom:601.815000px;}
.y19f{bottom:602.535000px;}
.y1f7{bottom:605.265000px;}
.y211{bottom:608.325000px;}
.y91{bottom:608.685000px;}
.y1d3{bottom:611.565000px;}
.y9c{bottom:615.705000px;}
.y184{bottom:617.505000px;}
.y13c{bottom:620.385000px;}
.y1bb{bottom:620.565000px;}
.y73{bottom:622.365000px;}
.y4e{bottom:625.245000px;}
.y1a6{bottom:626.325000px;}
.y10b{bottom:627.405000px;}
.y24f{bottom:629.745000px;}
.y2c{bottom:631.905000px;}
.y22a{bottom:632.805000px;}
.y19e{bottom:633.705000px;}
.y1f6{bottom:636.405000px;}
.y11f{bottom:636.765000px;}
.y236{bottom:637.125000px;}
.y210{bottom:639.465000px;}
.y90{bottom:639.645000px;}
.yf{bottom:640.005000px;}
.y1d2{bottom:642.705000px;}
.y72{bottom:646.125000px;}
.yd0{bottom:646.665000px;}
.y4d{bottom:649.185000px;}
.y1ba{bottom:651.705000px;}
.yed{bottom:654.225000px;}
.y1a5{bottom:657.465000px;}
.y183{bottom:658.185000px;}
.y10a{bottom:658.365000px;}
.y13b{bottom:658.905000px;}
.y2b{bottom:662.505000px;}
.y229{bottom:663.945000px;}
.y19d{bottom:664.665000px;}
.y1f5{bottom:667.365000px;}
.y9b{bottom:667.725000px;}
.y71{bottom:670.065000px;}
.y20f{bottom:670.425000px;}
.y8f{bottom:670.785000px;}
.y24e{bottom:671.145000px;}
.y4c{bottom:672.945000px;}
.ycf{bottom:677.805000px;}
.y13a{bottom:678.165000px;}
.y235{bottom:678.525000px;}
.y15a{bottom:679.425000px;}
.y1b9{bottom:682.665000px;}
.y182{bottom:684.465000px;}
.y109{bottom:689.505000px;}
.ye{bottom:690.945000px;}
.y2a{bottom:693.105000px;}
.y70{bottom:693.825000px;}
.y228{bottom:694.905000px;}
.y19c{bottom:695.805000px;}
.y1a4{bottom:695.985000px;}
.y4b{bottom:696.705000px;}
.y139{bottom:697.425000px;}
.y9a{bottom:698.865000px;}
.y20e{bottom:701.565000px;}
.yb6{bottom:701.745000px;}
.y1f4{bottom:705.885000px;}
.yce{bottom:708.765000px;}
.y8e{bottom:710.745000px;}
.y24d{bottom:712.545000px;}
.y1b8{bottom:713.805000px;}
.y138{bottom:716.505000px;}
.y6f{bottom:717.585000px;}
.y234{bottom:719.925000px;}
.y4a{bottom:720.465000px;}
.y29{bottom:723.705000px;}
.y227{bottom:725.865000px;}
.y1f3{bottom:726.585000px;}
.y19b{bottom:726.765000px;}
.yd{bottom:727.665000px;}
.y11e{bottom:729.465000px;}
.y99{bottom:729.825000px;}
.yeb{bottom:732.165000px;}
.y20d{bottom:732.525000px;}
.yb5{bottom:732.885000px;}
.y137{bottom:735.765000px;}
.y181{bottom:737.025000px;}
.ycd{bottom:739.545000px;}
.y6e{bottom:741.345000px;}
.y8d{bottom:741.885000px;}
.y49{bottom:744.405000px;}
.y1b7{bottom:744.765000px;}
.y108{bottom:751.605000px;}
.y1a3{bottom:753.765000px;}
.y24c{bottom:753.945000px;}
.y28{bottom:754.305000px;}
.y136{bottom:755.025000px;}
.y14a{bottom:757.365000px;}
.y226{bottom:759.705000px;}
.y98{bottom:760.785000px;}
.y233{bottom:761.325000px;}
.y180{bottom:763.305000px;}
.y11d{bottom:763.485000px;}
.y6d{bottom:763.845000px;}
.yc{bottom:764.565000px;}
.y19a{bottom:766.905000px;}
.y48{bottom:768.165000px;}
.ye9{bottom:768.525000px;}
.y8c{bottom:772.845000px;}
.ycc{bottom:773.565000px;}
.y135{bottom:774.285000px;}
.y1b6{bottom:775.905000px;}
.y163{bottom:778.320000px;}
.y107{bottom:782.565000px;}
.y27{bottom:784.725000px;}
.y1a2{bottom:784.905000px;}
.y16f{bottom:786.165000px;}
.y17f{bottom:789.585000px;}
.y47{bottom:791.925000px;}
.y134{bottom:793.545000px;}
.y20c{bottom:794.625000px;}
.y6c{bottom:794.805000px;}
.yb4{bottom:794.985000px;}
.y24b{bottom:795.345000px;}
.y199{bottom:797.865000px;}
.yb{bottom:801.285000px;}
.y232{bottom:802.725000px;}
.y8b{bottom:803.985000px;}
.y1d1{bottom:806.865000px;}
.y225{bottom:812.085000px;}
.y133{bottom:812.805000px;}
.y106{bottom:813.705000px;}
.y26{bottom:815.325000px;}
.y46{bottom:815.685000px;}
.y11c{bottom:815.865000px;}
.y17e{bottom:816.045000px;}
.y97{bottom:822.885000px;}
.y20b{bottom:825.585000px;}
.y6b{bottom:825.945000px;}
.ye8{bottom:827.025000px;}
.y198{bottom:829.005000px;}
.y132{bottom:831.885000px;}
.y8a{bottom:834.945000px;}
.y24a{bottom:836.745000px;}
.ya{bottom:838.005000px;}
.y45{bottom:839.445000px;}
.y17d{bottom:842.325000px;}
.y224{bottom:843.045000px;}
.y231{bottom:844.125000px;}
.y105{bottom:844.665000px;}
.y25{bottom:845.925000px;}
.y11b{bottom:847.005000px;}
.y131{bottom:851.145000px;}
.yb3{bottom:856.905000px;}
.ycb{bottom:857.085000px;}
.y197{bottom:859.965000px;}
.y44{bottom:863.385000px;}
.y89{bottom:866.085000px;}
.y17b{bottom:868.605000px;}
.y1d0{bottom:868.965000px;}
.ye7{bottom:870.405000px;}
.y6a{bottom:873.330000px;}
.y223{bottom:874.230000px;}
.y20a{bottom:874.770000px;}
.y96{bottom:875.130000px;}
.y24{bottom:876.570000px;}
.y11a{bottom:878.010000px;}
.y249{bottom:878.190000px;}
.y104{bottom:883.230000px;}
.y230{bottom:885.570000px;}
.y43{bottom:887.190000px;}
.yca{bottom:888.090000px;}
.y9{bottom:889.530000px;}
.y130{bottom:889.710000px;}
.y196{bottom:891.150000px;}
.y17a{bottom:894.930000px;}
.y88{bottom:897.090000px;}
.y69{bottom:897.270000px;}
.y1cf{bottom:900.150000px;}
.ye6{bottom:901.410000px;}
.y209{bottom:905.730000px;}
.y95{bottom:906.090000px;}
.y222{bottom:906.450000px;}
.y23{bottom:907.170000px;}
.y12f{bottom:908.970000px;}
.yb2{bottom:909.150000px;}
.y42{bottom:910.950000px;}
.yc9{bottom:919.230000px;}
.y248{bottom:919.590000px;}
.y179{bottom:921.210000px;}
.y195{bottom:922.110000px;}
.y22f{bottom:926.970000px;}
.y12e{bottom:927.690000px;}
.y87{bottom:928.230000px;}
.y1ce{bottom:931.110000px;}
.ye5{bottom:932.550000px;}
.y41{bottom:934.710000px;}
.y68{bottom:935.970000px;}
.y208{bottom:936.870000px;}
.y94{bottom:937.230000px;}
.y221{bottom:937.590000px;}
.y22{bottom:937.770000px;}
.yb1{bottom:940.110000px;}
.y8{bottom:944.790000px;}
.y12d{bottom:946.050000px;}
.y155{bottom:946.410000px;}
.y177{bottom:947.490000px;}
.yc8{bottom:950.190000px;}
.y194{bottom:953.250000px;}
.y67{bottom:959.730000px;}
.y247{bottom:960.990000px;}
.y1cd{bottom:962.250000px;}
.ye4{bottom:963.510000px;}
.y12c{bottom:964.410000px;}
.y207{bottom:967.830000px;}
.y21{bottom:968.190000px;}
.y22e{bottom:968.370000px;}
.y220{bottom:968.730000px;}
.yb0{bottom:971.250000px;}
.y175{bottom:973.950000px;}
.y40{bottom:974.670000px;}
.yc7{bottom:981.330000px;}
.y66{bottom:983.670000px;}
.y193{bottom:984.210000px;}
.y7{bottom:985.110000px;}
.y1cc{bottom:993.210000px;}
.ye3{bottom:994.650000px;}
.y20{bottom:998.790000px;}
.y86{bottom:999.330000px;}
.y21f{bottom:1000.950000px;}
.yaf{bottom:1002.210000px;}
.y246{bottom:1002.390000px;}
.y206{bottom:1006.350000px;}
.y65{bottom:1007.430000px;}
.y22d{bottom:1009.770000px;}
.y3f{bottom:1009.950000px;}
.y6{bottom:1011.210000px;}
.yc6{bottom:1012.290000px;}
.y192{bottom:1024.350000px;}
.ye2{bottom:1025.610000px;}
.y205{bottom:1027.050000px;}
.y1f{bottom:1029.390000px;}
.y85{bottom:1030.290000px;}
.y64{bottom:1031.190000px;}
.y21e{bottom:1032.090000px;}
.yae{bottom:1033.350000px;}
.y174{bottom:1036.230000px;}
.yc5{bottom:1043.430000px;}
.y245{bottom:1043.790000px;}
.y3e{bottom:1046.310000px;}
.y22c{bottom:1051.170000px;}
.y63{bottom:1054.950000px;}
.y1cb{bottom:1055.310000px;}
.ye1{bottom:1056.750000px;}
.y1e{bottom:1059.990000px;}
.y84{bottom:1061.430000px;}
.y21d{bottom:1063.050000px;}
.yad{bottom:1064.310000px;}
.y5{bottom:1072.050000px;}
.y62{bottom:1078.890000px;}
.y3d{bottom:1082.130000px;}
.y244{bottom:1085.190000px;}
.ye0{bottom:1087.710000px;}
.y1d{bottom:1090.590000px;}
.y83{bottom:1092.390000px;}
.y22b{bottom:1092.570000px;}
.y21c{bottom:1094.190000px;}
.yac{bottom:1095.450000px;}
.y61{bottom:1102.650000px;}
.y1c{bottom:1114.890000px;}
.y3c{bottom:1117.770000px;}
.y21b{bottom:1125.150000px;}
.y4{bottom:1126.050000px;}
.ydf{bottom:1126.230000px;}
.y60{bottom:1126.410000px;}
.y243{bottom:1126.590000px;}
.y1b{bottom:1161.900000px;}
.y1{bottom:1197.000000px;}
.h21{height:15.840000px;}
.h30{height:25.380000px;}
.h2c{height:25.560000px;}
.h2f{height:25.596000px;}
.h17{height:35.640000px;}
.h2e{height:47.344922px;}
.h2d{height:48.616875px;}
.h1f{height:49.860000px;}
.h24{height:49.896000px;}
.h25{height:50.076000px;}
.h9{height:50.364141px;}
.h13{height:52.515000px;}
.h29{height:55.503491px;}
.h23{height:56.214844px;}
.h1a{height:56.376000px;}
.h18{height:58.651172px;}
.h15{height:59.343750px;}
.h1d{height:59.439023px;}
.h16{height:60.226875px;}
.h2{height:60.679688px;}
.h1e{height:62.211094px;}
.h3{height:63.019687px;}
.h31{height:64.546875px;}
.hd{height:64.875938px;}
.hc{height:65.884219px;}
.hb{height:67.824844px;}
.h5{height:68.748750px;}
.h11{height:70.628906px;}
.h10{height:70.664062px;}
.hf{height:72.562500px;}
.h2a{height:73.296000px;}
.h1c{height:74.004654px;}
.h14{height:74.953125px;}
.h19{height:77.040000px;}
.h1b{height:77.220000px;}
.h7{height:84.898125px;}
.h26{height:85.860000px;}
.h4{height:101.335078px;}
.he{height:108.843750px;}
.h12{height:110.583984px;}
.ha{height:121.179375px;}
.h28{height:121.680000px;}
.h6{height:131.052305px;}
.h2b{height:134.676000px;}
.h8{height:145.125000px;}
.h27{height:146.520000px;}
.h20{height:173.010000px;}
.h22{height:324.900000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:15.840000px;}
.wa{width:16.020000px;}
.we{width:22.140000px;}
.wd{width:22.320000px;}
.wf{width:22.500000px;}
.w11{width:25.920000px;}
.w10{width:26.136000px;}
.w12{width:33.480000px;}
.w14{width:41.940000px;}
.w13{width:42.336000px;}
.w15{width:52.920000px;}
.w3{width:92.880000px;}
.w4{width:176.430000px;}
.wb{width:221.250000px;}
.w6{width:221.430000px;}
.w7{width:245.910000px;}
.wc{width:247.350000px;}
.w5{width:421.815000px;}
.w8{width:508.965000px;}
.w16{width:637.845000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:8.100000px;}
.x23{left:10.800000px;}
.x27{left:14.040000px;}
.x2b{left:17.820000px;}
.x29{left:27.180000px;}
.x1f{left:30.600000px;}
.x24{left:32.040000px;}
.x2f{left:34.200000px;}
.x20{left:41.760000px;}
.x32{left:54.000000px;}
.x26{left:60.840000px;}
.x30{left:79.920000px;}
.x28{left:82.620000px;}
.x21{left:84.645000px;}
.x2a{left:86.400000px;}
.x2c{left:90.180000px;}
.x31{left:110.745000px;}
.x1{left:127.655987px;}
.x13{left:140.075987px;}
.xb{left:143.495987px;}
.xd{left:146.915987px;}
.x2d{left:149.040000px;}
.x15{left:150.149987px;}
.x8{left:151.589987px;}
.x17{left:154.649987px;}
.xc{left:159.149987px;}
.x7{left:168.869987px;}
.x33{left:170.129987px;}
.x16{left:180.749987px;}
.x6{left:185.069987px;}
.xe{left:192.629987px;}
.x1e{left:194.790000px;}
.x25{left:196.770000px;}
.x43{left:208.649987px;}
.x1a{left:220.530000px;}
.x40{left:237.639000px;}
.x34{left:277.634987px;}
.x4{left:280.874987px;}
.x14{left:294.734987px;}
.x18{left:325.874987px;}
.x12{left:333.614987px;}
.x1d{left:335.594987px;}
.x42{left:349.994987px;}
.x5{left:351.794987px;}
.x41{left:355.574987px;}
.xf{left:374.474987px;}
.x1b{left:396.975000px;}
.x35{left:419.475000px;}
.x36{left:441.975000px;}
.x3{left:446.474987px;}
.x37{left:468.105000px;}
.x22{left:487.725000px;}
.x2e{left:489.525000px;}
.x38{left:490.605000px;}
.x9{left:507.524987px;}
.x39{left:512.925000px;}
.x3a{left:538.845000px;}
.x3b{left:561.345000px;}
.x10{left:576.644987px;}
.x3c{left:594.825000px;}
.x3d{left:628.305000px;}
.x3e{left:670.650000px;}
.x11{left:687.569987px;}
.x3f{left:712.590000px;}
.x1c{left:745.529987px;}
.xa{left:755.609987px;}
.x2{left:765.509987px;}
@media print{
.v1{vertical-align:-115.840000pt;}
.v0{vertical-align:0.000000pt;}
.ls22{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.570667pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls20{letter-spacing:-0.161067pt;}
.ls1b{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.112533pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.024960pt;}
.ls1a{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.071467pt;}
.ls1c{letter-spacing:0.106667pt;}
.ls11{letter-spacing:0.128000pt;}
.ls1d{letter-spacing:0.159360pt;}
.lse{letter-spacing:0.245867pt;}
.ls0{letter-spacing:0.288000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.322667pt;}
.ls18{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls14{letter-spacing:2.560000pt;}
.ls13{letter-spacing:6.400000pt;}
.ls12{letter-spacing:14.080000pt;}
.ls17{letter-spacing:30.208000pt;}
.ls1f{letter-spacing:40.912640pt;}
.ls1e{letter-spacing:48.768000pt;}
.ls8{letter-spacing:56.431787pt;}
.lsb{letter-spacing:62.791680pt;}
.ls9{letter-spacing:81.413120pt;}
.lsa{letter-spacing:100.613120pt;}
.lsf{letter-spacing:117.738667pt;}
.lsc{letter-spacing:227.271680pt;}
.ls21{letter-spacing:752.160000pt;}
.ls15{letter-spacing:755.410347pt;}
.ws11{word-spacing:-64.000000pt;}
.ws7{word-spacing:-24.000000pt;}
.ws0{word-spacing:-19.040000pt;}
.ws1{word-spacing:-18.400000pt;}
.ws9{word-spacing:-16.640000pt;}
.wsa{word-spacing:-16.448000pt;}
.ws10{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.064000pt;}
.ws8{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.872000pt;}
.ws16{word-spacing:-15.808000pt;}
.wsb{word-spacing:-15.744000pt;}
.ws3{word-spacing:-14.080000pt;}
.wsf{word-spacing:-13.824000pt;}
.ws12{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.050987pt;}
.ws6{word-spacing:-12.974187pt;}
.ws13{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.615787pt;}
.ws14{word-spacing:-11.040000pt;}
.ws15{word-spacing:-10.558933pt;}
.ws2{word-spacing:0.000000pt;}
._8{margin-left:-11.640640pt;}
._6{margin-left:-10.701120pt;}
._3{margin-left:-9.047893pt;}
._7{margin-left:-7.059840pt;}
._4{margin-left:-4.192000pt;}
._e{margin-left:-3.232000pt;}
._5{margin-left:-2.282880pt;}
._1{margin-left:-1.040000pt;}
._0{width:1.162667pt;}
._2{width:2.442667pt;}
._15{width:3.792000pt;}
._c{width:4.928000pt;}
._d{width:6.144000pt;}
._a{width:7.424000pt;}
._b{width:8.501333pt;}
._17{width:9.664000pt;}
._18{width:10.576000pt;}
._12{width:12.224000pt;}
._13{width:13.376000pt;}
._11{width:14.506667pt;}
._1c{width:16.960000pt;}
._19{width:18.576000pt;}
._14{width:20.032000pt;}
._25{width:20.986667pt;}
._26{width:22.016000pt;}
._27{width:23.552000pt;}
._28{width:24.448000pt;}
._29{width:25.920000pt;}
._2f{width:27.285333pt;}
._f{width:28.224000pt;}
._10{width:29.440000pt;}
._16{width:30.368000pt;}
._1a{width:31.418667pt;}
._1b{width:33.152000pt;}
._31{width:34.496000pt;}
._22{width:37.056000pt;}
._23{width:38.304000pt;}
._2d{width:39.509333pt;}
._2e{width:40.570667pt;}
._24{width:41.984000pt;}
._1d{width:44.672000pt;}
._1e{width:45.760000pt;}
._2c{width:47.408000pt;}
._2b{width:48.720000pt;}
._33{width:50.432000pt;}
._32{width:51.584000pt;}
._1f{width:53.312000pt;}
._20{width:54.208000pt;}
._21{width:58.688000pt;}
._38{width:60.608000pt;}
._35{width:65.088000pt;}
._39{width:68.352000pt;}
._3a{width:70.432000pt;}
._37{width:77.312000pt;}
._36{width:132.800000pt;}
._3b{width:142.464000pt;}
._30{width:172.778667pt;}
._34{width:216.768000pt;}
._9{width:749.546667pt;}
._3c{width:755.410347pt;}
._2a{width:2255.920213pt;}
.fsb{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs2{font-size:56.320000pt;}
.fs9{font-size:58.880000pt;}
.fs4{font-size:61.440000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fsa{font-size:96.000000pt;}
.fs3{font-size:106.880000pt;}
.fs5{font-size:117.120000pt;}
.fs7{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y149{bottom:1.600000pt;}
.y156{bottom:1.760000pt;}
.y154{bottom:3.360000pt;}
.y176{bottom:8.960000pt;}
.y178{bottom:9.120000pt;}
.y17c{bottom:9.160000pt;}
.y159{bottom:9.600000pt;}
.y160{bottom:9.760000pt;}
.y16a{bottom:11.520000pt;}
.y16e{bottom:12.480000pt;}
.y148{bottom:16.960000pt;}
.y153{bottom:18.880000pt;}
.yea{bottom:19.200000pt;}
.yec{bottom:19.520000pt;}
.yf5{bottom:19.546667pt;}
.yf0{bottom:19.680000pt;}
.y162{bottom:20.573333pt;}
.y15b{bottom:25.440000pt;}
.y164{bottom:25.506667pt;}
.y15f{bottom:25.600000pt;}
.y169{bottom:25.920000pt;}
.y16d{bottom:28.160000pt;}
.yf9{bottom:28.800000pt;}
.yf3{bottom:28.826667pt;}
.y147{bottom:32.320000pt;}
.y15d{bottom:32.346667pt;}
.y173{bottom:32.640000pt;}
.y152{bottom:34.240000pt;}
.yf1{bottom:38.080000pt;}
.yf4{bottom:38.106667pt;}
.yef{bottom:38.240000pt;}
.y168{bottom:41.280000pt;}
.y16c{bottom:43.560000pt;}
.y172{bottom:47.040000pt;}
.yf8{bottom:47.360000pt;}
.y151{bottom:49.600000pt;}
.yee{bottom:56.480000pt;}
.yf7{bottom:56.640000pt;}
.y171{bottom:62.400000pt;}
.y3{bottom:64.032000pt;}
.y150{bottom:64.960000pt;}
.y167{bottom:72.000000pt;}
.y170{bottom:77.800000pt;}
.y14f{bottom:80.320000pt;}
.y166{bottom:87.360000pt;}
.y14e{bottom:95.680000pt;}
.y2{bottom:96.032000pt;}
.y14d{bottom:110.920000pt;}
.y158{bottom:117.626667pt;}
.yde{bottom:117.952000pt;}
.y25b{bottom:118.272000pt;}
.y1e2{bottom:121.632000pt;}
.y242{bottom:124.672000pt;}
.y5f{bottom:126.272000pt;}
.y14c{bottom:126.280000pt;}
.y1b5{bottom:126.752000pt;}
.yc4{bottom:126.912000pt;}
.y1f2{bottom:129.632000pt;}
.y119{bottom:130.272000pt;}
.y103{bottom:132.352000pt;}
.y21a{bottom:132.992000pt;}
.yab{bottom:133.312000pt;}
.y12b{bottom:135.386667pt;}
.y1ca{bottom:137.626667pt;}
.y1ee{bottom:141.306667pt;}
.y14b{bottom:141.640000pt;}
.ydd{bottom:145.466667pt;}
.y1a{bottom:147.386667pt;}
.y1e1{bottom:149.306667pt;}
.y1b4{bottom:154.266667pt;}
.yc3{bottom:154.586667pt;}
.y25a{bottom:155.066667pt;}
.y1f1{bottom:157.306667pt;}
.y118{bottom:157.946667pt;}
.y102{bottom:159.866667pt;}
.y219{bottom:160.506667pt;}
.yaa{bottom:160.826667pt;}
.y241{bottom:161.466667pt;}
.y191{bottom:161.946667pt;}
.y12a{bottom:163.066667pt;}
.y204{bottom:163.226667pt;}
.y1c9{bottom:165.306667pt;}
.y3b{bottom:167.066667pt;}
.y5e{bottom:168.666667pt;}
.y1ed{bottom:168.826667pt;}
.ydc{bottom:173.146667pt;}
.y1e0{bottom:176.826667pt;}
.y19{bottom:180.826667pt;}
.y1b3{bottom:181.946667pt;}
.yc2{bottom:182.106667pt;}
.y1f0{bottom:184.826667pt;}
.y117{bottom:185.466667pt;}
.y101{bottom:187.546667pt;}
.y218{bottom:188.186667pt;}
.ya9{bottom:188.506667pt;}
.y190{bottom:189.626667pt;}
.y5d{bottom:189.786667pt;}
.y129{bottom:190.586667pt;}
.y203{bottom:190.906667pt;}
.y259{bottom:191.866667pt;}
.y1c8{bottom:192.826667pt;}
.y145{bottom:193.306667pt;}
.y1ec{bottom:196.506667pt;}
.y240{bottom:198.266667pt;}
.ydb{bottom:200.666667pt;}
.y1df{bottom:204.506667pt;}
.y3a{bottom:204.826667pt;}
.y1b2{bottom:209.466667pt;}
.y18{bottom:209.786667pt;}
.y5c{bottom:210.906667pt;}
.y1ef{bottom:212.506667pt;}
.y116{bottom:213.146667pt;}
.y100{bottom:215.066667pt;}
.ya8{bottom:216.026667pt;}
.y18f{bottom:217.146667pt;}
.y128{bottom:218.106667pt;}
.y202{bottom:218.426667pt;}
.y1c7{bottom:220.506667pt;}
.y1eb{bottom:224.026667pt;}
.yda{bottom:228.346667pt;}
.y258{bottom:228.666667pt;}
.y82{bottom:230.426667pt;}
.y5b{bottom:232.026667pt;}
.y23f{bottom:235.066667pt;}
.y1b1{bottom:237.146667pt;}
.yc1{bottom:237.306667pt;}
.y39{bottom:238.746667pt;}
.y1de{bottom:240.026667pt;}
.y115{bottom:240.666667pt;}
.yff{bottom:242.746667pt;}
.ya7{bottom:243.706667pt;}
.y18e{bottom:244.666667pt;}
.y17{bottom:245.466667pt;}
.y201{bottom:246.106667pt;}
.y1c6{bottom:248.026667pt;}
.y81{bottom:248.826667pt;}
.y161{bottom:250.880000pt;}
.y5a{bottom:253.306667pt;}
.yd9{bottom:255.866667pt;}
.y16b{bottom:257.466667pt;}
.y1ea{bottom:259.706667pt;}
.y1b0{bottom:264.666667pt;}
.yc0{bottom:264.986667pt;}
.y257{bottom:265.466667pt;}
.y38{bottom:266.426667pt;}
.y80{bottom:267.546667pt;}
.y1dd{bottom:267.706667pt;}
.y114{bottom:268.346667pt;}
.yfe{bottom:270.266667pt;}
.ya6{bottom:271.226667pt;}
.y23e{bottom:271.866667pt;}
.y18d{bottom:272.346667pt;}
.y200{bottom:273.626667pt;}
.y59{bottom:274.426667pt;}
.y1c5{bottom:275.706667pt;}
.y25e{bottom:278.746667pt;}
.y144{bottom:280.986667pt;}
.yd8{bottom:283.546667pt;}
.y7f{bottom:285.146667pt;}
.y16{bottom:285.946667pt;}
.y1e9{bottom:287.226667pt;}
.y127{bottom:289.306667pt;}
.y1af{bottom:292.346667pt;}
.ybf{bottom:292.506667pt;}
.y37{bottom:294.106667pt;}
.y1dc{bottom:295.226667pt;}
.y58{bottom:295.386667pt;}
.y113{bottom:295.866667pt;}
.yfd{bottom:297.946667pt;}
.ya5{bottom:298.906667pt;}
.y18c{bottom:299.906667pt;}
.y1ff{bottom:301.346667pt;}
.y256{bottom:302.306667pt;}
.y1c4{bottom:303.266667pt;}
.y25d{bottom:305.026667pt;}
.y23d{bottom:308.706667pt;}
.yd7{bottom:311.106667pt;}
.y1e8{bottom:314.946667pt;}
.y126{bottom:317.026667pt;}
.y1ae{bottom:319.906667pt;}
.ybe{bottom:320.226667pt;}
.y7e{bottom:320.546667pt;}
.y36{bottom:321.346667pt;}
.y1db{bottom:322.946667pt;}
.y57{bottom:323.586667pt;}
.y143{bottom:325.026667pt;}
.y15{bottom:326.306667pt;}
.ya4{bottom:326.466667pt;}
.y18b{bottom:327.586667pt;}
.y1fe{bottom:328.866667pt;}
.y1c3{bottom:330.946667pt;}
.yfc{bottom:332.226667pt;}
.yd6{bottom:338.786667pt;}
.y255{bottom:339.106667pt;}
.y25c{bottom:340.226667pt;}
.y7d{bottom:341.666667pt;}
.y1e7{bottom:342.466667pt;}
.y23c{bottom:345.506667pt;}
.y1ad{bottom:347.586667pt;}
.ybd{bottom:347.746667pt;}
.y35{bottom:348.546667pt;}
.y1da{bottom:350.466667pt;}
.y112{bottom:351.106667pt;}
.y56{bottom:351.266667pt;}
.ya3{bottom:353.986667pt;}
.y18a{bottom:355.106667pt;}
.y157{bottom:356.160000pt;}
.y1fd{bottom:356.386667pt;}
.y165{bottom:357.506667pt;}
.y1c2{bottom:358.466667pt;}
.y125{bottom:361.826667pt;}
.y7c{bottom:362.786667pt;}
.y14{bottom:366.146667pt;}
.y142{bottom:369.026667pt;}
.y1e6{bottom:369.986667pt;}
.yd5{bottom:373.026667pt;}
.y217{bottom:375.106667pt;}
.ybc{bottom:375.426667pt;}
.y34{bottom:375.746667pt;}
.y254{bottom:375.906667pt;}
.yfb{bottom:377.346667pt;}
.y1d9{bottom:377.986667pt;}
.ya2{bottom:381.666667pt;}
.y23b{bottom:382.306667pt;}
.y189{bottom:382.786667pt;}
.y7b{bottom:383.906667pt;}
.y1fc{bottom:384.066667pt;}
.y1c1{bottom:385.986667pt;}
.y124{bottom:389.346667pt;}
.y1ac{bottom:391.106667pt;}
.y111{bottom:392.066667pt;}
.yfa{bottom:392.386667pt;}
.y33{bottom:395.586667pt;}
.y1a1{bottom:397.186667pt;}
.y1e5{bottom:397.666667pt;}
.y216{bottom:402.786667pt;}
.ybb{bottom:402.946667pt;}
.y7a{bottom:405.186667pt;}
.y1d8{bottom:405.666667pt;}
.y13{bottom:406.306667pt;}
.y55{bottom:407.746667pt;}
.ya1{bottom:409.186667pt;}
.y188{bottom:410.306667pt;}
.y1fb{bottom:411.586667pt;}
.y253{bottom:412.546667pt;}
.y141{bottom:413.026667pt;}
.y1c0{bottom:413.666667pt;}
.yd4{bottom:416.706667pt;}
.y1ab{bottom:418.786667pt;}
.y23a{bottom:419.106667pt;}
.y110{bottom:419.586667pt;}
.y146{bottom:421.026667pt;}
.y32{bottom:422.306667pt;}
.y1e4{bottom:424.866667pt;}
.y79{bottom:426.306667pt;}
.y54{bottom:428.866667pt;}
.y215{bottom:430.306667pt;}
.yba{bottom:430.626667pt;}
.y1d7{bottom:433.186667pt;}
.y123{bottom:434.146667pt;}
.ya0{bottom:436.866667pt;}
.y187{bottom:437.986667pt;}
.y1fa{bottom:439.266667pt;}
.y1bf{bottom:441.186667pt;}
.y31{bottom:441.986667pt;}
.yd3{bottom:444.386667pt;}
.y1aa{bottom:446.306667pt;}
.y12{bottom:446.466667pt;}
.y10f{bottom:447.266667pt;}
.y78{bottom:447.426667pt;}
.y252{bottom:449.346667pt;}
.y53{bottom:449.986667pt;}
.y1e3{bottom:452.546667pt;}
.y239{bottom:455.906667pt;}
.y140{bottom:457.026667pt;}
.y214{bottom:457.986667pt;}
.yb9{bottom:458.146667pt;}
.y1d6{bottom:460.866667pt;}
.yf6{bottom:461.506667pt;}
.y122{bottom:461.666667pt;}
.y9f{bottom:464.386667pt;}
.y77{bottom:468.546667pt;}
.y30{bottom:468.706667pt;}
.y1be{bottom:468.866667pt;}
.y93{bottom:469.826667pt;}
.y52{bottom:471.106667pt;}
.yd2{bottom:471.906667pt;}
.y1a0{bottom:472.386667pt;}
.y1a9{bottom:473.986667pt;}
.y10e{bottom:474.786667pt;}
.y186{bottom:474.946667pt;}
.y1f9{bottom:482.786667pt;}
.y11{bottom:484.226667pt;}
.y213{bottom:485.506667pt;}
.yb8{bottom:485.826667pt;}
.y251{bottom:486.146667pt;}
.y1d5{bottom:488.386667pt;}
.y2f{bottom:488.546667pt;}
.y76{bottom:489.826667pt;}
.y9e{bottom:492.066667pt;}
.y51{bottom:492.386667pt;}
.y238{bottom:492.706667pt;}
.y1bd{bottom:496.386667pt;}
.y121{bottom:500.066667pt;}
.y13f{bottom:501.026667pt;}
.y1a8{bottom:501.506667pt;}
.y185{bottom:501.986667pt;}
.y10d{bottom:502.466667pt;}
.y92{bottom:505.346667pt;}
.yd1{bottom:506.146667pt;}
.y15e{bottom:509.986667pt;}
.y1f8{bottom:510.466667pt;}
.y75{bottom:510.946667pt;}
.y15c{bottom:512.066667pt;}
.y212{bottom:513.186667pt;}
.yb7{bottom:513.346667pt;}
.y50{bottom:513.506667pt;}
.y2e{bottom:515.266667pt;}
.y1d4{bottom:516.066667pt;}
.y13e{bottom:517.346667pt;}
.y9d{bottom:519.586667pt;}
.y120{bottom:521.186667pt;}
.y250{bottom:522.946667pt;}
.y1bc{bottom:524.066667pt;}
.y10{bottom:526.466667pt;}
.y1a7{bottom:529.186667pt;}
.y237{bottom:529.506667pt;}
.y10c{bottom:529.986667pt;}
.yf2{bottom:530.786667pt;}
.y74{bottom:532.066667pt;}
.y13d{bottom:534.466667pt;}
.y4f{bottom:534.626667pt;}
.y2d{bottom:534.946667pt;}
.y19f{bottom:535.586667pt;}
.y1f7{bottom:538.013333pt;}
.y211{bottom:540.733333pt;}
.y91{bottom:541.053333pt;}
.y1d3{bottom:543.613333pt;}
.y9c{bottom:547.293333pt;}
.y184{bottom:548.893333pt;}
.y13c{bottom:551.453333pt;}
.y1bb{bottom:551.613333pt;}
.y73{bottom:553.213333pt;}
.y4e{bottom:555.773333pt;}
.y1a6{bottom:556.733333pt;}
.y10b{bottom:557.693333pt;}
.y24f{bottom:559.773333pt;}
.y2c{bottom:561.693333pt;}
.y22a{bottom:562.493333pt;}
.y19e{bottom:563.293333pt;}
.y1f6{bottom:565.693333pt;}
.y11f{bottom:566.013333pt;}
.y236{bottom:566.333333pt;}
.y210{bottom:568.413333pt;}
.y90{bottom:568.573333pt;}
.yf{bottom:568.893333pt;}
.y1d2{bottom:571.293333pt;}
.y72{bottom:574.333333pt;}
.yd0{bottom:574.813333pt;}
.y4d{bottom:577.053333pt;}
.y1ba{bottom:579.293333pt;}
.yed{bottom:581.533333pt;}
.y1a5{bottom:584.413333pt;}
.y183{bottom:585.053333pt;}
.y10a{bottom:585.213333pt;}
.y13b{bottom:585.693333pt;}
.y2b{bottom:588.893333pt;}
.y229{bottom:590.173333pt;}
.y19d{bottom:590.813333pt;}
.y1f5{bottom:593.213333pt;}
.y9b{bottom:593.533333pt;}
.y71{bottom:595.613333pt;}
.y20f{bottom:595.933333pt;}
.y8f{bottom:596.253333pt;}
.y24e{bottom:596.573333pt;}
.y4c{bottom:598.173333pt;}
.ycf{bottom:602.493333pt;}
.y13a{bottom:602.813333pt;}
.y235{bottom:603.133333pt;}
.y15a{bottom:603.933333pt;}
.y1b9{bottom:606.813333pt;}
.y182{bottom:608.413333pt;}
.y109{bottom:612.893333pt;}
.ye{bottom:614.173333pt;}
.y2a{bottom:616.093333pt;}
.y70{bottom:616.733333pt;}
.y228{bottom:617.693333pt;}
.y19c{bottom:618.493333pt;}
.y1a4{bottom:618.653333pt;}
.y4b{bottom:619.293333pt;}
.y139{bottom:619.933333pt;}
.y9a{bottom:621.213333pt;}
.y20e{bottom:623.613333pt;}
.yb6{bottom:623.773333pt;}
.y1f4{bottom:627.453333pt;}
.yce{bottom:630.013333pt;}
.y8e{bottom:631.773333pt;}
.y24d{bottom:633.373333pt;}
.y1b8{bottom:634.493333pt;}
.y138{bottom:636.893333pt;}
.y6f{bottom:637.853333pt;}
.y234{bottom:639.933333pt;}
.y4a{bottom:640.413333pt;}
.y29{bottom:643.293333pt;}
.y227{bottom:645.213333pt;}
.y1f3{bottom:645.853333pt;}
.y19b{bottom:646.013333pt;}
.yd{bottom:646.813333pt;}
.y11e{bottom:648.413333pt;}
.y99{bottom:648.733333pt;}
.yeb{bottom:650.813333pt;}
.y20d{bottom:651.133333pt;}
.yb5{bottom:651.453333pt;}
.y137{bottom:654.013333pt;}
.y181{bottom:655.133333pt;}
.ycd{bottom:657.373333pt;}
.y6e{bottom:658.973333pt;}
.y8d{bottom:659.453333pt;}
.y49{bottom:661.693333pt;}
.y1b7{bottom:662.013333pt;}
.y108{bottom:668.093333pt;}
.y1a3{bottom:670.013333pt;}
.y24c{bottom:670.173333pt;}
.y28{bottom:670.493333pt;}
.y136{bottom:671.133333pt;}
.y14a{bottom:673.213333pt;}
.y226{bottom:675.293333pt;}
.y98{bottom:676.253333pt;}
.y233{bottom:676.733333pt;}
.y180{bottom:678.493333pt;}
.y11d{bottom:678.653333pt;}
.y6d{bottom:678.973333pt;}
.yc{bottom:679.613333pt;}
.y19a{bottom:681.693333pt;}
.y48{bottom:682.813333pt;}
.ye9{bottom:683.133333pt;}
.y8c{bottom:686.973333pt;}
.ycc{bottom:687.613333pt;}
.y135{bottom:688.253333pt;}
.y1b6{bottom:689.693333pt;}
.y163{bottom:691.840000pt;}
.y107{bottom:695.613333pt;}
.y27{bottom:697.533333pt;}
.y1a2{bottom:697.693333pt;}
.y16f{bottom:698.813333pt;}
.y17f{bottom:701.853333pt;}
.y47{bottom:703.933333pt;}
.y134{bottom:705.373333pt;}
.y20c{bottom:706.333333pt;}
.y6c{bottom:706.493333pt;}
.yb4{bottom:706.653333pt;}
.y24b{bottom:706.973333pt;}
.y199{bottom:709.213333pt;}
.yb{bottom:712.253333pt;}
.y232{bottom:713.533333pt;}
.y8b{bottom:714.653333pt;}
.y1d1{bottom:717.213333pt;}
.y225{bottom:721.853333pt;}
.y133{bottom:722.493333pt;}
.y106{bottom:723.293333pt;}
.y26{bottom:724.733333pt;}
.y46{bottom:725.053333pt;}
.y11c{bottom:725.213333pt;}
.y17e{bottom:725.373333pt;}
.y97{bottom:731.453333pt;}
.y20b{bottom:733.853333pt;}
.y6b{bottom:734.173333pt;}
.ye8{bottom:735.133333pt;}
.y198{bottom:736.893333pt;}
.y132{bottom:739.453333pt;}
.y8a{bottom:742.173333pt;}
.y24a{bottom:743.773333pt;}
.ya{bottom:744.893333pt;}
.y45{bottom:746.173333pt;}
.y17d{bottom:748.733333pt;}
.y224{bottom:749.373333pt;}
.y231{bottom:750.333333pt;}
.y105{bottom:750.813333pt;}
.y25{bottom:751.933333pt;}
.y11b{bottom:752.893333pt;}
.y131{bottom:756.573333pt;}
.yb3{bottom:761.693333pt;}
.ycb{bottom:761.853333pt;}
.y197{bottom:764.413333pt;}
.y44{bottom:767.453333pt;}
.y89{bottom:769.853333pt;}
.y17b{bottom:772.093333pt;}
.y1d0{bottom:772.413333pt;}
.ye7{bottom:773.693333pt;}
.y6a{bottom:776.293333pt;}
.y223{bottom:777.093333pt;}
.y20a{bottom:777.573333pt;}
.y96{bottom:777.893333pt;}
.y24{bottom:779.173333pt;}
.y11a{bottom:780.453333pt;}
.y249{bottom:780.613333pt;}
.y104{bottom:785.093333pt;}
.y230{bottom:787.173333pt;}
.y43{bottom:788.613333pt;}
.yca{bottom:789.413333pt;}
.y9{bottom:790.693333pt;}
.y130{bottom:790.853333pt;}
.y196{bottom:792.133333pt;}
.y17a{bottom:795.493333pt;}
.y88{bottom:797.413333pt;}
.y69{bottom:797.573333pt;}
.y1cf{bottom:800.133333pt;}
.ye6{bottom:801.253333pt;}
.y209{bottom:805.093333pt;}
.y95{bottom:805.413333pt;}
.y222{bottom:805.733333pt;}
.y23{bottom:806.373333pt;}
.y12f{bottom:807.973333pt;}
.yb2{bottom:808.133333pt;}
.y42{bottom:809.733333pt;}
.yc9{bottom:817.093333pt;}
.y248{bottom:817.413333pt;}
.y179{bottom:818.853333pt;}
.y195{bottom:819.653333pt;}
.y22f{bottom:823.973333pt;}
.y12e{bottom:824.613333pt;}
.y87{bottom:825.093333pt;}
.y1ce{bottom:827.653333pt;}
.ye5{bottom:828.933333pt;}
.y41{bottom:830.853333pt;}
.y68{bottom:831.973333pt;}
.y208{bottom:832.773333pt;}
.y94{bottom:833.093333pt;}
.y221{bottom:833.413333pt;}
.y22{bottom:833.573333pt;}
.yb1{bottom:835.653333pt;}
.y8{bottom:839.813333pt;}
.y12d{bottom:840.933333pt;}
.y155{bottom:841.253333pt;}
.y177{bottom:842.213333pt;}
.yc8{bottom:844.613333pt;}
.y194{bottom:847.333333pt;}
.y67{bottom:853.093333pt;}
.y247{bottom:854.213333pt;}
.y1cd{bottom:855.333333pt;}
.ye4{bottom:856.453333pt;}
.y12c{bottom:857.253333pt;}
.y207{bottom:860.293333pt;}
.y21{bottom:860.613333pt;}
.y22e{bottom:860.773333pt;}
.y220{bottom:861.093333pt;}
.yb0{bottom:863.333333pt;}
.y175{bottom:865.733333pt;}
.y40{bottom:866.373333pt;}
.yc7{bottom:872.293333pt;}
.y66{bottom:874.373333pt;}
.y193{bottom:874.853333pt;}
.y7{bottom:875.653333pt;}
.y1cc{bottom:882.853333pt;}
.ye3{bottom:884.133333pt;}
.y20{bottom:887.813333pt;}
.y86{bottom:888.293333pt;}
.y21f{bottom:889.733333pt;}
.yaf{bottom:890.853333pt;}
.y246{bottom:891.013333pt;}
.y206{bottom:894.533333pt;}
.y65{bottom:895.493333pt;}
.y22d{bottom:897.573333pt;}
.y3f{bottom:897.733333pt;}
.y6{bottom:898.853333pt;}
.yc6{bottom:899.813333pt;}
.y192{bottom:910.533333pt;}
.ye2{bottom:911.653333pt;}
.y205{bottom:912.933333pt;}
.y1f{bottom:915.013333pt;}
.y85{bottom:915.813333pt;}
.y64{bottom:916.613333pt;}
.y21e{bottom:917.413333pt;}
.yae{bottom:918.533333pt;}
.y174{bottom:921.093333pt;}
.yc5{bottom:927.493333pt;}
.y245{bottom:927.813333pt;}
.y3e{bottom:930.053333pt;}
.y22c{bottom:934.373333pt;}
.y63{bottom:937.733333pt;}
.y1cb{bottom:938.053333pt;}
.ye1{bottom:939.333333pt;}
.y1e{bottom:942.213333pt;}
.y84{bottom:943.493333pt;}
.y21d{bottom:944.933333pt;}
.yad{bottom:946.053333pt;}
.y5{bottom:952.933333pt;}
.y62{bottom:959.013333pt;}
.y3d{bottom:961.893333pt;}
.y244{bottom:964.613333pt;}
.ye0{bottom:966.853333pt;}
.y1d{bottom:969.413333pt;}
.y83{bottom:971.013333pt;}
.y22b{bottom:971.173333pt;}
.y21c{bottom:972.613333pt;}
.yac{bottom:973.733333pt;}
.y61{bottom:980.133333pt;}
.y1c{bottom:991.013333pt;}
.y3c{bottom:993.573333pt;}
.y21b{bottom:1000.133333pt;}
.y4{bottom:1000.933333pt;}
.ydf{bottom:1001.093333pt;}
.y60{bottom:1001.253333pt;}
.y243{bottom:1001.413333pt;}
.y1b{bottom:1032.800000pt;}
.y1{bottom:1064.000000pt;}
.h21{height:14.080000pt;}
.h30{height:22.560000pt;}
.h2c{height:22.720000pt;}
.h2f{height:22.752000pt;}
.h17{height:31.680000pt;}
.h2e{height:42.084375pt;}
.h2d{height:43.215000pt;}
.h1f{height:44.320000pt;}
.h24{height:44.352000pt;}
.h25{height:44.512000pt;}
.h9{height:44.768125pt;}
.h13{height:46.680000pt;}
.h29{height:49.336436pt;}
.h23{height:49.968750pt;}
.h1a{height:50.112000pt;}
.h18{height:52.134375pt;}
.h15{height:52.750000pt;}
.h1d{height:52.834688pt;}
.h16{height:53.535000pt;}
.h2{height:53.937500pt;}
.h1e{height:55.298750pt;}
.h3{height:56.017500pt;}
.h31{height:57.375000pt;}
.hd{height:57.667500pt;}
.hc{height:58.563750pt;}
.hb{height:60.288750pt;}
.h5{height:61.110000pt;}
.h11{height:62.781250pt;}
.h10{height:62.812500pt;}
.hf{height:64.500000pt;}
.h2a{height:65.152000pt;}
.h1c{height:65.781915pt;}
.h14{height:66.625000pt;}
.h19{height:68.480000pt;}
.h1b{height:68.640000pt;}
.h7{height:75.465000pt;}
.h26{height:76.320000pt;}
.h4{height:90.075625pt;}
.he{height:96.750000pt;}
.h12{height:98.296875pt;}
.ha{height:107.715000pt;}
.h28{height:108.160000pt;}
.h6{height:116.490937pt;}
.h2b{height:119.712000pt;}
.h8{height:129.000000pt;}
.h27{height:130.240000pt;}
.h20{height:153.786667pt;}
.h22{height:288.800000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:14.080000pt;}
.wa{width:14.240000pt;}
.we{width:19.680000pt;}
.wd{width:19.840000pt;}
.wf{width:20.000000pt;}
.w11{width:23.040000pt;}
.w10{width:23.232000pt;}
.w12{width:29.760000pt;}
.w14{width:37.280000pt;}
.w13{width:37.632000pt;}
.w15{width:47.040000pt;}
.w3{width:82.560000pt;}
.w4{width:156.826667pt;}
.wb{width:196.666667pt;}
.w6{width:196.826667pt;}
.w7{width:218.586667pt;}
.wc{width:219.866667pt;}
.w5{width:374.946667pt;}
.w8{width:452.413333pt;}
.w16{width:566.973333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:7.200000pt;}
.x23{left:9.600000pt;}
.x27{left:12.480000pt;}
.x2b{left:15.840000pt;}
.x29{left:24.160000pt;}
.x1f{left:27.200000pt;}
.x24{left:28.480000pt;}
.x2f{left:30.400000pt;}
.x20{left:37.120000pt;}
.x32{left:48.000000pt;}
.x26{left:54.080000pt;}
.x30{left:71.040000pt;}
.x28{left:73.440000pt;}
.x21{left:75.240000pt;}
.x2a{left:76.800000pt;}
.x2c{left:80.160000pt;}
.x31{left:98.440000pt;}
.x1{left:113.471988pt;}
.x13{left:124.511988pt;}
.xb{left:127.551988pt;}
.xd{left:130.591988pt;}
.x2d{left:132.480000pt;}
.x15{left:133.466655pt;}
.x8{left:134.746655pt;}
.x17{left:137.466655pt;}
.xc{left:141.466655pt;}
.x7{left:150.106655pt;}
.x33{left:151.226655pt;}
.x16{left:160.666655pt;}
.x6{left:164.506655pt;}
.xe{left:171.226655pt;}
.x1e{left:173.146667pt;}
.x25{left:174.906667pt;}
.x43{left:185.466655pt;}
.x1a{left:196.026667pt;}
.x40{left:211.234667pt;}
.x34{left:246.786655pt;}
.x4{left:249.666655pt;}
.x14{left:261.986655pt;}
.x18{left:289.666655pt;}
.x12{left:296.546655pt;}
.x1d{left:298.306655pt;}
.x42{left:311.106655pt;}
.x5{left:312.706655pt;}
.x41{left:316.066655pt;}
.xf{left:332.866655pt;}
.x1b{left:352.866667pt;}
.x35{left:372.866667pt;}
.x36{left:392.866667pt;}
.x3{left:396.866655pt;}
.x37{left:416.093333pt;}
.x22{left:433.533333pt;}
.x2e{left:435.133333pt;}
.x38{left:436.093333pt;}
.x9{left:451.133322pt;}
.x39{left:455.933333pt;}
.x3a{left:478.973333pt;}
.x3b{left:498.973333pt;}
.x10{left:512.573322pt;}
.x3c{left:528.733333pt;}
.x3d{left:558.493333pt;}
.x3e{left:596.133333pt;}
.x11{left:611.173322pt;}
.x3f{left:633.413333pt;}
.x1c{left:662.693322pt;}
.xa{left:671.653322pt;}
.x2{left:680.453322pt;}
}




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