
    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_ee92f50b3db318791690ba25.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a630f1c1614266d916038303.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a74bd8181fa273c8db30b676.woff')format("woff");}.ff3{font-family:ff3;line-height:0.859863;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_b8c7199508e1088c1f356520.woff')format("woff");}.ff4{font-family:ff4;line-height:0.706543;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_9ca993938fdaf91ad0b57d7d.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_63972656b376fb2b1e6dd645.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2efa75f2f75e480ae930fc38.woff')format("woff");}.ff7{font-family:ff7;line-height:0.730469;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_4f1053493978c0a990d2627c.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3765a74e7ad849f774b4bdf1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.933594;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_a557b59ad161cc8107dcda41.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_32117aa73c1900436536ff87.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_0300db0b99baed92c5f078dc.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_7e9c5c81f8b3a1b21460ba30.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_c7d33c2567a35c3c50c1d3b4.woff')format("woff");}.ffe{font-family:ffe;line-height:0.694336;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-0.936000px;}
.ls16{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.144000px;}
.ls1d{letter-spacing:-0.072000px;}
.ls7{letter-spacing:-0.034560px;}
.ls8{letter-spacing:-0.017280px;}
.lsa{letter-spacing:-0.008640px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.017280px;}
.ls13{letter-spacing:0.023760px;}
.ls1b{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.150000px;}
.ls5{letter-spacing:0.174240px;}
.ls1{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.186600px;}
.ls17{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.269280px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.720000px;}
.lsf{letter-spacing:2.160000px;}
.ls1c{letter-spacing:6.480000px;}
.ls19{letter-spacing:11.520000px;}
.ls1a{letter-spacing:13.680000px;}
.ls9{letter-spacing:33.984000px;}
.lse{letter-spacing:64.026720px;}
.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;}
}
.ws8{word-spacing:-59.760000px;}
.ws1{word-spacing:-19.457280px;}
.ws5{word-spacing:-19.431360px;}
.ws2{word-spacing:-19.422720px;}
.ws13{word-spacing:-18.216000px;}
.wsf{word-spacing:-18.144000px;}
.ws16{word-spacing:-18.072000px;}
.ws6{word-spacing:-18.000000px;}
.ws17{word-spacing:-17.928000px;}
.ws9{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.ws15{word-spacing:-17.712000px;}
.ws14{word-spacing:-17.064000px;}
.ws10{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.wse{word-spacing:-13.692360px;}
.wsd{word-spacing:-13.505760px;}
.ws12{word-spacing:-13.284000px;}
.wsa{word-spacing:-12.060000px;}
.wsc{word-spacing:-10.902240px;}
.wsb{word-spacing:-0.072000px;}
.ws11{word-spacing:-0.059760px;}
.ws4{word-spacing:0.000000px;}
._25{margin-left:-298.044720px;}
._22{margin-left:-282.233520px;}
._20{margin-left:-234.486000px;}
._24{margin-left:-218.965680px;}
._23{margin-left:-185.856240px;}
._1f{margin-left:-179.376240px;}
._21{margin-left:-46.540080px;}
._1a{margin-left:-41.976000px;}
._b{margin-left:-4.608000px;}
._a{margin-left:-3.237600px;}
._4{margin-left:-1.370400px;}
._0{width:1.015920px;}
._1{width:2.551200px;}
._d{width:4.464000px;}
._5{width:5.529120px;}
._12{width:6.561360px;}
._11{width:7.689120px;}
._9{width:9.511920px;}
._8{width:10.578480px;}
._13{width:11.752560px;}
._e{width:12.882480px;}
._f{width:14.058240px;}
._16{width:15.480000px;}
._c{width:16.776000px;}
._10{width:19.296000px;}
._7{width:20.880000px;}
._6{width:22.394400px;}
._1b{width:23.760000px;}
._19{width:24.840000px;}
._14{width:26.064000px;}
._15{width:27.288000px;}
._17{width:28.584000px;}
._18{width:29.592000px;}
._1d{width:30.598560px;}
._26{width:33.264000px;}
._27{width:34.272000px;}
._1e{width:38.016000px;}
._28{width:41.990400px;}
._29{width:43.221600px;}
._2f{width:48.600000px;}
._1c{width:80.640000px;}
._2e{width:81.914400px;}
._2d{width:122.361600px;}
._2c{width:124.382400px;}
._30{width:152.112960px;}
._2a{width:204.300000px;}
._2b{width:205.392000px;}
._2{width:532.260000px;}
._3{width:1523.177520px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:120.240000px;}
.y110{bottom:-20.265000px;}
.yc6{bottom:-8.610000px;}
.y1b5{bottom:-0.195000px;}
.y0{bottom:0.000000px;}
.y1a1{bottom:0.795000px;}
.y194{bottom:1.875000px;}
.y1af{bottom:2.235000px;}
.y18b{bottom:2.265000px;}
.y197{bottom:2.415000px;}
.y19d{bottom:2.595000px;}
.yb7{bottom:3.135000px;}
.y191{bottom:3.315000px;}
.y17f{bottom:3.705000px;}
.y1a4{bottom:4.755000px;}
.yab{bottom:5.685000px;}
.y1bd{bottom:5.760000px;}
.y18e{bottom:5.865000px;}
.ya9{bottom:5.910000px;}
.yb1{bottom:6.270000px;}
.y1a6{bottom:7.455000px;}
.y1a8{bottom:8.175000px;}
.ybd{bottom:8.715000px;}
.y11e{bottom:9.435000px;}
.y166{bottom:9.510000px;}
.yca{bottom:9.750000px;}
.y188{bottom:10.335000px;}
.y183{bottom:10.365000px;}
.y186{bottom:10.515000px;}
.y181{bottom:10.545000px;}
.yae{bottom:10.770000px;}
.yc5{bottom:11.370000px;}
.y112{bottom:11.415000px;}
.yc1{bottom:12.135000px;}
.yc3{bottom:12.855000px;}
.y1ac{bottom:13.170000px;}
.y114{bottom:13.425000px;}
.y1b4{bottom:15.465000px;}
.y193{bottom:15.915000px;}
.y18a{bottom:16.125000px;}
.y196{bottom:16.455000px;}
.y10f{bottom:17.175000px;}
.y116{bottom:17.205000px;}
.y190{bottom:17.355000px;}
.y19c{bottom:18.975000px;}
.y19f{bottom:19.155000px;}
.yb6{bottom:19.515000px;}
.y18d{bottom:19.905000px;}
.y1a3{bottom:20.595000px;}
.y1bc{bottom:21.420000px;}
.y10b{bottom:22.965000px;}
.y1ae{bottom:23.475000px;}
.ybc{bottom:24.555000px;}
.yc8{bottom:25.590000px;}
.yb9{bottom:26.715000px;}
.yad{bottom:26.970000px;}
.ybf{bottom:28.155000px;}
.y1aa{bottom:30.135000px;}
.y1b3{bottom:30.990000px;}
.ycc{bottom:33.195000px;}
.ya6{bottom:34.530000px;}
.y1bb{bottom:36.900000px;}
.y106{bottom:37.005000px;}
.y10d{bottom:38.235000px;}
.y7{bottom:39.276000px;}
.y109{bottom:44.025000px;}
.y1b2{bottom:46.470000px;}
.y1ba{bottom:52.560000px;}
.y6{bottom:58.536000px;}
.y1b1{bottom:61.950000px;}
.y1b9{bottom:68.040000px;}
.y19a{bottom:70.095000px;}
.yb4{bottom:81.255000px;}
.y1b8{bottom:83.520000px;}
.y163{bottom:85.110000px;}
.y1b7{bottom:99.000000px;}
.y2c{bottom:131.436000px;}
.y1fb{bottom:135.396000px;}
.y2b{bottom:136.656000px;}
.y1e9{bottom:137.016000px;}
.y161{bottom:138.816000px;}
.y129{bottom:145.050000px;}
.yf0{bottom:146.916000px;}
.y102{bottom:148.716000px;}
.ya4{bottom:149.796000px;}
.y2a{bottom:150.330000px;}
.y148{bottom:153.390000px;}
.y8b{bottom:156.090000px;}
.y1e8{bottom:157.710000px;}
.y168{bottom:158.370000px;}
.y20f{bottom:158.790000px;}
.y179{bottom:163.725000px;}
.y118{bottom:167.145000px;}
.yef{bottom:167.610000px;}
.y101{bottom:169.410000px;}
.ya3{bottom:170.490000px;}
.y1d5{bottom:172.110000px;}
.y8a{bottom:176.790000px;}
.y160{bottom:177.510000px;}
.y20e{bottom:179.490000px;}
.y67{bottom:184.170000px;}
.yee{bottom:188.310000px;}
.y100{bottom:190.110000px;}
.y53{bottom:190.290000px;}
.y147{bottom:192.090000px;}
.y1e7{bottom:196.410000px;}
.y89{bottom:197.490000px;}
.y29{bottom:201.090000px;}
.yed{bottom:209.010000px;}
.ya2{bottom:209.190000px;}
.yff{bottom:210.810000px;}
.y52{bottom:210.990000px;}
.y1d4{bottom:212.790000px;}
.y120{bottom:215.025000px;}
.y15f{bottom:215.850000px;}
.y88{bottom:218.190000px;}
.y28{bottom:218.370000px;}
.y66{bottom:222.870000px;}
.yec{bottom:229.710000px;}
.y146{bottom:230.790000px;}
.yfe{bottom:231.510000px;}
.y51{bottom:231.690000px;}
.y1d3{bottom:233.490000px;}
.y1e6{bottom:235.110000px;}
.y27{bottom:235.650000px;}
.y87{bottom:238.890000px;}
.ya1{bottom:247.890000px;}
.yc4{bottom:250.740000px;}
.y145{bottom:251.490000px;}
.yfd{bottom:252.210000px;}
.y50{bottom:252.390000px;}
.y1b0{bottom:252.765000px;}
.y1d2{bottom:254.190000px;}
.y15e{bottom:254.550000px;}
.yc7{bottom:254.880000px;}
.y104{bottom:256.785000px;}
.y65{bottom:257.070000px;}
.y86{bottom:259.590000px;}
.yc9{bottom:264.630000px;}
.y1a9{bottom:264.960000px;}
.yeb{bottom:268.410000px;}
.y26{bottom:271.650000px;}
.y144{bottom:272.190000px;}
.yfc{bottom:272.955000px;}
.y1e5{bottom:273.855000px;}
.y1a7{bottom:273.960000px;}
.y1d1{bottom:274.935000px;}
.y1ab{bottom:278.130000px;}
.y85{bottom:280.335000px;}
.ya0{bottom:286.635000px;}
.yea{bottom:289.155000px;}
.y4f{bottom:291.135000px;}
.y25{bottom:292.215000px;}
.y143{bottom:292.935000px;}
.y15d{bottom:293.295000px;}
.y16e{bottom:294.450000px;}
.y1d0{bottom:295.635000px;}
.y20d{bottom:298.335000px;}
.y84{bottom:301.035000px;}
.ye9{bottom:309.855000px;}
.yfb{bottom:311.655000px;}
.y4e{bottom:311.835000px;}
.y1e4{bottom:312.555000px;}
.y142{bottom:313.635000px;}
.y1fa{bottom:319.035000px;}
.y83{bottom:321.735000px;}
.y9f{bottom:325.335000px;}
.ye8{bottom:330.555000px;}
.y15c{bottom:331.995000px;}
.y24{bottom:332.715000px;}
.y1cf{bottom:334.335000px;}
.yb3{bottom:339.480000px;}
.y1f9{bottom:339.735000px;}
.y82{bottom:342.435000px;}
.y195{bottom:349.380000px;}
.y199{bottom:350.100000px;}
.yfa{bottom:350.355000px;}
.y4d{bottom:350.535000px;}
.y1e3{bottom:351.255000px;}
.y141{bottom:352.335000px;}
.y23{bottom:353.415000px;}
.y1ce{bottom:355.035000px;}
.y9e{bottom:363.855000px;}
.yb8{bottom:368.640000px;}
.ye7{bottom:369.255000px;}
.y15b{bottom:370.695000px;}
.y4c{bottom:371.235000px;}
.y140{bottom:373.035000px;}
.ybe{bottom:373.680000px;}
.y22{bottom:374.115000px;}
.y19e{bottom:374.940000px;}
.y1cd{bottom:375.735000px;}
.y1f8{bottom:378.435000px;}
.y1a2{bottom:379.260000px;}
.yba{bottom:379.515000px;}
.y81{bottom:381.135000px;}
.yc0{bottom:385.815000px;}
.yf9{bottom:389.055000px;}
.ye6{bottom:389.955000px;}
.y4b{bottom:391.935000px;}
.y13f{bottom:393.735000px;}
.y21{bottom:394.815000px;}
.y1cc{bottom:396.435000px;}
.y1f7{bottom:399.135000px;}
.y80{bottom:401.835000px;}
.y9d{bottom:402.555000px;}
.y15a{bottom:409.395000px;}
.ye5{bottom:410.655000px;}
.y4a{bottom:412.635000px;}
.y13e{bottom:414.435000px;}
.y20{bottom:415.515000px;}
.y187{bottom:415.800000px;}
.y111{bottom:418.680000px;}
.y1f6{bottom:419.835000px;}
.y198{bottom:420.195000px;}
.yb2{bottom:420.735000px;}
.y7f{bottom:422.535000px;}
.yf8{bottom:427.755000px;}
.ye4{bottom:431.355000px;}
.y103{bottom:432.180000px;}
.y49{bottom:433.335000px;}
.y1cb{bottom:435.135000px;}
.y192{bottom:435.600000px;}
.y1f{bottom:436.215000px;}
.y1a0{bottom:437.220000px;}
.y20c{bottom:437.835000px;}
.y1f5{bottom:440.535000px;}
.ybb{bottom:441.180000px;}
.y9c{bottom:441.255000px;}
.y11f{bottom:445.860000px;}
.y159{bottom:448.095000px;}
.y1a5{bottom:449.280000px;}
.y19b{bottom:451.080000px;}
.ye3{bottom:452.055000px;}
.y13d{bottom:453.135000px;}
.y48{bottom:454.035000px;}
.yc2{bottom:455.040000px;}
.yb5{bottom:455.400000px;}
.y1ca{bottom:455.835000px;}
.y117{bottom:456.120000px;}
.y1e{bottom:456.915000px;}
.y20b{bottom:458.535000px;}
.y127{bottom:459.795000px;}
.y7e{bottom:461.235000px;}
.yf7{bottom:466.455000px;}
.y10c{bottom:469.080000px;}
.ye2{bottom:472.755000px;}
.y13c{bottom:473.835000px;}
.y1c9{bottom:476.535000px;}
.y1d{bottom:477.615000px;}
.y9b{bottom:479.955000px;}
.y7d{bottom:481.935000px;}
.y10e{bottom:486.255000px;}
.y158{bottom:486.795000px;}
.y126{bottom:490.575000px;}
.y1ad{bottom:491.400000px;}
.y47{bottom:492.735000px;}
.ye1{bottom:493.455000px;}
.y11d{bottom:494.355000px;}
.y13b{bottom:494.535000px;}
.y20a{bottom:496.875000px;}
.y1c8{bottom:497.235000px;}
.y185{bottom:497.880000px;}
.y1c{bottom:498.315000px;}
.y7c{bottom:502.635000px;}
.ycb{bottom:502.920000px;}
.yf6{bottom:505.155000px;}
.y125{bottom:506.415000px;}
.y46{bottom:513.435000px;}
.y1e2{bottom:514.155000px;}
.y13a{bottom:515.235000px;}
.ycd{bottom:516.315000px;}
.y1c7{bottom:517.935000px;}
.y18f{bottom:518.400000px;}
.y9a{bottom:518.655000px;}
.y1b{bottom:519.015000px;}
.y1f4{bottom:520.635000px;}
.y11c{bottom:523.155000px;}
.y7b{bottom:523.335000px;}
.y157{bottom:525.495000px;}
.ye0{bottom:532.155000px;}
.y45{bottom:534.135000px;}
.y1e1{bottom:534.855000px;}
.y139{bottom:535.935000px;}
.y124{bottom:537.375000px;}
.y209{bottom:537.555000px;}
.y1c6{bottom:538.635000px;}
.y1a{bottom:539.715000px;}
.y1f3{bottom:541.335000px;}
.y7a{bottom:543.855000px;}
.y11b{bottom:551.955000px;}
.ydf{bottom:552.855000px;}
.y44{bottom:554.835000px;}
.y1e0{bottom:555.585000px;}
.y138{bottom:556.665000px;}
.y99{bottom:557.385000px;}
.y208{bottom:558.285000px;}
.y1c5{bottom:559.365000px;}
.y19{bottom:560.445000px;}
.y1f2{bottom:561.885000px;}
.y113{bottom:562.500000px;}
.y213{bottom:563.685000px;}
.y156{bottom:564.225000px;}
.y79{bottom:564.585000px;}
.y123{bottom:568.185000px;}
.yde{bottom:573.585000px;}
.y1df{bottom:576.285000px;}
.y137{bottom:577.365000px;}
.y207{bottom:578.985000px;}
.y11a{bottom:580.785000px;}
.yf5{bottom:582.585000px;}
.y212{bottom:584.385000px;}
.y184{bottom:586.800000px;}
.y43{bottom:593.385000px;}
.ydd{bottom:594.285000px;}
.y18c{bottom:595.620000px;}
.y98{bottom:595.905000px;}
.y1de{bottom:596.985000px;}
.y136{bottom:597.885000px;}
.y18{bottom:598.965000px;}
.y122{bottom:599.145000px;}
.y206{bottom:599.685000px;}
.y1f1{bottom:600.585000px;}
.y155{bottom:602.925000px;}
.y78{bottom:603.105000px;}
.y211{bottom:605.085000px;}
.y119{bottom:609.585000px;}
.ydc{bottom:614.985000px;}
.y97{bottom:616.785000px;}
.y1dd{bottom:617.685000px;}
.y135{bottom:618.585000px;}
.y205{bottom:620.385000px;}
.yf4{bottom:621.285000px;}
.y64{bottom:623.985000px;}
.y121{bottom:629.925000px;}
.y42{bottom:633.885000px;}
.y108{bottom:634.500000px;}
.ydb{bottom:635.685000px;}
.y96{bottom:637.485000px;}
.y1dc{bottom:638.385000px;}
.y1b6{bottom:638.925000px;}
.y17{bottom:639.285000px;}
.y204{bottom:641.085000px;}
.y154{bottom:641.625000px;}
.y1f0{bottom:641.985000px;}
.y77{bottom:643.785000px;}
.y63{bottom:644.685000px;}
.y41{bottom:654.585000px;}
.yda{bottom:656.385000px;}
.y134{bottom:657.285000px;}
.y10a{bottom:657.465000px;}
.y95{bottom:658.185000px;}
.y1db{bottom:659.085000px;}
.yf3{bottom:659.985000px;}
.y1ef{bottom:662.685000px;}
.y76{bottom:664.485000px;}
.y62{bottom:665.385000px;}
.y178{bottom:666.000000px;}
.y182{bottom:669.960000px;}
.y40{bottom:675.285000px;}
.y133{bottom:677.985000px;}
.y1da{bottom:679.785000px;}
.y16{bottom:680.325000px;}
.y1ee{bottom:683.385000px;}
.y189{bottom:684.900000px;}
.y75{bottom:685.185000px;}
.y17e{bottom:685.545000px;}
.y61{bottom:686.085000px;}
.yd9{bottom:695.085000px;}
.y3f{bottom:695.985000px;}
.y94{bottom:696.705000px;}
.yf2{bottom:698.685000px;}
.y203{bottom:700.485000px;}
.y15{bottom:703.005000px;}
.y74{bottom:705.885000px;}
.y60{bottom:706.785000px;}
.y17d{bottom:714.525000px;}
.yd8{bottom:715.785000px;}
.y3e{bottom:716.685000px;}
.y1d9{bottom:718.485000px;}
.y153{bottom:719.025000px;}
.y132{bottom:719.385000px;}
.y202{bottom:721.185000px;}
.y1ed{bottom:722.085000px;}
.y210{bottom:723.885000px;}
.y128{bottom:724.860000px;}
.yd7{bottom:736.485000px;}
.y3d{bottom:737.385000px;}
.y1d8{bottom:739.185000px;}
.y131{bottom:740.085000px;}
.y201{bottom:741.885000px;}
.y1ec{bottom:742.785000px;}
.y17c{bottom:743.325000px;}
.y73{bottom:744.585000px;}
.y14{bottom:744.945000px;}
.y5f{bottom:745.485000px;}
.y12d{bottom:746.205000px;}
.y180{bottom:749.880000px;}
.y115{bottom:753.480000px;}
.y105{bottom:754.560000px;}
.yd6{bottom:757.185000px;}
.y152{bottom:757.725000px;}
.y3c{bottom:758.085000px;}
.y1d7{bottom:759.885000px;}
.y130{bottom:760.785000px;}
.y72{bottom:765.285000px;}
.y13{bottom:767.265000px;}
.y17b{bottom:772.125000px;}
.y107{bottom:775.545000px;}
.y93{bottom:776.085000px;}
.y12c{bottom:777.165000px;}
.yd5{bottom:777.885000px;}
.y3b{bottom:778.785000px;}
.y1d6{bottom:780.585000px;}
.y1c4{bottom:781.485000px;}
.y5e{bottom:784.185000px;}
.y71{bottom:785.985000px;}
.y16d{bottom:787.500000px;}
.y12{bottom:789.945000px;}
.y151{bottom:796.425000px;}
.yd4{bottom:798.585000px;}
.y12f{bottom:799.305000px;}
.y3a{bottom:799.485000px;}
.y17a{bottom:800.925000px;}
.y200{bottom:801.285000px;}
.y1c3{bottom:802.185000px;}
.y177{bottom:803.985000px;}
.yaa{bottom:804.600000px;}
.y12b{bottom:808.125000px;}
.y92{bottom:814.785000px;}
.yd3{bottom:819.285000px;}
.y39{bottom:820.185000px;}
.y1ff{bottom:821.985000px;}
.y5d{bottom:822.885000px;}
.y70{bottom:824.685000px;}
.y11{bottom:831.885000px;}
.y176{bottom:834.945000px;}
.y150{bottom:835.125000px;}
.y12a{bottom:838.905000px;}
.yd2{bottom:840.030000px;}
.y38{bottom:840.930000px;}
.y1fe{bottom:842.730000px;}
.y1c2{bottom:843.630000px;}
.y6f{bottom:845.430000px;}
.ya5{bottom:846.000000px;}
.y91{bottom:853.530000px;}
.y10{bottom:854.250000px;}
.ya8{bottom:857.340000px;}
.yd1{bottom:860.730000px;}
.y37{bottom:861.630000px;}
.y1fd{bottom:863.430000px;}
.y175{bottom:865.770000px;}
.y6e{bottom:866.130000px;}
.ya7{bottom:866.490000px;}
.y14f{bottom:873.870000px;}
.yf{bottom:877.110000px;}
.yd0{bottom:881.430000px;}
.y162{bottom:881.460000px;}
.y1c1{bottom:882.150000px;}
.y36{bottom:882.330000px;}
.y1fc{bottom:884.130000px;}
.yf1{bottom:887.910000px;}
.y90{bottom:892.230000px;}
.y174{bottom:896.730000px;}
.ycf{bottom:902.130000px;}
.y35{bottom:903.030000px;}
.y6d{bottom:904.830000px;}
.yaf{bottom:908.280000px;}
.y14e{bottom:912.570000px;}
.ye{bottom:918.870000px;}
.y165{bottom:919.950000px;}
.y5c{bottom:920.850000px;}
.y167{bottom:921.420000px;}
.y12e{bottom:922.830000px;}
.y1eb{bottom:923.730000px;}
.y6c{bottom:925.530000px;}
.y173{bottom:927.510000px;}
.y8f{bottom:930.930000px;}
.yac{bottom:933.300000px;}
.yce{bottom:940.830000px;}
.yd{bottom:941.370000px;}
.y34{bottom:941.730000px;}
.y1c0{bottom:943.530000px;}
.y6b{bottom:946.230000px;}
.y164{bottom:950.730000px;}
.y14d{bottom:951.270000px;}
.y172{bottom:958.470000px;}
.y5b{bottom:961.530000px;}
.y1ea{bottom:962.250000px;}
.y33{bottom:962.430000px;}
.yb{bottom:964.050000px;}
.y1bf{bottom:964.230000px;}
.y6a{bottom:966.930000px;}
.y8e{bottom:969.630000px;}
.yc{bottom:971.610000px;}
.y16c{bottom:977.910000px;}
.y5a{bottom:982.230000px;}
.y32{bottom:983.130000px;}
.y1be{bottom:984.930000px;}
.y171{bottom:989.250000px;}
.ya{bottom:989.790000px;}
.y14c{bottom:989.970000px;}
.y16b{bottom:992.310000px;}
.y59{bottom:1002.930000px;}
.y31{bottom:1003.830000px;}
.y69{bottom:1005.630000px;}
.y8d{bottom:1008.330000px;}
.yb0{bottom:1016.100000px;}
.y170{bottom:1020.210000px;}
.y16a{bottom:1021.110000px;}
.y58{bottom:1023.630000px;}
.y30{bottom:1024.530000px;}
.y68{bottom:1026.330000px;}
.y14b{bottom:1028.670000px;}
.y9{bottom:1042.170000px;}
.y57{bottom:1044.330000px;}
.y2f{bottom:1045.230000px;}
.y8c{bottom:1047.030000px;}
.y169{bottom:1049.910000px;}
.y16f{bottom:1050.990000px;}
.y56{bottom:1065.030000px;}
.y2e{bottom:1065.930000px;}
.y14a{bottom:1067.370000px;}
.y8{bottom:1076.730000px;}
.y55{bottom:1085.730000px;}
.y2d{bottom:1104.450000px;}
.y149{bottom:1106.070000px;}
.y54{bottom:1106.430000px;}
.y5{bottom:1126.080000px;}
.y4{bottom:1143.720000px;}
.y3{bottom:1160.820000px;}
.y2{bottom:1178.100000px;}
.y1{bottom:1195.380000px;}
.h43{height:18.900000px;}
.h15{height:19.440000px;}
.h14{height:19.620000px;}
.h18{height:21.960000px;}
.h2b{height:24.480000px;}
.h20{height:25.200000px;}
.h36{height:25.380000px;}
.h35{height:25.560000px;}
.h3a{height:26.820000px;}
.h37{height:27.000000px;}
.h3b{height:27.360000px;}
.he{height:27.945000px;}
.h39{height:28.260000px;}
.h2c{height:28.440000px;}
.h41{height:28.620000px;}
.h3e{height:30.420000px;}
.h3f{height:30.600000px;}
.h38{height:30.780000px;}
.h1c{height:30.960000px;}
.h42{height:31.680000px;}
.h40{height:32.905898px;}
.h2f{height:33.494766px;}
.h1e{height:35.640000px;}
.h22{height:36.720000px;}
.ha{height:37.494141px;}
.h1d{height:37.800000px;}
.h16{height:37.980000px;}
.h47{height:38.759766px;}
.h1f{height:39.240000px;}
.h26{height:40.764023px;}
.h3c{height:40.822383px;}
.h44{height:41.580000px;}
.h6{height:41.756133px;}
.h4{height:45.184219px;}
.h12{height:45.540000px;}
.h23{height:46.980000px;}
.h17{height:47.344922px;}
.h27{height:48.060000px;}
.h13{height:48.616875px;}
.h1b{height:49.113281px;}
.h19{height:49.183594px;}
.h11{height:49.992188px;}
.h48{height:51.679688px;}
.h29{height:52.560000px;}
.h21{height:52.998047px;}
.h5{height:53.640000px;}
.h28{height:58.320000px;}
.hf{height:58.621992px;}
.h2{height:58.651172px;}
.h3{height:60.226875px;}
.h2a{height:65.010937px;}
.hd{height:70.664062px;}
.h24{height:72.562500px;}
.h10{height:74.004654px;}
.h45{height:74.182500px;}
.hb{height:76.317188px;}
.hc{height:78.367500px;}
.h8{height:82.676953px;}
.h31{height:96.120000px;}
.h46{height:113.940000px;}
.h7{height:121.179375px;}
.h3d{height:132.660000px;}
.h30{height:156.060000px;}
.h1a{height:156.600000px;}
.h32{height:168.120000px;}
.h34{height:174.600000px;}
.h2d{height:178.020000px;}
.h2e{height:226.080000px;}
.h25{height:271.080000px;}
.h33{height:305.460000px;}
.h9{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:55.800000px;}
.we{width:62.820000px;}
.wc{width:65.700000px;}
.w27{width:66.600000px;}
.wd{width:67.320000px;}
.w21{width:68.400000px;}
.w28{width:69.480000px;}
.w26{width:70.380000px;}
.w19{width:71.640000px;}
.w18{width:73.620000px;}
.wf{width:75.600000px;}
.wb{width:76.680000px;}
.w2a{width:77.220000px;}
.w11{width:78.480000px;}
.w10{width:79.560000px;}
.w29{width:80.100000px;}
.w8{width:81.360000px;}
.w17{width:83.160000px;}
.w23{width:85.140000px;}
.w22{width:85.320000px;}
.w24{width:85.500000px;}
.w16{width:88.020000px;}
.w14{width:88.380000px;}
.w15{width:89.100000px;}
.w4{width:91.080000px;}
.w2c{width:96.480000px;}
.w12{width:97.020000px;}
.w2b{width:98.280000px;}
.w7{width:117.360000px;}
.w6{width:117.540000px;}
.w5{width:117.720000px;}
.w2{width:125.460000px;}
.w1e{width:142.380000px;}
.w20{width:159.660000px;}
.w1d{width:162.360000px;}
.w1c{width:167.220000px;}
.w1a{width:169.560000px;}
.w1f{width:180.900000px;}
.w2e{width:182.910000px;}
.w2d{width:203.790000px;}
.w1b{width:210.600000px;}
.w25{width:224.460000px;}
.wa{width:289.800000px;}
.w13{width:451.620000px;}
.w3{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5f{left:2.190000px;}
.x68{left:4.035000px;}
.x30{left:6.585000px;}
.x1e{left:10.875000px;}
.x45{left:12.570000px;}
.x2d{left:14.325000px;}
.x61{left:15.870000px;}
.x3c{left:17.175000px;}
.x29{left:18.975000px;}
.x2a{left:20.415000px;}
.x37{left:23.430000px;}
.x60{left:24.510000px;}
.x28{left:27.615000px;}
.x24{left:29.445000px;}
.x33{left:37.515000px;}
.x2{left:50.399998px;}
.x69{left:61.380000px;}
.x4f{left:74.880000px;}
.x40{left:76.350000px;}
.x50{left:85.680000px;}
.x53{left:108.360000px;}
.x54{left:119.196000px;}
.x1{left:127.656000px;}
.x4a{left:129.240000px;}
.x41{left:131.580000px;}
.x14{left:133.056000px;}
.x4b{left:140.076000px;}
.x3e{left:142.200000px;}
.x3{left:147.816000px;}
.x15{left:148.896000px;}
.x3f{left:153.030000px;}
.x16{left:154.650000px;}
.x10{left:156.810000px;}
.x12{left:159.510000px;}
.x17{left:162.390000px;}
.x1b{left:166.530000px;}
.x1f{left:176.580000px;}
.x11{left:180.750000px;}
.x9{left:184.890000px;}
.x5e{left:191.340000px;}
.x39{left:193.890000px;}
.x4{left:198.570000px;}
.x5d{left:202.350000px;}
.x65{left:204.120000px;}
.x20{left:210.960000px;}
.xc{left:214.590000px;}
.x3a{left:216.570000px;}
.x36{left:228.420000px;}
.x1a{left:243.570000px;}
.x38{left:245.190000px;}
.x19{left:274.710000px;}
.x48{left:284.760000px;}
.x49{left:295.635000px;}
.x3b{left:306.000000px;}
.x62{left:322.560000px;}
.x63{left:327.960000px;}
.x6{left:329.295000px;}
.x3d{left:330.915000px;}
.x66{left:337.680000px;}
.x13{left:343.695000px;}
.x4c{left:345.780000px;}
.x67{left:348.735000px;}
.xe{left:350.535000px;}
.x4d{left:356.655000px;}
.xa{left:362.955000px;}
.x26{left:366.840000px;}
.x25{left:377.895000px;}
.x1d{left:380.700000px;}
.xb{left:387.795000px;}
.xd{left:389.775000px;}
.xf{left:393.915000px;}
.x32{left:403.200000px;}
.x1c{left:425.595000px;}
.x4e{left:427.035000px;}
.x64{left:431.280000px;}
.x27{left:433.080000px;}
.x2b{left:438.015000px;}
.x59{left:455.040000px;}
.x5{left:457.275000px;}
.x21{left:489.420000px;}
.x23{left:492.120000px;}
.x5a{left:513.540000px;}
.x2c{left:528.300000px;}
.x46{left:531.720000px;}
.x22{left:535.500000px;}
.x2e{left:536.760000px;}
.x2f{left:548.745000px;}
.x34{left:552.780000px;}
.x55{left:560.340000px;}
.x35{left:563.865000px;}
.x47{left:569.625000px;}
.x7{left:578.422500px;}
.x5b{left:581.940000px;}
.x8{left:585.285000px;}
.x56{left:617.760000px;}
.x6a{left:632.820000px;}
.x51{left:648.900000px;}
.x52{left:659.805000px;}
.x5c{left:662.040000px;}
.x18{left:666.465000px;}
.x31{left:674.280000px;}
.x57{left:678.600000px;}
.x6b{left:683.040000px;}
.x58{left:750.600000px;}
.x42{left:754.740000px;}
.x44{left:759.960000px;}
.x43{left:774.360000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-0.832000pt;}
.ls16{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls1d{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:-0.030720pt;}
.ls8{letter-spacing:-0.015360pt;}
.lsa{letter-spacing:-0.007680pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.015360pt;}
.ls13{letter-spacing:0.021120pt;}
.ls1b{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.133333pt;}
.ls5{letter-spacing:0.154880pt;}
.ls1{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.165867pt;}
.ls17{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.239360pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.640000pt;}
.lsf{letter-spacing:1.920000pt;}
.ls1c{letter-spacing:5.760000pt;}
.ls19{letter-spacing:10.240000pt;}
.ls1a{letter-spacing:12.160000pt;}
.ls9{letter-spacing:30.208000pt;}
.lse{letter-spacing:56.912640pt;}
.ws8{word-spacing:-53.120000pt;}
.ws1{word-spacing:-17.295360pt;}
.ws5{word-spacing:-17.272320pt;}
.ws2{word-spacing:-17.264640pt;}
.ws13{word-spacing:-16.192000pt;}
.wsf{word-spacing:-16.128000pt;}
.ws16{word-spacing:-16.064000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws17{word-spacing:-15.936000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws15{word-spacing:-15.744000pt;}
.ws14{word-spacing:-15.168000pt;}
.ws10{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.wse{word-spacing:-12.170987pt;}
.wsd{word-spacing:-12.005120pt;}
.ws12{word-spacing:-11.808000pt;}
.wsa{word-spacing:-10.720000pt;}
.wsc{word-spacing:-9.690880pt;}
.wsb{word-spacing:-0.064000pt;}
.ws11{word-spacing:-0.053120pt;}
.ws4{word-spacing:0.000000pt;}
._25{margin-left:-264.928640pt;}
._22{margin-left:-250.874240pt;}
._20{margin-left:-208.432000pt;}
._24{margin-left:-194.636160pt;}
._23{margin-left:-165.205547pt;}
._1f{margin-left:-159.445547pt;}
._21{margin-left:-41.368960pt;}
._1a{margin-left:-37.312000pt;}
._b{margin-left:-4.096000pt;}
._a{margin-left:-2.877867pt;}
._4{margin-left:-1.218133pt;}
._0{width:0.903040pt;}
._1{width:2.267733pt;}
._d{width:3.968000pt;}
._5{width:4.914773pt;}
._12{width:5.832320pt;}
._11{width:6.834773pt;}
._9{width:8.455040pt;}
._8{width:9.403093pt;}
._13{width:10.446720pt;}
._e{width:11.451093pt;}
._f{width:12.496213pt;}
._16{width:13.760000pt;}
._c{width:14.912000pt;}
._10{width:17.152000pt;}
._7{width:18.560000pt;}
._6{width:19.906133pt;}
._1b{width:21.120000pt;}
._19{width:22.080000pt;}
._14{width:23.168000pt;}
._15{width:24.256000pt;}
._17{width:25.408000pt;}
._18{width:26.304000pt;}
._1d{width:27.198720pt;}
._26{width:29.568000pt;}
._27{width:30.464000pt;}
._1e{width:33.792000pt;}
._28{width:37.324800pt;}
._29{width:38.419200pt;}
._2f{width:43.200000pt;}
._1c{width:71.680000pt;}
._2e{width:72.812800pt;}
._2d{width:108.765867pt;}
._2c{width:110.562133pt;}
._30{width:135.211520pt;}
._2a{width:181.600000pt;}
._2b{width:182.570667pt;}
._2{width:473.120000pt;}
._3{width:1353.935573pt;}
.fs7{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:106.880000pt;}
.y110{bottom:-18.013333pt;}
.yc6{bottom:-7.653333pt;}
.y1b5{bottom:-0.173333pt;}
.y0{bottom:0.000000pt;}
.y1a1{bottom:0.706667pt;}
.y194{bottom:1.666667pt;}
.y1af{bottom:1.986667pt;}
.y18b{bottom:2.013333pt;}
.y197{bottom:2.146667pt;}
.y19d{bottom:2.306667pt;}
.yb7{bottom:2.786667pt;}
.y191{bottom:2.946667pt;}
.y17f{bottom:3.293333pt;}
.y1a4{bottom:4.226667pt;}
.yab{bottom:5.053333pt;}
.y1bd{bottom:5.120000pt;}
.y18e{bottom:5.213333pt;}
.ya9{bottom:5.253333pt;}
.yb1{bottom:5.573333pt;}
.y1a6{bottom:6.626667pt;}
.y1a8{bottom:7.266667pt;}
.ybd{bottom:7.746667pt;}
.y11e{bottom:8.386667pt;}
.y166{bottom:8.453333pt;}
.yca{bottom:8.666667pt;}
.y188{bottom:9.186667pt;}
.y183{bottom:9.213333pt;}
.y186{bottom:9.346667pt;}
.y181{bottom:9.373333pt;}
.yae{bottom:9.573333pt;}
.yc5{bottom:10.106667pt;}
.y112{bottom:10.146667pt;}
.yc1{bottom:10.786667pt;}
.yc3{bottom:11.426667pt;}
.y1ac{bottom:11.706667pt;}
.y114{bottom:11.933333pt;}
.y1b4{bottom:13.746667pt;}
.y193{bottom:14.146667pt;}
.y18a{bottom:14.333333pt;}
.y196{bottom:14.626667pt;}
.y10f{bottom:15.266667pt;}
.y116{bottom:15.293333pt;}
.y190{bottom:15.426667pt;}
.y19c{bottom:16.866667pt;}
.y19f{bottom:17.026667pt;}
.yb6{bottom:17.346667pt;}
.y18d{bottom:17.693333pt;}
.y1a3{bottom:18.306667pt;}
.y1bc{bottom:19.040000pt;}
.y10b{bottom:20.413333pt;}
.y1ae{bottom:20.866667pt;}
.ybc{bottom:21.826667pt;}
.yc8{bottom:22.746667pt;}
.yb9{bottom:23.746667pt;}
.yad{bottom:23.973333pt;}
.ybf{bottom:25.026667pt;}
.y1aa{bottom:26.786667pt;}
.y1b3{bottom:27.546667pt;}
.ycc{bottom:29.506667pt;}
.ya6{bottom:30.693333pt;}
.y1bb{bottom:32.800000pt;}
.y106{bottom:32.893333pt;}
.y10d{bottom:33.986667pt;}
.y7{bottom:34.912000pt;}
.y109{bottom:39.133333pt;}
.y1b2{bottom:41.306667pt;}
.y1ba{bottom:46.720000pt;}
.y6{bottom:52.032000pt;}
.y1b1{bottom:55.066667pt;}
.y1b9{bottom:60.480000pt;}
.y19a{bottom:62.306667pt;}
.yb4{bottom:72.226667pt;}
.y1b8{bottom:74.240000pt;}
.y163{bottom:75.653333pt;}
.y1b7{bottom:88.000000pt;}
.y2c{bottom:116.832000pt;}
.y1fb{bottom:120.352000pt;}
.y2b{bottom:121.472000pt;}
.y1e9{bottom:121.792000pt;}
.y161{bottom:123.392000pt;}
.y129{bottom:128.933333pt;}
.yf0{bottom:130.592000pt;}
.y102{bottom:132.192000pt;}
.ya4{bottom:133.152000pt;}
.y2a{bottom:133.626667pt;}
.y148{bottom:136.346667pt;}
.y8b{bottom:138.746667pt;}
.y1e8{bottom:140.186667pt;}
.y168{bottom:140.773333pt;}
.y20f{bottom:141.146667pt;}
.y179{bottom:145.533333pt;}
.y118{bottom:148.573333pt;}
.yef{bottom:148.986667pt;}
.y101{bottom:150.586667pt;}
.ya3{bottom:151.546667pt;}
.y1d5{bottom:152.986667pt;}
.y8a{bottom:157.146667pt;}
.y160{bottom:157.786667pt;}
.y20e{bottom:159.546667pt;}
.y67{bottom:163.706667pt;}
.yee{bottom:167.386667pt;}
.y100{bottom:168.986667pt;}
.y53{bottom:169.146667pt;}
.y147{bottom:170.746667pt;}
.y1e7{bottom:174.586667pt;}
.y89{bottom:175.546667pt;}
.y29{bottom:178.746667pt;}
.yed{bottom:185.786667pt;}
.ya2{bottom:185.946667pt;}
.yff{bottom:187.386667pt;}
.y52{bottom:187.546667pt;}
.y1d4{bottom:189.146667pt;}
.y120{bottom:191.133333pt;}
.y15f{bottom:191.866667pt;}
.y88{bottom:193.946667pt;}
.y28{bottom:194.106667pt;}
.y66{bottom:198.106667pt;}
.yec{bottom:204.186667pt;}
.y146{bottom:205.146667pt;}
.yfe{bottom:205.786667pt;}
.y51{bottom:205.946667pt;}
.y1d3{bottom:207.546667pt;}
.y1e6{bottom:208.986667pt;}
.y27{bottom:209.466667pt;}
.y87{bottom:212.346667pt;}
.ya1{bottom:220.346667pt;}
.yc4{bottom:222.880000pt;}
.y145{bottom:223.546667pt;}
.yfd{bottom:224.186667pt;}
.y50{bottom:224.346667pt;}
.y1b0{bottom:224.680000pt;}
.y1d2{bottom:225.946667pt;}
.y15e{bottom:226.266667pt;}
.yc7{bottom:226.560000pt;}
.y104{bottom:228.253333pt;}
.y65{bottom:228.506667pt;}
.y86{bottom:230.746667pt;}
.yc9{bottom:235.226667pt;}
.y1a9{bottom:235.520000pt;}
.yeb{bottom:238.586667pt;}
.y26{bottom:241.466667pt;}
.y144{bottom:241.946667pt;}
.yfc{bottom:242.626667pt;}
.y1e5{bottom:243.426667pt;}
.y1a7{bottom:243.520000pt;}
.y1d1{bottom:244.386667pt;}
.y1ab{bottom:247.226667pt;}
.y85{bottom:249.186667pt;}
.ya0{bottom:254.786667pt;}
.yea{bottom:257.026667pt;}
.y4f{bottom:258.786667pt;}
.y25{bottom:259.746667pt;}
.y143{bottom:260.386667pt;}
.y15d{bottom:260.706667pt;}
.y16e{bottom:261.733333pt;}
.y1d0{bottom:262.786667pt;}
.y20d{bottom:265.186667pt;}
.y84{bottom:267.586667pt;}
.ye9{bottom:275.426667pt;}
.yfb{bottom:277.026667pt;}
.y4e{bottom:277.186667pt;}
.y1e4{bottom:277.826667pt;}
.y142{bottom:278.786667pt;}
.y1fa{bottom:283.586667pt;}
.y83{bottom:285.986667pt;}
.y9f{bottom:289.186667pt;}
.ye8{bottom:293.826667pt;}
.y15c{bottom:295.106667pt;}
.y24{bottom:295.746667pt;}
.y1cf{bottom:297.186667pt;}
.yb3{bottom:301.760000pt;}
.y1f9{bottom:301.986667pt;}
.y82{bottom:304.386667pt;}
.y195{bottom:310.560000pt;}
.y199{bottom:311.200000pt;}
.yfa{bottom:311.426667pt;}
.y4d{bottom:311.586667pt;}
.y1e3{bottom:312.226667pt;}
.y141{bottom:313.186667pt;}
.y23{bottom:314.146667pt;}
.y1ce{bottom:315.586667pt;}
.y9e{bottom:323.426667pt;}
.yb8{bottom:327.680000pt;}
.ye7{bottom:328.226667pt;}
.y15b{bottom:329.506667pt;}
.y4c{bottom:329.986667pt;}
.y140{bottom:331.586667pt;}
.ybe{bottom:332.160000pt;}
.y22{bottom:332.546667pt;}
.y19e{bottom:333.280000pt;}
.y1cd{bottom:333.986667pt;}
.y1f8{bottom:336.386667pt;}
.y1a2{bottom:337.120000pt;}
.yba{bottom:337.346667pt;}
.y81{bottom:338.786667pt;}
.yc0{bottom:342.946667pt;}
.yf9{bottom:345.826667pt;}
.ye6{bottom:346.626667pt;}
.y4b{bottom:348.386667pt;}
.y13f{bottom:349.986667pt;}
.y21{bottom:350.946667pt;}
.y1cc{bottom:352.386667pt;}
.y1f7{bottom:354.786667pt;}
.y80{bottom:357.186667pt;}
.y9d{bottom:357.826667pt;}
.y15a{bottom:363.906667pt;}
.ye5{bottom:365.026667pt;}
.y4a{bottom:366.786667pt;}
.y13e{bottom:368.386667pt;}
.y20{bottom:369.346667pt;}
.y187{bottom:369.600000pt;}
.y111{bottom:372.160000pt;}
.y1f6{bottom:373.186667pt;}
.y198{bottom:373.506667pt;}
.yb2{bottom:373.986667pt;}
.y7f{bottom:375.586667pt;}
.yf8{bottom:380.226667pt;}
.ye4{bottom:383.426667pt;}
.y103{bottom:384.160000pt;}
.y49{bottom:385.186667pt;}
.y1cb{bottom:386.786667pt;}
.y192{bottom:387.200000pt;}
.y1f{bottom:387.746667pt;}
.y1a0{bottom:388.640000pt;}
.y20c{bottom:389.186667pt;}
.y1f5{bottom:391.586667pt;}
.ybb{bottom:392.160000pt;}
.y9c{bottom:392.226667pt;}
.y11f{bottom:396.320000pt;}
.y159{bottom:398.306667pt;}
.y1a5{bottom:399.360000pt;}
.y19b{bottom:400.960000pt;}
.ye3{bottom:401.826667pt;}
.y13d{bottom:402.786667pt;}
.y48{bottom:403.586667pt;}
.yc2{bottom:404.480000pt;}
.yb5{bottom:404.800000pt;}
.y1ca{bottom:405.186667pt;}
.y117{bottom:405.440000pt;}
.y1e{bottom:406.146667pt;}
.y20b{bottom:407.586667pt;}
.y127{bottom:408.706667pt;}
.y7e{bottom:409.986667pt;}
.yf7{bottom:414.626667pt;}
.y10c{bottom:416.960000pt;}
.ye2{bottom:420.226667pt;}
.y13c{bottom:421.186667pt;}
.y1c9{bottom:423.586667pt;}
.y1d{bottom:424.546667pt;}
.y9b{bottom:426.626667pt;}
.y7d{bottom:428.386667pt;}
.y10e{bottom:432.226667pt;}
.y158{bottom:432.706667pt;}
.y126{bottom:436.066667pt;}
.y1ad{bottom:436.800000pt;}
.y47{bottom:437.986667pt;}
.ye1{bottom:438.626667pt;}
.y11d{bottom:439.426667pt;}
.y13b{bottom:439.586667pt;}
.y20a{bottom:441.666667pt;}
.y1c8{bottom:441.986667pt;}
.y185{bottom:442.560000pt;}
.y1c{bottom:442.946667pt;}
.y7c{bottom:446.786667pt;}
.ycb{bottom:447.040000pt;}
.yf6{bottom:449.026667pt;}
.y125{bottom:450.146667pt;}
.y46{bottom:456.386667pt;}
.y1e2{bottom:457.026667pt;}
.y13a{bottom:457.986667pt;}
.ycd{bottom:458.946667pt;}
.y1c7{bottom:460.386667pt;}
.y18f{bottom:460.800000pt;}
.y9a{bottom:461.026667pt;}
.y1b{bottom:461.346667pt;}
.y1f4{bottom:462.786667pt;}
.y11c{bottom:465.026667pt;}
.y7b{bottom:465.186667pt;}
.y157{bottom:467.106667pt;}
.ye0{bottom:473.026667pt;}
.y45{bottom:474.786667pt;}
.y1e1{bottom:475.426667pt;}
.y139{bottom:476.386667pt;}
.y124{bottom:477.666667pt;}
.y209{bottom:477.826667pt;}
.y1c6{bottom:478.786667pt;}
.y1a{bottom:479.746667pt;}
.y1f3{bottom:481.186667pt;}
.y7a{bottom:483.426667pt;}
.y11b{bottom:490.626667pt;}
.ydf{bottom:491.426667pt;}
.y44{bottom:493.186667pt;}
.y1e0{bottom:493.853333pt;}
.y138{bottom:494.813333pt;}
.y99{bottom:495.453333pt;}
.y208{bottom:496.253333pt;}
.y1c5{bottom:497.213333pt;}
.y19{bottom:498.173333pt;}
.y1f2{bottom:499.453333pt;}
.y113{bottom:500.000000pt;}
.y213{bottom:501.053333pt;}
.y156{bottom:501.533333pt;}
.y79{bottom:501.853333pt;}
.y123{bottom:505.053333pt;}
.yde{bottom:509.853333pt;}
.y1df{bottom:512.253333pt;}
.y137{bottom:513.213333pt;}
.y207{bottom:514.653333pt;}
.y11a{bottom:516.253333pt;}
.yf5{bottom:517.853333pt;}
.y212{bottom:519.453333pt;}
.y184{bottom:521.600000pt;}
.y43{bottom:527.453333pt;}
.ydd{bottom:528.253333pt;}
.y18c{bottom:529.440000pt;}
.y98{bottom:529.693333pt;}
.y1de{bottom:530.653333pt;}
.y136{bottom:531.453333pt;}
.y18{bottom:532.413333pt;}
.y122{bottom:532.573333pt;}
.y206{bottom:533.053333pt;}
.y1f1{bottom:533.853333pt;}
.y155{bottom:535.933333pt;}
.y78{bottom:536.093333pt;}
.y211{bottom:537.853333pt;}
.y119{bottom:541.853333pt;}
.ydc{bottom:546.653333pt;}
.y97{bottom:548.253333pt;}
.y1dd{bottom:549.053333pt;}
.y135{bottom:549.853333pt;}
.y205{bottom:551.453333pt;}
.yf4{bottom:552.253333pt;}
.y64{bottom:554.653333pt;}
.y121{bottom:559.933333pt;}
.y42{bottom:563.453333pt;}
.y108{bottom:564.000000pt;}
.ydb{bottom:565.053333pt;}
.y96{bottom:566.653333pt;}
.y1dc{bottom:567.453333pt;}
.y1b6{bottom:567.933333pt;}
.y17{bottom:568.253333pt;}
.y204{bottom:569.853333pt;}
.y154{bottom:570.333333pt;}
.y1f0{bottom:570.653333pt;}
.y77{bottom:572.253333pt;}
.y63{bottom:573.053333pt;}
.y41{bottom:581.853333pt;}
.yda{bottom:583.453333pt;}
.y134{bottom:584.253333pt;}
.y10a{bottom:584.413333pt;}
.y95{bottom:585.053333pt;}
.y1db{bottom:585.853333pt;}
.yf3{bottom:586.653333pt;}
.y1ef{bottom:589.053333pt;}
.y76{bottom:590.653333pt;}
.y62{bottom:591.453333pt;}
.y178{bottom:592.000000pt;}
.y182{bottom:595.520000pt;}
.y40{bottom:600.253333pt;}
.y133{bottom:602.653333pt;}
.y1da{bottom:604.253333pt;}
.y16{bottom:604.733333pt;}
.y1ee{bottom:607.453333pt;}
.y189{bottom:608.800000pt;}
.y75{bottom:609.053333pt;}
.y17e{bottom:609.373333pt;}
.y61{bottom:609.853333pt;}
.yd9{bottom:617.853333pt;}
.y3f{bottom:618.653333pt;}
.y94{bottom:619.293333pt;}
.yf2{bottom:621.053333pt;}
.y203{bottom:622.653333pt;}
.y15{bottom:624.893333pt;}
.y74{bottom:627.453333pt;}
.y60{bottom:628.253333pt;}
.y17d{bottom:635.133333pt;}
.yd8{bottom:636.253333pt;}
.y3e{bottom:637.053333pt;}
.y1d9{bottom:638.653333pt;}
.y153{bottom:639.133333pt;}
.y132{bottom:639.453333pt;}
.y202{bottom:641.053333pt;}
.y1ed{bottom:641.853333pt;}
.y210{bottom:643.453333pt;}
.y128{bottom:644.320000pt;}
.yd7{bottom:654.653333pt;}
.y3d{bottom:655.453333pt;}
.y1d8{bottom:657.053333pt;}
.y131{bottom:657.853333pt;}
.y201{bottom:659.453333pt;}
.y1ec{bottom:660.253333pt;}
.y17c{bottom:660.733333pt;}
.y73{bottom:661.853333pt;}
.y14{bottom:662.173333pt;}
.y5f{bottom:662.653333pt;}
.y12d{bottom:663.293333pt;}
.y180{bottom:666.560000pt;}
.y115{bottom:669.760000pt;}
.y105{bottom:670.720000pt;}
.yd6{bottom:673.053333pt;}
.y152{bottom:673.533333pt;}
.y3c{bottom:673.853333pt;}
.y1d7{bottom:675.453333pt;}
.y130{bottom:676.253333pt;}
.y72{bottom:680.253333pt;}
.y13{bottom:682.013333pt;}
.y17b{bottom:686.333333pt;}
.y107{bottom:689.373333pt;}
.y93{bottom:689.853333pt;}
.y12c{bottom:690.813333pt;}
.yd5{bottom:691.453333pt;}
.y3b{bottom:692.253333pt;}
.y1d6{bottom:693.853333pt;}
.y1c4{bottom:694.653333pt;}
.y5e{bottom:697.053333pt;}
.y71{bottom:698.653333pt;}
.y16d{bottom:700.000000pt;}
.y12{bottom:702.173333pt;}
.y151{bottom:707.933333pt;}
.yd4{bottom:709.853333pt;}
.y12f{bottom:710.493333pt;}
.y3a{bottom:710.653333pt;}
.y17a{bottom:711.933333pt;}
.y200{bottom:712.253333pt;}
.y1c3{bottom:713.053333pt;}
.y177{bottom:714.653333pt;}
.yaa{bottom:715.200000pt;}
.y12b{bottom:718.333333pt;}
.y92{bottom:724.253333pt;}
.yd3{bottom:728.253333pt;}
.y39{bottom:729.053333pt;}
.y1ff{bottom:730.653333pt;}
.y5d{bottom:731.453333pt;}
.y70{bottom:733.053333pt;}
.y11{bottom:739.453333pt;}
.y176{bottom:742.173333pt;}
.y150{bottom:742.333333pt;}
.y12a{bottom:745.693333pt;}
.yd2{bottom:746.693333pt;}
.y38{bottom:747.493333pt;}
.y1fe{bottom:749.093333pt;}
.y1c2{bottom:749.893333pt;}
.y6f{bottom:751.493333pt;}
.ya5{bottom:752.000000pt;}
.y91{bottom:758.693333pt;}
.y10{bottom:759.333333pt;}
.ya8{bottom:762.080000pt;}
.yd1{bottom:765.093333pt;}
.y37{bottom:765.893333pt;}
.y1fd{bottom:767.493333pt;}
.y175{bottom:769.573333pt;}
.y6e{bottom:769.893333pt;}
.ya7{bottom:770.213333pt;}
.y14f{bottom:776.773333pt;}
.yf{bottom:779.653333pt;}
.yd0{bottom:783.493333pt;}
.y162{bottom:783.520000pt;}
.y1c1{bottom:784.133333pt;}
.y36{bottom:784.293333pt;}
.y1fc{bottom:785.893333pt;}
.yf1{bottom:789.253333pt;}
.y90{bottom:793.093333pt;}
.y174{bottom:797.093333pt;}
.ycf{bottom:801.893333pt;}
.y35{bottom:802.693333pt;}
.y6d{bottom:804.293333pt;}
.yaf{bottom:807.360000pt;}
.y14e{bottom:811.173333pt;}
.ye{bottom:816.773333pt;}
.y165{bottom:817.733333pt;}
.y5c{bottom:818.533333pt;}
.y167{bottom:819.040000pt;}
.y12e{bottom:820.293333pt;}
.y1eb{bottom:821.093333pt;}
.y6c{bottom:822.693333pt;}
.y173{bottom:824.453333pt;}
.y8f{bottom:827.493333pt;}
.yac{bottom:829.600000pt;}
.yce{bottom:836.293333pt;}
.yd{bottom:836.773333pt;}
.y34{bottom:837.093333pt;}
.y1c0{bottom:838.693333pt;}
.y6b{bottom:841.093333pt;}
.y164{bottom:845.093333pt;}
.y14d{bottom:845.573333pt;}
.y172{bottom:851.973333pt;}
.y5b{bottom:854.693333pt;}
.y1ea{bottom:855.333333pt;}
.y33{bottom:855.493333pt;}
.yb{bottom:856.933333pt;}
.y1bf{bottom:857.093333pt;}
.y6a{bottom:859.493333pt;}
.y8e{bottom:861.893333pt;}
.yc{bottom:863.653333pt;}
.y16c{bottom:869.253333pt;}
.y5a{bottom:873.093333pt;}
.y32{bottom:873.893333pt;}
.y1be{bottom:875.493333pt;}
.y171{bottom:879.333333pt;}
.ya{bottom:879.813333pt;}
.y14c{bottom:879.973333pt;}
.y16b{bottom:882.053333pt;}
.y59{bottom:891.493333pt;}
.y31{bottom:892.293333pt;}
.y69{bottom:893.893333pt;}
.y8d{bottom:896.293333pt;}
.yb0{bottom:903.200000pt;}
.y170{bottom:906.853333pt;}
.y16a{bottom:907.653333pt;}
.y58{bottom:909.893333pt;}
.y30{bottom:910.693333pt;}
.y68{bottom:912.293333pt;}
.y14b{bottom:914.373333pt;}
.y9{bottom:926.373333pt;}
.y57{bottom:928.293333pt;}
.y2f{bottom:929.093333pt;}
.y8c{bottom:930.693333pt;}
.y169{bottom:933.253333pt;}
.y16f{bottom:934.213333pt;}
.y56{bottom:946.693333pt;}
.y2e{bottom:947.493333pt;}
.y14a{bottom:948.773333pt;}
.y8{bottom:957.093333pt;}
.y55{bottom:965.093333pt;}
.y2d{bottom:981.733333pt;}
.y149{bottom:983.173333pt;}
.y54{bottom:983.493333pt;}
.y5{bottom:1000.960000pt;}
.y4{bottom:1016.640000pt;}
.y3{bottom:1031.840000pt;}
.y2{bottom:1047.200000pt;}
.y1{bottom:1062.560000pt;}
.h43{height:16.800000pt;}
.h15{height:17.280000pt;}
.h14{height:17.440000pt;}
.h18{height:19.520000pt;}
.h2b{height:21.760000pt;}
.h20{height:22.400000pt;}
.h36{height:22.560000pt;}
.h35{height:22.720000pt;}
.h3a{height:23.840000pt;}
.h37{height:24.000000pt;}
.h3b{height:24.320000pt;}
.he{height:24.840000pt;}
.h39{height:25.120000pt;}
.h2c{height:25.280000pt;}
.h41{height:25.440000pt;}
.h3e{height:27.040000pt;}
.h3f{height:27.200000pt;}
.h38{height:27.360000pt;}
.h1c{height:27.520000pt;}
.h42{height:28.160000pt;}
.h40{height:29.249687pt;}
.h2f{height:29.773125pt;}
.h1e{height:31.680000pt;}
.h22{height:32.640000pt;}
.ha{height:33.328125pt;}
.h1d{height:33.600000pt;}
.h16{height:33.760000pt;}
.h47{height:34.453125pt;}
.h1f{height:34.880000pt;}
.h26{height:36.234687pt;}
.h3c{height:36.286563pt;}
.h44{height:36.960000pt;}
.h6{height:37.116563pt;}
.h4{height:40.163750pt;}
.h12{height:40.480000pt;}
.h23{height:41.760000pt;}
.h17{height:42.084375pt;}
.h27{height:42.720000pt;}
.h13{height:43.215000pt;}
.h1b{height:43.656250pt;}
.h19{height:43.718750pt;}
.h11{height:44.437500pt;}
.h48{height:45.937500pt;}
.h29{height:46.720000pt;}
.h21{height:47.109375pt;}
.h5{height:47.680000pt;}
.h28{height:51.840000pt;}
.hf{height:52.108438pt;}
.h2{height:52.134375pt;}
.h3{height:53.535000pt;}
.h2a{height:57.787500pt;}
.hd{height:62.812500pt;}
.h24{height:64.500000pt;}
.h10{height:65.781915pt;}
.h45{height:65.940000pt;}
.hb{height:67.837500pt;}
.hc{height:69.660000pt;}
.h8{height:73.490625pt;}
.h31{height:85.440000pt;}
.h46{height:101.280000pt;}
.h7{height:107.715000pt;}
.h3d{height:117.920000pt;}
.h30{height:138.720000pt;}
.h1a{height:139.200000pt;}
.h32{height:149.440000pt;}
.h34{height:155.200000pt;}
.h2d{height:158.240000pt;}
.h2e{height:200.960000pt;}
.h25{height:240.960000pt;}
.h33{height:271.520000pt;}
.h9{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:49.600000pt;}
.we{width:55.840000pt;}
.wc{width:58.400000pt;}
.w27{width:59.200000pt;}
.wd{width:59.840000pt;}
.w21{width:60.800000pt;}
.w28{width:61.760000pt;}
.w26{width:62.560000pt;}
.w19{width:63.680000pt;}
.w18{width:65.440000pt;}
.wf{width:67.200000pt;}
.wb{width:68.160000pt;}
.w2a{width:68.640000pt;}
.w11{width:69.760000pt;}
.w10{width:70.720000pt;}
.w29{width:71.200000pt;}
.w8{width:72.320000pt;}
.w17{width:73.920000pt;}
.w23{width:75.680000pt;}
.w22{width:75.840000pt;}
.w24{width:76.000000pt;}
.w16{width:78.240000pt;}
.w14{width:78.560000pt;}
.w15{width:79.200000pt;}
.w4{width:80.960000pt;}
.w2c{width:85.760000pt;}
.w12{width:86.240000pt;}
.w2b{width:87.360000pt;}
.w7{width:104.320000pt;}
.w6{width:104.480000pt;}
.w5{width:104.640000pt;}
.w2{width:111.520000pt;}
.w1e{width:126.560000pt;}
.w20{width:141.920000pt;}
.w1d{width:144.320000pt;}
.w1c{width:148.640000pt;}
.w1a{width:150.720000pt;}
.w1f{width:160.800000pt;}
.w2e{width:162.586667pt;}
.w2d{width:181.146667pt;}
.w1b{width:187.200000pt;}
.w25{width:199.520000pt;}
.wa{width:257.600000pt;}
.w13{width:401.440000pt;}
.w3{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5f{left:1.946667pt;}
.x68{left:3.586667pt;}
.x30{left:5.853333pt;}
.x1e{left:9.666667pt;}
.x45{left:11.173333pt;}
.x2d{left:12.733333pt;}
.x61{left:14.106667pt;}
.x3c{left:15.266667pt;}
.x29{left:16.866667pt;}
.x2a{left:18.146667pt;}
.x37{left:20.826667pt;}
.x60{left:21.786667pt;}
.x28{left:24.546667pt;}
.x24{left:26.173333pt;}
.x33{left:33.346667pt;}
.x2{left:44.799998pt;}
.x69{left:54.560000pt;}
.x4f{left:66.560000pt;}
.x40{left:67.866667pt;}
.x50{left:76.160000pt;}
.x53{left:96.320000pt;}
.x54{left:105.952000pt;}
.x1{left:113.472000pt;}
.x4a{left:114.880000pt;}
.x41{left:116.960000pt;}
.x14{left:118.272000pt;}
.x4b{left:124.512000pt;}
.x3e{left:126.400000pt;}
.x3{left:131.392000pt;}
.x15{left:132.352000pt;}
.x3f{left:136.026667pt;}
.x16{left:137.466667pt;}
.x10{left:139.386667pt;}
.x12{left:141.786667pt;}
.x17{left:144.346667pt;}
.x1b{left:148.026667pt;}
.x1f{left:156.960000pt;}
.x11{left:160.666667pt;}
.x9{left:164.346667pt;}
.x5e{left:170.080000pt;}
.x39{left:172.346667pt;}
.x4{left:176.506667pt;}
.x5d{left:179.866667pt;}
.x65{left:181.440000pt;}
.x20{left:187.520000pt;}
.xc{left:190.746667pt;}
.x3a{left:192.506667pt;}
.x36{left:203.040000pt;}
.x1a{left:216.506667pt;}
.x38{left:217.946667pt;}
.x19{left:244.186667pt;}
.x48{left:253.120000pt;}
.x49{left:262.786667pt;}
.x3b{left:272.000000pt;}
.x62{left:286.720000pt;}
.x63{left:291.520000pt;}
.x6{left:292.706667pt;}
.x3d{left:294.146667pt;}
.x66{left:300.160000pt;}
.x13{left:305.506667pt;}
.x4c{left:307.360000pt;}
.x67{left:309.986667pt;}
.xe{left:311.586667pt;}
.x4d{left:317.026667pt;}
.xa{left:322.626667pt;}
.x26{left:326.080000pt;}
.x25{left:335.906667pt;}
.x1d{left:338.400000pt;}
.xb{left:344.706667pt;}
.xd{left:346.466667pt;}
.xf{left:350.146667pt;}
.x32{left:358.400000pt;}
.x1c{left:378.306667pt;}
.x4e{left:379.586667pt;}
.x64{left:383.360000pt;}
.x27{left:384.960000pt;}
.x2b{left:389.346667pt;}
.x59{left:404.480000pt;}
.x5{left:406.466667pt;}
.x21{left:435.040000pt;}
.x23{left:437.440000pt;}
.x5a{left:456.480000pt;}
.x2c{left:469.600000pt;}
.x46{left:472.640000pt;}
.x22{left:476.000000pt;}
.x2e{left:477.120000pt;}
.x2f{left:487.773333pt;}
.x34{left:491.360000pt;}
.x55{left:498.080000pt;}
.x35{left:501.213333pt;}
.x47{left:506.333333pt;}
.x7{left:514.153333pt;}
.x5b{left:517.280000pt;}
.x8{left:520.253333pt;}
.x56{left:549.120000pt;}
.x6a{left:562.506667pt;}
.x51{left:576.800000pt;}
.x52{left:586.493333pt;}
.x5c{left:588.480000pt;}
.x18{left:592.413333pt;}
.x31{left:599.360000pt;}
.x57{left:603.200000pt;}
.x6b{left:607.146667pt;}
.x58{left:667.200000pt;}
.x42{left:670.880000pt;}
.x44{left:675.520000pt;}
.x43{left:688.320000pt;}
}




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