
    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_f107267bc094decac2d244a7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_91e38574dad24340c267a8fb.woff')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_e934cb34c3b46e157fe2f5e1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9c32333b0a7d254dcd9d9257.woff')format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_0f1ec3d8b465ebc5e3e60df6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e32aaaef0c74336e28ecb94d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f1a909eb05f0862c64d53e31.woff')format("woff");}.ff7{font-family:ff7;line-height:0.991699;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_9eb1e096b0372f509188d8ed.woff')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_ef660cd5f1263b76dd03eeba.woff')format("woff");}.ff9{font-family:ff9;line-height:0.991699;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_a78214e21e81a576281723b8.woff')format("woff");}.ffa{font-family:ffa;line-height:1.005371;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_820c2917bab3c35a901a18c7.woff')format("woff");}.ffb{font-family:ffb;line-height:1.001953;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_5a7b6c95d3ac19677d8eab6f.woff')format("woff");}.ffc{font-family:ffc;line-height:1.001953;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_5c82dbea0abd9b16c927efe2.woff')format("woff");}.ffd{font-family:ffd;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_17ba665b026eae424b498b15.woff')format("woff");}.ffe{font-family:ffe;line-height:0.938965;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_45ea75acb343a9f53cdb912c.woff')format("woff");}.fff{font-family:fff;line-height:0.938965;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_1cada938afe0a813109ae923.woff')format("woff");}.ff10{font-family:ff10;line-height:1.005371;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_ee2b9e01b7af4b885de48ba8.woff')format("woff");}.ff11{font-family:ff11;line-height:0.740723;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_7fa355b37a4859a4401c369b.woff')format("woff");}.ff12{font-family:ff12;line-height:1.180664;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_8ad32cbbaf1b9b1f36c4309e.woff')format("woff");}.ff13{font-family:ff13;line-height:1.180664;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff14{font-family:ff14;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v3{vertical-align:33.120000px;}
.ls13{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.269400px;}
.lsb{letter-spacing:-0.223800px;}
.ls7{letter-spacing:-0.108000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018000px;}
.ls9{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.180000px;}
.lse{letter-spacing:0.223800px;}
.ls8{letter-spacing:0.256200px;}
.ls3{letter-spacing:0.257040px;}
.lsc{letter-spacing:0.324000px;}
.ls10{letter-spacing:0.334200px;}
.ls2{letter-spacing:0.360000px;}
.lsa{letter-spacing:22.320000px;}
.ls12{letter-spacing:32.065920px;}
.ls11{letter-spacing:63.025920px;}
.lsd{letter-spacing:1379.976000px;}
.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:-56.920429px;}
.ws3{word-spacing:-18.000000px;}
.wsc{word-spacing:-16.560000px;}
.ws13{word-spacing:-16.174200px;}
.ws4{word-spacing:-15.840000px;}
.wsa{word-spacing:-15.226440px;}
.ws14{word-spacing:-15.120000px;}
.wsd{word-spacing:-13.860000px;}
.wsf{word-spacing:-13.824000px;}
.wsb{word-spacing:-13.626000px;}
.ws0{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.392000px;}
.ws6{word-spacing:-13.140000px;}
.ws5{word-spacing:-12.780000px;}
.ws11{word-spacing:-12.420000px;}
.ws10{word-spacing:-12.283800px;}
.wse{word-spacing:-12.060000px;}
.ws12{word-spacing:-11.790600px;}
.ws2{word-spacing:-9.360000px;}
.ws1{word-spacing:-9.000000px;}
.ws9{word-spacing:0.000000px;}
._9{margin-left:-4.623360px;}
._8{margin-left:-3.543120px;}
._7{margin-left:-2.388240px;}
._1{margin-left:-1.350000px;}
._0{width:1.134000px;}
._13{width:2.186640px;}
._d{width:3.821040px;}
._e{width:5.029920px;}
._10{width:6.906240px;}
._f{width:8.616960px;}
._a{width:9.840240px;}
._4{width:11.151360px;}
._5{width:12.291840px;}
._21{width:13.325040px;}
._17{width:14.699520px;}
._25{width:17.004960px;}
._1a{width:18.013680px;}
._14{width:19.977840px;}
._1c{width:21.098880px;}
._1d{width:22.366080px;}
._1f{width:23.513520px;}
._b{width:24.919920px;}
._c{width:25.947120px;}
._12{width:27.815040px;}
._6{width:29.545200px;}
._26{width:30.729600px;}
._1b{width:32.503680px;}
._1e{width:34.043760px;}
._2c{width:35.120880px;}
._23{width:36.305280px;}
._2{width:37.429680px;}
._3{width:38.463840px;}
._16{width:40.296960px;}
._11{width:41.583600px;}
._24{width:43.021440px;}
._2d{width:44.795520px;}
._2e{width:46.054800px;}
._27{width:47.076480px;}
._28{width:48.806640px;}
._2f{width:49.846080px;}
._2b{width:52.289280px;}
._29{width:53.349120px;}
._19{width:54.426240px;}
._18{width:55.649520px;}
._30{width:57.106800px;}
._20{width:61.098480px;}
._2a{width:65.723760px;}
._15{width:74.087280px;}
._22{width:84.015360px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc3{color:rgb(0,32,96);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(0,0,102);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fsa{font-size:48.240000px;}
.fs6{font-size:51.120000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:56.920429px;}
.fs8{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs9{font-size:200.880000px;}
.y6e{bottom:-54.180000px;}
.y6d{bottom:-25.560000px;}
.y7{bottom:-25.380000px;}
.ya{bottom:-23.580000px;}
.yd3{bottom:-16.920000px;}
.y0{bottom:0.000000px;}
.y16b{bottom:2.520000px;}
.y16e{bottom:2.565000px;}
.y65{bottom:2.880000px;}
.y1c{bottom:3.060000px;}
.y6c{bottom:3.240000px;}
.y6{bottom:3.420000px;}
.y1e{bottom:3.780000px;}
.y63{bottom:4.500000px;}
.y69{bottom:4.710000px;}
.y9{bottom:5.220000px;}
.y13{bottom:5.580000px;}
.ycf{bottom:6.120000px;}
.y153{bottom:6.840000px;}
.yd1{bottom:7.920000px;}
.y71{bottom:8.280000px;}
.y159{bottom:9.540000px;}
.y67{bottom:11.730000px;}
.y177{bottom:13.680000px;}
.y170{bottom:13.860000px;}
.y121{bottom:15.480000px;}
.y15c{bottom:15.510000px;}
.y13e{bottom:15.525000px;}
.y123{bottom:15.660000px;}
.y73{bottom:15.840000px;}
.y17a{bottom:16.200000px;}
.y172{bottom:16.380000px;}
.y147{bottom:18.360000px;}
.y1b{bottom:18.540000px;}
.y62{bottom:18.720000px;}
.y152{bottom:19.440000px;}
.y3d{bottom:20.340000px;}
.y158{bottom:22.140000px;}
.y12{bottom:30.960000px;}
.y1a{bottom:34.020000px;}
.y3c{bottom:41.220000px;}
.y12d{bottom:49.890000px;}
.y19{bottom:54.000000px;}
.y3b{bottom:62.100000px;}
.y18{bottom:64.980000px;}
.y17{bottom:80.640000px;}
.y3a{bottom:82.800000px;}
.y61{bottom:88.020000px;}
.y16{bottom:96.120000px;}
.y60{bottom:103.500000px;}
.y39{bottom:103.680000px;}
.y15{bottom:111.600000px;}
.y4{bottom:114.840000px;}
.y5f{bottom:119.700000px;}
.y38{bottom:124.560000px;}
.y6f{bottom:124.740000px;}
.y8{bottom:127.620000px;}
.y6b{bottom:129.240000px;}
.y5{bottom:129.780000px;}
.y3{bottom:135.000000px;}
.y5e{bottom:135.180000px;}
.y37{bottom:145.440000px;}
.y5d{bottom:150.525000px;}
.y2{bottom:150.660000px;}
.y5c{bottom:166.005000px;}
.y36{bottom:166.185000px;}
.y114{bottom:177.120000px;}
.y1af{bottom:177.660000px;}
.ya0{bottom:179.670000px;}
.y100{bottom:180.030000px;}
.y1a0{bottom:180.210000px;}
.ycd{bottom:180.750000px;}
.y5b{bottom:181.305000px;}
.yd{bottom:183.450000px;}
.y17f{bottom:185.970000px;}
.y1d2{bottom:186.690000px;}
.y35{bottom:187.065000px;}
.y10{bottom:188.490000px;}
.y14c{bottom:190.470000px;}
.y230{bottom:191.730000px;}
.y202{bottom:193.710000px;}
.y5a{bottom:196.785000px;}
.y113{bottom:197.850000px;}
.y1ae{bottom:198.570000px;}
.y17e{bottom:199.650000px;}
.y9f{bottom:200.550000px;}
.yff{bottom:200.910000px;}
.ycc{bottom:201.630000px;}
.y1d1{bottom:204.870000px;}
.yc{bottom:206.850000px;}
.y34{bottom:207.945000px;}
.y22f{bottom:209.730000px;}
.y14b{bottom:209.910000px;}
.yf{bottom:210.270000px;}
.y201{bottom:211.710000px;}
.y59{bottom:212.085000px;}
.y112{bottom:218.730000px;}
.y1ad{bottom:219.450000px;}
.y9e{bottom:221.430000px;}
.yfe{bottom:221.610000px;}
.y19f{bottom:221.790000px;}
.y14a{bottom:221.970000px;}
.ycb{bottom:222.330000px;}
.y1d0{bottom:222.870000px;}
.y17d{bottom:225.570000px;}
.y58{bottom:227.565000px;}
.y22e{bottom:227.910000px;}
.y33{bottom:228.645000px;}
.y200{bottom:229.890000px;}
.yb{bottom:230.970000px;}
.ye{bottom:232.230000px;}
.y149{bottom:237.450000px;}
.y17c{bottom:239.250000px;}
.y111{bottom:239.610000px;}
.y1ac{bottom:240.150000px;}
.y1cf{bottom:241.050000px;}
.y9d{bottom:242.130000px;}
.y57{bottom:242.145000px;}
.yfd{bottom:242.490000px;}
.y19e{bottom:242.670000px;}
.yca{bottom:243.210000px;}
.y22d{bottom:245.910000px;}
.y1ff{bottom:248.070000px;}
.y32{bottom:249.525000px;}
.y148{bottom:252.930000px;}
.y17b{bottom:253.110000px;}
.y56{bottom:257.625000px;}
.y1ce{bottom:259.230000px;}
.y110{bottom:260.310000px;}
.y1ab{bottom:261.030000px;}
.y9c{bottom:263.010000px;}
.yfc{bottom:263.370000px;}
.y19d{bottom:263.550000px;}
.yc9{bottom:264.090000px;}
.y1fe{bottom:266.070000px;}
.y179{bottom:266.970000px;}
.y146{bottom:270.390000px;}
.y31{bottom:270.405000px;}
.y1f{bottom:272.190000px;}
.y55{bottom:273.105000px;}
.y1cd{bottom:277.230000px;}
.y10f{bottom:281.190000px;}
.y1aa{bottom:281.910000px;}
.y22c{bottom:282.270000px;}
.y9b{bottom:283.890000px;}
.yfb{bottom:284.250000px;}
.yc8{bottom:284.790000px;}
.y54{bottom:288.585000px;}
.y30{bottom:291.285000px;}
.y178{bottom:294.510000px;}
.y1cc{bottom:295.410000px;}
.y22b{bottom:300.270000px;}
.y10e{bottom:302.070000px;}
.y1fd{bottom:302.430000px;}
.y1a9{bottom:302.790000px;}
.y145{bottom:303.330000px;}
.y53{bottom:304.245000px;}
.y9a{bottom:304.770000px;}
.yfa{bottom:304.950000px;}
.y19c{bottom:305.130000px;}
.yc7{bottom:305.670000px;}
.y176{bottom:308.370000px;}
.y2f{bottom:311.985000px;}
.y1cb{bottom:313.410000px;}
.y22a{bottom:318.450000px;}
.y52{bottom:319.725000px;}
.y1fc{bottom:320.430000px;}
.y175{bottom:322.050000px;}
.y144{bottom:322.410000px;}
.y10d{bottom:322.770000px;}
.y1a8{bottom:323.490000px;}
.y99{bottom:325.470000px;}
.yf9{bottom:325.830000px;}
.y19b{bottom:326.010000px;}
.yc6{bottom:326.550000px;}
.y1ca{bottom:331.590000px;}
.y2e{bottom:332.865000px;}
.y51{bottom:335.205000px;}
.y174{bottom:335.910000px;}
.y229{bottom:336.630000px;}
.y143{bottom:338.070000px;}
.y1fb{bottom:338.610000px;}
.y10c{bottom:343.650000px;}
.y1a7{bottom:344.370000px;}
.y98{bottom:346.350000px;}
.yf8{bottom:346.710000px;}
.yc5{bottom:347.430000px;}
.y1c9{bottom:349.770000px;}
.y50{bottom:350.685000px;}
.y142{bottom:353.550000px;}
.y2d{bottom:353.745000px;}
.y228{bottom:354.630000px;}
.y1fa{bottom:356.610000px;}
.y173{bottom:363.450000px;}
.y10b{bottom:364.530000px;}
.y1a6{bottom:365.250000px;}
.y4f{bottom:367.065000px;}
.y97{bottom:367.230000px;}
.yf7{bottom:367.410000px;}
.y19a{bottom:367.590000px;}
.y1c8{bottom:367.770000px;}
.yc4{bottom:368.130000px;}
.y141{bottom:369.030000px;}
.y227{bottom:372.810000px;}
.y2c{bottom:374.445000px;}
.y1f9{bottom:374.790000px;}
.y171{bottom:377.310000px;}
.y4e{bottom:382.365000px;}
.y140{bottom:384.510000px;}
.y10a{bottom:385.410000px;}
.y1a5{bottom:385.950000px;}
.y96{bottom:387.930000px;}
.yf6{bottom:388.290000px;}
.y199{bottom:388.470000px;}
.yc3{bottom:389.010000px;}
.y226{bottom:390.810000px;}
.y1f8{bottom:392.970000px;}
.y2b{bottom:395.355000px;}
.y4d{bottom:397.875000px;}
.y13f{bottom:400.170000px;}
.y1c7{bottom:403.950000px;}
.y16f{bottom:404.850000px;}
.y109{bottom:406.110000px;}
.y1a4{bottom:406.830000px;}
.y95{bottom:408.810000px;}
.y225{bottom:408.990000px;}
.yf5{bottom:409.170000px;}
.y198{bottom:409.350000px;}
.yc2{bottom:409.890000px;}
.y1f7{bottom:410.970000px;}
.y4c{bottom:413.175000px;}
.y13d{bottom:413.490000px;}
.y2a{bottom:416.235000px;}
.y16d{bottom:418.710000px;}
.y1c6{bottom:422.175000px;}
.y108{bottom:427.035000px;}
.y224{bottom:427.215000px;}
.y1a3{bottom:427.755000px;}
.y4b{bottom:428.475000px;}
.y13c{bottom:429.015000px;}
.y1f6{bottom:429.195000px;}
.y94{bottom:429.735000px;}
.yf4{bottom:430.095000px;}
.yc1{bottom:430.635000px;}
.y16c{bottom:432.615000px;}
.y16a{bottom:436.395000px;}
.y29{bottom:436.935000px;}
.y1c5{bottom:440.355000px;}
.y4a{bottom:443.775000px;}
.y13b{bottom:444.495000px;}
.y223{bottom:445.215000px;}
.y1f5{bottom:447.375000px;}
.y107{bottom:447.915000px;}
.y1a2{bottom:448.635000px;}
.y93{bottom:450.615000px;}
.yf3{bottom:450.795000px;}
.y197{bottom:450.975000px;}
.yc0{bottom:451.515000px;}
.y169{bottom:453.315000px;}
.y28{bottom:457.815000px;}
.y1c4{bottom:458.355000px;}
.y49{bottom:459.255000px;}
.y13a{bottom:460.155000px;}
.y222{bottom:463.395000px;}
.y1f4{bottom:465.375000px;}
.y168{bottom:467.175000px;}
.y106{bottom:468.615000px;}
.y1a1{bottom:470.415000px;}
.y92{bottom:471.315000px;}
.yf2{bottom:471.675000px;}
.y196{bottom:471.855000px;}
.ybf{bottom:472.395000px;}
.y48{bottom:474.735000px;}
.y139{bottom:475.635000px;}
.y1c3{bottom:476.535000px;}
.y27{bottom:478.695000px;}
.y167{bottom:481.395000px;}
.y1f3{bottom:483.555000px;}
.y105{bottom:489.495000px;}
.y47{bottom:490.035000px;}
.y138{bottom:491.115000px;}
.y91{bottom:492.195000px;}
.yf1{bottom:492.555000px;}
.ybe{bottom:493.095000px;}
.y1c2{bottom:494.715000px;}
.y166{bottom:496.875000px;}
.y26{bottom:499.575000px;}
.y1f2{bottom:501.555000px;}
.y46{bottom:505.515000px;}
.y137{bottom:506.595000px;}
.y104{bottom:510.375000px;}
.y165{bottom:512.355000px;}
.y1c1{bottom:512.715000px;}
.y90{bottom:513.075000px;}
.yf0{bottom:513.255000px;}
.y195{bottom:513.435000px;}
.ybd{bottom:513.975000px;}
.y221{bottom:517.755000px;}
.y1f1{bottom:519.735000px;}
.y25{bottom:520.275000px;}
.y45{bottom:520.815000px;}
.y136{bottom:522.075000px;}
.y164{bottom:525.855000px;}
.y1c0{bottom:530.895000px;}
.y103{bottom:531.255000px;}
.y8f{bottom:533.775000px;}
.yef{bottom:534.135000px;}
.y194{bottom:534.315000px;}
.ybc{bottom:534.855000px;}
.y220{bottom:535.755000px;}
.y44{bottom:536.115000px;}
.y1f0{bottom:537.915000px;}
.y135{bottom:538.455000px;}
.y24{bottom:541.155000px;}
.y163{bottom:541.335000px;}
.y1bf{bottom:548.895000px;}
.y43{bottom:551.595000px;}
.y102{bottom:551.955000px;}
.y21f{bottom:553.935000px;}
.y8e{bottom:554.655000px;}
.yee{bottom:555.015000px;}
.y193{bottom:555.195000px;}
.ybb{bottom:555.735000px;}
.y1ef{bottom:555.915000px;}
.y162{bottom:556.815000px;}
.y134{bottom:557.715000px;}
.y23{bottom:562.035000px;}
.y42{bottom:566.895000px;}
.y1be{bottom:567.075000px;}
.y21e{bottom:572.115000px;}
.y161{bottom:572.295000px;}
.y133{bottom:573.195000px;}
.y101{bottom:573.915000px;}
.y1ee{bottom:574.095000px;}
.y8d{bottom:575.535000px;}
.yed{bottom:575.895000px;}
.yba{bottom:576.435000px;}
.y41{bottom:582.375000px;}
.y22{bottom:582.735000px;}
.y1bd{bottom:585.255000px;}
.y160{bottom:587.955000px;}
.y132{bottom:588.675000px;}
.y21d{bottom:590.115000px;}
.y1ed{bottom:592.095000px;}
.y8c{bottom:596.415000px;}
.yec{bottom:596.595000px;}
.y192{bottom:596.775000px;}
.yb9{bottom:597.315000px;}
.y40{bottom:597.675000px;}
.y1bc{bottom:603.255000px;}
.y15f{bottom:603.435000px;}
.y21{bottom:603.615000px;}
.y131{bottom:604.155000px;}
.y21c{bottom:608.295000px;}
.y1ec{bottom:610.275000px;}
.y3f{bottom:612.975000px;}
.y8b{bottom:617.115000px;}
.yeb{bottom:617.475000px;}
.y191{bottom:617.655000px;}
.yb8{bottom:618.195000px;}
.y15e{bottom:618.915000px;}
.y130{bottom:619.815000px;}
.y1bb{bottom:621.435000px;}
.y20{bottom:623.415000px;}
.y21b{bottom:626.295000px;}
.y3e{bottom:628.455000px;}
.y12c{bottom:634.215000px;}
.y15d{bottom:634.395000px;}
.y8a{bottom:637.995000px;}
.yea{bottom:638.355000px;}
.yb7{bottom:638.895000px;}
.y1ba{bottom:639.435000px;}
.y21a{bottom:644.475000px;}
.y1eb{bottom:646.455000px;}
.y15b{bottom:650.055000px;}
.y12f{bottom:652.035000px;}
.y1b9{bottom:657.615000px;}
.y89{bottom:658.875000px;}
.ye9{bottom:659.055000px;}
.y190{bottom:659.235000px;}
.yb6{bottom:659.775000px;}
.y219{bottom:662.655000px;}
.y1ea{bottom:664.665000px;}
.y15a{bottom:665.565000px;}
.y12e{bottom:668.625000px;}
.y1b8{bottom:675.825000px;}
.y88{bottom:679.605000px;}
.ye8{bottom:679.965000px;}
.y18f{bottom:680.145000px;}
.yb5{bottom:680.685000px;}
.y157{bottom:681.045000px;}
.y1e9{bottom:682.845000px;}
.y12b{bottom:684.105000px;}
.y1b7{bottom:693.825000px;}
.y218{bottom:698.865000px;}
.y12a{bottom:699.765000px;}
.y87{bottom:700.485000px;}
.ye7{bottom:700.845000px;}
.yb4{bottom:701.565000px;}
.y156{bottom:703.185000px;}
.y1b6{bottom:712.005000px;}
.y129{bottom:715.245000px;}
.y217{bottom:716.865000px;}
.y155{bottom:718.845000px;}
.y1e8{bottom:719.025000px;}
.y86{bottom:721.365000px;}
.ye6{bottom:721.545000px;}
.y18e{bottom:721.725000px;}
.yb3{bottom:722.265000px;}
.y1b5{bottom:730.185000px;}
.y128{bottom:730.725000px;}
.y154{bottom:734.325000px;}
.y216{bottom:735.045000px;}
.y1e7{bottom:737.025000px;}
.y85{bottom:742.065000px;}
.ye5{bottom:742.425000px;}
.y18d{bottom:742.605000px;}
.yb2{bottom:743.145000px;}
.y127{bottom:746.205000px;}
.y1b4{bottom:748.185000px;}
.y151{bottom:749.805000px;}
.y215{bottom:753.225000px;}
.y1e6{bottom:755.205000px;}
.y126{bottom:761.865000px;}
.y84{bottom:762.945000px;}
.ye4{bottom:763.305000px;}
.y18c{bottom:763.485000px;}
.yb1{bottom:764.025000px;}
.y1b3{bottom:766.365000px;}
.y150{bottom:769.245000px;}
.y214{bottom:771.225000px;}
.y1e5{bottom:773.385000px;}
.y125{bottom:777.345000px;}
.y83{bottom:783.825000px;}
.ye3{bottom:784.185000px;}
.y1b2{bottom:784.365000px;}
.yb0{bottom:784.725000px;}
.y14f{bottom:784.905000px;}
.y14e{bottom:788.505000px;}
.y213{bottom:789.405000px;}
.y1e4{bottom:791.385000px;}
.y124{bottom:792.825000px;}
.y1b1{bottom:803.085000px;}
.y82{bottom:804.705000px;}
.ye2{bottom:804.885000px;}
.y18b{bottom:805.065000px;}
.yaf{bottom:805.605000px;}
.y212{bottom:807.585000px;}
.y14d{bottom:807.765000px;}
.y122{bottom:808.305000px;}
.y1e3{bottom:809.565000px;}
.y1b0{bottom:823.785000px;}
.y120{bottom:823.965000px;}
.y81{bottom:825.405000px;}
.y211{bottom:825.585000px;}
.ye1{bottom:825.765000px;}
.y18a{bottom:825.945000px;}
.yae{bottom:826.485000px;}
.y1e2{bottom:827.565000px;}
.y11f{bottom:839.445000px;}
.y210{bottom:843.765000px;}
.y1e1{bottom:845.745000px;}
.y80{bottom:846.285000px;}
.ye0{bottom:846.645000px;}
.yad{bottom:847.365000px;}
.y11e{bottom:855.645000px;}
.y20f{bottom:861.765000px;}
.y1e0{bottom:863.925000px;}
.y7f{bottom:867.165000px;}
.ydf{bottom:867.345000px;}
.y189{bottom:867.525000px;}
.yac{bottom:868.065000px;}
.y11d{bottom:874.905000px;}
.y20e{bottom:879.945000px;}
.y1df{bottom:881.925000px;}
.y7e{bottom:887.865000px;}
.yde{bottom:888.225000px;}
.y188{bottom:888.405000px;}
.yab{bottom:888.945000px;}
.y11c{bottom:890.385000px;}
.y20d{bottom:898.125000px;}
.y1de{bottom:900.105000px;}
.y7d{bottom:908.790000px;}
.ydd{bottom:909.150000px;}
.y187{bottom:909.330000px;}
.yaa{bottom:909.870000px;}
.y11b{bottom:910.950000px;}
.y1d{bottom:913.110000px;}
.y20c{bottom:916.170000px;}
.y1dd{bottom:918.330000px;}
.y11a{bottom:926.970000px;}
.y14{bottom:929.310000px;}
.y7c{bottom:929.670000px;}
.ydc{bottom:930.030000px;}
.ya9{bottom:930.570000px;}
.y20b{bottom:934.350000px;}
.y1dc{bottom:936.330000px;}
.y119{bottom:947.850000px;}
.y7b{bottom:950.550000px;}
.ydb{bottom:950.730000px;}
.y186{bottom:950.910000px;}
.ya8{bottom:951.450000px;}
.y20a{bottom:952.350000px;}
.y1db{bottom:954.510000px;}
.y118{bottom:968.550000px;}
.y209{bottom:970.530000px;}
.y7a{bottom:971.250000px;}
.yda{bottom:971.610000px;}
.y185{bottom:971.790000px;}
.ya7{bottom:972.330000px;}
.y1da{bottom:972.510000px;}
.y208{bottom:988.710000px;}
.y117{bottom:989.430000px;}
.y1d9{bottom:990.690000px;}
.y79{bottom:992.130000px;}
.yd9{bottom:992.490000px;}
.ya6{bottom:993.030000px;}
.y207{bottom:1006.710000px;}
.y1d8{bottom:1008.870000px;}
.y116{bottom:1010.310000px;}
.y78{bottom:1013.010000px;}
.yd8{bottom:1013.190000px;}
.y184{bottom:1013.370000px;}
.ya5{bottom:1013.910000px;}
.y206{bottom:1024.890000px;}
.y1d7{bottom:1026.870000px;}
.y115{bottom:1032.090000px;}
.y77{bottom:1033.710000px;}
.yd7{bottom:1034.070000px;}
.y183{bottom:1034.250000px;}
.ya4{bottom:1034.790000px;}
.y205{bottom:1043.070000px;}
.y1d6{bottom:1045.050000px;}
.yce{bottom:1048.470000px;}
.y11{bottom:1053.510000px;}
.y76{bottom:1054.590000px;}
.yd6{bottom:1054.950000px;}
.y182{bottom:1055.130000px;}
.ya3{bottom:1055.670000px;}
.y204{bottom:1061.070000px;}
.y1d5{bottom:1063.050000px;}
.y75{bottom:1075.470000px;}
.yd5{bottom:1075.830000px;}
.ya2{bottom:1076.370000px;}
.y203{bottom:1079.250000px;}
.y1d4{bottom:1081.230000px;}
.y74{bottom:1096.530000px;}
.y181{bottom:1096.710000px;}
.ya1{bottom:1097.250000px;}
.y1d3{bottom:1099.410000px;}
.y72{bottom:1114.890000px;}
.y180{bottom:1115.430000px;}
.y6a{bottom:1116.510000px;}
.y64{bottom:1116.690000px;}
.yd4{bottom:1117.410000px;}
.yd2{bottom:1124.430000px;}
.y70{bottom:1125.690000px;}
.yd0{bottom:1132.890000px;}
.y1{bottom:1136.670000px;}
.y66{bottom:1137.570000px;}
.y68{bottom:1145.490000px;}
.h2d{height:2.880000px;}
.h32{height:13.680000px;}
.h34{height:13.860000px;}
.h36{height:13.860150px;}
.h33{height:13.896000px;}
.h27{height:15.480000px;}
.h2a{height:15.516000px;}
.h28{height:15.660000px;}
.h1c{height:16.020000px;}
.h4{height:16.200000px;}
.h6{height:18.000000px;}
.h1a{height:18.936000px;}
.h2e{height:19.440000px;}
.h1b{height:20.160000px;}
.h1d{height:20.700000px;}
.h21{height:20.736000px;}
.h2f{height:22.140000px;}
.h35{height:27.540000px;}
.h1e{height:28.620000px;}
.h19{height:28.656000px;}
.h18{height:28.800000px;}
.h3{height:28.836000px;}
.he{height:29.671875px;}
.h2b{height:30.960000px;}
.h30{height:34.036523px;}
.h31{height:34.884492px;}
.h14{height:37.091953px;}
.h15{height:37.141875px;}
.h13{height:37.266680px;}
.h25{height:38.100586px;}
.h26{height:39.049805px;}
.hf{height:39.181641px;}
.h2c{height:39.760312px;}
.h1f{height:41.760000px;}
.h5{height:44.507812px;}
.h24{height:44.704687px;}
.h12{height:45.818438px;}
.h3a{height:46.127812px;}
.h22{height:46.195312px;}
.hd{height:47.671875px;}
.h17{height:48.693648px;}
.h29{height:49.896000px;}
.h7{height:50.800781px;}
.h38{height:52.222500px;}
.h8{height:52.312500px;}
.h11{height:52.488281px;}
.h16{height:53.709961px;}
.h9{height:53.755312px;}
.h39{height:58.429688px;}
.h23{height:59.343750px;}
.hb{height:61.205625px;}
.h2{height:65.884219px;}
.ha{height:68.760000px;}
.h37{height:91.549688px;}
.hc{height:124.200000px;}
.h20{height:145.265273px;}
.h10{height:640.185000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:36.360000px;}
.w26{width:60.480000px;}
.w20{width:63.936000px;}
.w28{width:78.660000px;}
.w22{width:82.800000px;}
.w1b{width:83.880000px;}
.w29{width:92.016000px;}
.w18{width:96.480000px;}
.w23{width:97.776000px;}
.w27{width:118.836000px;}
.w1f{width:120.060000px;}
.w15{width:124.560000px;}
.w19{width:124.596000px;}
.w21{width:125.316000px;}
.w1d{width:127.116000px;}
.w16{width:132.876000px;}
.w1c{width:135.396000px;}
.we{width:139.896000px;}
.w14{width:147.096000px;}
.w11{width:148.320000px;}
.w25{width:157.170000px;}
.w9{width:157.890000px;}
.w24{width:169.950000px;}
.w8{width:181.110000px;}
.w13{width:183.810000px;}
.w1e{width:187.230000px;}
.w17{width:202.530000px;}
.w7{width:223.995000px;}
.w12{width:229.755000px;}
.w5{width:236.235000px;}
.wc{width:238.755000px;}
.w4{width:244.470000px;}
.wb{width:244.650000px;}
.w1a{width:330.735000px;}
.wd{width:363.855000px;}
.w10{width:365.865000px;}
.w6{width:452.415000px;}
.wa{width:676.410000px;}
.w3{width:677.130000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:1.080000px;}
.x7{left:8.100000px;}
.x4{left:10.800000px;}
.xf{left:12.960000px;}
.x1b{left:35.100000px;}
.xb{left:49.185000px;}
.x9{left:77.445000px;}
.x19{left:102.276000px;}
.x12{left:105.156000px;}
.xd{left:106.776000px;}
.x2{left:108.036000px;}
.x15{left:135.036000px;}
.x11{left:136.110000px;}
.x2e{left:140.075987px;}
.x16{left:144.395987px;}
.xa{left:152.865000px;}
.xc{left:174.465000px;}
.x2a{left:277.995000px;}
.x1c{left:291.855000px;}
.x25{left:295.275000px;}
.x1f{left:310.575000px;}
.x18{left:402.555000px;}
.x20{left:407.055000px;}
.x26{left:415.335000px;}
.x14{left:430.305000px;}
.x2b{left:435.165000px;}
.x1d{left:438.945000px;}
.x6{left:456.044987px;}
.x27{left:479.265000px;}
.x1a{left:483.044987px;}
.x2f{left:488.084987px;}
.x2c{left:495.645000px;}
.x22{left:522.645000px;}
.x21{left:531.645000px;}
.x5{left:556.485000px;}
.x13{left:559.545000px;}
.x8{left:561.165000px;}
.x1e{left:563.505000px;}
.x28{left:604.590000px;}
.x2d{left:614.490000px;}
.x10{left:633.210000px;}
.x23{left:658.050000px;}
.x3{left:674.604000px;}
.x29{left:687.390000px;}
.xe{left:693.504000px;}
.x17{left:768.419987px;}
.x1{left:785.159987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v3{vertical-align:29.440000pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.239467pt;}
.lsb{letter-spacing:-0.198933pt;}
.ls7{letter-spacing:-0.096000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016000pt;}
.ls9{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.198933pt;}
.ls8{letter-spacing:0.227733pt;}
.ls3{letter-spacing:0.228480pt;}
.lsc{letter-spacing:0.288000pt;}
.ls10{letter-spacing:0.297067pt;}
.ls2{letter-spacing:0.320000pt;}
.lsa{letter-spacing:19.840000pt;}
.ls12{letter-spacing:28.503040pt;}
.ls11{letter-spacing:56.023040pt;}
.lsd{letter-spacing:1226.645333pt;}
.ws8{word-spacing:-50.595937pt;}
.ws3{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.720000pt;}
.ws13{word-spacing:-14.377067pt;}
.ws4{word-spacing:-14.080000pt;}
.wsa{word-spacing:-13.534613pt;}
.ws14{word-spacing:-13.440000pt;}
.wsd{word-spacing:-12.320000pt;}
.wsf{word-spacing:-12.288000pt;}
.wsb{word-spacing:-12.112000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.904000pt;}
.ws6{word-spacing:-11.680000pt;}
.ws5{word-spacing:-11.360000pt;}
.ws11{word-spacing:-11.040000pt;}
.ws10{word-spacing:-10.918933pt;}
.wse{word-spacing:-10.720000pt;}
.ws12{word-spacing:-10.480533pt;}
.ws2{word-spacing:-8.320000pt;}
.ws1{word-spacing:-8.000000pt;}
.ws9{word-spacing:0.000000pt;}
._9{margin-left:-4.109653pt;}
._8{margin-left:-3.149440pt;}
._7{margin-left:-2.122880pt;}
._1{margin-left:-1.200000pt;}
._0{width:1.008000pt;}
._13{width:1.943680pt;}
._d{width:3.396480pt;}
._e{width:4.471040pt;}
._10{width:6.138880pt;}
._f{width:7.659520pt;}
._a{width:8.746880pt;}
._4{width:9.912320pt;}
._5{width:10.926080pt;}
._21{width:11.844480pt;}
._17{width:13.066240pt;}
._25{width:15.115520pt;}
._1a{width:16.012160pt;}
._14{width:17.758080pt;}
._1c{width:18.754560pt;}
._1d{width:19.880960pt;}
._1f{width:20.900907pt;}
._b{width:22.151040pt;}
._c{width:23.064107pt;}
._12{width:24.724480pt;}
._6{width:26.262400pt;}
._26{width:27.315200pt;}
._1b{width:28.892160pt;}
._1e{width:30.261120pt;}
._2c{width:31.218560pt;}
._23{width:32.271360pt;}
._2{width:33.270827pt;}
._3{width:34.190080pt;}
._16{width:35.819520pt;}
._11{width:36.963200pt;}
._24{width:38.241280pt;}
._2d{width:39.818240pt;}
._2e{width:40.937600pt;}
._27{width:41.845760pt;}
._28{width:43.383680pt;}
._2f{width:44.307627pt;}
._2b{width:46.479360pt;}
._29{width:47.421440pt;}
._19{width:48.378880pt;}
._18{width:49.466240pt;}
._30{width:50.761600pt;}
._20{width:54.309760pt;}
._2a{width:58.421120pt;}
._15{width:65.855360pt;}
._22{width:74.680320pt;}
.fs4{font-size:32.000000pt;}
.fsa{font-size:42.880000pt;}
.fs6{font-size:45.440000pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:50.595937pt;}
.fs8{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs9{font-size:178.560000pt;}
.y6e{bottom:-48.160000pt;}
.y6d{bottom:-22.720000pt;}
.y7{bottom:-22.560000pt;}
.ya{bottom:-20.960000pt;}
.yd3{bottom:-15.040000pt;}
.y0{bottom:0.000000pt;}
.y16b{bottom:2.240000pt;}
.y16e{bottom:2.280000pt;}
.y65{bottom:2.560000pt;}
.y1c{bottom:2.720000pt;}
.y6c{bottom:2.880000pt;}
.y6{bottom:3.040000pt;}
.y1e{bottom:3.360000pt;}
.y63{bottom:4.000000pt;}
.y69{bottom:4.186667pt;}
.y9{bottom:4.640000pt;}
.y13{bottom:4.960000pt;}
.ycf{bottom:5.440000pt;}
.y153{bottom:6.080000pt;}
.yd1{bottom:7.040000pt;}
.y71{bottom:7.360000pt;}
.y159{bottom:8.480000pt;}
.y67{bottom:10.426667pt;}
.y177{bottom:12.160000pt;}
.y170{bottom:12.320000pt;}
.y121{bottom:13.760000pt;}
.y15c{bottom:13.786667pt;}
.y13e{bottom:13.800000pt;}
.y123{bottom:13.920000pt;}
.y73{bottom:14.080000pt;}
.y17a{bottom:14.400000pt;}
.y172{bottom:14.560000pt;}
.y147{bottom:16.320000pt;}
.y1b{bottom:16.480000pt;}
.y62{bottom:16.640000pt;}
.y152{bottom:17.280000pt;}
.y3d{bottom:18.080000pt;}
.y158{bottom:19.680000pt;}
.y12{bottom:27.520000pt;}
.y1a{bottom:30.240000pt;}
.y3c{bottom:36.640000pt;}
.y12d{bottom:44.346667pt;}
.y19{bottom:48.000000pt;}
.y3b{bottom:55.200000pt;}
.y18{bottom:57.760000pt;}
.y17{bottom:71.680000pt;}
.y3a{bottom:73.600000pt;}
.y61{bottom:78.240000pt;}
.y16{bottom:85.440000pt;}
.y60{bottom:92.000000pt;}
.y39{bottom:92.160000pt;}
.y15{bottom:99.200000pt;}
.y4{bottom:102.080000pt;}
.y5f{bottom:106.400000pt;}
.y38{bottom:110.720000pt;}
.y6f{bottom:110.880000pt;}
.y8{bottom:113.440000pt;}
.y6b{bottom:114.880000pt;}
.y5{bottom:115.360000pt;}
.y3{bottom:120.000000pt;}
.y5e{bottom:120.160000pt;}
.y37{bottom:129.280000pt;}
.y5d{bottom:133.800000pt;}
.y2{bottom:133.920000pt;}
.y5c{bottom:147.560000pt;}
.y36{bottom:147.720000pt;}
.y114{bottom:157.440000pt;}
.y1af{bottom:157.920000pt;}
.ya0{bottom:159.706667pt;}
.y100{bottom:160.026667pt;}
.y1a0{bottom:160.186667pt;}
.ycd{bottom:160.666667pt;}
.y5b{bottom:161.160000pt;}
.yd{bottom:163.066667pt;}
.y17f{bottom:165.306667pt;}
.y1d2{bottom:165.946667pt;}
.y35{bottom:166.280000pt;}
.y10{bottom:167.546667pt;}
.y14c{bottom:169.306667pt;}
.y230{bottom:170.426667pt;}
.y202{bottom:172.186667pt;}
.y5a{bottom:174.920000pt;}
.y113{bottom:175.866667pt;}
.y1ae{bottom:176.506667pt;}
.y17e{bottom:177.466667pt;}
.y9f{bottom:178.266667pt;}
.yff{bottom:178.586667pt;}
.ycc{bottom:179.226667pt;}
.y1d1{bottom:182.106667pt;}
.yc{bottom:183.866667pt;}
.y34{bottom:184.840000pt;}
.y22f{bottom:186.426667pt;}
.y14b{bottom:186.586667pt;}
.yf{bottom:186.906667pt;}
.y201{bottom:188.186667pt;}
.y59{bottom:188.520000pt;}
.y112{bottom:194.426667pt;}
.y1ad{bottom:195.066667pt;}
.y9e{bottom:196.826667pt;}
.yfe{bottom:196.986667pt;}
.y19f{bottom:197.146667pt;}
.y14a{bottom:197.306667pt;}
.ycb{bottom:197.626667pt;}
.y1d0{bottom:198.106667pt;}
.y17d{bottom:200.506667pt;}
.y58{bottom:202.280000pt;}
.y22e{bottom:202.586667pt;}
.y33{bottom:203.240000pt;}
.y200{bottom:204.346667pt;}
.yb{bottom:205.306667pt;}
.ye{bottom:206.426667pt;}
.y149{bottom:211.066667pt;}
.y17c{bottom:212.666667pt;}
.y111{bottom:212.986667pt;}
.y1ac{bottom:213.466667pt;}
.y1cf{bottom:214.266667pt;}
.y9d{bottom:215.226667pt;}
.y57{bottom:215.240000pt;}
.yfd{bottom:215.546667pt;}
.y19e{bottom:215.706667pt;}
.yca{bottom:216.186667pt;}
.y22d{bottom:218.586667pt;}
.y1ff{bottom:220.506667pt;}
.y32{bottom:221.800000pt;}
.y148{bottom:224.826667pt;}
.y17b{bottom:224.986667pt;}
.y56{bottom:229.000000pt;}
.y1ce{bottom:230.426667pt;}
.y110{bottom:231.386667pt;}
.y1ab{bottom:232.026667pt;}
.y9c{bottom:233.786667pt;}
.yfc{bottom:234.106667pt;}
.y19d{bottom:234.266667pt;}
.yc9{bottom:234.746667pt;}
.y1fe{bottom:236.506667pt;}
.y179{bottom:237.306667pt;}
.y146{bottom:240.346667pt;}
.y31{bottom:240.360000pt;}
.y1f{bottom:241.946667pt;}
.y55{bottom:242.760000pt;}
.y1cd{bottom:246.426667pt;}
.y10f{bottom:249.946667pt;}
.y1aa{bottom:250.586667pt;}
.y22c{bottom:250.906667pt;}
.y9b{bottom:252.346667pt;}
.yfb{bottom:252.666667pt;}
.yc8{bottom:253.146667pt;}
.y54{bottom:256.520000pt;}
.y30{bottom:258.920000pt;}
.y178{bottom:261.786667pt;}
.y1cc{bottom:262.586667pt;}
.y22b{bottom:266.906667pt;}
.y10e{bottom:268.506667pt;}
.y1fd{bottom:268.826667pt;}
.y1a9{bottom:269.146667pt;}
.y145{bottom:269.626667pt;}
.y53{bottom:270.440000pt;}
.y9a{bottom:270.906667pt;}
.yfa{bottom:271.066667pt;}
.y19c{bottom:271.226667pt;}
.yc7{bottom:271.706667pt;}
.y176{bottom:274.106667pt;}
.y2f{bottom:277.320000pt;}
.y1cb{bottom:278.586667pt;}
.y22a{bottom:283.066667pt;}
.y52{bottom:284.200000pt;}
.y1fc{bottom:284.826667pt;}
.y175{bottom:286.266667pt;}
.y144{bottom:286.586667pt;}
.y10d{bottom:286.906667pt;}
.y1a8{bottom:287.546667pt;}
.y99{bottom:289.306667pt;}
.yf9{bottom:289.626667pt;}
.y19b{bottom:289.786667pt;}
.yc6{bottom:290.266667pt;}
.y1ca{bottom:294.746667pt;}
.y2e{bottom:295.880000pt;}
.y51{bottom:297.960000pt;}
.y174{bottom:298.586667pt;}
.y229{bottom:299.226667pt;}
.y143{bottom:300.506667pt;}
.y1fb{bottom:300.986667pt;}
.y10c{bottom:305.466667pt;}
.y1a7{bottom:306.106667pt;}
.y98{bottom:307.866667pt;}
.yf8{bottom:308.186667pt;}
.yc5{bottom:308.826667pt;}
.y1c9{bottom:310.906667pt;}
.y50{bottom:311.720000pt;}
.y142{bottom:314.266667pt;}
.y2d{bottom:314.440000pt;}
.y228{bottom:315.226667pt;}
.y1fa{bottom:316.986667pt;}
.y173{bottom:323.066667pt;}
.y10b{bottom:324.026667pt;}
.y1a6{bottom:324.666667pt;}
.y4f{bottom:326.280000pt;}
.y97{bottom:326.426667pt;}
.yf7{bottom:326.586667pt;}
.y19a{bottom:326.746667pt;}
.y1c8{bottom:326.906667pt;}
.yc4{bottom:327.226667pt;}
.y141{bottom:328.026667pt;}
.y227{bottom:331.386667pt;}
.y2c{bottom:332.840000pt;}
.y1f9{bottom:333.146667pt;}
.y171{bottom:335.386667pt;}
.y4e{bottom:339.880000pt;}
.y140{bottom:341.786667pt;}
.y10a{bottom:342.586667pt;}
.y1a5{bottom:343.066667pt;}
.y96{bottom:344.826667pt;}
.yf6{bottom:345.146667pt;}
.y199{bottom:345.306667pt;}
.yc3{bottom:345.786667pt;}
.y226{bottom:347.386667pt;}
.y1f8{bottom:349.306667pt;}
.y2b{bottom:351.426667pt;}
.y4d{bottom:353.666667pt;}
.y13f{bottom:355.706667pt;}
.y1c7{bottom:359.066667pt;}
.y16f{bottom:359.866667pt;}
.y109{bottom:360.986667pt;}
.y1a4{bottom:361.626667pt;}
.y95{bottom:363.386667pt;}
.y225{bottom:363.546667pt;}
.yf5{bottom:363.706667pt;}
.y198{bottom:363.866667pt;}
.yc2{bottom:364.346667pt;}
.y1f7{bottom:365.306667pt;}
.y4c{bottom:367.266667pt;}
.y13d{bottom:367.546667pt;}
.y2a{bottom:369.986667pt;}
.y16d{bottom:372.186667pt;}
.y1c6{bottom:375.266667pt;}
.y108{bottom:379.586667pt;}
.y224{bottom:379.746667pt;}
.y1a3{bottom:380.226667pt;}
.y4b{bottom:380.866667pt;}
.y13c{bottom:381.346667pt;}
.y1f6{bottom:381.506667pt;}
.y94{bottom:381.986667pt;}
.yf4{bottom:382.306667pt;}
.yc1{bottom:382.786667pt;}
.y16c{bottom:384.546667pt;}
.y16a{bottom:387.906667pt;}
.y29{bottom:388.386667pt;}
.y1c5{bottom:391.426667pt;}
.y4a{bottom:394.466667pt;}
.y13b{bottom:395.106667pt;}
.y223{bottom:395.746667pt;}
.y1f5{bottom:397.666667pt;}
.y107{bottom:398.146667pt;}
.y1a2{bottom:398.786667pt;}
.y93{bottom:400.546667pt;}
.yf3{bottom:400.706667pt;}
.y197{bottom:400.866667pt;}
.yc0{bottom:401.346667pt;}
.y169{bottom:402.946667pt;}
.y28{bottom:406.946667pt;}
.y1c4{bottom:407.426667pt;}
.y49{bottom:408.226667pt;}
.y13a{bottom:409.026667pt;}
.y222{bottom:411.906667pt;}
.y1f4{bottom:413.666667pt;}
.y168{bottom:415.266667pt;}
.y106{bottom:416.546667pt;}
.y1a1{bottom:418.146667pt;}
.y92{bottom:418.946667pt;}
.yf2{bottom:419.266667pt;}
.y196{bottom:419.426667pt;}
.ybf{bottom:419.906667pt;}
.y48{bottom:421.986667pt;}
.y139{bottom:422.786667pt;}
.y1c3{bottom:423.586667pt;}
.y27{bottom:425.506667pt;}
.y167{bottom:427.906667pt;}
.y1f3{bottom:429.826667pt;}
.y105{bottom:435.106667pt;}
.y47{bottom:435.586667pt;}
.y138{bottom:436.546667pt;}
.y91{bottom:437.506667pt;}
.yf1{bottom:437.826667pt;}
.ybe{bottom:438.306667pt;}
.y1c2{bottom:439.746667pt;}
.y166{bottom:441.666667pt;}
.y26{bottom:444.066667pt;}
.y1f2{bottom:445.826667pt;}
.y46{bottom:449.346667pt;}
.y137{bottom:450.306667pt;}
.y104{bottom:453.666667pt;}
.y165{bottom:455.426667pt;}
.y1c1{bottom:455.746667pt;}
.y90{bottom:456.066667pt;}
.yf0{bottom:456.226667pt;}
.y195{bottom:456.386667pt;}
.ybd{bottom:456.866667pt;}
.y221{bottom:460.226667pt;}
.y1f1{bottom:461.986667pt;}
.y25{bottom:462.466667pt;}
.y45{bottom:462.946667pt;}
.y136{bottom:464.066667pt;}
.y164{bottom:467.426667pt;}
.y1c0{bottom:471.906667pt;}
.y103{bottom:472.226667pt;}
.y8f{bottom:474.466667pt;}
.yef{bottom:474.786667pt;}
.y194{bottom:474.946667pt;}
.ybc{bottom:475.426667pt;}
.y220{bottom:476.226667pt;}
.y44{bottom:476.546667pt;}
.y1f0{bottom:478.146667pt;}
.y135{bottom:478.626667pt;}
.y24{bottom:481.026667pt;}
.y163{bottom:481.186667pt;}
.y1bf{bottom:487.906667pt;}
.y43{bottom:490.306667pt;}
.y102{bottom:490.626667pt;}
.y21f{bottom:492.386667pt;}
.y8e{bottom:493.026667pt;}
.yee{bottom:493.346667pt;}
.y193{bottom:493.506667pt;}
.ybb{bottom:493.986667pt;}
.y1ef{bottom:494.146667pt;}
.y162{bottom:494.946667pt;}
.y134{bottom:495.746667pt;}
.y23{bottom:499.586667pt;}
.y42{bottom:503.906667pt;}
.y1be{bottom:504.066667pt;}
.y21e{bottom:508.546667pt;}
.y161{bottom:508.706667pt;}
.y133{bottom:509.506667pt;}
.y101{bottom:510.146667pt;}
.y1ee{bottom:510.306667pt;}
.y8d{bottom:511.586667pt;}
.yed{bottom:511.906667pt;}
.yba{bottom:512.386667pt;}
.y41{bottom:517.666667pt;}
.y22{bottom:517.986667pt;}
.y1bd{bottom:520.226667pt;}
.y160{bottom:522.626667pt;}
.y132{bottom:523.266667pt;}
.y21d{bottom:524.546667pt;}
.y1ed{bottom:526.306667pt;}
.y8c{bottom:530.146667pt;}
.yec{bottom:530.306667pt;}
.y192{bottom:530.466667pt;}
.yb9{bottom:530.946667pt;}
.y40{bottom:531.266667pt;}
.y1bc{bottom:536.226667pt;}
.y15f{bottom:536.386667pt;}
.y21{bottom:536.546667pt;}
.y131{bottom:537.026667pt;}
.y21c{bottom:540.706667pt;}
.y1ec{bottom:542.466667pt;}
.y3f{bottom:544.866667pt;}
.y8b{bottom:548.546667pt;}
.yeb{bottom:548.866667pt;}
.y191{bottom:549.026667pt;}
.yb8{bottom:549.506667pt;}
.y15e{bottom:550.146667pt;}
.y130{bottom:550.946667pt;}
.y1bb{bottom:552.386667pt;}
.y20{bottom:554.146667pt;}
.y21b{bottom:556.706667pt;}
.y3e{bottom:558.626667pt;}
.y12c{bottom:563.746667pt;}
.y15d{bottom:563.906667pt;}
.y8a{bottom:567.106667pt;}
.yea{bottom:567.426667pt;}
.yb7{bottom:567.906667pt;}
.y1ba{bottom:568.386667pt;}
.y21a{bottom:572.866667pt;}
.y1eb{bottom:574.626667pt;}
.y15b{bottom:577.826667pt;}
.y12f{bottom:579.586667pt;}
.y1b9{bottom:584.546667pt;}
.y89{bottom:585.666667pt;}
.ye9{bottom:585.826667pt;}
.y190{bottom:585.986667pt;}
.yb6{bottom:586.466667pt;}
.y219{bottom:589.026667pt;}
.y1ea{bottom:590.813333pt;}
.y15a{bottom:591.613333pt;}
.y12e{bottom:594.333333pt;}
.y1b8{bottom:600.733333pt;}
.y88{bottom:604.093333pt;}
.ye8{bottom:604.413333pt;}
.y18f{bottom:604.573333pt;}
.yb5{bottom:605.053333pt;}
.y157{bottom:605.373333pt;}
.y1e9{bottom:606.973333pt;}
.y12b{bottom:608.093333pt;}
.y1b7{bottom:616.733333pt;}
.y218{bottom:621.213333pt;}
.y12a{bottom:622.013333pt;}
.y87{bottom:622.653333pt;}
.ye7{bottom:622.973333pt;}
.yb4{bottom:623.613333pt;}
.y156{bottom:625.053333pt;}
.y1b6{bottom:632.893333pt;}
.y129{bottom:635.773333pt;}
.y217{bottom:637.213333pt;}
.y155{bottom:638.973333pt;}
.y1e8{bottom:639.133333pt;}
.y86{bottom:641.213333pt;}
.ye6{bottom:641.373333pt;}
.y18e{bottom:641.533333pt;}
.yb3{bottom:642.013333pt;}
.y1b5{bottom:649.053333pt;}
.y128{bottom:649.533333pt;}
.y154{bottom:652.733333pt;}
.y216{bottom:653.373333pt;}
.y1e7{bottom:655.133333pt;}
.y85{bottom:659.613333pt;}
.ye5{bottom:659.933333pt;}
.y18d{bottom:660.093333pt;}
.yb2{bottom:660.573333pt;}
.y127{bottom:663.293333pt;}
.y1b4{bottom:665.053333pt;}
.y151{bottom:666.493333pt;}
.y215{bottom:669.533333pt;}
.y1e6{bottom:671.293333pt;}
.y126{bottom:677.213333pt;}
.y84{bottom:678.173333pt;}
.ye4{bottom:678.493333pt;}
.y18c{bottom:678.653333pt;}
.yb1{bottom:679.133333pt;}
.y1b3{bottom:681.213333pt;}
.y150{bottom:683.773333pt;}
.y214{bottom:685.533333pt;}
.y1e5{bottom:687.453333pt;}
.y125{bottom:690.973333pt;}
.y83{bottom:696.733333pt;}
.ye3{bottom:697.053333pt;}
.y1b2{bottom:697.213333pt;}
.yb0{bottom:697.533333pt;}
.y14f{bottom:697.693333pt;}
.y14e{bottom:700.893333pt;}
.y213{bottom:701.693333pt;}
.y1e4{bottom:703.453333pt;}
.y124{bottom:704.733333pt;}
.y1b1{bottom:713.853333pt;}
.y82{bottom:715.293333pt;}
.ye2{bottom:715.453333pt;}
.y18b{bottom:715.613333pt;}
.yaf{bottom:716.093333pt;}
.y212{bottom:717.853333pt;}
.y14d{bottom:718.013333pt;}
.y122{bottom:718.493333pt;}
.y1e3{bottom:719.613333pt;}
.y1b0{bottom:732.253333pt;}
.y120{bottom:732.413333pt;}
.y81{bottom:733.693333pt;}
.y211{bottom:733.853333pt;}
.ye1{bottom:734.013333pt;}
.y18a{bottom:734.173333pt;}
.yae{bottom:734.653333pt;}
.y1e2{bottom:735.613333pt;}
.y11f{bottom:746.173333pt;}
.y210{bottom:750.013333pt;}
.y1e1{bottom:751.773333pt;}
.y80{bottom:752.253333pt;}
.ye0{bottom:752.573333pt;}
.yad{bottom:753.213333pt;}
.y11e{bottom:760.573333pt;}
.y20f{bottom:766.013333pt;}
.y1e0{bottom:767.933333pt;}
.y7f{bottom:770.813333pt;}
.ydf{bottom:770.973333pt;}
.y189{bottom:771.133333pt;}
.yac{bottom:771.613333pt;}
.y11d{bottom:777.693333pt;}
.y20e{bottom:782.173333pt;}
.y1df{bottom:783.933333pt;}
.y7e{bottom:789.213333pt;}
.yde{bottom:789.533333pt;}
.y188{bottom:789.693333pt;}
.yab{bottom:790.173333pt;}
.y11c{bottom:791.453333pt;}
.y20d{bottom:798.333333pt;}
.y1de{bottom:800.093333pt;}
.y7d{bottom:807.813333pt;}
.ydd{bottom:808.133333pt;}
.y187{bottom:808.293333pt;}
.yaa{bottom:808.773333pt;}
.y11b{bottom:809.733333pt;}
.y1d{bottom:811.653333pt;}
.y20c{bottom:814.373333pt;}
.y1dd{bottom:816.293333pt;}
.y11a{bottom:823.973333pt;}
.y14{bottom:826.053333pt;}
.y7c{bottom:826.373333pt;}
.ydc{bottom:826.693333pt;}
.ya9{bottom:827.173333pt;}
.y20b{bottom:830.533333pt;}
.y1dc{bottom:832.293333pt;}
.y119{bottom:842.533333pt;}
.y7b{bottom:844.933333pt;}
.ydb{bottom:845.093333pt;}
.y186{bottom:845.253333pt;}
.ya8{bottom:845.733333pt;}
.y20a{bottom:846.533333pt;}
.y1db{bottom:848.453333pt;}
.y118{bottom:860.933333pt;}
.y209{bottom:862.693333pt;}
.y7a{bottom:863.333333pt;}
.yda{bottom:863.653333pt;}
.y185{bottom:863.813333pt;}
.ya7{bottom:864.293333pt;}
.y1da{bottom:864.453333pt;}
.y208{bottom:878.853333pt;}
.y117{bottom:879.493333pt;}
.y1d9{bottom:880.613333pt;}
.y79{bottom:881.893333pt;}
.yd9{bottom:882.213333pt;}
.ya6{bottom:882.693333pt;}
.y207{bottom:894.853333pt;}
.y1d8{bottom:896.773333pt;}
.y116{bottom:898.053333pt;}
.y78{bottom:900.453333pt;}
.yd8{bottom:900.613333pt;}
.y184{bottom:900.773333pt;}
.ya5{bottom:901.253333pt;}
.y206{bottom:911.013333pt;}
.y1d7{bottom:912.773333pt;}
.y115{bottom:917.413333pt;}
.y77{bottom:918.853333pt;}
.yd7{bottom:919.173333pt;}
.y183{bottom:919.333333pt;}
.ya4{bottom:919.813333pt;}
.y205{bottom:927.173333pt;}
.y1d6{bottom:928.933333pt;}
.yce{bottom:931.973333pt;}
.y11{bottom:936.453333pt;}
.y76{bottom:937.413333pt;}
.yd6{bottom:937.733333pt;}
.y182{bottom:937.893333pt;}
.ya3{bottom:938.373333pt;}
.y204{bottom:943.173333pt;}
.y1d5{bottom:944.933333pt;}
.y75{bottom:955.973333pt;}
.yd5{bottom:956.293333pt;}
.ya2{bottom:956.773333pt;}
.y203{bottom:959.333333pt;}
.y1d4{bottom:961.093333pt;}
.y74{bottom:974.693333pt;}
.y181{bottom:974.853333pt;}
.ya1{bottom:975.333333pt;}
.y1d3{bottom:977.253333pt;}
.y72{bottom:991.013333pt;}
.y180{bottom:991.493333pt;}
.y6a{bottom:992.453333pt;}
.y64{bottom:992.613333pt;}
.yd4{bottom:993.253333pt;}
.yd2{bottom:999.493333pt;}
.y70{bottom:1000.613333pt;}
.yd0{bottom:1007.013333pt;}
.y1{bottom:1010.373333pt;}
.y66{bottom:1011.173333pt;}
.y68{bottom:1018.213333pt;}
.h2d{height:2.560000pt;}
.h32{height:12.160000pt;}
.h34{height:12.320000pt;}
.h36{height:12.320133pt;}
.h33{height:12.352000pt;}
.h27{height:13.760000pt;}
.h2a{height:13.792000pt;}
.h28{height:13.920000pt;}
.h1c{height:14.240000pt;}
.h4{height:14.400000pt;}
.h6{height:16.000000pt;}
.h1a{height:16.832000pt;}
.h2e{height:17.280000pt;}
.h1b{height:17.920000pt;}
.h1d{height:18.400000pt;}
.h21{height:18.432000pt;}
.h2f{height:19.680000pt;}
.h35{height:24.480000pt;}
.h1e{height:25.440000pt;}
.h19{height:25.472000pt;}
.h18{height:25.600000pt;}
.h3{height:25.632000pt;}
.he{height:26.375000pt;}
.h2b{height:27.520000pt;}
.h30{height:30.254687pt;}
.h31{height:31.008437pt;}
.h14{height:32.970625pt;}
.h15{height:33.015000pt;}
.h13{height:33.125937pt;}
.h25{height:33.867188pt;}
.h26{height:34.710938pt;}
.hf{height:34.828125pt;}
.h2c{height:35.342500pt;}
.h1f{height:37.120000pt;}
.h5{height:39.562500pt;}
.h24{height:39.737500pt;}
.h12{height:40.727500pt;}
.h3a{height:41.002500pt;}
.h22{height:41.062500pt;}
.hd{height:42.375000pt;}
.h17{height:43.283243pt;}
.h29{height:44.352000pt;}
.h7{height:45.156250pt;}
.h38{height:46.420000pt;}
.h8{height:46.500000pt;}
.h11{height:46.656250pt;}
.h16{height:47.742188pt;}
.h9{height:47.782500pt;}
.h39{height:51.937500pt;}
.h23{height:52.750000pt;}
.hb{height:54.405000pt;}
.h2{height:58.563750pt;}
.ha{height:61.120000pt;}
.h37{height:81.377500pt;}
.hc{height:110.400000pt;}
.h20{height:129.124687pt;}
.h10{height:569.053333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:32.320000pt;}
.w26{width:53.760000pt;}
.w20{width:56.832000pt;}
.w28{width:69.920000pt;}
.w22{width:73.600000pt;}
.w1b{width:74.560000pt;}
.w29{width:81.792000pt;}
.w18{width:85.760000pt;}
.w23{width:86.912000pt;}
.w27{width:105.632000pt;}
.w1f{width:106.720000pt;}
.w15{width:110.720000pt;}
.w19{width:110.752000pt;}
.w21{width:111.392000pt;}
.w1d{width:112.992000pt;}
.w16{width:118.112000pt;}
.w1c{width:120.352000pt;}
.we{width:124.352000pt;}
.w14{width:130.752000pt;}
.w11{width:131.840000pt;}
.w25{width:139.706667pt;}
.w9{width:140.346667pt;}
.w24{width:151.066667pt;}
.w8{width:160.986667pt;}
.w13{width:163.386667pt;}
.w1e{width:166.426667pt;}
.w17{width:180.026667pt;}
.w7{width:199.106667pt;}
.w12{width:204.226667pt;}
.w5{width:209.986667pt;}
.wc{width:212.226667pt;}
.w4{width:217.306667pt;}
.wb{width:217.466667pt;}
.w1a{width:293.986667pt;}
.wd{width:323.426667pt;}
.w10{width:325.213333pt;}
.w6{width:402.146667pt;}
.wa{width:601.253333pt;}
.w3{width:601.893333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:0.960000pt;}
.x7{left:7.200000pt;}
.x4{left:9.600000pt;}
.xf{left:11.520000pt;}
.x1b{left:31.200000pt;}
.xb{left:43.720000pt;}
.x9{left:68.840000pt;}
.x19{left:90.912000pt;}
.x12{left:93.472000pt;}
.xd{left:94.912000pt;}
.x2{left:96.032000pt;}
.x15{left:120.032000pt;}
.x11{left:120.986667pt;}
.x2e{left:124.511988pt;}
.x16{left:128.351988pt;}
.xa{left:135.880000pt;}
.xc{left:155.080000pt;}
.x2a{left:247.106667pt;}
.x1c{left:259.426667pt;}
.x25{left:262.466667pt;}
.x1f{left:276.066667pt;}
.x18{left:357.826667pt;}
.x20{left:361.826667pt;}
.x26{left:369.186667pt;}
.x14{left:382.493333pt;}
.x2b{left:386.813333pt;}
.x1d{left:390.173333pt;}
.x6{left:405.373322pt;}
.x27{left:426.013333pt;}
.x1a{left:429.373322pt;}
.x2f{left:433.853322pt;}
.x2c{left:440.573333pt;}
.x22{left:464.573333pt;}
.x21{left:472.573333pt;}
.x5{left:494.653333pt;}
.x13{left:497.373333pt;}
.x8{left:498.813333pt;}
.x1e{left:500.893333pt;}
.x28{left:537.413333pt;}
.x2d{left:546.213333pt;}
.x10{left:562.853333pt;}
.x23{left:584.933333pt;}
.x3{left:599.648000pt;}
.x29{left:611.013333pt;}
.xe{left:616.448000pt;}
.x17{left:683.039988pt;}
.x1{left:697.919988pt;}
}




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