
    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_21d0093c3be81970c9c4c437.woff2')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_38c9f4855d73a33d6fabf0fb.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9f61d60724250747a1b6a4c7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f6f02e8d7e01cd9b6fca95cb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.060059;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_d566e7f76f1e16cbe15c543a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_f2a5161705e45c47e3cea944.woff2')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_abc73db44664effca30ac389.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_65426a100ee38fd436c9c3a2.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_afc37a66a01cab9f27ddf4cc.woff2')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_359d01edf130577d36b3965b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.035156;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);}
.v1{vertical-align:-59.040000px;}
.v4{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v5{vertical-align:20.880000px;}
.v6{vertical-align:23.760000px;}
.v3{vertical-align:27.360000px;}
.lse{letter-spacing:-0.774000px;}
.ls17{letter-spacing:-0.666000px;}
.lsf{letter-spacing:-0.540000px;}
.ls1f{letter-spacing:-0.486600px;}
.ls18{letter-spacing:-0.413400px;}
.lsc{letter-spacing:-0.360000px;}
.ls1e{letter-spacing:-0.269400px;}
.ls11{letter-spacing:-0.216000px;}
.ls23{letter-spacing:-0.181200px;}
.ls10{letter-spacing:-0.053280px;}
.ls24{letter-spacing:-0.045360px;}
.lsa{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.010080px;}
.ls4{letter-spacing:0.018000px;}
.ls1b{letter-spacing:0.053280px;}
.ls14{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.206400px;}
.ls15{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.262080px;}
.ls21{letter-spacing:0.269400px;}
.ls6{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.493800px;}
.ls1d{letter-spacing:0.618000px;}
.ls3{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.828000px;}
.ls5{letter-spacing:3.060000px;}
.ls16{letter-spacing:6.660000px;}
.ls1a{letter-spacing:6.840000px;}
.ls1c{letter-spacing:8.100000px;}
.ls19{letter-spacing:8.820000px;}
.ls25{letter-spacing:9.540000px;}
.ls20{letter-spacing:16.457760px;}
.ls9{letter-spacing:26.820000px;}
.ls2{letter-spacing:67.680000px;}
.ls0{letter-spacing:300.600000px;}
.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;}
}
.ws3{word-spacing:-36.907200px;}
.wsc{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.238800px;}
.ws14{word-spacing:-15.199800px;}
.ws13{word-spacing:-15.146400px;}
.ws16{word-spacing:-14.993280px;}
.ws9{word-spacing:-14.940000px;}
.ws17{word-spacing:-14.886720px;}
.ws11{word-spacing:-14.580000px;}
.ws15{word-spacing:-14.274000px;}
.ws2{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.284000px;}
.wse{word-spacing:-13.140000px;}
.ws7{word-spacing:-12.420000px;}
.ws1a{word-spacing:-12.329400px;}
.ws6{word-spacing:-12.060000px;}
.ws1d{word-spacing:-12.014640px;}
.ws1c{word-spacing:-11.878800px;}
.ws18{word-spacing:-11.790600px;}
.ws8{word-spacing:-11.700000px;}
.ws1{word-spacing:-10.933800px;}
.ws0{word-spacing:-10.440000px;}
.ws10{word-spacing:-9.720000px;}
.ws12{word-spacing:-9.000000px;}
.ws1b{word-spacing:-7.570080px;}
.ws5{word-spacing:-7.560000px;}
.ws19{word-spacing:-7.073400px;}
.wsd{word-spacing:0.000000px;}
.ws4{word-spacing:57.457920px;}
._31{margin-left:-2.017200px;}
._0{margin-left:-1.013040px;}
._1{width:1.591920px;}
._6{width:2.870400px;}
._7{width:4.635600px;}
._b{width:5.711760px;}
._8{width:6.804000px;}
._9{width:8.434080px;}
._a{width:9.627840px;}
._c{width:10.854000px;}
._5{width:12.401280px;}
._e{width:13.706640px;}
._35{width:14.984880px;}
._22{width:16.422480px;}
._f{width:17.889840px;}
._10{width:19.422000px;}
._1f{width:20.477520px;}
._d{width:22.350240px;}
._2a{width:23.363280px;}
._1b{width:24.680880px;}
._18{width:25.973040px;}
._27{width:27.013200px;}
._15{width:28.445760px;}
._1a{width:29.661840px;}
._16{width:31.134960px;}
._17{width:33.105360px;}
._28{width:34.111200px;}
._23{width:35.258400px;}
._24{width:36.355680px;}
._19{width:37.589040px;}
._2f{width:38.772720px;}
._1e{width:39.803040px;}
._29{width:41.375520px;}
._12{width:42.489360px;}
._11{width:43.983360px;}
._2c{width:45.588000px;}
._32{width:46.732320px;}
._26{width:49.682160px;}
._25{width:51.214320px;}
._4c{width:54.309360px;}
._1c{width:55.875600px;}
._1d{width:56.891520px;}
._33{width:57.967200px;}
._34{width:59.184000px;}
._2d{width:60.417360px;}
._2e{width:61.571520px;}
._3d{width:63.328800px;}
._21{width:65.694960px;}
._4{width:67.238640px;}
._3e{width:68.934960px;}
._43{width:70.145040px;}
._13{width:76.911120px;}
._14{width:77.927040px;}
._30{width:86.938320px;}
._38{width:95.659920px;}
._40{width:105.009600px;}
._3f{width:106.272720px;}
._20{width:109.360800px;}
._49{width:120.262320px;}
._47{width:121.604160px;}
._48{width:122.761920px;}
._39{width:126.138720px;}
._3a{width:132.505680px;}
._3b{width:133.529040px;}
._4a{width:136.326240px;}
._41{width:139.992480px;}
._3c{width:143.851680px;}
._44{width:163.678320px;}
._36{width:212.584800px;}
._37{width:213.739920px;}
._45{width:225.576720px;}
._46{width:226.583280px;}
._42{width:241.542480px;}
._2b{width:243.300000px;}
._2{width:291.900000px;}
._4b{width:451.333440px;}
._3{width:1209.960000px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(15,19,177);}
.fc4{color:rgb(3,50,255);}
.fc3{color:rgb(128,128,128);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fse{font-size:18.000000px;}
.fsc{font-size:23.760000px;}
.fsb{font-size:30.240000px;}
.fsd{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs10{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fsf{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fs9{font-size:131.760000px;}
.fs8{font-size:144.000000px;}
.fs5{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.yd7{bottom:2.865000px;}
.yc4{bottom:2.880000px;}
.y112{bottom:3.060000px;}
.ydb{bottom:3.225000px;}
.yc6{bottom:3.240000px;}
.yd9{bottom:3.405000px;}
.yc8{bottom:3.420000px;}
.y12e{bottom:3.600000px;}
.y54{bottom:4.140000px;}
.y8{bottom:4.320000px;}
.y100{bottom:4.500000px;}
.y102{bottom:4.860000px;}
.y106{bottom:4.890000px;}
.y104{bottom:5.040000px;}
.y125{bottom:5.205000px;}
.y111{bottom:5.220000px;}
.y126{bottom:5.385000px;}
.y11b{bottom:5.565000px;}
.y10a{bottom:5.580000px;}
.y117{bottom:5.760000px;}
.y119{bottom:5.790000px;}
.y12b{bottom:5.940000px;}
.y11e{bottom:6.285000px;}
.y115{bottom:6.480000px;}
.y10f{bottom:13.500000px;}
.y53{bottom:14.400000px;}
.y123{bottom:15.825000px;}
.yfe{bottom:18.360000px;}
.yf2{bottom:18.900000px;}
.y57{bottom:22.680000px;}
.y7{bottom:30.780000px;}
.yf1{bottom:34.380000px;}
.y2{bottom:37.080000px;}
.y1{bottom:49.680000px;}
.yf0{bottom:49.860000px;}
.yef{bottom:65.340000px;}
.yf9{bottom:65.520000px;}
.y6{bottom:66.270000px;}
.ye9{bottom:76.140000px;}
.y130{bottom:77.580000px;}
.y89{bottom:78.660000px;}
.yb4{bottom:80.640000px;}
.yee{bottom:81.000000px;}
.yf8{bottom:81.045000px;}
.y202{bottom:82.440000px;}
.y4{bottom:83.370000px;}
.y189{bottom:83.520000px;}
.y12f{bottom:84.780000px;}
.y1c4{bottom:86.940000px;}
.y226{bottom:88.380000px;}
.ye8{bottom:92.340000px;}
.y241{bottom:92.520000px;}
.y164{bottom:94.500000px;}
.y201{bottom:96.120000px;}
.y12d{bottom:96.300000px;}
.yf7{bottom:96.525000px;}
.y88{bottom:98.460000px;}
.yb3{bottom:100.440000px;}
.y188{bottom:100.620000px;}
.y225{bottom:102.240000px;}
.y1c3{bottom:106.740000px;}
.ye7{bottom:107.820000px;}
.y200{bottom:109.980000px;}
.y51{bottom:110.340000px;}
.yf6{bottom:112.005000px;}
.y12c{bottom:112.500000px;}
.y15f{bottom:114.480000px;}
.y21a{bottom:115.920000px;}
.y187{bottom:117.900000px;}
.y87{bottom:118.440000px;}
.y40{bottom:118.800000px;}
.yb2{bottom:120.420000px;}
.ye6{bottom:123.300000px;}
.yf5{bottom:127.665000px;}
.y240{bottom:128.340000px;}
.y1ff{bottom:129.780000px;}
.y50{bottom:130.140000px;}
.y12a{bottom:131.220000px;}
.y15e{bottom:134.280000px;}
.y186{bottom:135.180000px;}
.y86{bottom:138.240000px;}
.y3f{bottom:138.780000px;}
.ye5{bottom:138.960000px;}
.yb1{bottom:140.220000px;}
.y1fe{bottom:143.676000px;}
.y23f{bottom:146.196000px;}
.y1c2{bottom:148.176000px;}
.y224{bottom:149.616000px;}
.y4f{bottom:149.976000px;}
.y185{bottom:152.130000px;}
.y129{bottom:152.145000px;}
.y15d{bottom:154.110000px;}
.ye4{bottom:154.485000px;}
.y1fd{bottom:157.350000px;}
.y85{bottom:158.070000px;}
.y3e{bottom:158.610000px;}
.yb0{bottom:160.050000px;}
.y1c1{bottom:161.850000px;}
.y219{bottom:163.470000px;}
.y23e{bottom:164.010000px;}
.y184{bottom:169.410000px;}
.y4e{bottom:169.950000px;}
.ye3{bottom:169.965000px;}
.y128{bottom:171.765000px;}
.y15c{bottom:173.910000px;}
.y1fc{bottom:177.150000px;}
.y84{bottom:177.870000px;}
.y3d{bottom:178.410000px;}
.y16f{bottom:179.490000px;}
.yaf{bottom:179.850000px;}
.y1c0{bottom:181.650000px;}
.y23d{bottom:181.830000px;}
.ye2{bottom:185.445000px;}
.y183{bottom:187.050000px;}
.y4d{bottom:189.750000px;}
.y1fb{bottom:191.010000px;}
.y127{bottom:192.105000px;}
.y15b{bottom:193.710000px;}
.y1bf{bottom:195.510000px;}
.y83{bottom:197.670000px;}
.y3c{bottom:198.210000px;}
.y16e{bottom:199.290000px;}
.yae{bottom:199.650000px;}
.ye1{bottom:201.105000px;}
.y182{bottom:204.150000px;}
.y1fa{bottom:204.870000px;}
.y1be{bottom:209.370000px;}
.y4c{bottom:209.550000px;}
.y15a{bottom:213.690000px;}
.y122{bottom:214.245000px;}
.ye0{bottom:216.585000px;}
.y23c{bottom:217.470000px;}
.y82{bottom:217.650000px;}
.y3b{bottom:218.010000px;}
.y1f9{bottom:218.550000px;}
.yad{bottom:219.630000px;}
.y181{bottom:221.430000px;}
.y1bd{bottom:223.050000px;}
.y218{bottom:224.670000px;}
.y4b{bottom:229.350000px;}
.ydf{bottom:232.065000px;}
.y1f8{bottom:232.410000px;}
.y159{bottom:233.490000px;}
.y23b{bottom:235.470000px;}
.y124{bottom:235.485000px;}
.y81{bottom:237.450000px;}
.y3a{bottom:237.990000px;}
.y217{bottom:238.350000px;}
.y180{bottom:238.710000px;}
.y16c{bottom:239.070000px;}
.yac{bottom:239.430000px;}
.y1bc{bottom:242.850000px;}
.yde{bottom:247.545000px;}
.y4a{bottom:249.150000px;}
.y1f7{bottom:252.210000px;}
.y158{bottom:253.290000px;}
.y17f{bottom:255.630000px;}
.y1bb{bottom:256.710000px;}
.y80{bottom:257.250000px;}
.y39{bottom:257.790000px;}
.y16b{bottom:258.870000px;}
.yab{bottom:259.230000px;}
.y121{bottom:260.130000px;}
.ydd{bottom:263.205000px;}
.y1f6{bottom:266.070000px;}
.y49{bottom:269.130000px;}
.y1ba{bottom:270.570000px;}
.y23a{bottom:271.110000px;}
.y216{bottom:272.010000px;}
.y17e{bottom:272.910000px;}
.y157{bottom:273.090000px;}
.y7f{bottom:277.050000px;}
.y38{bottom:277.590000px;}
.y120{bottom:278.670000px;}
.ydc{bottom:278.685000px;}
.yaa{bottom:279.030000px;}
.y1f5{bottom:279.750000px;}
.y1b9{bottom:284.250000px;}
.y215{bottom:285.870000px;}
.y48{bottom:288.930000px;}
.y17d{bottom:290.550000px;}
.y156{bottom:292.890000px;}
.y1f4{bottom:293.610000px;}
.yda{bottom:294.165000px;}
.y7e{bottom:296.850000px;}
.y37{bottom:297.390000px;}
.y1b8{bottom:298.110000px;}
.y168{bottom:298.470000px;}
.ya9{bottom:298.830000px;}
.y214{bottom:299.550000px;}
.y11f{bottom:300.810000px;}
.y1f3{bottom:307.470000px;}
.y17c{bottom:307.650000px;}
.y47{bottom:308.730000px;}
.y239{bottom:308.910000px;}
.yd8{bottom:309.645000px;}
.y11d{bottom:312.345000px;}
.y155{bottom:312.870000px;}
.y213{bottom:313.410000px;}
.y7d{bottom:316.830000px;}
.y36{bottom:317.190000px;}
.y1b7{bottom:317.910000px;}
.ya8{bottom:318.810000px;}
.y17b{bottom:324.930000px;}
.yd6{bottom:326.025000px;}
.y1f2{bottom:327.270000px;}
.y46{bottom:328.530000px;}
.y238{bottom:329.070000px;}
.y1b6{bottom:331.590000px;}
.y154{bottom:332.670000px;}
.y11c{bottom:333.765000px;}
.y7c{bottom:336.630000px;}
.y35{bottom:337.170000px;}
.ya7{bottom:338.610000px;}
.y1f1{bottom:340.950000px;}
.y17a{bottom:341.850000px;}
.y1b5{bottom:345.450000px;}
.yd5{bottom:345.990000px;}
.y212{bottom:347.070000px;}
.y45{bottom:348.330000px;}
.y3{bottom:350.145000px;}
.y237{bottom:350.490000px;}
.y153{bottom:352.470000px;}
.y11a{bottom:353.925000px;}
.y1f0{bottom:354.810000px;}
.y7b{bottom:356.430000px;}
.y34{bottom:356.970000px;}
.ya6{bottom:358.050000px;}
.ybd{bottom:358.410000px;}
.y179{bottom:359.130000px;}
.y1b4{bottom:359.310000px;}
.y211{bottom:360.750000px;}
.yd4{bottom:363.270000px;}
.y44{bottom:368.310000px;}
.y1ef{bottom:368.670000px;}
.y152{bottom:372.270000px;}
.y118{bottom:374.085000px;}
.y210{bottom:374.610000px;}
.y236{bottom:374.970000px;}
.y7a{bottom:376.230000px;}
.y33{bottom:376.815000px;}
.ya5{bottom:377.895000px;}
.y167{bottom:378.255000px;}
.y1b3{bottom:379.155000px;}
.yd3{bottom:380.235000px;}
.y43{bottom:388.155000px;}
.y1ee{bottom:388.515000px;}
.y151{bottom:392.115000px;}
.y1b2{bottom:392.835000px;}
.y178{bottom:393.915000px;}
.y223{bottom:394.455000px;}
.y116{bottom:394.635000px;}
.yd2{bottom:394.815000px;}
.y79{bottom:396.075000px;}
.y32{bottom:396.615000px;}
.ybc{bottom:397.695000px;}
.ya4{bottom:398.055000px;}
.y235{bottom:399.675000px;}
.y1ed{bottom:402.195000px;}
.y1b1{bottom:406.695000px;}
.y42{bottom:407.955000px;}
.y222{bottom:408.315000px;}
.yd1{bottom:410.295000px;}
.y177{bottom:411.195000px;}
.y150{bottom:412.095000px;}
.y31{bottom:414.615000px;}
.y114{bottom:415.155000px;}
.y78{bottom:416.055000px;}
.ya3{bottom:418.035000px;}
.y1b0{bottom:420.555000px;}
.y20f{bottom:421.995000px;}
.y234{bottom:424.335000px;}
.yd0{bottom:425.775000px;}
.y30{bottom:427.575000px;}
.y41{bottom:427.755000px;}
.y176{bottom:428.475000px;}
.y1ec{bottom:429.915000px;}
.y14f{bottom:431.895000px;}
.y1af{bottom:434.235000px;}
.y77{bottom:435.855000px;}
.y113{bottom:436.935000px;}
.ya2{bottom:437.835000px;}
.ycf{bottom:441.435000px;}
.y221{bottom:441.795000px;}
.y175{bottom:445.755000px;}
.y233{bottom:448.995000px;}
.y1eb{bottom:449.715000px;}
.y2f{bottom:450.075000px;}
.y14e{bottom:451.695000px;}
.y1ae{bottom:454.035000px;}
.y76{bottom:455.655000px;}
.y10e{bottom:456.735000px;}
.yce{bottom:456.915000px;}
.y16d{bottom:457.275000px;}
.ya1{bottom:457.635000px;}
.y2e{bottom:461.775000px;}
.y174{bottom:463.035000px;}
.y1ea{bottom:463.395000px;}
.y1ad{bottom:467.895000px;}
.y20e{bottom:469.515000px;}
.y14d{bottom:471.495000px;}
.ycd{bottom:472.395000px;}
.y110{bottom:473.115000px;}
.y2d{bottom:473.295000px;}
.y232{bottom:473.655000px;}
.y75{bottom:475.455000px;}
.ya0{bottom:477.075000px;}
.y1e9{bottom:477.255000px;}
.ybb{bottom:477.435000px;}
.y173{bottom:479.955000px;}
.y1ac{bottom:481.755000px;}
.y20d{bottom:483.195000px;}
.y2c{bottom:487.335000px;}
.ycc{bottom:487.875000px;}
.y14c{bottom:491.295000px;}
.y74{bottom:495.255000px;}
.y1ab{bottom:495.435000px;}
.y9f{bottom:496.875000px;}
.y172{bottom:497.055000px;}
.yba{bottom:497.235000px;}
.y2b{bottom:497.415000px;}
.y10d{bottom:497.775000px;}
.y231{bottom:498.315000px;}
.ycb{bottom:503.535000px;}
.y1e8{bottom:510.915000px;}
.y14b{bottom:511.275000px;}
.y2a{bottom:512.895000px;}
.y73{bottom:515.235000px;}
.y9e{bottom:516.855000px;}
.y10c{bottom:517.035000px;}
.yb9{bottom:517.215000px;}
.yca{bottom:519.015000px;}
.y230{bottom:522.975000px;}
.y1e7{bottom:524.595000px;}
.y29{bottom:528.375000px;}
.y1aa{bottom:529.095000px;}
.y20c{bottom:530.715000px;}
.y14a{bottom:531.075000px;}
.yc9{bottom:534.495000px;}
.y72{bottom:535.035000px;}
.y9d{bottom:536.655000px;}
.yb8{bottom:537.015000px;}
.y1e6{bottom:538.455000px;}
.y10b{bottom:541.875000px;}
.y1a9{bottom:542.955000px;}
.y28{bottom:543.855000px;}
.y20b{bottom:544.395000px;}
.y22f{bottom:547.635000px;}
.yc7{bottom:549.975000px;}
.y149{bottom:550.875000px;}
.y109{bottom:553.395000px;}
.y71{bottom:554.835000px;}
.y1a8{bottom:556.635000px;}
.y9c{bottom:556.815000px;}
.y1e5{bottom:558.255000px;}
.y27{bottom:559.515000px;}
.yc5{bottom:565.635000px;}
.y148{bottom:570.675000px;}
.y1e4{bottom:572.115000px;}
.y22e{bottom:572.295000px;}
.y108{bottom:573.375000px;}
.y70{bottom:574.635000px;}
.y26{bottom:574.995000px;}
.y1a7{bottom:576.435000px;}
.y9b{bottom:576.615000px;}
.yc3{bottom:581.835000px;}
.y1e3{bottom:585.795000px;}
.y1a6{bottom:590.295000px;}
.y25{bottom:590.475000px;}
.y107{bottom:591.195000px;}
.y6f{bottom:594.435000px;}
.y9a{bottom:596.415000px;}
.y22d{bottom:596.775000px;}
.y1e2{bottom:599.655000px;}
.yc2{bottom:601.815000px;}
.y1a5{bottom:604.155000px;}
.y220{bottom:605.595000px;}
.y24{bottom:605.955000px;}
.y105{bottom:610.095000px;}
.y147{bottom:610.485000px;}
.y6e{bottom:614.445000px;}
.y99{bottom:616.425000px;}
.y1a4{bottom:617.865000px;}
.yc1{bottom:619.125000px;}
.y1e1{bottom:619.485000px;}
.y22c{bottom:621.465000px;}
.y23{bottom:621.645000px;}
.y103{bottom:628.845000px;}
.y146{bottom:630.285000px;}
.y1e0{bottom:633.345000px;}
.y6d{bottom:634.245000px;}
.yb7{bottom:635.865000px;}
.yc0{bottom:636.045000px;}
.y98{bottom:636.225000px;}
.y22{bottom:637.125000px;}
.y1a3{bottom:637.665000px;}
.y22b{bottom:646.125000px;}
.y1df{bottom:647.025000px;}
.y101{bottom:647.745000px;}
.y145{bottom:650.085000px;}
.y1a2{bottom:651.525000px;}
.y21{bottom:652.605000px;}
.y6c{bottom:654.045000px;}
.yb6{bottom:655.665000px;}
.y97{bottom:656.025000px;}
.y1de{bottom:660.885000px;}
.y1a1{bottom:665.385000px;}
.yff{bottom:666.465000px;}
.y20{bottom:668.085000px;}
.y144{bottom:669.885000px;}
.y22a{bottom:670.785000px;}
.y6b{bottom:673.845000px;}
.y1dd{bottom:674.565000px;}
.y96{bottom:675.825000px;}
.y1a0{bottom:679.065000px;}
.y21f{bottom:680.685000px;}
.y1f{bottom:683.745000px;}
.yfd{bottom:685.185000px;}
.y143{bottom:689.685000px;}
.y19f{bottom:692.925000px;}
.y6a{bottom:693.645000px;}
.y1dc{bottom:694.365000px;}
.y229{bottom:695.445000px;}
.y95{bottom:695.625000px;}
.y1e{bottom:699.225000px;}
.y1db{bottom:708.225000px;}
.y142{bottom:709.665000px;}
.y19e{bottom:712.725000px;}
.y69{bottom:713.625000px;}
.y171{bottom:715.245000px;}
.y94{bottom:715.605000px;}
.y228{bottom:720.105000px;}
.yfc{bottom:720.645000px;}
.y1da{bottom:722.085000px;}
.y1d{bottom:723.525000px;}
.y19d{bottom:726.585000px;}
.y141{bottom:729.465000px;}
.y68{bottom:733.425000px;}
.y170{bottom:735.045000px;}
.y93{bottom:735.405000px;}
.y1d9{bottom:735.765000px;}
.yfb{bottom:739.905000px;}
.y19c{bottom:740.265000px;}
.y21e{bottom:741.885000px;}
.y227{bottom:744.765000px;}
.y1c{bottom:747.285000px;}
.y140{bottom:749.265000px;}
.y1d8{bottom:749.625000px;}
.y67{bottom:753.225000px;}
.y19b{bottom:754.125000px;}
.y16a{bottom:754.845000px;}
.y92{bottom:755.205000px;}
.y20a{bottom:755.565000px;}
.y1d7{bottom:763.485000px;}
.y1b{bottom:764.205000px;}
.yfa{bottom:764.745000px;}
.y19a{bottom:767.985000px;}
.y13f{bottom:769.065000px;}
.y209{bottom:769.425000px;}
.y66{bottom:773.025000px;}
.y1a{bottom:773.925000px;}
.y169{bottom:774.645000px;}
.y91{bottom:775.005000px;}
.yf4{bottom:776.265000px;}
.y1d6{bottom:783.285000px;}
.y199{bottom:784.905000px;}
.y19{bottom:786.165000px;}
.y13e{bottom:788.865000px;}
.y65{bottom:792.825000px;}
.y90{bottom:794.805000px;}
.y1d5{bottom:796.965000px;}
.y18{bottom:801.825000px;}
.y21d{bottom:803.085000px;}
.y198{bottom:804.345000px;}
.y13d{bottom:808.845000px;}
.y1d4{bottom:810.825000px;}
.y17{bottom:812.445000px;}
.y64{bottom:812.805000px;}
.y8f{bottom:814.785000px;}
.y21c{bottom:816.765000px;}
.y1d3{bottom:824.685000px;}
.y197{bottom:825.405000px;}
.y13c{bottom:828.645000px;}
.y208{bottom:830.625000px;}
.y63{bottom:832.605000px;}
.y16{bottom:833.505000px;}
.ybf{bottom:834.225000px;}
.y8e{bottom:834.585000px;}
.y1d2{bottom:844.530000px;}
.y196{bottom:845.970000px;}
.y13b{bottom:848.490000px;}
.y15{bottom:849.390000px;}
.y62{bottom:852.450000px;}
.ybe{bottom:854.070000px;}
.y8d{bottom:854.430000px;}
.y1d1{bottom:858.210000px;}
.y195{bottom:863.250000px;}
.y14{bottom:865.230000px;}
.y13a{bottom:867.930000px;}
.y163{bottom:868.290000px;}
.y1d0{bottom:872.070000px;}
.y61{bottom:872.250000px;}
.y8c{bottom:874.230000px;}
.y21b{bottom:878.010000px;}
.y194{bottom:880.530000px;}
.y13{bottom:883.410000px;}
.y139{bottom:887.730000px;}
.y162{bottom:888.090000px;}
.y1cf{bottom:891.870000px;}
.y60{bottom:892.050000px;}
.y8b{bottom:894.030000px;}
.y193{bottom:897.810000px;}
.y12{bottom:905.370000px;}
.y1ce{bottom:905.730000px;}
.y138{bottom:908.070000px;}
.y5f{bottom:912.750000px;}
.y8a{bottom:914.010000px;}
.y192{bottom:914.550000px;}
.yf3{bottom:916.890000px;}
.y1cd{bottom:919.410000px;}
.y11{bottom:924.990000px;}
.y137{bottom:927.870000px;}
.y191{bottom:931.830000px;}
.yed{bottom:933.090000px;}
.y207{bottom:933.270000px;}
.y5e{bottom:933.810000px;}
.y1cc{bottom:939.210000px;}
.y206{bottom:947.130000px;}
.y136{bottom:947.670000px;}
.y190{bottom:949.470000px;}
.y1cb{bottom:953.070000px;}
.y5d{bottom:953.610000px;}
.y205{bottom:960.810000px;}
.y10{bottom:962.970000px;}
.y18f{bottom:966.750000px;}
.y1ca{bottom:966.930000px;}
.y135{bottom:967.470000px;}
.y5c{bottom:973.410000px;}
.y1c9{bottom:980.610000px;}
.y18e{bottom:983.670000px;}
.y134{bottom:987.270000px;}
.y166{bottom:992.850000px;}
.y5b{bottom:993.210000px;}
.y1c8{bottom:994.470000px;}
.yf{bottom:998.070000px;}
.y18d{bottom:1000.950000px;}
.y133{bottom:1006.890000px;}
.y161{bottom:1007.250000px;}
.y204{bottom:1008.330000px;}
.ye{bottom:1012.470000px;}
.y165{bottom:1012.830000px;}
.y5a{bottom:1013.190000px;}
.y1c7{bottom:1014.270000px;}
.y18c{bottom:1018.050000px;}
.y52{bottom:1020.930000px;}
.y5{bottom:1021.290000px;}
.y203{bottom:1022.010000px;}
.yd{bottom:1026.150000px;}
.y132{bottom:1026.690000px;}
.yec{bottom:1027.050000px;}
.y1c6{bottom:1028.130000px;}
.y59{bottom:1032.990000px;}
.y18b{bottom:1035.690000px;}
.yc{bottom:1041.810000px;}
.y131{bottom:1046.490000px;}
.y160{bottom:1046.850000px;}
.yeb{bottom:1047.030000px;}
.y58{bottom:1052.790000px;}
.y18a{bottom:1052.970000px;}
.y1c5{bottom:1055.670000px;}
.yb{bottom:1057.830000px;}
.yea{bottom:1062.150000px;}
.ya{bottom:1081.080000px;}
.y56{bottom:1086.480000px;}
.y9{bottom:1106.640000px;}
.yb5{bottom:1113.660000px;}
.y55{bottom:1122.660000px;}
.h1c{height:15.465000px;}
.h20{height:15.478500px;}
.h1e{height:15.516000px;}
.h1d{height:15.645000px;}
.h1f{height:15.658500px;}
.h3c{height:16.198500px;}
.h2c{height:17.805000px;}
.h27{height:18.000000px;}
.h21{height:18.140625px;}
.h3b{height:18.718500px;}
.h28{height:18.720000px;}
.h2a{height:18.750000px;}
.h2b{height:18.885000px;}
.h29{height:18.900000px;}
.h30{height:19.065000px;}
.h39{height:19.605000px;}
.h2d{height:19.965000px;}
.h2f{height:20.145000px;}
.h38{height:20.325000px;}
.h32{height:20.505000px;}
.h33{height:20.541000px;}
.h3a{height:20.916000px;}
.h17{height:21.225000px;}
.h35{height:21.405000px;}
.h31{height:21.765000px;}
.hf{height:23.319141px;}
.he{height:29.664141px;}
.h10{height:29.678906px;}
.h26{height:30.960000px;}
.h13{height:35.332031px;}
.h2e{height:36.525000px;}
.h16{height:40.985156px;}
.h37{height:41.385000px;}
.h14{height:42.086250px;}
.h3e{height:43.246406px;}
.ha{height:47.321367px;}
.h1{height:47.344922px;}
.h24{height:50.558906px;}
.hc{height:52.998047px;}
.h1a{height:53.573906px;}
.h12{height:54.421875px;}
.h3f{height:55.503491px;}
.h4{height:56.084062px;}
.h9{height:58.651172px;}
.h34{height:59.092031px;}
.h1b{height:59.439023px;}
.h15{height:60.226875px;}
.h19{height:65.010937px;}
.hd{height:65.518594px;}
.h18{height:65.884219px;}
.h40{height:67.824844px;}
.h7{height:71.324297px;}
.h3d{height:72.562500px;}
.h36{height:82.676953px;}
.h22{height:93.225000px;}
.h25{height:93.983203px;}
.h3{height:98.841000px;}
.h11{height:105.996094px;}
.h5{height:106.050000px;}
.h2{height:108.843750px;}
.hb{height:132.789375px;}
.h23{height:139.882500px;}
.h8{height:141.257812px;}
.h6{height:142.038984px;}
.h0{height:1188.000000px;}
.w15{width:64.245000px;}
.w16{width:73.965000px;}
.w17{width:73.980000px;}
.w19{width:74.016000px;}
.w18{width:74.160000px;}
.wa{width:74.325000px;}
.w9{width:80.985000px;}
.w2{width:82.965000px;}
.w20{width:85.125000px;}
.w21{width:85.140000px;}
.w1f{width:85.161000px;}
.w22{width:85.176000px;}
.w1b{width:86.961000px;}
.wb{width:87.681000px;}
.w8{width:87.696000px;}
.wc{width:87.825000px;}
.w6{width:94.485000px;}
.w1a{width:95.745000px;}
.w23{width:97.185000px;}
.wf{width:104.760000px;}
.w1c{width:108.741000px;}
.w11{width:110.721000px;}
.we{width:117.741000px;}
.w12{width:121.665000px;}
.w10{width:125.136000px;}
.w4{width:127.605000px;}
.w1d{width:159.148500px;}
.wd{width:181.648500px;}
.w13{width:223.273500px;}
.w3{width:234.075000px;}
.w5{width:263.415000px;}
.w7{width:344.413500px;}
.w14{width:404.895000px;}
.w1e{width:437.820000px;}
.w1{width:760.635000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1d{left:8.130000px;}
.x3{left:10.798500px;}
.x19{left:14.400000px;}
.x24{left:15.480000px;}
.x40{left:17.460000px;}
.x34{left:18.525000px;}
.x4b{left:19.965000px;}
.x27{left:21.060000px;}
.x46{left:22.860000px;}
.x29{left:24.105000px;}
.x31{left:25.185000px;}
.x33{left:26.805000px;}
.x2d{left:28.440000px;}
.x32{left:30.225000px;}
.x30{left:31.860000px;}
.x1f{left:33.840000px;}
.x25{left:35.460000px;}
.x2e{left:36.900000px;}
.x4d{left:39.060000px;}
.x2f{left:40.140000px;}
.x47{left:41.565000px;}
.x38{left:43.050000px;}
.x22{left:45.180000px;}
.x3a{left:46.800000px;}
.x20{left:48.600000px;}
.x3c{left:50.790000px;}
.x21{left:52.020000px;}
.x3b{left:55.620000px;}
.x3e{left:74.700000px;}
.x49{left:77.610000px;}
.x1{left:81.000000px;}
.x2{left:82.081500px;}
.xf{left:106.236000px;}
.x15{left:108.036000px;}
.xa{left:121.356000px;}
.xe{left:130.896000px;}
.xb{left:143.316000px;}
.xd{left:151.590000px;}
.x51{left:158.250000px;}
.x14{left:162.030000px;}
.x12{left:199.830000px;}
.xc{left:233.490000px;}
.x48{left:239.265000px;}
.x35{left:264.105000px;}
.x3d{left:303.375000px;}
.x11{left:321.015000px;}
.x4c{left:324.435000px;}
.x5{left:336.135000px;}
.x1a{left:347.835000px;}
.x7{left:349.455000px;}
.x4{left:369.795000px;}
.x10{left:374.475000px;}
.x42{left:377.355000px;}
.x36{left:381.855000px;}
.x8{left:394.275000px;}
.x4e{left:409.575000px;}
.x1c{left:417.495000px;}
.x13{left:422.895000px;}
.x6{left:423.975000px;}
.x26{left:425.415000px;}
.x1b{left:451.155000px;}
.x9{left:462.495000px;}
.x37{left:486.615000px;}
.x16{left:488.955000px;}
.x4f{left:494.715000px;}
.x28{left:513.120000px;}
.x17{left:515.985000px;}
.x43{left:525.540000px;}
.x50{left:579.900000px;}
.x2a{left:594.120000px;}
.x45{left:599.520000px;}
.x39{left:611.760000px;}
.x44{left:621.300000px;}
.x2b{left:668.460000px;}
.x4a{left:677.100000px;}
.x3f{left:708.270000px;}
.x1e{left:723.030000px;}
.x23{left:752.370000px;}
.x2c{left:756.150000px;}
.x18{left:761.730000px;}
.x41{left:772.530000px;}
@media print{
.v1{vertical-align:-52.480000pt;}
.v4{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v5{vertical-align:18.560000pt;}
.v6{vertical-align:21.120000pt;}
.v3{vertical-align:24.320000pt;}
.lse{letter-spacing:-0.688000pt;}
.ls17{letter-spacing:-0.592000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls1f{letter-spacing:-0.432533pt;}
.ls18{letter-spacing:-0.367467pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls1e{letter-spacing:-0.239467pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls23{letter-spacing:-0.161067pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls24{letter-spacing:-0.040320pt;}
.lsa{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.008960pt;}
.ls4{letter-spacing:0.016000pt;}
.ls1b{letter-spacing:0.047360pt;}
.ls14{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.183467pt;}
.ls15{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.232960pt;}
.ls21{letter-spacing:0.239467pt;}
.ls6{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.438933pt;}
.ls1d{letter-spacing:0.549333pt;}
.ls3{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.736000pt;}
.ls5{letter-spacing:2.720000pt;}
.ls16{letter-spacing:5.920000pt;}
.ls1a{letter-spacing:6.080000pt;}
.ls1c{letter-spacing:7.200000pt;}
.ls19{letter-spacing:7.840000pt;}
.ls25{letter-spacing:8.480000pt;}
.ls20{letter-spacing:14.629120pt;}
.ls9{letter-spacing:23.840000pt;}
.ls2{letter-spacing:60.160000pt;}
.ls0{letter-spacing:267.200000pt;}
.ws3{word-spacing:-32.806400pt;}
.wsc{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.545600pt;}
.ws14{word-spacing:-13.510933pt;}
.ws13{word-spacing:-13.463467pt;}
.ws16{word-spacing:-13.327360pt;}
.ws9{word-spacing:-13.280000pt;}
.ws17{word-spacing:-13.232640pt;}
.ws11{word-spacing:-12.960000pt;}
.ws15{word-spacing:-12.688000pt;}
.ws2{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.808000pt;}
.wse{word-spacing:-11.680000pt;}
.ws7{word-spacing:-11.040000pt;}
.ws1a{word-spacing:-10.959467pt;}
.ws6{word-spacing:-10.720000pt;}
.ws1d{word-spacing:-10.679680pt;}
.ws1c{word-spacing:-10.558933pt;}
.ws18{word-spacing:-10.480533pt;}
.ws8{word-spacing:-10.400000pt;}
.ws1{word-spacing:-9.718933pt;}
.ws0{word-spacing:-9.280000pt;}
.ws10{word-spacing:-8.640000pt;}
.ws12{word-spacing:-8.000000pt;}
.ws1b{word-spacing:-6.728960pt;}
.ws5{word-spacing:-6.720000pt;}
.ws19{word-spacing:-6.287467pt;}
.wsd{word-spacing:0.000000pt;}
.ws4{word-spacing:51.073707pt;}
._31{margin-left:-1.793067pt;}
._0{margin-left:-0.900480pt;}
._1{width:1.415040pt;}
._6{width:2.551467pt;}
._7{width:4.120533pt;}
._b{width:5.077120pt;}
._8{width:6.048000pt;}
._9{width:7.496960pt;}
._a{width:8.558080pt;}
._c{width:9.648000pt;}
._5{width:11.023360pt;}
._e{width:12.183680pt;}
._35{width:13.319893pt;}
._22{width:14.597760pt;}
._f{width:15.902080pt;}
._10{width:17.264000pt;}
._1f{width:18.202240pt;}
._d{width:19.866880pt;}
._2a{width:20.767360pt;}
._1b{width:21.938560pt;}
._18{width:23.087147pt;}
._27{width:24.011733pt;}
._15{width:25.285120pt;}
._1a{width:26.366080pt;}
._16{width:27.675520pt;}
._17{width:29.426987pt;}
._28{width:30.321067pt;}
._23{width:31.340800pt;}
._24{width:32.316160pt;}
._19{width:33.412480pt;}
._2f{width:34.464640pt;}
._1e{width:35.380480pt;}
._29{width:36.778240pt;}
._12{width:37.768320pt;}
._11{width:39.096320pt;}
._2c{width:40.522667pt;}
._32{width:41.539840pt;}
._26{width:44.161920pt;}
._25{width:45.523840pt;}
._4c{width:48.274987pt;}
._1c{width:49.667200pt;}
._1d{width:50.570240pt;}
._33{width:51.526400pt;}
._34{width:52.608000pt;}
._2d{width:53.704320pt;}
._2e{width:54.730240pt;}
._3d{width:56.292267pt;}
._21{width:58.395520pt;}
._4{width:59.767680pt;}
._3e{width:61.275520pt;}
._43{width:62.351147pt;}
._13{width:68.365440pt;}
._14{width:69.268480pt;}
._30{width:77.278507pt;}
._38{width:85.031040pt;}
._40{width:93.341867pt;}
._3f{width:94.464640pt;}
._20{width:97.209600pt;}
._49{width:106.899840pt;}
._47{width:108.092587pt;}
._48{width:109.121707pt;}
._39{width:112.123307pt;}
._3a{width:117.782827pt;}
._3b{width:118.692480pt;}
._4a{width:121.178880pt;}
._41{width:124.437760pt;}
._3c{width:127.868160pt;}
._44{width:145.491840pt;}
._36{width:188.964267pt;}
._37{width:189.991040pt;}
._45{width:200.512640pt;}
._46{width:201.407360pt;}
._42{width:214.704427pt;}
._2b{width:216.266667pt;}
._2{width:259.466667pt;}
._4b{width:401.185280pt;}
._3{width:1075.520000pt;}
.fse{font-size:16.000000pt;}
.fsc{font-size:21.120000pt;}
.fsb{font-size:26.880000pt;}
.fsd{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs10{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fsf{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fs9{font-size:117.120000pt;}
.fs8{font-size:128.000000pt;}
.fs5{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.yd7{bottom:2.546667pt;}
.yc4{bottom:2.560000pt;}
.y112{bottom:2.720000pt;}
.ydb{bottom:2.866667pt;}
.yc6{bottom:2.880000pt;}
.yd9{bottom:3.026667pt;}
.yc8{bottom:3.040000pt;}
.y12e{bottom:3.200000pt;}
.y54{bottom:3.680000pt;}
.y8{bottom:3.840000pt;}
.y100{bottom:4.000000pt;}
.y102{bottom:4.320000pt;}
.y106{bottom:4.346667pt;}
.y104{bottom:4.480000pt;}
.y125{bottom:4.626667pt;}
.y111{bottom:4.640000pt;}
.y126{bottom:4.786667pt;}
.y11b{bottom:4.946667pt;}
.y10a{bottom:4.960000pt;}
.y117{bottom:5.120000pt;}
.y119{bottom:5.146667pt;}
.y12b{bottom:5.280000pt;}
.y11e{bottom:5.586667pt;}
.y115{bottom:5.760000pt;}
.y10f{bottom:12.000000pt;}
.y53{bottom:12.800000pt;}
.y123{bottom:14.066667pt;}
.yfe{bottom:16.320000pt;}
.yf2{bottom:16.800000pt;}
.y57{bottom:20.160000pt;}
.y7{bottom:27.360000pt;}
.yf1{bottom:30.560000pt;}
.y2{bottom:32.960000pt;}
.y1{bottom:44.160000pt;}
.yf0{bottom:44.320000pt;}
.yef{bottom:58.080000pt;}
.yf9{bottom:58.240000pt;}
.y6{bottom:58.906667pt;}
.ye9{bottom:67.680000pt;}
.y130{bottom:68.960000pt;}
.y89{bottom:69.920000pt;}
.yb4{bottom:71.680000pt;}
.yee{bottom:72.000000pt;}
.yf8{bottom:72.040000pt;}
.y202{bottom:73.280000pt;}
.y4{bottom:74.106667pt;}
.y189{bottom:74.240000pt;}
.y12f{bottom:75.360000pt;}
.y1c4{bottom:77.280000pt;}
.y226{bottom:78.560000pt;}
.ye8{bottom:82.080000pt;}
.y241{bottom:82.240000pt;}
.y164{bottom:84.000000pt;}
.y201{bottom:85.440000pt;}
.y12d{bottom:85.600000pt;}
.yf7{bottom:85.800000pt;}
.y88{bottom:87.520000pt;}
.yb3{bottom:89.280000pt;}
.y188{bottom:89.440000pt;}
.y225{bottom:90.880000pt;}
.y1c3{bottom:94.880000pt;}
.ye7{bottom:95.840000pt;}
.y200{bottom:97.760000pt;}
.y51{bottom:98.080000pt;}
.yf6{bottom:99.560000pt;}
.y12c{bottom:100.000000pt;}
.y15f{bottom:101.760000pt;}
.y21a{bottom:103.040000pt;}
.y187{bottom:104.800000pt;}
.y87{bottom:105.280000pt;}
.y40{bottom:105.600000pt;}
.yb2{bottom:107.040000pt;}
.ye6{bottom:109.600000pt;}
.yf5{bottom:113.480000pt;}
.y240{bottom:114.080000pt;}
.y1ff{bottom:115.360000pt;}
.y50{bottom:115.680000pt;}
.y12a{bottom:116.640000pt;}
.y15e{bottom:119.360000pt;}
.y186{bottom:120.160000pt;}
.y86{bottom:122.880000pt;}
.y3f{bottom:123.360000pt;}
.ye5{bottom:123.520000pt;}
.yb1{bottom:124.640000pt;}
.y1fe{bottom:127.712000pt;}
.y23f{bottom:129.952000pt;}
.y1c2{bottom:131.712000pt;}
.y224{bottom:132.992000pt;}
.y4f{bottom:133.312000pt;}
.y185{bottom:135.226667pt;}
.y129{bottom:135.240000pt;}
.y15d{bottom:136.986667pt;}
.ye4{bottom:137.320000pt;}
.y1fd{bottom:139.866667pt;}
.y85{bottom:140.506667pt;}
.y3e{bottom:140.986667pt;}
.yb0{bottom:142.266667pt;}
.y1c1{bottom:143.866667pt;}
.y219{bottom:145.306667pt;}
.y23e{bottom:145.786667pt;}
.y184{bottom:150.586667pt;}
.y4e{bottom:151.066667pt;}
.ye3{bottom:151.080000pt;}
.y128{bottom:152.680000pt;}
.y15c{bottom:154.586667pt;}
.y1fc{bottom:157.466667pt;}
.y84{bottom:158.106667pt;}
.y3d{bottom:158.586667pt;}
.y16f{bottom:159.546667pt;}
.yaf{bottom:159.866667pt;}
.y1c0{bottom:161.466667pt;}
.y23d{bottom:161.626667pt;}
.ye2{bottom:164.840000pt;}
.y183{bottom:166.266667pt;}
.y4d{bottom:168.666667pt;}
.y1fb{bottom:169.786667pt;}
.y127{bottom:170.760000pt;}
.y15b{bottom:172.186667pt;}
.y1bf{bottom:173.786667pt;}
.y83{bottom:175.706667pt;}
.y3c{bottom:176.186667pt;}
.y16e{bottom:177.146667pt;}
.yae{bottom:177.466667pt;}
.ye1{bottom:178.760000pt;}
.y182{bottom:181.466667pt;}
.y1fa{bottom:182.106667pt;}
.y1be{bottom:186.106667pt;}
.y4c{bottom:186.266667pt;}
.y15a{bottom:189.946667pt;}
.y122{bottom:190.440000pt;}
.ye0{bottom:192.520000pt;}
.y23c{bottom:193.306667pt;}
.y82{bottom:193.466667pt;}
.y3b{bottom:193.786667pt;}
.y1f9{bottom:194.266667pt;}
.yad{bottom:195.226667pt;}
.y181{bottom:196.826667pt;}
.y1bd{bottom:198.266667pt;}
.y218{bottom:199.706667pt;}
.y4b{bottom:203.866667pt;}
.ydf{bottom:206.280000pt;}
.y1f8{bottom:206.586667pt;}
.y159{bottom:207.546667pt;}
.y23b{bottom:209.306667pt;}
.y124{bottom:209.320000pt;}
.y81{bottom:211.066667pt;}
.y3a{bottom:211.546667pt;}
.y217{bottom:211.866667pt;}
.y180{bottom:212.186667pt;}
.y16c{bottom:212.506667pt;}
.yac{bottom:212.826667pt;}
.y1bc{bottom:215.866667pt;}
.yde{bottom:220.040000pt;}
.y4a{bottom:221.466667pt;}
.y1f7{bottom:224.186667pt;}
.y158{bottom:225.146667pt;}
.y17f{bottom:227.226667pt;}
.y1bb{bottom:228.186667pt;}
.y80{bottom:228.666667pt;}
.y39{bottom:229.146667pt;}
.y16b{bottom:230.106667pt;}
.yab{bottom:230.426667pt;}
.y121{bottom:231.226667pt;}
.ydd{bottom:233.960000pt;}
.y1f6{bottom:236.506667pt;}
.y49{bottom:239.226667pt;}
.y1ba{bottom:240.506667pt;}
.y23a{bottom:240.986667pt;}
.y216{bottom:241.786667pt;}
.y17e{bottom:242.586667pt;}
.y157{bottom:242.746667pt;}
.y7f{bottom:246.266667pt;}
.y38{bottom:246.746667pt;}
.y120{bottom:247.706667pt;}
.ydc{bottom:247.720000pt;}
.yaa{bottom:248.026667pt;}
.y1f5{bottom:248.666667pt;}
.y1b9{bottom:252.666667pt;}
.y215{bottom:254.106667pt;}
.y48{bottom:256.826667pt;}
.y17d{bottom:258.266667pt;}
.y156{bottom:260.346667pt;}
.y1f4{bottom:260.986667pt;}
.yda{bottom:261.480000pt;}
.y7e{bottom:263.866667pt;}
.y37{bottom:264.346667pt;}
.y1b8{bottom:264.986667pt;}
.y168{bottom:265.306667pt;}
.ya9{bottom:265.626667pt;}
.y214{bottom:266.266667pt;}
.y11f{bottom:267.386667pt;}
.y1f3{bottom:273.306667pt;}
.y17c{bottom:273.466667pt;}
.y47{bottom:274.426667pt;}
.y239{bottom:274.586667pt;}
.yd8{bottom:275.240000pt;}
.y11d{bottom:277.640000pt;}
.y155{bottom:278.106667pt;}
.y213{bottom:278.586667pt;}
.y7d{bottom:281.626667pt;}
.y36{bottom:281.946667pt;}
.y1b7{bottom:282.586667pt;}
.ya8{bottom:283.386667pt;}
.y17b{bottom:288.826667pt;}
.yd6{bottom:289.800000pt;}
.y1f2{bottom:290.906667pt;}
.y46{bottom:292.026667pt;}
.y238{bottom:292.506667pt;}
.y1b6{bottom:294.746667pt;}
.y154{bottom:295.706667pt;}
.y11c{bottom:296.680000pt;}
.y7c{bottom:299.226667pt;}
.y35{bottom:299.706667pt;}
.ya7{bottom:300.986667pt;}
.y1f1{bottom:303.066667pt;}
.y17a{bottom:303.866667pt;}
.y1b5{bottom:307.066667pt;}
.yd5{bottom:307.546667pt;}
.y212{bottom:308.506667pt;}
.y45{bottom:309.626667pt;}
.y3{bottom:311.240000pt;}
.y237{bottom:311.546667pt;}
.y153{bottom:313.306667pt;}
.y11a{bottom:314.600000pt;}
.y1f0{bottom:315.386667pt;}
.y7b{bottom:316.826667pt;}
.y34{bottom:317.306667pt;}
.ya6{bottom:318.266667pt;}
.ybd{bottom:318.586667pt;}
.y179{bottom:319.226667pt;}
.y1b4{bottom:319.386667pt;}
.y211{bottom:320.666667pt;}
.yd4{bottom:322.906667pt;}
.y44{bottom:327.386667pt;}
.y1ef{bottom:327.706667pt;}
.y152{bottom:330.906667pt;}
.y118{bottom:332.520000pt;}
.y210{bottom:332.986667pt;}
.y236{bottom:333.306667pt;}
.y7a{bottom:334.426667pt;}
.y33{bottom:334.946667pt;}
.ya5{bottom:335.906667pt;}
.y167{bottom:336.226667pt;}
.y1b3{bottom:337.026667pt;}
.yd3{bottom:337.986667pt;}
.y43{bottom:345.026667pt;}
.y1ee{bottom:345.346667pt;}
.y151{bottom:348.546667pt;}
.y1b2{bottom:349.186667pt;}
.y178{bottom:350.146667pt;}
.y223{bottom:350.626667pt;}
.y116{bottom:350.786667pt;}
.yd2{bottom:350.946667pt;}
.y79{bottom:352.066667pt;}
.y32{bottom:352.546667pt;}
.ybc{bottom:353.506667pt;}
.ya4{bottom:353.826667pt;}
.y235{bottom:355.266667pt;}
.y1ed{bottom:357.506667pt;}
.y1b1{bottom:361.506667pt;}
.y42{bottom:362.626667pt;}
.y222{bottom:362.946667pt;}
.yd1{bottom:364.706667pt;}
.y177{bottom:365.506667pt;}
.y150{bottom:366.306667pt;}
.y31{bottom:368.546667pt;}
.y114{bottom:369.026667pt;}
.y78{bottom:369.826667pt;}
.ya3{bottom:371.586667pt;}
.y1b0{bottom:373.826667pt;}
.y20f{bottom:375.106667pt;}
.y234{bottom:377.186667pt;}
.yd0{bottom:378.466667pt;}
.y30{bottom:380.066667pt;}
.y41{bottom:380.226667pt;}
.y176{bottom:380.866667pt;}
.y1ec{bottom:382.146667pt;}
.y14f{bottom:383.906667pt;}
.y1af{bottom:385.986667pt;}
.y77{bottom:387.426667pt;}
.y113{bottom:388.386667pt;}
.ya2{bottom:389.186667pt;}
.ycf{bottom:392.386667pt;}
.y221{bottom:392.706667pt;}
.y175{bottom:396.226667pt;}
.y233{bottom:399.106667pt;}
.y1eb{bottom:399.746667pt;}
.y2f{bottom:400.066667pt;}
.y14e{bottom:401.506667pt;}
.y1ae{bottom:403.586667pt;}
.y76{bottom:405.026667pt;}
.y10e{bottom:405.986667pt;}
.yce{bottom:406.146667pt;}
.y16d{bottom:406.466667pt;}
.ya1{bottom:406.786667pt;}
.y2e{bottom:410.466667pt;}
.y174{bottom:411.586667pt;}
.y1ea{bottom:411.906667pt;}
.y1ad{bottom:415.906667pt;}
.y20e{bottom:417.346667pt;}
.y14d{bottom:419.106667pt;}
.ycd{bottom:419.906667pt;}
.y110{bottom:420.546667pt;}
.y2d{bottom:420.706667pt;}
.y232{bottom:421.026667pt;}
.y75{bottom:422.626667pt;}
.ya0{bottom:424.066667pt;}
.y1e9{bottom:424.226667pt;}
.ybb{bottom:424.386667pt;}
.y173{bottom:426.626667pt;}
.y1ac{bottom:428.226667pt;}
.y20d{bottom:429.506667pt;}
.y2c{bottom:433.186667pt;}
.ycc{bottom:433.666667pt;}
.y14c{bottom:436.706667pt;}
.y74{bottom:440.226667pt;}
.y1ab{bottom:440.386667pt;}
.y9f{bottom:441.666667pt;}
.y172{bottom:441.826667pt;}
.yba{bottom:441.986667pt;}
.y2b{bottom:442.146667pt;}
.y10d{bottom:442.466667pt;}
.y231{bottom:442.946667pt;}
.ycb{bottom:447.586667pt;}
.y1e8{bottom:454.146667pt;}
.y14b{bottom:454.466667pt;}
.y2a{bottom:455.906667pt;}
.y73{bottom:457.986667pt;}
.y9e{bottom:459.426667pt;}
.y10c{bottom:459.586667pt;}
.yb9{bottom:459.746667pt;}
.yca{bottom:461.346667pt;}
.y230{bottom:464.866667pt;}
.y1e7{bottom:466.306667pt;}
.y29{bottom:469.666667pt;}
.y1aa{bottom:470.306667pt;}
.y20c{bottom:471.746667pt;}
.y14a{bottom:472.066667pt;}
.yc9{bottom:475.106667pt;}
.y72{bottom:475.586667pt;}
.y9d{bottom:477.026667pt;}
.yb8{bottom:477.346667pt;}
.y1e6{bottom:478.626667pt;}
.y10b{bottom:481.666667pt;}
.y1a9{bottom:482.626667pt;}
.y28{bottom:483.426667pt;}
.y20b{bottom:483.906667pt;}
.y22f{bottom:486.786667pt;}
.yc7{bottom:488.866667pt;}
.y149{bottom:489.666667pt;}
.y109{bottom:491.906667pt;}
.y71{bottom:493.186667pt;}
.y1a8{bottom:494.786667pt;}
.y9c{bottom:494.946667pt;}
.y1e5{bottom:496.226667pt;}
.y27{bottom:497.346667pt;}
.yc5{bottom:502.786667pt;}
.y148{bottom:507.266667pt;}
.y1e4{bottom:508.546667pt;}
.y22e{bottom:508.706667pt;}
.y108{bottom:509.666667pt;}
.y70{bottom:510.786667pt;}
.y26{bottom:511.106667pt;}
.y1a7{bottom:512.386667pt;}
.y9b{bottom:512.546667pt;}
.yc3{bottom:517.186667pt;}
.y1e3{bottom:520.706667pt;}
.y1a6{bottom:524.706667pt;}
.y25{bottom:524.866667pt;}
.y107{bottom:525.506667pt;}
.y6f{bottom:528.386667pt;}
.y9a{bottom:530.146667pt;}
.y22d{bottom:530.466667pt;}
.y1e2{bottom:533.026667pt;}
.yc2{bottom:534.946667pt;}
.y1a5{bottom:537.026667pt;}
.y220{bottom:538.306667pt;}
.y24{bottom:538.626667pt;}
.y105{bottom:542.306667pt;}
.y147{bottom:542.653333pt;}
.y6e{bottom:546.173333pt;}
.y99{bottom:547.933333pt;}
.y1a4{bottom:549.213333pt;}
.yc1{bottom:550.333333pt;}
.y1e1{bottom:550.653333pt;}
.y22c{bottom:552.413333pt;}
.y23{bottom:552.573333pt;}
.y103{bottom:558.973333pt;}
.y146{bottom:560.253333pt;}
.y1e0{bottom:562.973333pt;}
.y6d{bottom:563.773333pt;}
.yb7{bottom:565.213333pt;}
.yc0{bottom:565.373333pt;}
.y98{bottom:565.533333pt;}
.y22{bottom:566.333333pt;}
.y1a3{bottom:566.813333pt;}
.y22b{bottom:574.333333pt;}
.y1df{bottom:575.133333pt;}
.y101{bottom:575.773333pt;}
.y145{bottom:577.853333pt;}
.y1a2{bottom:579.133333pt;}
.y21{bottom:580.093333pt;}
.y6c{bottom:581.373333pt;}
.yb6{bottom:582.813333pt;}
.y97{bottom:583.133333pt;}
.y1de{bottom:587.453333pt;}
.y1a1{bottom:591.453333pt;}
.yff{bottom:592.413333pt;}
.y20{bottom:593.853333pt;}
.y144{bottom:595.453333pt;}
.y22a{bottom:596.253333pt;}
.y6b{bottom:598.973333pt;}
.y1dd{bottom:599.613333pt;}
.y96{bottom:600.733333pt;}
.y1a0{bottom:603.613333pt;}
.y21f{bottom:605.053333pt;}
.y1f{bottom:607.773333pt;}
.yfd{bottom:609.053333pt;}
.y143{bottom:613.053333pt;}
.y19f{bottom:615.933333pt;}
.y6a{bottom:616.573333pt;}
.y1dc{bottom:617.213333pt;}
.y229{bottom:618.173333pt;}
.y95{bottom:618.333333pt;}
.y1e{bottom:621.533333pt;}
.y1db{bottom:629.533333pt;}
.y142{bottom:630.813333pt;}
.y19e{bottom:633.533333pt;}
.y69{bottom:634.333333pt;}
.y171{bottom:635.773333pt;}
.y94{bottom:636.093333pt;}
.y228{bottom:640.093333pt;}
.yfc{bottom:640.573333pt;}
.y1da{bottom:641.853333pt;}
.y1d{bottom:643.133333pt;}
.y19d{bottom:645.853333pt;}
.y141{bottom:648.413333pt;}
.y68{bottom:651.933333pt;}
.y170{bottom:653.373333pt;}
.y93{bottom:653.693333pt;}
.y1d9{bottom:654.013333pt;}
.yfb{bottom:657.693333pt;}
.y19c{bottom:658.013333pt;}
.y21e{bottom:659.453333pt;}
.y227{bottom:662.013333pt;}
.y1c{bottom:664.253333pt;}
.y140{bottom:666.013333pt;}
.y1d8{bottom:666.333333pt;}
.y67{bottom:669.533333pt;}
.y19b{bottom:670.333333pt;}
.y16a{bottom:670.973333pt;}
.y92{bottom:671.293333pt;}
.y20a{bottom:671.613333pt;}
.y1d7{bottom:678.653333pt;}
.y1b{bottom:679.293333pt;}
.yfa{bottom:679.773333pt;}
.y19a{bottom:682.653333pt;}
.y13f{bottom:683.613333pt;}
.y209{bottom:683.933333pt;}
.y66{bottom:687.133333pt;}
.y1a{bottom:687.933333pt;}
.y169{bottom:688.573333pt;}
.y91{bottom:688.893333pt;}
.yf4{bottom:690.013333pt;}
.y1d6{bottom:696.253333pt;}
.y199{bottom:697.693333pt;}
.y19{bottom:698.813333pt;}
.y13e{bottom:701.213333pt;}
.y65{bottom:704.733333pt;}
.y90{bottom:706.493333pt;}
.y1d5{bottom:708.413333pt;}
.y18{bottom:712.733333pt;}
.y21d{bottom:713.853333pt;}
.y198{bottom:714.973333pt;}
.y13d{bottom:718.973333pt;}
.y1d4{bottom:720.733333pt;}
.y17{bottom:722.173333pt;}
.y64{bottom:722.493333pt;}
.y8f{bottom:724.253333pt;}
.y21c{bottom:726.013333pt;}
.y1d3{bottom:733.053333pt;}
.y197{bottom:733.693333pt;}
.y13c{bottom:736.573333pt;}
.y208{bottom:738.333333pt;}
.y63{bottom:740.093333pt;}
.y16{bottom:740.893333pt;}
.ybf{bottom:741.533333pt;}
.y8e{bottom:741.853333pt;}
.y1d2{bottom:750.693333pt;}
.y196{bottom:751.973333pt;}
.y13b{bottom:754.213333pt;}
.y15{bottom:755.013333pt;}
.y62{bottom:757.733333pt;}
.ybe{bottom:759.173333pt;}
.y8d{bottom:759.493333pt;}
.y1d1{bottom:762.853333pt;}
.y195{bottom:767.333333pt;}
.y14{bottom:769.093333pt;}
.y13a{bottom:771.493333pt;}
.y163{bottom:771.813333pt;}
.y1d0{bottom:775.173333pt;}
.y61{bottom:775.333333pt;}
.y8c{bottom:777.093333pt;}
.y21b{bottom:780.453333pt;}
.y194{bottom:782.693333pt;}
.y13{bottom:785.253333pt;}
.y139{bottom:789.093333pt;}
.y162{bottom:789.413333pt;}
.y1cf{bottom:792.773333pt;}
.y60{bottom:792.933333pt;}
.y8b{bottom:794.693333pt;}
.y193{bottom:798.053333pt;}
.y12{bottom:804.773333pt;}
.y1ce{bottom:805.093333pt;}
.y138{bottom:807.173333pt;}
.y5f{bottom:811.333333pt;}
.y8a{bottom:812.453333pt;}
.y192{bottom:812.933333pt;}
.yf3{bottom:815.013333pt;}
.y1cd{bottom:817.253333pt;}
.y11{bottom:822.213333pt;}
.y137{bottom:824.773333pt;}
.y191{bottom:828.293333pt;}
.yed{bottom:829.413333pt;}
.y207{bottom:829.573333pt;}
.y5e{bottom:830.053333pt;}
.y1cc{bottom:834.853333pt;}
.y206{bottom:841.893333pt;}
.y136{bottom:842.373333pt;}
.y190{bottom:843.973333pt;}
.y1cb{bottom:847.173333pt;}
.y5d{bottom:847.653333pt;}
.y205{bottom:854.053333pt;}
.y10{bottom:855.973333pt;}
.y18f{bottom:859.333333pt;}
.y1ca{bottom:859.493333pt;}
.y135{bottom:859.973333pt;}
.y5c{bottom:865.253333pt;}
.y1c9{bottom:871.653333pt;}
.y18e{bottom:874.373333pt;}
.y134{bottom:877.573333pt;}
.y166{bottom:882.533333pt;}
.y5b{bottom:882.853333pt;}
.y1c8{bottom:883.973333pt;}
.yf{bottom:887.173333pt;}
.y18d{bottom:889.733333pt;}
.y133{bottom:895.013333pt;}
.y161{bottom:895.333333pt;}
.y204{bottom:896.293333pt;}
.ye{bottom:899.973333pt;}
.y165{bottom:900.293333pt;}
.y5a{bottom:900.613333pt;}
.y1c7{bottom:901.573333pt;}
.y18c{bottom:904.933333pt;}
.y52{bottom:907.493333pt;}
.y5{bottom:907.813333pt;}
.y203{bottom:908.453333pt;}
.yd{bottom:912.133333pt;}
.y132{bottom:912.613333pt;}
.yec{bottom:912.933333pt;}
.y1c6{bottom:913.893333pt;}
.y59{bottom:918.213333pt;}
.y18b{bottom:920.613333pt;}
.yc{bottom:926.053333pt;}
.y131{bottom:930.213333pt;}
.y160{bottom:930.533333pt;}
.yeb{bottom:930.693333pt;}
.y58{bottom:935.813333pt;}
.y18a{bottom:935.973333pt;}
.y1c5{bottom:938.373333pt;}
.yb{bottom:940.293333pt;}
.yea{bottom:944.133333pt;}
.ya{bottom:960.960000pt;}
.y56{bottom:965.760000pt;}
.y9{bottom:983.680000pt;}
.yb5{bottom:989.920000pt;}
.y55{bottom:997.920000pt;}
.h1c{height:13.746667pt;}
.h20{height:13.758667pt;}
.h1e{height:13.792000pt;}
.h1d{height:13.906667pt;}
.h1f{height:13.918667pt;}
.h3c{height:14.398667pt;}
.h2c{height:15.826667pt;}
.h27{height:16.000000pt;}
.h21{height:16.125000pt;}
.h3b{height:16.638667pt;}
.h28{height:16.640000pt;}
.h2a{height:16.666667pt;}
.h2b{height:16.786667pt;}
.h29{height:16.800000pt;}
.h30{height:16.946667pt;}
.h39{height:17.426667pt;}
.h2d{height:17.746667pt;}
.h2f{height:17.906667pt;}
.h38{height:18.066667pt;}
.h32{height:18.226667pt;}
.h33{height:18.258667pt;}
.h3a{height:18.592000pt;}
.h17{height:18.866667pt;}
.h35{height:19.026667pt;}
.h31{height:19.346667pt;}
.hf{height:20.728125pt;}
.he{height:26.368125pt;}
.h10{height:26.381250pt;}
.h26{height:27.520000pt;}
.h13{height:31.406250pt;}
.h2e{height:32.466667pt;}
.h16{height:36.431250pt;}
.h37{height:36.786667pt;}
.h14{height:37.410000pt;}
.h3e{height:38.441250pt;}
.ha{height:42.063437pt;}
.h1{height:42.084375pt;}
.h24{height:44.941250pt;}
.hc{height:47.109375pt;}
.h1a{height:47.621250pt;}
.h12{height:48.375000pt;}
.h3f{height:49.336436pt;}
.h4{height:49.852500pt;}
.h9{height:52.134375pt;}
.h34{height:52.526250pt;}
.h1b{height:52.834688pt;}
.h15{height:53.535000pt;}
.h19{height:57.787500pt;}
.hd{height:58.238750pt;}
.h18{height:58.563750pt;}
.h40{height:60.288750pt;}
.h7{height:63.399375pt;}
.h3d{height:64.500000pt;}
.h36{height:73.490625pt;}
.h22{height:82.866667pt;}
.h25{height:83.540625pt;}
.h3{height:87.858667pt;}
.h11{height:94.218750pt;}
.h5{height:94.266667pt;}
.h2{height:96.750000pt;}
.hb{height:118.035000pt;}
.h23{height:124.340000pt;}
.h8{height:125.562500pt;}
.h6{height:126.256875pt;}
.h0{height:1056.000000pt;}
.w15{width:57.106667pt;}
.w16{width:65.746667pt;}
.w17{width:65.760000pt;}
.w19{width:65.792000pt;}
.w18{width:65.920000pt;}
.wa{width:66.066667pt;}
.w9{width:71.986667pt;}
.w2{width:73.746667pt;}
.w20{width:75.666667pt;}
.w21{width:75.680000pt;}
.w1f{width:75.698667pt;}
.w22{width:75.712000pt;}
.w1b{width:77.298667pt;}
.wb{width:77.938667pt;}
.w8{width:77.952000pt;}
.wc{width:78.066667pt;}
.w6{width:83.986667pt;}
.w1a{width:85.106667pt;}
.w23{width:86.386667pt;}
.wf{width:93.120000pt;}
.w1c{width:96.658667pt;}
.w11{width:98.418667pt;}
.we{width:104.658667pt;}
.w12{width:108.146667pt;}
.w10{width:111.232000pt;}
.w4{width:113.426667pt;}
.w1d{width:141.465333pt;}
.wd{width:161.465333pt;}
.w13{width:198.465333pt;}
.w3{width:208.066667pt;}
.w5{width:234.146667pt;}
.w7{width:306.145333pt;}
.w14{width:359.906667pt;}
.w1e{width:389.173333pt;}
.w1{width:676.120000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:7.226667pt;}
.x3{left:9.598667pt;}
.x19{left:12.800000pt;}
.x24{left:13.760000pt;}
.x40{left:15.520000pt;}
.x34{left:16.466667pt;}
.x4b{left:17.746667pt;}
.x27{left:18.720000pt;}
.x46{left:20.320000pt;}
.x29{left:21.426667pt;}
.x31{left:22.386667pt;}
.x33{left:23.826667pt;}
.x2d{left:25.280000pt;}
.x32{left:26.866667pt;}
.x30{left:28.320000pt;}
.x1f{left:30.080000pt;}
.x25{left:31.520000pt;}
.x2e{left:32.800000pt;}
.x4d{left:34.720000pt;}
.x2f{left:35.680000pt;}
.x47{left:36.946667pt;}
.x38{left:38.266667pt;}
.x22{left:40.160000pt;}
.x3a{left:41.600000pt;}
.x20{left:43.200000pt;}
.x3c{left:45.146667pt;}
.x21{left:46.240000pt;}
.x3b{left:49.440000pt;}
.x3e{left:66.400000pt;}
.x49{left:68.986667pt;}
.x1{left:72.000000pt;}
.x2{left:72.961333pt;}
.xf{left:94.432000pt;}
.x15{left:96.032000pt;}
.xa{left:107.872000pt;}
.xe{left:116.352000pt;}
.xb{left:127.392000pt;}
.xd{left:134.746667pt;}
.x51{left:140.666667pt;}
.x14{left:144.026667pt;}
.x12{left:177.626667pt;}
.xc{left:207.546667pt;}
.x48{left:212.680000pt;}
.x35{left:234.760000pt;}
.x3d{left:269.666667pt;}
.x11{left:285.346667pt;}
.x4c{left:288.386667pt;}
.x5{left:298.786667pt;}
.x1a{left:309.186667pt;}
.x7{left:310.626667pt;}
.x4{left:328.706667pt;}
.x10{left:332.866667pt;}
.x42{left:335.426667pt;}
.x36{left:339.426667pt;}
.x8{left:350.466667pt;}
.x4e{left:364.066667pt;}
.x1c{left:371.106667pt;}
.x13{left:375.906667pt;}
.x6{left:376.866667pt;}
.x26{left:378.146667pt;}
.x1b{left:401.026667pt;}
.x9{left:411.106667pt;}
.x37{left:432.546667pt;}
.x16{left:434.626667pt;}
.x4f{left:439.746667pt;}
.x28{left:456.106667pt;}
.x17{left:458.653333pt;}
.x43{left:467.146667pt;}
.x50{left:515.466667pt;}
.x2a{left:528.106667pt;}
.x45{left:532.906667pt;}
.x39{left:543.786667pt;}
.x44{left:552.266667pt;}
.x2b{left:594.186667pt;}
.x4a{left:601.866667pt;}
.x3f{left:629.573333pt;}
.x1e{left:642.693333pt;}
.x23{left:668.773333pt;}
.x2c{left:672.133333pt;}
.x18{left:677.093333pt;}
.x41{left:686.693333pt;}
}




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