
    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_2ae23ebbe0c63d174c34cf8e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_b7c3dd092fc022032f3db7e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5ee8c55c5b7f27896ce0667c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.729492;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_7bab659a74070e67647ca225.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2a2ee37837cacb55456718eb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.056152;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_ac7f1078f0969f2cf27afecc.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_629196a61bbe5fb8f7146b09.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.982910;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_ce11dcc069f974c6fce5394a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_91c7346ec8ac61984625c077.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_349afd19c54e617cc15660b4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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_5930b17a5d3e2048f0d5cc4e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.977539;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_ac9619cc356b1b81640f63d5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.800293;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_8b7025dd430484eb4a1c123d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.688477;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_f04d52a0a1796175de8b5ff9.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_3008b9b238330bb5a3ddc21c.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_18311420a2c3972ab0363e99.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_7d8bc3f55a7062dbcdfb047c.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_d5b025d3173322407f13f235.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.937988;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:ff13;src:url('chunks/assets/font_5545bcdcf4f086193f889117.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_72404e8e96d9f58e6ee0ffce.woff2')format("woff");}.ff14{font-family:ff14;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.370628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370628,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:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls15{letter-spacing:-1.254000px;}
.ls6{letter-spacing:-0.930000px;}
.ls14{letter-spacing:-0.536400px;}
.ls16{letter-spacing:-0.305400px;}
.ls10{letter-spacing:-0.288000px;}
.ls18{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.208200px;}
.ls4{letter-spacing:-0.140400px;}
.ls12{letter-spacing:-0.109200px;}
.lsb{letter-spacing:-0.090600px;}
.ls7{letter-spacing:-0.085200px;}
.ls8{letter-spacing:-0.045360px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.181440px;}
.ls3{letter-spacing:0.183600px;}
.ls13{letter-spacing:0.414600px;}
.ls1{letter-spacing:0.511800px;}
.ls5{letter-spacing:0.547200px;}
.ls19{letter-spacing:0.720000px;}
.ls2{letter-spacing:1.044000px;}
.ls1a{letter-spacing:1.764000px;}
.lse{letter-spacing:10.224000px;}
.lsd{letter-spacing:29.664000px;}
.ls9{letter-spacing:33.984000px;}
.lsc{letter-spacing:49.824000px;}
.ls17{letter-spacing:2473.656000px;}
.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;}
}
.ws18{word-spacing:-18.720000px;}
.ws7{word-spacing:-18.532800px;}
.wse{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.000000px;}
.ws17{word-spacing:-17.784000px;}
.ws15{word-spacing:-17.712000px;}
.ws11{word-spacing:-16.974600px;}
.ws10{word-spacing:-16.450800px;}
.ws16{word-spacing:-16.254600px;}
.ws8{word-spacing:-13.147200px;}
.wsb{word-spacing:-12.014640px;}
.wsd{word-spacing:-11.969400px;}
.ws19{word-spacing:-11.701440px;}
.ws2{word-spacing:-10.981440px;}
.ws6{word-spacing:-10.612800px;}
.wsa{word-spacing:-10.527600px;}
.ws5{word-spacing:-10.472400px;}
.ws1{word-spacing:-10.449240px;}
.ws14{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.121040px;}
.ws0{word-spacing:-9.937440px;}
.wsf{word-spacing:-9.729240px;}
.ws12{word-spacing:-9.401040px;}
.ws9{word-spacing:-9.007440px;}
.ws13{word-spacing:-8.683440px;}
.ws4{word-spacing:0.000000px;}
._12{margin-left:-2.516400px;}
._0{margin-left:-1.134000px;}
._2{width:1.436400px;}
._3{width:2.561520px;}
._4{width:3.750000px;}
._13{width:4.890000px;}
._8{width:5.976000px;}
._9{width:7.200000px;}
._5{width:8.208000px;}
._6{width:9.288000px;}
._b{width:10.368000px;}
._a{width:11.448000px;}
._e{width:13.134000px;}
._14{width:14.400000px;}
._15{width:15.408000px;}
._11{width:16.416000px;}
._16{width:18.107280px;}
._17{width:19.479840px;}
._21{width:20.664000px;}
._7{width:22.392000px;}
._f{width:23.904000px;}
._10{width:24.963600px;}
._1b{width:26.427600px;}
._1a{width:27.576000px;}
._1f{width:28.606800px;}
._c{width:29.664000px;}
._d{width:31.176000px;}
._1d{width:32.887200px;}
._1c{width:34.056000px;}
._24{width:35.136000px;}
._20{width:36.432000px;}
._19{width:38.520000px;}
._18{width:39.582000px;}
._1e{width:41.664000px;}
._22{width:44.046000px;}
._23{width:48.600000px;}
._1{width:2694.606000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(238,78,60);}
.fc7{color:rgb(128,128,128);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(166,166,166);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs9{font-size:28.480700px;}
.fs8{font-size:36.000000px;}
.fsb{font-size:41.760000px;}
.fs0{font-size:45.360000px;}
.fs6{font-size:48.240000px;}
.fsa{font-size:48.751406px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y2f{bottom:-0.210000px;}
.y0{bottom:0.000000px;}
.y38{bottom:2.160000px;}
.y11e{bottom:2.258925px;}
.y2d{bottom:2.490000px;}
.y3{bottom:4.500000px;}
.y34{bottom:4.860000px;}
.y13e{bottom:5.040000px;}
.y68{bottom:5.940000px;}
.yd0{bottom:6.120000px;}
.y135{bottom:6.465000px;}
.y10d{bottom:6.480000px;}
.y200{bottom:6.510000px;}
.y133{bottom:6.645000px;}
.y10e{bottom:6.660000px;}
.y165{bottom:6.825000px;}
.y111{bottom:6.840000px;}
.y18c{bottom:6.870000px;}
.y167{bottom:7.005000px;}
.y114{bottom:7.020000px;}
.y10b{bottom:7.380000px;}
.y139{bottom:8.820000px;}
.y138{bottom:9.180000px;}
.y33{bottom:12.600000px;}
.y11d{bottom:13.401466px;}
.y67{bottom:15.480000px;}
.ycf{bottom:15.660000px;}
.y218{bottom:15.840000px;}
.y1a5{bottom:16.200000px;}
.y95{bottom:16.560000px;}
.y100{bottom:16.740000px;}
.y140{bottom:17.460000px;}
.y1bb{bottom:21.600000px;}
.y1bf{bottom:21.780000px;}
.y1bd{bottom:21.960000px;}
.y3c{bottom:22.680000px;}
.y2{bottom:24.660000px;}
.y13f{bottom:26.460000px;}
.y13d{bottom:26.820000px;}
.y136{bottom:27.705000px;}
.y16c{bottom:28.245000px;}
.y161{bottom:28.260000px;}
.y112{bottom:28.305000px;}
.y132{bottom:28.425000px;}
.y32{bottom:28.440000px;}
.y16b{bottom:28.605000px;}
.y190{bottom:28.620000px;}
.y18b{bottom:28.650000px;}
.y110{bottom:28.665000px;}
.y19a{bottom:28.785000px;}
.y10a{bottom:29.160000px;}
.y35{bottom:37.440000px;}
.y31{bottom:41.940000px;}
.y1{bottom:42.660000px;}
.y162{bottom:49.320000px;}
.y160{bottom:50.040000px;}
.y18d{bottom:50.070000px;}
.y131{bottom:50.205000px;}
.y191{bottom:50.220000px;}
.y18a{bottom:50.430000px;}
.y199{bottom:50.565000px;}
.y18f{bottom:50.580000px;}
.y196{bottom:50.610000px;}
.y37{bottom:59.940000px;}
.y15f{bottom:71.820000px;}
.y197{bottom:72.030000px;}
.y195{bottom:72.390000px;}
.y13c{bottom:107.820000px;}
.y217{bottom:112.860000px;}
.y94{bottom:114.840000px;}
.y178{bottom:116.190000px;}
.y177{bottom:119.160000px;}
.yb1{bottom:124.020000px;}
.ydf{bottom:131.400000px;}
.y66{bottom:135.720000px;}
.y216{bottom:136.620000px;}
.y91{bottom:138.600000px;}
.y176{bottom:141.765000px;}
.y224{bottom:142.380000px;}
.y1cf{bottom:143.640000px;}
.y2b{bottom:144.360000px;}
.y175{bottom:144.720000px;}
.y1a4{bottom:144.840000px;}
.yff{bottom:147.420000px;}
.y1a3{bottom:147.780000px;}
.yb0{bottom:147.960000px;}
.y13b{bottom:149.580000px;}
.yde{bottom:155.160000px;}
.y65{bottom:159.480000px;}
.y215{bottom:160.380000px;}
.y90{bottom:162.360000px;}
.y174{bottom:167.490000px;}
.y2a{bottom:168.120000px;}
.y173{bottom:170.460000px;}
.yfe{bottom:171.180000px;}
.y13a{bottom:171.360000px;}
.yaf{bottom:171.720000px;}
.y1a2{bottom:173.340000px;}
.ydd{bottom:178.920000px;}
.y1ce{bottom:182.880000px;}
.y64{bottom:183.240000px;}
.y214{bottom:184.140000px;}
.y8f{bottom:186.120000px;}
.y29{bottom:191.880000px;}
.y172{bottom:193.065000px;}
.y137{bottom:193.320000px;}
.y1a1{bottom:194.340000px;}
.yfd{bottom:194.940000px;}
.yae{bottom:195.480000px;}
.y171{bottom:196.020000px;}
.y1a0{bottom:197.280000px;}
.ydc{bottom:202.680000px;}
.y223{bottom:204.480000px;}
.y1cd{bottom:206.670000px;}
.y63{bottom:207.030000px;}
.y1f1{bottom:207.210000px;}
.y213{bottom:208.110000px;}
.y93{bottom:209.730000px;}
.y8e{bottom:210.090000px;}
.y28{bottom:215.850000px;}
.y130{bottom:218.205000px;}
.yfc{bottom:218.910000px;}
.yad{bottom:219.270000px;}
.y170{bottom:221.610000px;}
.y19f{bottom:222.870000px;}
.ydb{bottom:226.650000px;}
.y1f0{bottom:230.070000px;}
.y1cc{bottom:230.430000px;}
.y62{bottom:230.970000px;}
.y212{bottom:231.870000px;}
.y92{bottom:233.490000px;}
.y8d{bottom:233.850000px;}
.y222{bottom:235.470000px;}
.y27{bottom:239.610000px;}
.yfb{bottom:242.670000px;}
.yac{bottom:243.210000px;}
.y16f{bottom:245.370000px;}
.y19e{bottom:246.630000px;}
.yda{bottom:250.410000px;}
.y1ef{bottom:251.850000px;}
.y61{bottom:254.730000px;}
.y211{bottom:255.630000px;}
.y8c{bottom:257.610000px;}
.y134{bottom:261.945000px;}
.y26{bottom:263.370000px;}
.yfa{bottom:266.430000px;}
.y221{bottom:266.610000px;}
.yab{bottom:266.970000px;}
.y1cb{bottom:269.310000px;}
.y19d{bottom:270.390000px;}
.y1ee{bottom:273.990000px;}
.yd9{bottom:274.170000px;}
.y60{bottom:278.490000px;}
.y210{bottom:279.390000px;}
.y8b{bottom:281.370000px;}
.y16e{bottom:283.350000px;}
.y25{bottom:287.130000px;}
.yf9{bottom:290.190000px;}
.y220{bottom:290.370000px;}
.yaa{bottom:290.730000px;}
.y12f{bottom:291.450000px;}
.y1ed{bottom:292.365000px;}
.y1ca{bottom:293.070000px;}
.yd8{bottom:297.930000px;}
.y16d{bottom:299.385000px;}
.y5f{bottom:302.250000px;}
.y20f{bottom:303.330000px;}
.y8a{bottom:305.310000px;}
.y19c{bottom:308.370000px;}
.y24{bottom:311.070000px;}
.yf8{bottom:314.130000px;}
.ya9{bottom:314.490000px;}
.y12e{bottom:315.390000px;}
.y1ec{bottom:315.585000px;}
.y1c9{bottom:317.010000px;}
.yd7{bottom:321.870000px;}
.y16a{bottom:322.065000px;}
.y19b{bottom:324.405000px;}
.y5e{bottom:326.190000px;}
.y89{bottom:329.070000px;}
.y20e{bottom:333.930000px;}
.y23{bottom:334.830000px;}
.y1eb{bottom:337.545000px;}
.yf7{bottom:337.890000px;}
.ya8{bottom:338.430000px;}
.y12d{bottom:339.150000px;}
.y1c8{bottom:340.770000px;}
.yd6{bottom:345.630000px;}
.y198{bottom:346.905000px;}
.y5d{bottom:349.950000px;}
.y88{bottom:352.830000px;}
.y22{bottom:358.590000px;}
.yf6{bottom:361.650000px;}
.yce{bottom:362.190000px;}
.y1ea{bottom:362.385000px;}
.y12c{bottom:362.910000px;}
.y1c7{bottom:364.530000px;}
.y169{bottom:365.625000px;}
.ya7{bottom:369.030000px;}
.yd5{bottom:369.390000px;}
.y20d{bottom:373.170000px;}
.y5c{bottom:373.710000px;}
.y87{bottom:376.590000px;}
.y21{bottom:382.350000px;}
.yf5{bottom:385.410000px;}
.ycd{bottom:385.950000px;}
.y12b{bottom:386.670000px;}
.y168{bottom:387.405000px;}
.y1c6{bottom:388.290000px;}
.ya6{bottom:392.790000px;}
.yd4{bottom:393.150000px;}
.y1e9{bottom:394.590000px;}
.y20c{bottom:396.930000px;}
.y5b{bottom:397.470000px;}
.y86{bottom:400.530000px;}
.y20{bottom:406.290000px;}
.yf4{bottom:408.990000px;}
.y166{bottom:409.185000px;}
.ycc{bottom:409.710000px;}
.y12a{bottom:410.970000px;}
.y1c5{bottom:412.050000px;}
.y194{bottom:412.425000px;}
.ya5{bottom:417.090000px;}
.y1e8{bottom:418.350000px;}
.y20b{bottom:420.690000px;}
.y5a{bottom:421.410000px;}
.y85{bottom:424.290000px;}
.y1f{bottom:430.050000px;}
.y164{bottom:431.145000px;}
.yf3{bottom:433.110000px;}
.ycb{bottom:433.650000px;}
.y129{bottom:434.730000px;}
.y1c4{bottom:435.990000px;}
.ya4{bottom:440.895000px;}
.y1e7{bottom:442.155000px;}
.y20a{bottom:444.495000px;}
.y59{bottom:445.215000px;}
.y102{bottom:447.735000px;}
.y84{bottom:448.095000px;}
.y163{bottom:452.955000px;}
.y1e{bottom:453.855000px;}
.yf2{bottom:456.915000px;}
.yca{bottom:457.455000px;}
.y1c3{bottom:459.795000px;}
.ya3{bottom:464.655000px;}
.y1e6{bottom:465.915000px;}
.y209{bottom:468.435000px;}
.y58{bottom:468.975000px;}
.y83{bottom:471.855000px;}
.y128{bottom:473.475000px;}
.y1d{bottom:477.615000px;}
.y15e{bottom:477.975000px;}
.y22e{bottom:478.335000px;}
.yf1{bottom:480.675000px;}
.yc9{bottom:481.215000px;}
.y1c2{bottom:483.195000px;}
.ya2{bottom:488.415000px;}
.y1e5{bottom:489.855000px;}
.y208{bottom:492.195000px;}
.y57{bottom:492.735000px;}
.y82{bottom:495.795000px;}
.y127{bottom:497.415000px;}
.y22d{bottom:499.035000px;}
.y193{bottom:499.755000px;}
.y1c{bottom:501.555000px;}
.yf0{bottom:504.435000px;}
.yc8{bottom:504.975000px;}
.y1c1{bottom:506.775000px;}
.ya1{bottom:512.355000px;}
.y1e4{bottom:513.615000px;}
.y207{bottom:515.955000px;}
.y56{bottom:516.495000px;}
.y81{bottom:519.555000px;}
.y22c{bottom:519.735000px;}
.y126{bottom:521.175000px;}
.y1c0{bottom:525.135000px;}
.y1b{bottom:525.315000px;}
.yef{bottom:528.015000px;}
.yc7{bottom:528.915000px;}
.ya0{bottom:536.115000px;}
.y206{bottom:539.715000px;}
.y55{bottom:540.435000px;}
.y124{bottom:541.890000px;}
.y80{bottom:543.315000px;}
.y125{bottom:544.935000px;}
.y1be{bottom:548.535000px;}
.y1a{bottom:549.075000px;}
.yee{bottom:552.135000px;}
.yc6{bottom:552.675000px;}
.y1e3{bottom:552.855000px;}
.y9f{bottom:559.875000px;}
.y205{bottom:563.475000px;}
.y54{bottom:564.195000px;}
.y192{bottom:565.275000px;}
.y7f{bottom:567.075000px;}
.y123{bottom:570.495000px;}
.y19{bottom:572.835000px;}
.y15d{bottom:573.015000px;}
.yed{bottom:575.895000px;}
.yc5{bottom:576.435000px;}
.y1e2{bottom:576.615000px;}
.y9e{bottom:583.635000px;}
.y1bc{bottom:585.255000px;}
.y204{bottom:587.415000px;}
.y53{bottom:587.955000px;}
.y7e{bottom:591.015000px;}
.y122{bottom:591.390000px;}
.y121{bottom:594.435000px;}
.y15c{bottom:596.775000px;}
.yec{bottom:599.655000px;}
.yc4{bottom:600.195000px;}
.y1e1{bottom:600.375000px;}
.y18{bottom:606.135000px;}
.y21f{bottom:607.215000px;}
.y9d{bottom:607.575000px;}
.y18e{bottom:608.835000px;}
.y203{bottom:610.635000px;}
.y52{bottom:611.715000px;}
.y7d{bottom:614.775000px;}
.y120{bottom:616.965000px;}
.y11f{bottom:619.995000px;}
.y15b{bottom:620.535000px;}
.yeb{bottom:623.595000px;}
.yc3{bottom:623.955000px;}
.y1ba{bottom:625.035000px;}
.y9c{bottom:631.335000px;}
.y202{bottom:632.055000px;}
.y51{bottom:635.655000px;}
.y17{bottom:636.015000px;}
.y7c{bottom:638.535000px;}
.y1e0{bottom:639.255000px;}
.y11c{bottom:642.540000px;}
.y15a{bottom:644.475000px;}
.y11b{bottom:645.555000px;}
.yea{bottom:647.355000px;}
.yc2{bottom:647.895000px;}
.y16{bottom:652.215000px;}
.y201{bottom:654.195000px;}
.y9b{bottom:655.095000px;}
.y50{bottom:659.415000px;}
.y7b{bottom:662.295000px;}
.y1df{bottom:663.015000px;}
.y159{bottom:668.235000px;}
.ye9{bottom:671.115000px;}
.yc1{bottom:671.655000px;}
.y1b9{bottom:672.375000px;}
.y1ff{bottom:672.555000px;}
.y189{bottom:674.355000px;}
.y15{bottom:676.185000px;}
.y9a{bottom:678.885000px;}
.y4f{bottom:683.205000px;}
.y7a{bottom:686.085000px;}
.y1de{bottom:686.805000px;}
.y158{bottom:692.385000px;}
.ye8{bottom:694.905000px;}
.y11a{bottom:695.085000px;}
.yc0{bottom:695.445000px;}
.y1fe{bottom:695.985000px;}
.y1b8{bottom:696.165000px;}
.y14{bottom:697.245000px;}
.y99{bottom:702.645000px;}
.y4e{bottom:706.965000px;}
.y79{bottom:710.025000px;}
.y1dd{bottom:710.565000px;}
.y157{bottom:716.145000px;}
.y1fd{bottom:717.765000px;}
.y13{bottom:718.305000px;}
.ye7{bottom:718.845000px;}
.ybf{bottom:719.205000px;}
.y1b7{bottom:719.925000px;}
.y98{bottom:726.585000px;}
.y4d{bottom:730.905000px;}
.yd3{bottom:733.425000px;}
.y78{bottom:733.785000px;}
.y1dc{bottom:734.505000px;}
.y12{bottom:739.365000px;}
.y156{bottom:740.085000px;}
.y187{bottom:740.625000px;}
.ye6{bottom:742.245000px;}
.y1fc{bottom:742.605000px;}
.ybe{bottom:743.145000px;}
.y1b6{bottom:743.865000px;}
.y21e{bottom:750.345000px;}
.y4c{bottom:754.665000px;}
.y97{bottom:757.185000px;}
.y77{bottom:757.545000px;}
.y1db{bottom:758.265000px;}
.y119{bottom:759.705000px;}
.y11{bottom:760.425000px;}
.ye5{bottom:766.365000px;}
.ybd{bottom:766.905000px;}
.y1b5{bottom:767.625000px;}
.y21d{bottom:774.105000px;}
.y1fb{bottom:774.825000px;}
.y4b{bottom:778.425000px;}
.y155{bottom:778.785000px;}
.y96{bottom:780.945000px;}
.y76{bottom:781.305000px;}
.y10{bottom:781.485000px;}
.y1da{bottom:782.025000px;}
.y118{bottom:782.385000px;}
.ye4{bottom:790.125000px;}
.ybc{bottom:790.665000px;}
.y21c{bottom:797.865000px;}
.y1fa{bottom:798.585000px;}
.y4a{bottom:802.185000px;}
.y154{bottom:802.545000px;}
.y117{bottom:804.165000px;}
.y75{bottom:805.245000px;}
.y1d9{bottom:805.785000px;}
.y188{bottom:805.965000px;}
.y1b4{bottom:806.865000px;}
.yf{bottom:811.545000px;}
.ye3{bottom:814.065000px;}
.ybb{bottom:814.425000px;}
.y21b{bottom:821.805000px;}
.y1f9{bottom:822.345000px;}
.y116{bottom:825.945000px;}
.y49{bottom:826.125000px;}
.y153{bottom:826.485000px;}
.y74{bottom:829.005000px;}
.y1d8{bottom:829.725000px;}
.y1b3{bottom:830.625000px;}
.y186{bottom:835.665000px;}
.ye{bottom:836.745000px;}
.ye2{bottom:837.825000px;}
.yba{bottom:838.365000px;}
.y22b{bottom:845.565000px;}
.y1f8{bottom:846.285000px;}
.y152{bottom:847.140000px;}
.y115{bottom:847.725000px;}
.y151{bottom:850.245000px;}
.y21a{bottom:852.405000px;}
.y73{bottom:852.765000px;}
.y1d7{bottom:853.485000px;}
.y1b2{bottom:854.385000px;}
.y48{bottom:856.725000px;}
.y185{bottom:859.425000px;}
.yd{bottom:859.605000px;}
.ye1{bottom:861.585000px;}
.yb9{bottom:862.125000px;}
.y22a{bottom:869.325000px;}
.y113{bottom:869.505000px;}
.y1f7{bottom:870.045000px;}
.y150{bottom:872.715000px;}
.y14f{bottom:875.805000px;}
.y219{bottom:876.165000px;}
.y1d6{bottom:876.345000px;}
.y72{bottom:876.525000px;}
.y184{bottom:883.185000px;}
.yc{bottom:883.365000px;}
.yb8{bottom:885.885000px;}
.y47{bottom:887.865000px;}
.y10f{bottom:891.465000px;}
.y229{bottom:893.085000px;}
.y1b1{bottom:893.265000px;}
.y1f6{bottom:893.805000px;}
.y14e{bottom:898.290000px;}
.y1d5{bottom:898.485000px;}
.ye0{bottom:900.105000px;}
.y71{bottom:900.465000px;}
.y14d{bottom:901.365000px;}
.y183{bottom:907.125000px;}
.yb7{bottom:909.645000px;}
.y46{bottom:910.545000px;}
.yb{bottom:915.810000px;}
.y1d4{bottom:916.890000px;}
.y1b0{bottom:917.070000px;}
.y101{bottom:923.910000px;}
.y14c{bottom:924.015000px;}
.y70{bottom:924.270000px;}
.y14b{bottom:927.150000px;}
.y45{bottom:930.750000px;}
.y182{bottom:930.930000px;}
.y1f5{bottom:933.090000px;}
.yb6{bottom:933.630000px;}
.y109{bottom:935.790000px;}
.y1d3{bottom:940.110000px;}
.y1af{bottom:940.830000px;}
.y6f{bottom:948.030000px;}
.ya{bottom:948.210000px;}
.y14a{bottom:949.590000px;}
.y44{bottom:951.090000px;}
.y149{bottom:952.710000px;}
.y181{bottom:954.690000px;}
.y1f4{bottom:956.850000px;}
.yb5{bottom:957.390000px;}
.y10c{bottom:958.470000px;}
.y1d2{bottom:962.070000px;}
.y1ae{bottom:964.590000px;}
.y43{bottom:971.250000px;}
.y6e{bottom:971.790000px;}
.y9{bottom:974.130000px;}
.y148{bottom:978.270000px;}
.y180{bottom:978.810000px;}
.y1f3{bottom:980.610000px;}
.y1ad{bottom:985.440000px;}
.y1d1{bottom:986.910000px;}
.y36{bottom:987.480000px;}
.yb4{bottom:987.990000px;}
.y228{bottom:988.350000px;}
.y1ac{bottom:988.530000px;}
.y2c{bottom:988.740000px;}
.y2e{bottom:990.180000px;}
.y42{bottom:992.130000px;}
.y8{bottom:993.390000px;}
.y6d{bottom:995.730000px;}
.y147{bottom:1002.030000px;}
.y17f{bottom:1002.570000px;}
.y1f2{bottom:1004.370000px;}
.y108{bottom:1011.930000px;}
.y227{bottom:1012.290000px;}
.y1ab{bottom:1014.090000px;}
.y41{bottom:1015.170000px;}
.yb3{bottom:1019.130000px;}
.y6c{bottom:1019.490000px;}
.y146{bottom:1025.970000px;}
.y17e{bottom:1026.510000px;}
.y7{bottom:1027.590000px;}
.y1aa{bottom:1034.715000px;}
.y107{bottom:1035.690000px;}
.y226{bottom:1036.050000px;}
.y1a9{bottom:1037.850000px;}
.y40{bottom:1038.930000px;}
.yb2{bottom:1042.890000px;}
.y6b{bottom:1043.250000px;}
.y145{bottom:1049.730000px;}
.y106{bottom:1059.450000px;}
.y225{bottom:1059.810000px;}
.y6{bottom:1062.870000px;}
.y1a8{bottom:1063.410000px;}
.y17d{bottom:1065.210000px;}
.yd2{bottom:1066.650000px;}
.y6a{bottom:1067.010000px;}
.y3f{bottom:1072.230000px;}
.y144{bottom:1072.590000px;}
.y105{bottom:1083.570000px;}
.y1a7{bottom:1084.215000px;}
.y1a6{bottom:1087.350000px;}
.y143{bottom:1088.610000px;}
.y17c{bottom:1089.150000px;}
.yd1{bottom:1090.590000px;}
.y69{bottom:1090.950000px;}
.y5{bottom:1101.030000px;}
.y104{bottom:1107.510000px;}
.y142{bottom:1111.290000px;}
.y17b{bottom:1112.910000px;}
.y1d0{bottom:1114.350000px;}
.y3e{bottom:1114.710000px;}
.y141{bottom:1133.070000px;}
.y17a{bottom:1133.565000px;}
.y179{bottom:1136.670000px;}
.y103{bottom:1138.110000px;}
.y3d{bottom:1138.470000px;}
.y4{bottom:1139.190000px;}
.y3b{bottom:1169.460000px;}
.y3a{bottom:1183.500000px;}
.y39{bottom:1197.540000px;}
.y30{bottom:1207.800000px;}
.h11{height:11.700000px;}
.hf{height:14.400000px;}
.h1d{height:18.000000px;}
.h21{height:18.180000px;}
.h2b{height:19.775174px;}
.h2a{height:21.599700px;}
.h24{height:21.765000px;}
.h30{height:21.778500px;}
.h29{height:21.780000px;}
.h37{height:21.801000px;}
.h32{height:21.810000px;}
.h25{height:21.945000px;}
.h28{height:21.960000px;}
.h36{height:24.105000px;}
.h2f{height:24.156000px;}
.h14{height:24.380859px;}
.h16{height:25.740000px;}
.h15{height:36.168398px;}
.h3e{height:36.705000px;}
.h3d{height:36.885000px;}
.h2{height:38.405391px;}
.h10{height:38.464805px;}
.h5{height:38.469727px;}
.hc{height:40.655391px;}
.h17{height:40.843828px;}
.h31{height:41.758500px;}
.h2e{height:43.005000px;}
.h38{height:43.545000px;}
.h26{height:43.582500px;}
.h22{height:44.445000px;}
.h2c{height:47.823034px;}
.h13{height:49.680000px;}
.h1f{height:50.273438px;}
.h1b{height:50.597578px;}
.h12{height:52.817344px;}
.h4{height:53.709961px;}
.h1a{height:56.084062px;}
.h9{height:57.937500px;}
.hb{height:59.439023px;}
.h6{height:60.226875px;}
.ha{height:61.189805px;}
.h35{height:64.605000px;}
.h3a{height:64.620000px;}
.h33{height:64.978594px;}
.h27{height:65.010937px;}
.h3b{height:65.370000px;}
.h2d{height:65.505000px;}
.h3{height:65.884219px;}
.h23{height:66.757500px;}
.h19{height:70.628906px;}
.he{height:70.664062px;}
.hd{height:70.995234px;}
.h1c{height:72.562500px;}
.h20{height:74.004654px;}
.h1e{height:80.464922px;}
.h7{height:80.703984px;}
.h8{height:81.078047px;}
.h18{height:82.676953px;}
.h34{height:87.105000px;}
.h39{height:87.120000px;}
.h3c{height:87.321000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:21.599403px;}
.w9{width:43.189500px;}
.w16{width:54.021000px;}
.w15{width:60.645000px;}
.w13{width:60.660000px;}
.we{width:60.861000px;}
.wd{width:67.485000px;}
.w8{width:77.400000px;}
.w5{width:80.640000px;}
.wc{width:87.105000px;}
.w17{width:87.825000px;}
.w18{width:89.265000px;}
.w4{width:96.480000px;}
.w14{width:114.876000px;}
.wb{width:128.361000px;}
.w2{width:135.000000px;}
.w12{width:135.021000px;}
.w3{width:137.340000px;}
.w11{width:159.109500px;}
.w6{width:199.080000px;}
.wa{width:421.804500px;}
.wf{width:465.004500px;}
.w7{width:626.400000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:4.169722px;}
.x1f{left:8.089500px;}
.x10{left:10.836000px;}
.x12{left:13.290000px;}
.x14{left:20.955000px;}
.xe{left:42.450000px;}
.x15{left:93.960000px;}
.x1e{left:106.246500px;}
.x1{left:108.036000px;}
.x4c{left:109.486500px;}
.xf{left:114.120000px;}
.xa{left:119.556000px;}
.x17{left:120.636000px;}
.x3{left:123.696000px;}
.x2c{left:133.416000px;}
.x1a{left:135.036000px;}
.x2{left:142.236000px;}
.x1c{left:148.536000px;}
.x1b{left:155.370000px;}
.x54{left:162.030000px;}
.x18{left:192.810000px;}
.x3f{left:198.990000px;}
.x33{left:217.365000px;}
.x40{left:220.890000px;}
.x34{left:238.890000px;}
.x4{left:248.610000px;}
.xc{left:254.910000px;}
.x7{left:267.150000px;}
.x4d{left:268.605000px;}
.x8{left:280.470000px;}
.x28{left:319.065000px;}
.x31{left:322.440000px;}
.x3b{left:329.640000px;}
.x29{left:340.635000px;}
.x32{left:345.135000px;}
.x9{left:350.355000px;}
.x3c{left:352.695000px;}
.xb{left:360.255000px;}
.x13{left:365.040000px;}
.x26{left:393.540000px;}
.x6{left:398.955000px;}
.x4e{left:403.635000px;}
.x27{left:416.055000px;}
.x39{left:419.865000px;}
.x37{left:430.440000px;}
.x3a{left:441.435000px;}
.x5{left:446.475000px;}
.x38{left:452.595000px;}
.x16{left:454.965000px;}
.x49{left:460.890000px;}
.x4f{left:464.295000px;}
.x43{left:475.125000px;}
.x41{left:479.940000px;}
.x4a{left:484.125000px;}
.x42{left:501.945000px;}
.x23{left:505.890000px;}
.x25{left:527.505000px;}
.x3d{left:534.165000px;}
.x3e{left:555.765000px;}
.x20{left:571.260000px;}
.x50{left:579.180000px;}
.x2d{left:619.440000px;}
.x47{left:634.440000px;}
.x45{left:635.640000px;}
.x22{left:638.760000px;}
.x51{left:639.840000px;}
.x2e{left:644.865000px;}
.x48{left:656.250000px;}
.x46{left:657.330000px;}
.x2f{left:660.690000px;}
.xd{left:668.340000px;}
.x30{left:682.350000px;}
.x52{left:693.870000px;}
.x2a{left:694.890000px;}
.x35{left:696.540000px;}
.x21{left:699.630000px;}
.x2b{left:716.550000px;}
.x36{left:718.170000px;}
.x55{left:726.840000px;}
.x53{left:729.000000px;}
.x19{left:732.240000px;}
.x1d{left:733.500000px;}
.x4b{left:737.610000px;}
.x44{left:763.440000px;}
.x11{left:812.340000px;}
@media print{
.v2{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls15{letter-spacing:-1.114667pt;}
.ls6{letter-spacing:-0.826667pt;}
.ls14{letter-spacing:-0.476800pt;}
.ls16{letter-spacing:-0.271467pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls18{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.185067pt;}
.ls4{letter-spacing:-0.124800pt;}
.ls12{letter-spacing:-0.097067pt;}
.lsb{letter-spacing:-0.080533pt;}
.ls7{letter-spacing:-0.075733pt;}
.ls8{letter-spacing:-0.040320pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.161280pt;}
.ls3{letter-spacing:0.163200pt;}
.ls13{letter-spacing:0.368533pt;}
.ls1{letter-spacing:0.454933pt;}
.ls5{letter-spacing:0.486400pt;}
.ls19{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.928000pt;}
.ls1a{letter-spacing:1.568000pt;}
.lse{letter-spacing:9.088000pt;}
.lsd{letter-spacing:26.368000pt;}
.ls9{letter-spacing:30.208000pt;}
.lsc{letter-spacing:44.288000pt;}
.ls17{letter-spacing:2198.805333pt;}
.ws18{word-spacing:-16.640000pt;}
.ws7{word-spacing:-16.473600pt;}
.wse{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.000000pt;}
.ws17{word-spacing:-15.808000pt;}
.ws15{word-spacing:-15.744000pt;}
.ws11{word-spacing:-15.088533pt;}
.ws10{word-spacing:-14.622933pt;}
.ws16{word-spacing:-14.448533pt;}
.ws8{word-spacing:-11.686400pt;}
.wsb{word-spacing:-10.679680pt;}
.wsd{word-spacing:-10.639467pt;}
.ws19{word-spacing:-10.401280pt;}
.ws2{word-spacing:-9.761280pt;}
.ws6{word-spacing:-9.433600pt;}
.wsa{word-spacing:-9.357867pt;}
.ws5{word-spacing:-9.308800pt;}
.ws1{word-spacing:-9.288213pt;}
.ws14{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.996480pt;}
.ws0{word-spacing:-8.833280pt;}
.wsf{word-spacing:-8.648213pt;}
.ws12{word-spacing:-8.356480pt;}
.ws9{word-spacing:-8.006613pt;}
.ws13{word-spacing:-7.718613pt;}
.ws4{word-spacing:0.000000pt;}
._12{margin-left:-2.236800pt;}
._0{margin-left:-1.008000pt;}
._2{width:1.276800pt;}
._3{width:2.276907pt;}
._4{width:3.333333pt;}
._13{width:4.346667pt;}
._8{width:5.312000pt;}
._9{width:6.400000pt;}
._5{width:7.296000pt;}
._6{width:8.256000pt;}
._b{width:9.216000pt;}
._a{width:10.176000pt;}
._e{width:11.674667pt;}
._14{width:12.800000pt;}
._15{width:13.696000pt;}
._11{width:14.592000pt;}
._16{width:16.095360pt;}
._17{width:17.315413pt;}
._21{width:18.368000pt;}
._7{width:19.904000pt;}
._f{width:21.248000pt;}
._10{width:22.189867pt;}
._1b{width:23.491200pt;}
._1a{width:24.512000pt;}
._1f{width:25.428267pt;}
._c{width:26.368000pt;}
._d{width:27.712000pt;}
._1d{width:29.233067pt;}
._1c{width:30.272000pt;}
._24{width:31.232000pt;}
._20{width:32.384000pt;}
._19{width:34.240000pt;}
._18{width:35.184000pt;}
._1e{width:37.034667pt;}
._22{width:39.152000pt;}
._23{width:43.200000pt;}
._1{width:2395.205333pt;}
.fs9{font-size:25.316178pt;}
.fs8{font-size:32.000000pt;}
.fsb{font-size:37.120000pt;}
.fs0{font-size:40.320000pt;}
.fs6{font-size:42.880000pt;}
.fsa{font-size:43.334583pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y2f{bottom:-0.186667pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:1.920000pt;}
.y11e{bottom:2.007933pt;}
.y2d{bottom:2.213333pt;}
.y3{bottom:4.000000pt;}
.y34{bottom:4.320000pt;}
.y13e{bottom:4.480000pt;}
.y68{bottom:5.280000pt;}
.yd0{bottom:5.440000pt;}
.y135{bottom:5.746667pt;}
.y10d{bottom:5.760000pt;}
.y200{bottom:5.786667pt;}
.y133{bottom:5.906667pt;}
.y10e{bottom:5.920000pt;}
.y165{bottom:6.066667pt;}
.y111{bottom:6.080000pt;}
.y18c{bottom:6.106667pt;}
.y167{bottom:6.226667pt;}
.y114{bottom:6.240000pt;}
.y10b{bottom:6.560000pt;}
.y139{bottom:7.840000pt;}
.y138{bottom:8.160000pt;}
.y33{bottom:11.200000pt;}
.y11d{bottom:11.912414pt;}
.y67{bottom:13.760000pt;}
.ycf{bottom:13.920000pt;}
.y218{bottom:14.080000pt;}
.y1a5{bottom:14.400000pt;}
.y95{bottom:14.720000pt;}
.y100{bottom:14.880000pt;}
.y140{bottom:15.520000pt;}
.y1bb{bottom:19.200000pt;}
.y1bf{bottom:19.360000pt;}
.y1bd{bottom:19.520000pt;}
.y3c{bottom:20.160000pt;}
.y2{bottom:21.920000pt;}
.y13f{bottom:23.520000pt;}
.y13d{bottom:23.840000pt;}
.y136{bottom:24.626667pt;}
.y16c{bottom:25.106667pt;}
.y161{bottom:25.120000pt;}
.y112{bottom:25.160000pt;}
.y132{bottom:25.266667pt;}
.y32{bottom:25.280000pt;}
.y16b{bottom:25.426667pt;}
.y190{bottom:25.440000pt;}
.y18b{bottom:25.466667pt;}
.y110{bottom:25.480000pt;}
.y19a{bottom:25.586667pt;}
.y10a{bottom:25.920000pt;}
.y35{bottom:33.280000pt;}
.y31{bottom:37.280000pt;}
.y1{bottom:37.920000pt;}
.y162{bottom:43.840000pt;}
.y160{bottom:44.480000pt;}
.y18d{bottom:44.506667pt;}
.y131{bottom:44.626667pt;}
.y191{bottom:44.640000pt;}
.y18a{bottom:44.826667pt;}
.y199{bottom:44.946667pt;}
.y18f{bottom:44.960000pt;}
.y196{bottom:44.986667pt;}
.y37{bottom:53.280000pt;}
.y15f{bottom:63.840000pt;}
.y197{bottom:64.026667pt;}
.y195{bottom:64.346667pt;}
.y13c{bottom:95.840000pt;}
.y217{bottom:100.320000pt;}
.y94{bottom:102.080000pt;}
.y178{bottom:103.280000pt;}
.y177{bottom:105.920000pt;}
.yb1{bottom:110.240000pt;}
.ydf{bottom:116.800000pt;}
.y66{bottom:120.640000pt;}
.y216{bottom:121.440000pt;}
.y91{bottom:123.200000pt;}
.y176{bottom:126.013333pt;}
.y224{bottom:126.560000pt;}
.y1cf{bottom:127.680000pt;}
.y2b{bottom:128.320000pt;}
.y175{bottom:128.640000pt;}
.y1a4{bottom:128.746667pt;}
.yff{bottom:131.040000pt;}
.y1a3{bottom:131.360000pt;}
.yb0{bottom:131.520000pt;}
.y13b{bottom:132.960000pt;}
.yde{bottom:137.920000pt;}
.y65{bottom:141.760000pt;}
.y215{bottom:142.560000pt;}
.y90{bottom:144.320000pt;}
.y174{bottom:148.880000pt;}
.y2a{bottom:149.440000pt;}
.y173{bottom:151.520000pt;}
.yfe{bottom:152.160000pt;}
.y13a{bottom:152.320000pt;}
.yaf{bottom:152.640000pt;}
.y1a2{bottom:154.080000pt;}
.ydd{bottom:159.040000pt;}
.y1ce{bottom:162.560000pt;}
.y64{bottom:162.880000pt;}
.y214{bottom:163.680000pt;}
.y8f{bottom:165.440000pt;}
.y29{bottom:170.560000pt;}
.y172{bottom:171.613333pt;}
.y137{bottom:171.840000pt;}
.y1a1{bottom:172.746667pt;}
.yfd{bottom:173.280000pt;}
.yae{bottom:173.760000pt;}
.y171{bottom:174.240000pt;}
.y1a0{bottom:175.360000pt;}
.ydc{bottom:180.160000pt;}
.y223{bottom:181.760000pt;}
.y1cd{bottom:183.706667pt;}
.y63{bottom:184.026667pt;}
.y1f1{bottom:184.186667pt;}
.y213{bottom:184.986667pt;}
.y93{bottom:186.426667pt;}
.y8e{bottom:186.746667pt;}
.y28{bottom:191.866667pt;}
.y130{bottom:193.960000pt;}
.yfc{bottom:194.586667pt;}
.yad{bottom:194.906667pt;}
.y170{bottom:196.986667pt;}
.y19f{bottom:198.106667pt;}
.ydb{bottom:201.466667pt;}
.y1f0{bottom:204.506667pt;}
.y1cc{bottom:204.826667pt;}
.y62{bottom:205.306667pt;}
.y212{bottom:206.106667pt;}
.y92{bottom:207.546667pt;}
.y8d{bottom:207.866667pt;}
.y222{bottom:209.306667pt;}
.y27{bottom:212.986667pt;}
.yfb{bottom:215.706667pt;}
.yac{bottom:216.186667pt;}
.y16f{bottom:218.106667pt;}
.y19e{bottom:219.226667pt;}
.yda{bottom:222.586667pt;}
.y1ef{bottom:223.866667pt;}
.y61{bottom:226.426667pt;}
.y211{bottom:227.226667pt;}
.y8c{bottom:228.986667pt;}
.y134{bottom:232.840000pt;}
.y26{bottom:234.106667pt;}
.yfa{bottom:236.826667pt;}
.y221{bottom:236.986667pt;}
.yab{bottom:237.306667pt;}
.y1cb{bottom:239.386667pt;}
.y19d{bottom:240.346667pt;}
.y1ee{bottom:243.546667pt;}
.yd9{bottom:243.706667pt;}
.y60{bottom:247.546667pt;}
.y210{bottom:248.346667pt;}
.y8b{bottom:250.106667pt;}
.y16e{bottom:251.866667pt;}
.y25{bottom:255.226667pt;}
.yf9{bottom:257.946667pt;}
.y220{bottom:258.106667pt;}
.yaa{bottom:258.426667pt;}
.y12f{bottom:259.066667pt;}
.y1ed{bottom:259.880000pt;}
.y1ca{bottom:260.506667pt;}
.yd8{bottom:264.826667pt;}
.y16d{bottom:266.120000pt;}
.y5f{bottom:268.666667pt;}
.y20f{bottom:269.626667pt;}
.y8a{bottom:271.386667pt;}
.y19c{bottom:274.106667pt;}
.y24{bottom:276.506667pt;}
.yf8{bottom:279.226667pt;}
.ya9{bottom:279.546667pt;}
.y12e{bottom:280.346667pt;}
.y1ec{bottom:280.520000pt;}
.y1c9{bottom:281.786667pt;}
.yd7{bottom:286.106667pt;}
.y16a{bottom:286.280000pt;}
.y19b{bottom:288.360000pt;}
.y5e{bottom:289.946667pt;}
.y89{bottom:292.506667pt;}
.y20e{bottom:296.826667pt;}
.y23{bottom:297.626667pt;}
.y1eb{bottom:300.040000pt;}
.yf7{bottom:300.346667pt;}
.ya8{bottom:300.826667pt;}
.y12d{bottom:301.466667pt;}
.y1c8{bottom:302.906667pt;}
.yd6{bottom:307.226667pt;}
.y198{bottom:308.360000pt;}
.y5d{bottom:311.066667pt;}
.y88{bottom:313.626667pt;}
.y22{bottom:318.746667pt;}
.yf6{bottom:321.466667pt;}
.yce{bottom:321.946667pt;}
.y1ea{bottom:322.120000pt;}
.y12c{bottom:322.586667pt;}
.y1c7{bottom:324.026667pt;}
.y169{bottom:325.000000pt;}
.ya7{bottom:328.026667pt;}
.yd5{bottom:328.346667pt;}
.y20d{bottom:331.706667pt;}
.y5c{bottom:332.186667pt;}
.y87{bottom:334.746667pt;}
.y21{bottom:339.866667pt;}
.yf5{bottom:342.586667pt;}
.ycd{bottom:343.066667pt;}
.y12b{bottom:343.706667pt;}
.y168{bottom:344.360000pt;}
.y1c6{bottom:345.146667pt;}
.ya6{bottom:349.146667pt;}
.yd4{bottom:349.466667pt;}
.y1e9{bottom:350.746667pt;}
.y20c{bottom:352.826667pt;}
.y5b{bottom:353.306667pt;}
.y86{bottom:356.026667pt;}
.y20{bottom:361.146667pt;}
.yf4{bottom:363.546667pt;}
.y166{bottom:363.720000pt;}
.ycc{bottom:364.186667pt;}
.y12a{bottom:365.306667pt;}
.y1c5{bottom:366.266667pt;}
.y194{bottom:366.600000pt;}
.ya5{bottom:370.746667pt;}
.y1e8{bottom:371.866667pt;}
.y20b{bottom:373.946667pt;}
.y5a{bottom:374.586667pt;}
.y85{bottom:377.146667pt;}
.y1f{bottom:382.266667pt;}
.y164{bottom:383.240000pt;}
.yf3{bottom:384.986667pt;}
.ycb{bottom:385.466667pt;}
.y129{bottom:386.426667pt;}
.y1c4{bottom:387.546667pt;}
.ya4{bottom:391.906667pt;}
.y1e7{bottom:393.026667pt;}
.y20a{bottom:395.106667pt;}
.y59{bottom:395.746667pt;}
.y102{bottom:397.986667pt;}
.y84{bottom:398.306667pt;}
.y163{bottom:402.626667pt;}
.y1e{bottom:403.426667pt;}
.yf2{bottom:406.146667pt;}
.yca{bottom:406.626667pt;}
.y1c3{bottom:408.706667pt;}
.ya3{bottom:413.026667pt;}
.y1e6{bottom:414.146667pt;}
.y209{bottom:416.386667pt;}
.y58{bottom:416.866667pt;}
.y83{bottom:419.426667pt;}
.y128{bottom:420.866667pt;}
.y1d{bottom:424.546667pt;}
.y15e{bottom:424.866667pt;}
.y22e{bottom:425.186667pt;}
.yf1{bottom:427.266667pt;}
.yc9{bottom:427.746667pt;}
.y1c2{bottom:429.506667pt;}
.ya2{bottom:434.146667pt;}
.y1e5{bottom:435.426667pt;}
.y208{bottom:437.506667pt;}
.y57{bottom:437.986667pt;}
.y82{bottom:440.706667pt;}
.y127{bottom:442.146667pt;}
.y22d{bottom:443.586667pt;}
.y193{bottom:444.226667pt;}
.y1c{bottom:445.826667pt;}
.yf0{bottom:448.386667pt;}
.yc8{bottom:448.866667pt;}
.y1c1{bottom:450.466667pt;}
.ya1{bottom:455.426667pt;}
.y1e4{bottom:456.546667pt;}
.y207{bottom:458.626667pt;}
.y56{bottom:459.106667pt;}
.y81{bottom:461.826667pt;}
.y22c{bottom:461.986667pt;}
.y126{bottom:463.266667pt;}
.y1c0{bottom:466.786667pt;}
.y1b{bottom:466.946667pt;}
.yef{bottom:469.346667pt;}
.yc7{bottom:470.146667pt;}
.ya0{bottom:476.546667pt;}
.y206{bottom:479.746667pt;}
.y55{bottom:480.386667pt;}
.y124{bottom:481.680000pt;}
.y80{bottom:482.946667pt;}
.y125{bottom:484.386667pt;}
.y1be{bottom:487.586667pt;}
.y1a{bottom:488.066667pt;}
.yee{bottom:490.786667pt;}
.yc6{bottom:491.266667pt;}
.y1e3{bottom:491.426667pt;}
.y9f{bottom:497.666667pt;}
.y205{bottom:500.866667pt;}
.y54{bottom:501.506667pt;}
.y192{bottom:502.466667pt;}
.y7f{bottom:504.066667pt;}
.y123{bottom:507.106667pt;}
.y19{bottom:509.186667pt;}
.y15d{bottom:509.346667pt;}
.yed{bottom:511.906667pt;}
.yc5{bottom:512.386667pt;}
.y1e2{bottom:512.546667pt;}
.y9e{bottom:518.786667pt;}
.y1bc{bottom:520.226667pt;}
.y204{bottom:522.146667pt;}
.y53{bottom:522.626667pt;}
.y7e{bottom:525.346667pt;}
.y122{bottom:525.680000pt;}
.y121{bottom:528.386667pt;}
.y15c{bottom:530.466667pt;}
.yec{bottom:533.026667pt;}
.yc4{bottom:533.506667pt;}
.y1e1{bottom:533.666667pt;}
.y18{bottom:538.786667pt;}
.y21f{bottom:539.746667pt;}
.y9d{bottom:540.066667pt;}
.y18e{bottom:541.186667pt;}
.y203{bottom:542.786667pt;}
.y52{bottom:543.746667pt;}
.y7d{bottom:546.466667pt;}
.y120{bottom:548.413333pt;}
.y11f{bottom:551.106667pt;}
.y15b{bottom:551.586667pt;}
.yeb{bottom:554.306667pt;}
.yc3{bottom:554.626667pt;}
.y1ba{bottom:555.586667pt;}
.y9c{bottom:561.186667pt;}
.y202{bottom:561.826667pt;}
.y51{bottom:565.026667pt;}
.y17{bottom:565.346667pt;}
.y7c{bottom:567.586667pt;}
.y1e0{bottom:568.226667pt;}
.y11c{bottom:571.146667pt;}
.y15a{bottom:572.866667pt;}
.y11b{bottom:573.826667pt;}
.yea{bottom:575.426667pt;}
.yc2{bottom:575.906667pt;}
.y16{bottom:579.746667pt;}
.y201{bottom:581.506667pt;}
.y9b{bottom:582.306667pt;}
.y50{bottom:586.146667pt;}
.y7b{bottom:588.706667pt;}
.y1df{bottom:589.346667pt;}
.y159{bottom:593.986667pt;}
.ye9{bottom:596.546667pt;}
.yc1{bottom:597.026667pt;}
.y1b9{bottom:597.666667pt;}
.y1ff{bottom:597.826667pt;}
.y189{bottom:599.426667pt;}
.y15{bottom:601.053333pt;}
.y9a{bottom:603.453333pt;}
.y4f{bottom:607.293333pt;}
.y7a{bottom:609.853333pt;}
.y1de{bottom:610.493333pt;}
.y158{bottom:615.453333pt;}
.ye8{bottom:617.693333pt;}
.y11a{bottom:617.853333pt;}
.yc0{bottom:618.173333pt;}
.y1fe{bottom:618.653333pt;}
.y1b8{bottom:618.813333pt;}
.y14{bottom:619.773333pt;}
.y99{bottom:624.573333pt;}
.y4e{bottom:628.413333pt;}
.y79{bottom:631.133333pt;}
.y1dd{bottom:631.613333pt;}
.y157{bottom:636.573333pt;}
.y1fd{bottom:638.013333pt;}
.y13{bottom:638.493333pt;}
.ye7{bottom:638.973333pt;}
.ybf{bottom:639.293333pt;}
.y1b7{bottom:639.933333pt;}
.y98{bottom:645.853333pt;}
.y4d{bottom:649.693333pt;}
.yd3{bottom:651.933333pt;}
.y78{bottom:652.253333pt;}
.y1dc{bottom:652.893333pt;}
.y12{bottom:657.213333pt;}
.y156{bottom:657.853333pt;}
.y187{bottom:658.333333pt;}
.ye6{bottom:659.773333pt;}
.y1fc{bottom:660.093333pt;}
.ybe{bottom:660.573333pt;}
.y1b6{bottom:661.213333pt;}
.y21e{bottom:666.973333pt;}
.y4c{bottom:670.813333pt;}
.y97{bottom:673.053333pt;}
.y77{bottom:673.373333pt;}
.y1db{bottom:674.013333pt;}
.y119{bottom:675.293333pt;}
.y11{bottom:675.933333pt;}
.ye5{bottom:681.213333pt;}
.ybd{bottom:681.693333pt;}
.y1b5{bottom:682.333333pt;}
.y21d{bottom:688.093333pt;}
.y1fb{bottom:688.733333pt;}
.y4b{bottom:691.933333pt;}
.y155{bottom:692.253333pt;}
.y96{bottom:694.173333pt;}
.y76{bottom:694.493333pt;}
.y10{bottom:694.653333pt;}
.y1da{bottom:695.133333pt;}
.y118{bottom:695.453333pt;}
.ye4{bottom:702.333333pt;}
.ybc{bottom:702.813333pt;}
.y21c{bottom:709.213333pt;}
.y1fa{bottom:709.853333pt;}
.y4a{bottom:713.053333pt;}
.y154{bottom:713.373333pt;}
.y117{bottom:714.813333pt;}
.y75{bottom:715.773333pt;}
.y1d9{bottom:716.253333pt;}
.y188{bottom:716.413333pt;}
.y1b4{bottom:717.213333pt;}
.yf{bottom:721.373333pt;}
.ye3{bottom:723.613333pt;}
.ybb{bottom:723.933333pt;}
.y21b{bottom:730.493333pt;}
.y1f9{bottom:730.973333pt;}
.y116{bottom:734.173333pt;}
.y49{bottom:734.333333pt;}
.y153{bottom:734.653333pt;}
.y74{bottom:736.893333pt;}
.y1d8{bottom:737.533333pt;}
.y1b3{bottom:738.333333pt;}
.y186{bottom:742.813333pt;}
.ye{bottom:743.773333pt;}
.ye2{bottom:744.733333pt;}
.yba{bottom:745.213333pt;}
.y22b{bottom:751.613333pt;}
.y1f8{bottom:752.253333pt;}
.y152{bottom:753.013333pt;}
.y115{bottom:753.533333pt;}
.y151{bottom:755.773333pt;}
.y21a{bottom:757.693333pt;}
.y73{bottom:758.013333pt;}
.y1d7{bottom:758.653333pt;}
.y1b2{bottom:759.453333pt;}
.y48{bottom:761.533333pt;}
.y185{bottom:763.933333pt;}
.yd{bottom:764.093333pt;}
.ye1{bottom:765.853333pt;}
.yb9{bottom:766.333333pt;}
.y22a{bottom:772.733333pt;}
.y113{bottom:772.893333pt;}
.y1f7{bottom:773.373333pt;}
.y150{bottom:775.746667pt;}
.y14f{bottom:778.493333pt;}
.y219{bottom:778.813333pt;}
.y1d6{bottom:778.973333pt;}
.y72{bottom:779.133333pt;}
.y184{bottom:785.053333pt;}
.yc{bottom:785.213333pt;}
.yb8{bottom:787.453333pt;}
.y47{bottom:789.213333pt;}
.y10f{bottom:792.413333pt;}
.y229{bottom:793.853333pt;}
.y1b1{bottom:794.013333pt;}
.y1f6{bottom:794.493333pt;}
.y14e{bottom:798.480000pt;}
.y1d5{bottom:798.653333pt;}
.ye0{bottom:800.093333pt;}
.y71{bottom:800.413333pt;}
.y14d{bottom:801.213333pt;}
.y183{bottom:806.333333pt;}
.yb7{bottom:808.573333pt;}
.y46{bottom:809.373333pt;}
.yb{bottom:814.053333pt;}
.y1d4{bottom:815.013333pt;}
.y1b0{bottom:815.173333pt;}
.y101{bottom:821.253333pt;}
.y14c{bottom:821.346667pt;}
.y70{bottom:821.573333pt;}
.y14b{bottom:824.133333pt;}
.y45{bottom:827.333333pt;}
.y182{bottom:827.493333pt;}
.y1f5{bottom:829.413333pt;}
.yb6{bottom:829.893333pt;}
.y109{bottom:831.813333pt;}
.y1d3{bottom:835.653333pt;}
.y1af{bottom:836.293333pt;}
.y6f{bottom:842.693333pt;}
.ya{bottom:842.853333pt;}
.y14a{bottom:844.080000pt;}
.y44{bottom:845.413333pt;}
.y149{bottom:846.853333pt;}
.y181{bottom:848.613333pt;}
.y1f4{bottom:850.533333pt;}
.yb5{bottom:851.013333pt;}
.y10c{bottom:851.973333pt;}
.y1d2{bottom:855.173333pt;}
.y1ae{bottom:857.413333pt;}
.y43{bottom:863.333333pt;}
.y6e{bottom:863.813333pt;}
.y9{bottom:865.893333pt;}
.y148{bottom:869.573333pt;}
.y180{bottom:870.053333pt;}
.y1f3{bottom:871.653333pt;}
.y1ad{bottom:875.946667pt;}
.y1d1{bottom:877.253333pt;}
.y36{bottom:877.760000pt;}
.yb4{bottom:878.213333pt;}
.y228{bottom:878.533333pt;}
.y1ac{bottom:878.693333pt;}
.y2c{bottom:878.880000pt;}
.y2e{bottom:880.160000pt;}
.y42{bottom:881.893333pt;}
.y8{bottom:883.013333pt;}
.y6d{bottom:885.093333pt;}
.y147{bottom:890.693333pt;}
.y17f{bottom:891.173333pt;}
.y1f2{bottom:892.773333pt;}
.y108{bottom:899.493333pt;}
.y227{bottom:899.813333pt;}
.y1ab{bottom:901.413333pt;}
.y41{bottom:902.373333pt;}
.yb3{bottom:905.893333pt;}
.y6c{bottom:906.213333pt;}
.y146{bottom:911.973333pt;}
.y17e{bottom:912.453333pt;}
.y7{bottom:913.413333pt;}
.y1aa{bottom:919.746667pt;}
.y107{bottom:920.613333pt;}
.y226{bottom:920.933333pt;}
.y1a9{bottom:922.533333pt;}
.y40{bottom:923.493333pt;}
.yb2{bottom:927.013333pt;}
.y6b{bottom:927.333333pt;}
.y145{bottom:933.093333pt;}
.y106{bottom:941.733333pt;}
.y225{bottom:942.053333pt;}
.y6{bottom:944.773333pt;}
.y1a8{bottom:945.253333pt;}
.y17d{bottom:946.853333pt;}
.yd2{bottom:948.133333pt;}
.y6a{bottom:948.453333pt;}
.y3f{bottom:953.093333pt;}
.y144{bottom:953.413333pt;}
.y105{bottom:963.173333pt;}
.y1a7{bottom:963.746667pt;}
.y1a6{bottom:966.533333pt;}
.y143{bottom:967.653333pt;}
.y17c{bottom:968.133333pt;}
.yd1{bottom:969.413333pt;}
.y69{bottom:969.733333pt;}
.y5{bottom:978.693333pt;}
.y104{bottom:984.453333pt;}
.y142{bottom:987.813333pt;}
.y17b{bottom:989.253333pt;}
.y1d0{bottom:990.533333pt;}
.y3e{bottom:990.853333pt;}
.y141{bottom:1007.173333pt;}
.y17a{bottom:1007.613333pt;}
.y179{bottom:1010.373333pt;}
.y103{bottom:1011.653333pt;}
.y3d{bottom:1011.973333pt;}
.y4{bottom:1012.613333pt;}
.y3b{bottom:1039.520000pt;}
.y3a{bottom:1052.000000pt;}
.y39{bottom:1064.480000pt;}
.y30{bottom:1073.600000pt;}
.h11{height:10.400000pt;}
.hf{height:12.800000pt;}
.h1d{height:16.000000pt;}
.h21{height:16.160000pt;}
.h2b{height:17.577932pt;}
.h2a{height:19.199733pt;}
.h24{height:19.346667pt;}
.h30{height:19.358667pt;}
.h29{height:19.360000pt;}
.h37{height:19.378667pt;}
.h32{height:19.386667pt;}
.h25{height:19.506667pt;}
.h28{height:19.520000pt;}
.h36{height:21.426667pt;}
.h2f{height:21.472000pt;}
.h14{height:21.671875pt;}
.h16{height:22.880000pt;}
.h15{height:32.149687pt;}
.h3e{height:32.626667pt;}
.h3d{height:32.786667pt;}
.h2{height:34.138125pt;}
.h10{height:34.190937pt;}
.h5{height:34.195312pt;}
.hc{height:36.138125pt;}
.h17{height:36.305625pt;}
.h31{height:37.118667pt;}
.h2e{height:38.226667pt;}
.h38{height:38.706667pt;}
.h26{height:38.740000pt;}
.h22{height:39.506667pt;}
.h2c{height:42.509364pt;}
.h13{height:44.160000pt;}
.h1f{height:44.687500pt;}
.h1b{height:44.975625pt;}
.h12{height:46.948750pt;}
.h4{height:47.742188pt;}
.h1a{height:49.852500pt;}
.h9{height:51.500000pt;}
.hb{height:52.834688pt;}
.h6{height:53.535000pt;}
.ha{height:54.390938pt;}
.h35{height:57.426667pt;}
.h3a{height:57.440000pt;}
.h33{height:57.758750pt;}
.h27{height:57.787500pt;}
.h3b{height:58.106667pt;}
.h2d{height:58.226667pt;}
.h3{height:58.563750pt;}
.h23{height:59.340000pt;}
.h19{height:62.781250pt;}
.he{height:62.812500pt;}
.hd{height:63.106875pt;}
.h1c{height:64.500000pt;}
.h20{height:65.781915pt;}
.h1e{height:71.524375pt;}
.h7{height:71.736875pt;}
.h8{height:72.069375pt;}
.h18{height:73.490625pt;}
.h34{height:77.426667pt;}
.h39{height:77.440000pt;}
.h3c{height:77.618667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:19.199470pt;}
.w9{width:38.390667pt;}
.w16{width:48.018667pt;}
.w15{width:53.906667pt;}
.w13{width:53.920000pt;}
.we{width:54.098667pt;}
.wd{width:59.986667pt;}
.w8{width:68.800000pt;}
.w5{width:71.680000pt;}
.wc{width:77.426667pt;}
.w17{width:78.066667pt;}
.w18{width:79.346667pt;}
.w4{width:85.760000pt;}
.w14{width:102.112000pt;}
.wb{width:114.098667pt;}
.w2{width:120.000000pt;}
.w12{width:120.018667pt;}
.w3{width:122.080000pt;}
.w11{width:141.430667pt;}
.w6{width:176.960000pt;}
.wa{width:374.937333pt;}
.wf{width:413.337333pt;}
.w7{width:556.800000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:3.706420pt;}
.x1f{left:7.190667pt;}
.x10{left:9.632000pt;}
.x12{left:11.813333pt;}
.x14{left:18.626667pt;}
.xe{left:37.733333pt;}
.x15{left:83.520000pt;}
.x1e{left:94.441333pt;}
.x1{left:96.032000pt;}
.x4c{left:97.321333pt;}
.xf{left:101.440000pt;}
.xa{left:106.272000pt;}
.x17{left:107.232000pt;}
.x3{left:109.952000pt;}
.x2c{left:118.592000pt;}
.x1a{left:120.032000pt;}
.x2{left:126.432000pt;}
.x1c{left:132.032000pt;}
.x1b{left:138.106667pt;}
.x54{left:144.026667pt;}
.x18{left:171.386667pt;}
.x3f{left:176.880000pt;}
.x33{left:193.213333pt;}
.x40{left:196.346667pt;}
.x34{left:212.346667pt;}
.x4{left:220.986667pt;}
.xc{left:226.586667pt;}
.x7{left:237.466667pt;}
.x4d{left:238.760000pt;}
.x8{left:249.306667pt;}
.x28{left:283.613333pt;}
.x31{left:286.613333pt;}
.x3b{left:293.013333pt;}
.x29{left:302.786667pt;}
.x32{left:306.786667pt;}
.x9{left:311.426667pt;}
.x3c{left:313.506667pt;}
.xb{left:320.226667pt;}
.x13{left:324.480000pt;}
.x26{left:349.813333pt;}
.x6{left:354.626667pt;}
.x4e{left:358.786667pt;}
.x27{left:369.826667pt;}
.x39{left:373.213333pt;}
.x37{left:382.613333pt;}
.x3a{left:392.386667pt;}
.x5{left:396.866667pt;}
.x38{left:402.306667pt;}
.x16{left:404.413333pt;}
.x49{left:409.680000pt;}
.x4f{left:412.706667pt;}
.x43{left:422.333333pt;}
.x41{left:426.613333pt;}
.x4a{left:430.333333pt;}
.x42{left:446.173333pt;}
.x23{left:449.680000pt;}
.x25{left:468.893333pt;}
.x3d{left:474.813333pt;}
.x3e{left:494.013333pt;}
.x20{left:507.786667pt;}
.x50{left:514.826667pt;}
.x2d{left:550.613333pt;}
.x47{left:563.946667pt;}
.x45{left:565.013333pt;}
.x22{left:567.786667pt;}
.x51{left:568.746667pt;}
.x2e{left:573.213333pt;}
.x48{left:583.333333pt;}
.x46{left:584.293333pt;}
.x2f{left:587.280000pt;}
.xd{left:594.080000pt;}
.x30{left:606.533333pt;}
.x52{left:616.773333pt;}
.x2a{left:617.680000pt;}
.x35{left:619.146667pt;}
.x21{left:621.893333pt;}
.x2b{left:636.933333pt;}
.x36{left:638.373333pt;}
.x55{left:646.080000pt;}
.x53{left:648.000000pt;}
.x19{left:650.880000pt;}
.x1d{left:652.000000pt;}
.x4b{left:655.653333pt;}
.x44{left:678.613333pt;}
.x11{left:722.080000pt;}
}




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