
    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_8d0b6f7213048c04764e093a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.095703;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_1d29c9a93096e9067611cb3f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_dbc7c7c845fadc40a79359fc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.854004;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_6f973216e2b9ceb81c5d4985.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_78842643abc8133f0f6445e7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_c6dbc54968dd7b8507b03c16.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.095703;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_27fb3c20856f0669d0fa40a0.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e3566139d7e322e286a75266.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.942383;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_dda85dc6bf3e907e7edfee3d.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.ls39{letter-spacing:-3.906000px;}
.ls36{letter-spacing:-2.160000px;}
.ls3f{letter-spacing:-1.440000px;}
.ls31{letter-spacing:-1.008000px;}
.ls29{letter-spacing:-0.936000px;}
.ls3e{letter-spacing:-0.870000px;}
.ls9{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.648000px;}
.ls13{letter-spacing:-0.576000px;}
.ls35{letter-spacing:-0.457800px;}
.ls2f{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.414600px;}
.ls41{letter-spacing:-0.305400px;}
.lsf{letter-spacing:-0.288000px;}
.ls3a{letter-spacing:-0.226200px;}
.ls18{letter-spacing:-0.223800px;}
.lsd{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.152400px;}
.ls30{letter-spacing:-0.144000px;}
.ls3c{letter-spacing:-0.089400px;}
.ls7{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.036000px;}
.lse{letter-spacing:0.072000px;}
.ls2d{letter-spacing:0.108000px;}
.ls3d{letter-spacing:0.109200px;}
.ls11{letter-spacing:0.144000px;}
.ls3b{letter-spacing:0.152400px;}
.ls3{letter-spacing:0.152640px;}
.ls17{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.192000px;}
.ls19{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.262080px;}
.ls34{letter-spacing:0.262200px;}
.ls1d{letter-spacing:0.264000px;}
.lsb{letter-spacing:0.288000px;}
.ls37{letter-spacing:0.305280px;}
.ls1{letter-spacing:0.305400px;}
.ls25{letter-spacing:0.336000px;}
.ls6{letter-spacing:0.341400px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.432000px;}
.ls15{letter-spacing:0.504000px;}
.ls16{letter-spacing:0.720000px;}
.ls2b{letter-spacing:0.792000px;}
.ls2a{letter-spacing:0.864000px;}
.ls22{letter-spacing:1.440000px;}
.ls27{letter-spacing:5.040000px;}
.ls32{letter-spacing:5.220000px;}
.ls21{letter-spacing:5.760000px;}
.ls12{letter-spacing:5.940000px;}
.ls2e{letter-spacing:6.480000px;}
.ls40{letter-spacing:8.640000px;}
.ls24{letter-spacing:9.360000px;}
.ls26{letter-spacing:13.680000px;}
.ls23{letter-spacing:15.120000px;}
.ls38{letter-spacing:16.020000px;}
.ls2c{letter-spacing:16.560000px;}
.ls1f{letter-spacing:18.000000px;}
.ls1e{letter-spacing:18.720000px;}
.ls33{letter-spacing:31.680000px;}
.ls1a{letter-spacing:32.520000px;}
.ls28{letter-spacing:33.120000px;}
.ls1b{letter-spacing:33.960000px;}
.ls14{letter-spacing:53.424000px;}
.ls4{letter-spacing:54.144000px;}
.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;}
}
.ws13{word-spacing:-72.000000px;}
.ws3{word-spacing:-21.420000px;}
.ws2{word-spacing:-21.401400px;}
.ws12{word-spacing:-18.504000px;}
.wsb{word-spacing:-18.288000px;}
.ws11{word-spacing:-18.216000px;}
.wsf{word-spacing:-18.144000px;}
.ws14{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.928000px;}
.ws16{word-spacing:-17.856000px;}
.wsc{word-spacing:-17.784000px;}
.wsd{word-spacing:-17.712000px;}
.ws15{word-spacing:-17.568000px;}
.wse{word-spacing:-17.352000px;}
.ws5{word-spacing:-16.865400px;}
.ws17{word-spacing:-16.822200px;}
.ws1c{word-spacing:-16.669200px;}
.ws8{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.407600px;}
.ws1d{word-spacing:-16.254600px;}
.ws9{word-spacing:-16.145400px;}
.ws18{word-spacing:-16.102200px;}
.ws7{word-spacing:-15.840000px;}
.ws0{word-spacing:-15.300000px;}
.ws19{word-spacing:-14.400000px;}
.ws10{word-spacing:-11.836200px;}
.ws1b{word-spacing:-10.350600px;}
.ws1a{word-spacing:-10.213800px;}
.wsa{word-spacing:0.000000px;}
._36{margin-left:-8.767200px;}
._1c{margin-left:-7.217520px;}
._15{margin-left:-5.120400px;}
._12{margin-left:-3.619200px;}
._16{margin-left:-2.373120px;}
._2{margin-left:-1.347840px;}
._0{width:1.135440px;}
._1{width:2.163360px;}
._d{width:3.642240px;}
._e{width:4.846080px;}
._14{width:6.840000px;}
._8{width:8.310720px;}
._9{width:9.606240px;}
._3{width:11.386560px;}
._4{width:12.461280px;}
._18{width:14.376000px;}
._10{width:15.468000px;}
._17{width:16.632000px;}
._7{width:18.543360px;}
._1a{width:19.936560px;}
._19{width:21.240000px;}
._f{width:22.432560px;}
._5{width:23.998080px;}
._6{width:25.073760px;}
._1b{width:26.141760px;}
._11{width:27.598080px;}
._13{width:28.778400px;}
._1d{width:29.905920px;}
._b{width:31.054320px;}
._a{width:32.070720px;}
._c{width:33.103440px;}
._20{width:34.155360px;}
._1e{width:35.224560px;}
._1f{width:36.915840px;}
._22{width:38.600400px;}
._24{width:39.951600px;}
._25{width:41.384400px;}
._29{width:42.687360px;}
._23{width:43.791600px;}
._21{width:44.984400px;}
._32{width:46.440000px;}
._28{width:47.496000px;}
._37{width:52.023360px;}
._34{width:53.064000px;}
._30{width:57.960000px;}
._2c{width:59.384400px;}
._27{width:60.783600px;}
._26{width:61.976400px;}
._35{width:63.792000px;}
._39{width:68.484240px;}
._2b{width:72.360000px;}
._31{width:73.728000px;}
._2d{width:91.152000px;}
._2a{width:94.104000px;}
._38{width:100.883520px;}
._33{width:109.512000px;}
._2f{width:110.856000px;}
._2e{width:178.272000px;}
.fc2{color:transparent;}
.fc1{color:rgb(33,29,30);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yeb{bottom:14.220000px;}
.ye5{bottom:14.400000px;}
.y119{bottom:21.780000px;}
.yf1{bottom:21.960000px;}
.y112{bottom:21.990000px;}
.y106{bottom:22.005000px;}
.y144{bottom:23.400000px;}
.y10b{bottom:24.705000px;}
.y118{bottom:42.480000px;}
.y102{bottom:42.660000px;}
.y111{bottom:42.690000px;}
.y105{bottom:42.705000px;}
.y3{bottom:57.816000px;}
.y149{bottom:58.005000px;}
.y5d{bottom:58.896000px;}
.yf5{bottom:60.660000px;}
.y14b{bottom:60.705000px;}
.yef{bottom:61.380000px;}
.y11d{bottom:61.425000px;}
.y131{bottom:61.560000px;}
.y142{bottom:62.820000px;}
.y116{bottom:63.180000px;}
.y168{bottom:63.225000px;}
.y10e{bottom:63.360000px;}
.y110{bottom:63.390000px;}
.y104{bottom:63.405000px;}
.y109{bottom:64.125000px;}
.y137{bottom:66.105000px;}
.y148{bottom:78.705000px;}
.y5c{bottom:79.776000px;}
.y117{bottom:81.180000px;}
.y167{bottom:81.225000px;}
.yf4{bottom:81.360000px;}
.y191{bottom:81.540000px;}
.y18d{bottom:81.585000px;}
.y187{bottom:82.080000px;}
.y122{bottom:84.060000px;}
.y16e{bottom:84.090000px;}
.y139{bottom:84.105000px;}
.yfe{bottom:96.660000px;}
.y14a{bottom:99.405000px;}
.y115{bottom:101.880000px;}
.y166{bottom:101.925000px;}
.yf3{bottom:102.060000px;}
.y16f{bottom:102.090000px;}
.y18b{bottom:102.105000px;}
.y18c{bottom:102.285000px;}
.y123{bottom:104.760000px;}
.y16c{bottom:104.790000px;}
.y136{bottom:104.805000px;}
.yfd{bottom:117.360000px;}
.y147{bottom:117.405000px;}
.y101{bottom:120.060000px;}
.y121{bottom:122.760000px;}
.y16d{bottom:122.790000px;}
.y138{bottom:122.805000px;}
.yfc{bottom:138.060000px;}
.y146{bottom:138.105000px;}
.y120{bottom:143.460000px;}
.y16b{bottom:143.490000px;}
.y135{bottom:143.505000px;}
.yfb{bottom:158.760000px;}
.y1b0{bottom:177.690000px;}
.y100{bottom:179.460000px;}
.y216{bottom:184.890000px;}
.yec{bottom:185.070000px;}
.y7d{bottom:185.790000px;}
.ya2{bottom:186.690000px;}
.y5a{bottom:187.410000px;}
.y14c{bottom:187.770000px;}
.y2b{bottom:187.950000px;}
.yb7{bottom:194.250000px;}
.yfa{bottom:197.460000px;}
.y1f1{bottom:197.490000px;}
.y1af{bottom:198.390000px;}
.yff{bottom:200.160000px;}
.y160{bottom:203.070000px;}
.y1c8{bottom:203.790000px;}
.y7c{bottom:206.490000px;}
.ya1{bottom:207.390000px;}
.y59{bottom:208.110000px;}
.y2a{bottom:208.650000px;}
.y1c1{bottom:213.690000px;}
.yb6{bottom:214.950000px;}
.y215{bottom:215.670000px;}
.y1f0{bottom:216.750000px;}
.yea{bottom:217.110000px;}
.yf9{bottom:218.190000px;}
.y1ae{bottom:219.090000px;}
.y234{bottom:222.690000px;}
.y15f{bottom:223.770000px;}
.y1c7{bottom:224.490000px;}
.y7b{bottom:227.190000px;}
.ya0{bottom:228.090000px;}
.y58{bottom:228.810000px;}
.y29{bottom:229.350000px;}
.y1c0{bottom:234.390000px;}
.y214{bottom:234.930000px;}
.yb5{bottom:235.650000px;}
.yf8{bottom:238.890000px;}
.y1ad{bottom:239.790000px;}
.y233{bottom:241.770000px;}
.y18a{bottom:242.490000px;}
.y15e{bottom:244.470000px;}
.y1c6{bottom:245.190000px;}
.y7a{bottom:247.890000px;}
.y9c{bottom:248.790000px;}
.ye9{bottom:248.970000px;}
.y57{bottom:249.510000px;}
.y28{bottom:250.050000px;}
.y213{bottom:253.830000px;}
.y1bf{bottom:255.090000px;}
.yb4{bottom:256.350000px;}
.yf7{bottom:259.590000px;}
.y1ac{bottom:260.490000px;}
.y15d{bottom:265.170000px;}
.y1c5{bottom:265.890000px;}
.y1ef{bottom:266.430000px;}
.y79{bottom:268.590000px;}
.y9b{bottom:269.490000px;}
.y56{bottom:270.210000px;}
.y27{bottom:270.750000px;}
.y232{bottom:272.730000px;}
.y1be{bottom:275.790000px;}
.yb3{bottom:277.050000px;}
.y103{bottom:278.850000px;}
.ye8{bottom:280.875000px;}
.y1ab{bottom:281.235000px;}
.y212{bottom:284.655000px;}
.y15c{bottom:285.915000px;}
.y1c4{bottom:286.635000px;}
.y12e{bottom:288.615000px;}
.y78{bottom:289.335000px;}
.yc5{bottom:290.055000px;}
.y9a{bottom:290.235000px;}
.y55{bottom:290.955000px;}
.y26{bottom:291.495000px;}
.y231{bottom:291.855000px;}
.y174{bottom:294.555000px;}
.y1bd{bottom:296.535000px;}
.y1ee{bottom:297.435000px;}
.yb2{bottom:297.795000px;}
.y1aa{bottom:301.935000px;}
.y211{bottom:303.915000px;}
.y15b{bottom:306.615000px;}
.y1c3{bottom:307.335000px;}
.y12d{bottom:309.315000px;}
.y77{bottom:310.035000px;}
.yc4{bottom:310.755000px;}
.y99{bottom:310.935000px;}
.y54{bottom:311.655000px;}
.y25{bottom:312.195000px;}
.ye7{bottom:312.735000px;}
.y11a{bottom:315.255000px;}
.y1ed{bottom:316.515000px;}
.y1bc{bottom:317.055000px;}
.y1e0{bottom:318.495000px;}
.y1a9{bottom:322.635000px;}
.y15a{bottom:327.315000px;}
.y12c{bottom:330.015000px;}
.y76{bottom:330.735000px;}
.yc3{bottom:331.455000px;}
.y98{bottom:331.635000px;}
.y53{bottom:332.355000px;}
.y24{bottom:332.895000px;}
.y210{bottom:334.695000px;}
.y1ec{bottom:335.595000px;}
.y173{bottom:335.955000px;}
.y1bb{bottom:337.755000px;}
.y1df{bottom:339.195000px;}
.yb1{bottom:339.375000px;}
.y1a8{bottom:343.335000px;}
.ye6{bottom:344.595000px;}
.y1c2{bottom:346.035000px;}
.y159{bottom:348.015000px;}
.y12b{bottom:350.715000px;}
.y75{bottom:351.435000px;}
.yc2{bottom:352.155000px;}
.y97{bottom:352.335000px;}
.y52{bottom:353.055000px;}
.y23{bottom:353.595000px;}
.y20f{bottom:353.775000px;}
.y1eb{bottom:354.495000px;}
.y172{bottom:356.655000px;}
.y1ba{bottom:358.455000px;}
.yf6{bottom:359.715000px;}
.y1de{bottom:359.895000px;}
.y189{bottom:362.415000px;}
.y1a7{bottom:364.035000px;}
.y158{bottom:368.715000px;}
.y12a{bottom:371.415000px;}
.y74{bottom:372.135000px;}
.yc1{bottom:372.855000px;}
.y96{bottom:373.035000px;}
.y51{bottom:373.755000px;}
.y22{bottom:374.295000px;}
.ye4{bottom:376.455000px;}
.y171{bottom:377.355000px;}
.y1b9{bottom:379.155000px;}
.y1dd{bottom:380.595000px;}
.yb0{bottom:381.135000px;}
.y20e{bottom:384.555000px;}
.y1a6{bottom:384.735000px;}
.y1ea{bottom:385.275000px;}
.y157{bottom:389.415000px;}
.y129{bottom:392.115000px;}
.y73{bottom:392.835000px;}
.yc0{bottom:393.375000px;}
.y95{bottom:393.735000px;}
.y50{bottom:394.455000px;}
.y21{bottom:394.995000px;}
.y114{bottom:396.255000px;}
.y170{bottom:398.055000px;}
.y1b8{bottom:399.855000px;}
.y1dc{bottom:401.295000px;}
.yaf{bottom:401.835000px;}
.y230{bottom:403.635000px;}
.y20d{bottom:403.815000px;}
.y1e9{bottom:404.535000px;}
.y1a5{bottom:405.435000px;}
.y156{bottom:410.115000px;}
.y128{bottom:412.815000px;}
.y72{bottom:413.535000px;}
.ybf{bottom:414.075000px;}
.y94{bottom:414.435000px;}
.y4f{bottom:415.155000px;}
.y20{bottom:415.695000px;}
.y1b7{bottom:420.555000px;}
.ye3{bottom:420.735000px;}
.y1db{bottom:421.995000px;}
.yae{bottom:422.535000px;}
.y186{bottom:422.715000px;}
.y1e8{bottom:423.435000px;}
.y145{bottom:424.155000px;}
.y1a4{bottom:426.135000px;}
.y155{bottom:430.815000px;}
.y127{bottom:433.515000px;}
.y71{bottom:434.235000px;}
.y20c{bottom:434.595000px;}
.ybe{bottom:434.775000px;}
.y93{bottom:435.135000px;}
.y4e{bottom:435.855000px;}
.y1f{bottom:436.395000px;}
.y1da{bottom:442.695000px;}
.yad{bottom:443.235000px;}
.y1a3{bottom:446.835000px;}
.y154{bottom:451.515000px;}
.ye2{bottom:452.235000px;}
.y22f{bottom:453.495000px;}
.y126{bottom:454.215000px;}
.y70{bottom:454.935000px;}
.ybd{bottom:455.475000px;}
.y92{bottom:455.835000px;}
.y4d{bottom:456.375000px;}
.y1e{bottom:457.095000px;}
.y1b6{bottom:459.075000px;}
.y1d9{bottom:463.395000px;}
.yac{bottom:463.935000px;}
.y20b{bottom:465.555000px;}
.y1a2{bottom:467.535000px;}
.y153{bottom:472.215000px;}
.y22e{bottom:472.575000px;}
.ye1{bottom:472.935000px;}
.y1e7{bottom:473.475000px;}
.y125{bottom:474.915000px;}
.y6f{bottom:475.635000px;}
.ybc{bottom:476.175000px;}
.y91{bottom:476.535000px;}
.y4c{bottom:477.075000px;}
.y1d{bottom:477.795000px;}
.y188{bottom:483.015000px;}
.y1d8{bottom:484.095000px;}
.y141{bottom:484.275000px;}
.yab{bottom:484.635000px;}
.y1a1{bottom:488.235000px;}
.y1e6{bottom:492.375000px;}
.y152{bottom:492.915000px;}
.ye0{bottom:493.635000px;}
.ybb{bottom:496.875000px;}
.y90{bottom:497.235000px;}
.y4b{bottom:497.775000px;}
.y1c{bottom:498.495000px;}
.y22d{bottom:503.535000px;}
.y20a{bottom:503.715000px;}
.y1d7{bottom:504.795000px;}
.yaa{bottom:505.335000px;}
.y1a0{bottom:508.935000px;}
.y124{bottom:510.375000px;}
.y151{bottom:513.615000px;}
.ydf{bottom:514.335000px;}
.y113{bottom:515.775000px;}
.y6e{bottom:517.215000px;}
.yba{bottom:517.575000px;}
.y8f{bottom:517.935000px;}
.y4a{bottom:518.475000px;}
.y1b{bottom:519.195000px;}
.y22c{bottom:522.615000px;}
.y1e5{bottom:523.155000px;}
.y143{bottom:525.135000px;}
.ya9{bottom:526.035000px;}
.y19f{bottom:529.635000px;}
.y150{bottom:534.315000px;}
.y209{bottom:534.495000px;}
.y185{bottom:534.855000px;}
.yde{bottom:535.035000px;}
.yb9{bottom:538.275000px;}
.y8e{bottom:538.635000px;}
.y49{bottom:539.175000px;}
.y1a{bottom:539.895000px;}
.y22b{bottom:541.515000px;}
.y1e4{bottom:542.415000px;}
.y1d6{bottom:546.555000px;}
.ya8{bottom:546.735000px;}
.y19e{bottom:550.335000px;}
.y208{bottom:553.575000px;}
.y10f{bottom:555.195000px;}
.ydd{bottom:555.735000px;}
.y6d{bottom:558.975000px;}
.y8d{bottom:559.335000px;}
.y48{bottom:559.875000px;}
.y19{bottom:560.595000px;}
.y1e3{bottom:561.315000px;}
.y184{bottom:566.385000px;}
.ya7{bottom:567.465000px;}
.y14f{bottom:569.805000px;}
.y19d{bottom:571.065000px;}
.ydc{bottom:576.465000px;}
.y140{bottom:577.005000px;}
.y22a{bottom:579.525000px;}
.y6c{bottom:579.705000px;}
.y8c{bottom:580.065000px;}
.y1e2{bottom:580.245000px;}
.y47{bottom:580.605000px;}
.y18{bottom:581.325000px;}
.y207{bottom:584.385000px;}
.y183{bottom:587.085000px;}
.ya6{bottom:588.165000px;}
.y11f{bottom:591.405000px;}
.y19c{bottom:591.765000px;}
.ydb{bottom:597.165000px;}
.y6b{bottom:600.405000px;}
.y8b{bottom:600.765000px;}
.y46{bottom:601.305000px;}
.y206{bottom:603.645000px;}
.y182{bottom:607.785000px;}
.y13f{bottom:608.505000px;}
.ya5{bottom:608.865000px;}
.y1d5{bottom:609.225000px;}
.y229{bottom:610.305000px;}
.y19b{bottom:612.465000px;}
.yda{bottom:617.865000px;}
.y1e1{bottom:620.565000px;}
.y6a{bottom:621.105000px;}
.y8a{bottom:621.465000px;}
.y45{bottom:622.005000px;}
.y205{bottom:622.545000px;}
.y17{bottom:622.905000px;}
.y181{bottom:628.485000px;}
.y13e{bottom:629.205000px;}
.y1d4{bottom:629.925000px;}
.y19a{bottom:633.165000px;}
.y10d{bottom:636.045000px;}
.yf2{bottom:636.765000px;}
.yd9{bottom:638.565000px;}
.y228{bottom:641.265000px;}
.y69{bottom:641.805000px;}
.y89{bottom:642.165000px;}
.y44{bottom:642.705000px;}
.y180{bottom:649.185000px;}
.y13d{bottom:649.905000px;}
.ya4{bottom:650.445000px;}
.y1d3{bottom:650.625000px;}
.y14e{bottom:650.805000px;}
.y204{bottom:653.325000px;}
.y199{bottom:653.865000px;}
.yd8{bottom:659.265000px;}
.y227{bottom:660.525000px;}
.y68{bottom:662.505000px;}
.y88{bottom:662.865000px;}
.y43{bottom:663.405000px;}
.y17f{bottom:669.885000px;}
.y13c{bottom:670.605000px;}
.y1d2{bottom:671.325000px;}
.y203{bottom:672.405000px;}
.y16a{bottom:675.285000px;}
.y67{bottom:683.205000px;}
.y87{bottom:683.565000px;}
.y42{bottom:684.105000px;}
.y16{bottom:685.185000px;}
.y243{bottom:685.365000px;}
.y17e{bottom:690.585000px;}
.y13b{bottom:691.305000px;}
.y1d1{bottom:692.025000px;}
.y198{bottom:695.445000px;}
.yd7{bottom:700.845000px;}
.y202{bottom:703.185000px;}
.y66{bottom:703.905000px;}
.y15{bottom:704.265000px;}
.y242{bottom:704.445000px;}
.y41{bottom:704.805000px;}
.y226{bottom:710.385000px;}
.y17d{bottom:711.285000px;}
.y1d0{bottom:712.725000px;}
.y201{bottom:722.445000px;}
.y241{bottom:723.345000px;}
.y65{bottom:724.605000px;}
.y86{bottom:724.965000px;}
.y40{bottom:725.505000px;}
.y13a{bottom:726.765000px;}
.y17c{bottom:731.985000px;}
.y1cf{bottom:733.425000px;}
.y169{bottom:735.405000px;}
.y197{bottom:737.205000px;}
.y225{bottom:741.165000px;}
.y240{bottom:742.425000px;}
.yd6{bottom:742.605000px;}
.y14{bottom:744.405000px;}
.y64{bottom:745.305000px;}
.y85{bottom:745.665000px;}
.y3f{bottom:746.205000px;}
.y11e{bottom:752.325000px;}
.y17b{bottom:752.685000px;}
.y200{bottom:753.225000px;}
.y1ce{bottom:754.125000px;}
.y10c{bottom:755.565000px;}
.yee{bottom:756.285000px;}
.y196{bottom:757.905000px;}
.y1b5{bottom:759.165000px;}
.y224{bottom:760.425000px;}
.y23f{bottom:761.325000px;}
.y13{bottom:763.305000px;}
.y63{bottom:766.005000px;}
.y84{bottom:766.365000px;}
.y3e{bottom:766.905000px;}
.y14d{bottom:770.325000px;}
.y1ff{bottom:772.305000px;}
.y17a{bottom:773.385000px;}
.y1cd{bottom:774.825000px;}
.y195{bottom:778.605000px;}
.y1b4{bottom:779.865000px;}
.y23e{bottom:780.225000px;}
.y12{bottom:782.205000px;}
.yd5{bottom:784.005000px;}
.y62{bottom:786.705000px;}
.y83{bottom:787.065000px;}
.y3d{bottom:787.605000px;}
.y223{bottom:791.205000px;}
.y179{bottom:794.085000px;}
.y108{bottom:794.985000px;}
.y1cc{bottom:795.525000px;}
.yf0{bottom:795.705000px;}
.y194{bottom:799.305000px;}
.y1b3{bottom:800.565000px;}
.y11{bottom:801.285000px;}
.y1fe{bottom:803.085000px;}
.yd4{bottom:804.705000px;}
.y61{bottom:807.405000px;}
.y134{bottom:807.585000px;}
.y82{bottom:807.765000px;}
.y3c{bottom:808.305000px;}
.y222{bottom:810.285000px;}
.y178{bottom:814.785000px;}
.y1cb{bottom:816.225000px;}
.y165{bottom:816.405000px;}
.y193{bottom:820.005000px;}
.y10{bottom:820.185000px;}
.y1b2{bottom:821.265000px;}
.y1fd{bottom:822.345000px;}
.yd3{bottom:825.405000px;}
.y60{bottom:828.105000px;}
.y81{bottom:828.465000px;}
.y3b{bottom:829.005000px;}
.y11c{bottom:830.445000px;}
.y10a{bottom:834.405000px;}
.y1ca{bottom:836.925000px;}
.yf{bottom:839.265000px;}
.y221{bottom:841.065000px;}
.y1fc{bottom:841.245000px;}
.yd2{bottom:846.105000px;}
.yed{bottom:847.770000px;}
.y5f{bottom:848.850000px;}
.y80{bottom:849.210000px;}
.y3a{bottom:849.750000px;}
.y177{bottom:850.290000px;}
.y23d{bottom:853.170000px;}
.y192{bottom:855.510000px;}
.ye{bottom:858.210000px;}
.y1b1{bottom:859.650000px;}
.y1fb{bottom:860.370000px;}
.yd1{bottom:866.850000px;}
.yb8{bottom:869.550000px;}
.y7f{bottom:869.910000px;}
.y39{bottom:870.450000px;}
.y220{bottom:872.070000px;}
.y23c{bottom:872.250000px;}
.yd{bottom:877.110000px;}
.y1c9{bottom:878.730000px;}
.y107{bottom:889.170000px;}
.y5e{bottom:890.610000px;}
.y38{bottom:891.150000px;}
.yc{bottom:896.190000px;}
.yd0{bottom:899.610000px;}
.y21f{bottom:903.030000px;}
.y1fa{bottom:910.230000px;}
.y9f{bottom:911.310000px;}
.y37{bottom:911.850000px;}
.yb{bottom:915.090000px;}
.ycf{bottom:920.310000px;}
.y11b{bottom:921.750000px;}
.y21e{bottom:922.290000px;}
.y1f9{bottom:929.310000px;}
.y176{bottom:931.290000px;}
.y9e{bottom:932.010000px;}
.y7e{bottom:932.190000px;}
.y36{bottom:932.550000px;}
.ya{bottom:934.170000px;}
.y164{bottom:935.970000px;}
.y190{bottom:936.510000px;}
.yce{bottom:941.010000px;}
.ya3{bottom:952.890000px;}
.y9{bottom:953.070000px;}
.y35{bottom:953.250000px;}
.y1f8{bottom:960.090000px;}
.ycd{bottom:961.710000px;}
.y133{bottom:968.550000px;}
.y8{bottom:971.970000px;}
.y21d{bottom:972.150000px;}
.y9d{bottom:973.590000px;}
.y34{bottom:973.950000px;}
.y1f7{bottom:979.170000px;}
.ycc{bottom:982.410000px;}
.y7{bottom:990.870000px;}
.y21c{bottom:991.230000px;}
.y33{bottom:994.650000px;}
.y162{bottom:996.090000px;}
.y23b{bottom:1002.930000px;}
.ycb{bottom:1003.110000px;}
.y175{bottom:1009.770000px;}
.y1f6{bottom:1009.950000px;}
.y32{bottom:1015.350000px;}
.y21b{bottom:1022.010000px;}
.yca{bottom:1023.810000px;}
.y1f5{bottom:1029.210000px;}
.y23a{bottom:1033.890000px;}
.y163{bottom:1035.510000px;}
.y18f{bottom:1035.690000px;}
.y31{bottom:1036.050000px;}
.y21a{bottom:1041.090000px;}
.yc9{bottom:1044.510000px;}
.y130{bottom:1049.370000px;}
.y239{bottom:1053.150000px;}
.y30{bottom:1056.750000px;}
.y1f4{bottom:1059.990000px;}
.y6{bottom:1061.250000px;}
.yc8{bottom:1065.210000px;}
.y219{bottom:1071.870000px;}
.y238{bottom:1072.050000px;}
.y18e{bottom:1075.290000px;}
.y2f{bottom:1077.450000px;}
.y1f3{bottom:1079.070000px;}
.y161{bottom:1087.350000px;}
.y132{bottom:1088.970000px;}
.y218{bottom:1091.130000px;}
.y5{bottom:1091.490000px;}
.yc7{bottom:1097.970000px;}
.y2e{bottom:1098.150000px;}
.y237{bottom:1102.830000px;}
.y1f2{bottom:1109.850000px;}
.y217{bottom:1110.030000px;}
.y4{bottom:1115.610000px;}
.y2d{bottom:1118.850000px;}
.y236{bottom:1122.090000px;}
.y2c{bottom:1139.580000px;}
.yc6{bottom:1139.760000px;}
.y12f{bottom:1140.840000px;}
.y235{bottom:1141.020000px;}
.y2{bottom:1177.380000px;}
.y5b{bottom:1185.660000px;}
.y1{bottom:1194.660000px;}
.h10{height:30.960000px;}
.he{height:31.140000px;}
.hf{height:31.176000px;}
.h12{height:38.700000px;}
.h1b{height:38.736000px;}
.h2a{height:38.880000px;}
.h21{height:40.140000px;}
.h17{height:41.436000px;}
.h6{height:47.836406px;}
.h2c{height:50.800781px;}
.h9{height:52.417969px;}
.hb{height:52.581797px;}
.h2{height:53.573906px;}
.h8{height:58.283437px;}
.h7{height:59.383125px;}
.h22{height:59.400000px;}
.h4{height:59.436914px;}
.h5{height:60.835430px;}
.ha{height:60.855469px;}
.h2d{height:61.197188px;}
.hc{height:63.351562px;}
.h3{height:64.546875px;}
.hd{height:70.606406px;}
.h1c{height:77.400000px;}
.h25{height:77.580000px;}
.h11{height:78.120000px;}
.h1a{height:78.156000px;}
.h1e{height:78.300000px;}
.h20{height:79.596000px;}
.h19{height:80.100000px;}
.h15{height:80.136000px;}
.h26{height:80.280000px;}
.h29{height:80.316000px;}
.h16{height:80.856000px;}
.h2b{height:98.460000px;}
.h27{height:99.000000px;}
.h18{height:118.620000px;}
.h24{height:118.656000px;}
.h13{height:118.800000px;}
.h28{height:119.016000px;}
.h23{height:154.830000px;}
.h1d{height:160.200000px;}
.h1f{height:160.230000px;}
.h14{height:276.330000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.wf{width:63.036000px;}
.w21{width:73.260000px;}
.w2b{width:73.620000px;}
.w1b{width:81.720000px;}
.w3{width:84.240000px;}
.w9{width:84.276000px;}
.w29{width:86.400000px;}
.w15{width:87.876000px;}
.w24{width:88.920000px;}
.w12{width:90.360000px;}
.wb{width:91.440000px;}
.w5{width:94.500000px;}
.w8{width:95.040000px;}
.w20{width:95.400000px;}
.w28{width:103.896000px;}
.w27{width:104.940000px;}
.w25{width:105.336000px;}
.w19{width:107.460000px;}
.w16{width:113.940000px;}
.w26{width:116.136000px;}
.w10{width:116.280000px;}
.wd{width:116.316000px;}
.w1a{width:116.496000px;}
.we{width:117.180000px;}
.w1c{width:117.396000px;}
.w18{width:118.656000px;}
.w1d{width:119.340000px;}
.w1f{width:120.456000px;}
.w2a{width:126.900000px;}
.w22{width:126.936000px;}
.w14{width:131.076000px;}
.w1e{width:148.176000px;}
.w7{width:158.610000px;}
.wa{width:158.790000px;}
.w17{width:160.950000px;}
.w23{width:169.410000px;}
.w11{width:171.570000px;}
.w6{width:584.025000px;}
.wc{width:587.265000px;}
.w13{width:588.345000px;}
.w4{width:594.825000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1a{left:7.740000px;}
.x17{left:9.360000px;}
.x49{left:10.620000px;}
.x23{left:14.040000px;}
.x2e{left:18.180000px;}
.x13{left:19.980000px;}
.x3a{left:21.060000px;}
.xb{left:23.040000px;}
.x15{left:24.660000px;}
.x19{left:26.280000px;}
.x32{left:27.360000px;}
.x21{left:30.960000px;}
.x26{left:32.760000px;}
.x47{left:34.380000px;}
.xe{left:35.640000px;}
.xf{left:37.080000px;}
.x33{left:38.160000px;}
.x27{left:39.600000px;}
.x1c{left:41.040000px;}
.x2c{left:45.000000px;}
.x36{left:47.160000px;}
.xd{left:50.220000px;}
.x28{left:52.020000px;}
.x3b{left:53.640000px;}
.x41{left:56.910000px;}
.x11{left:58.680000px;}
.x37{left:62.100000px;}
.x1d{left:63.390000px;}
.x4a{left:64.440000px;}
.x3c{left:67.545000px;}
.x1b{left:73.080000px;}
.x45{left:74.925000px;}
.x42{left:78.120000px;}
.x29{left:79.380000px;}
.x1{left:106.415987px;}
.x3{left:115.775987px;}
.x9{left:133.235987px;}
.x8{left:138.275987px;}
.x6{left:148.895987px;}
.xa{left:159.869987px;}
.x2b{left:183.825000px;}
.xc{left:191.730000px;}
.x2a{left:198.210000px;}
.x1e{left:199.290000px;}
.x10{left:202.530000px;}
.x1f{left:204.525000px;}
.x5{left:225.389987px;}
.x43{left:287.850000px;}
.x4{left:308.054987px;}
.x20{left:316.335000px;}
.x34{left:317.595000px;}
.x3d{left:319.395000px;}
.x2d{left:330.015000px;}
.x12{left:361.875000px;}
.x44{left:393.915000px;}
.x3e{left:415.515000px;}
.x2f{left:422.175000px;}
.x46{left:423.255000px;}
.x35{left:425.775000px;}
.x22{left:434.235000px;}
.x38{left:436.395000px;}
.x4b{left:447.015000px;}
.x14{left:457.635000px;}
.x3f{left:489.495000px;}
.x24{left:497.985000px;}
.x30{left:510.945000px;}
.x48{left:527.865000px;}
.x16{left:542.805000px;}
.x39{left:553.425000px;}
.x4c{left:564.045000px;}
.x25{left:614.985000px;}
.x40{left:617.145000px;}
.x31{left:625.605000px;}
.x18{left:627.765000px;}
.x7{left:638.204987px;}
.x2{left:768.569987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.ls39{letter-spacing:-3.472000pt;}
.ls36{letter-spacing:-1.920000pt;}
.ls3f{letter-spacing:-1.280000pt;}
.ls31{letter-spacing:-0.896000pt;}
.ls29{letter-spacing:-0.832000pt;}
.ls3e{letter-spacing:-0.773333pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.576000pt;}
.ls13{letter-spacing:-0.512000pt;}
.ls35{letter-spacing:-0.406933pt;}
.ls2f{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.368533pt;}
.ls41{letter-spacing:-0.271467pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls3a{letter-spacing:-0.201067pt;}
.ls18{letter-spacing:-0.198933pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.135467pt;}
.ls30{letter-spacing:-0.128000pt;}
.ls3c{letter-spacing:-0.079467pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.032000pt;}
.lse{letter-spacing:0.064000pt;}
.ls2d{letter-spacing:0.096000pt;}
.ls3d{letter-spacing:0.097067pt;}
.ls11{letter-spacing:0.128000pt;}
.ls3b{letter-spacing:0.135467pt;}
.ls3{letter-spacing:0.135680pt;}
.ls17{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.170667pt;}
.ls19{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.232960pt;}
.ls34{letter-spacing:0.233067pt;}
.ls1d{letter-spacing:0.234667pt;}
.lsb{letter-spacing:0.256000pt;}
.ls37{letter-spacing:0.271360pt;}
.ls1{letter-spacing:0.271467pt;}
.ls25{letter-spacing:0.298667pt;}
.ls6{letter-spacing:0.303467pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.384000pt;}
.ls15{letter-spacing:0.448000pt;}
.ls16{letter-spacing:0.640000pt;}
.ls2b{letter-spacing:0.704000pt;}
.ls2a{letter-spacing:0.768000pt;}
.ls22{letter-spacing:1.280000pt;}
.ls27{letter-spacing:4.480000pt;}
.ls32{letter-spacing:4.640000pt;}
.ls21{letter-spacing:5.120000pt;}
.ls12{letter-spacing:5.280000pt;}
.ls2e{letter-spacing:5.760000pt;}
.ls40{letter-spacing:7.680000pt;}
.ls24{letter-spacing:8.320000pt;}
.ls26{letter-spacing:12.160000pt;}
.ls23{letter-spacing:13.440000pt;}
.ls38{letter-spacing:14.240000pt;}
.ls2c{letter-spacing:14.720000pt;}
.ls1f{letter-spacing:16.000000pt;}
.ls1e{letter-spacing:16.640000pt;}
.ls33{letter-spacing:28.160000pt;}
.ls1a{letter-spacing:28.906667pt;}
.ls28{letter-spacing:29.440000pt;}
.ls1b{letter-spacing:30.186667pt;}
.ls14{letter-spacing:47.488000pt;}
.ls4{letter-spacing:48.128000pt;}
.ws13{word-spacing:-64.000000pt;}
.ws3{word-spacing:-19.040000pt;}
.ws2{word-spacing:-19.023467pt;}
.ws12{word-spacing:-16.448000pt;}
.wsb{word-spacing:-16.256000pt;}
.ws11{word-spacing:-16.192000pt;}
.wsf{word-spacing:-16.128000pt;}
.ws14{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.936000pt;}
.ws16{word-spacing:-15.872000pt;}
.wsc{word-spacing:-15.808000pt;}
.wsd{word-spacing:-15.744000pt;}
.ws15{word-spacing:-15.616000pt;}
.wse{word-spacing:-15.424000pt;}
.ws5{word-spacing:-14.991467pt;}
.ws17{word-spacing:-14.953067pt;}
.ws1c{word-spacing:-14.817067pt;}
.ws8{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.584533pt;}
.ws1d{word-spacing:-14.448533pt;}
.ws9{word-spacing:-14.351467pt;}
.ws18{word-spacing:-14.313067pt;}
.ws7{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws19{word-spacing:-12.800000pt;}
.ws10{word-spacing:-10.521067pt;}
.ws1b{word-spacing:-9.200533pt;}
.ws1a{word-spacing:-9.078933pt;}
.wsa{word-spacing:0.000000pt;}
._36{margin-left:-7.793067pt;}
._1c{margin-left:-6.415573pt;}
._15{margin-left:-4.551467pt;}
._12{margin-left:-3.217067pt;}
._16{margin-left:-2.109440pt;}
._2{margin-left:-1.198080pt;}
._0{width:1.009280pt;}
._1{width:1.922987pt;}
._d{width:3.237547pt;}
._e{width:4.307627pt;}
._14{width:6.080000pt;}
._8{width:7.387307pt;}
._9{width:8.538880pt;}
._3{width:10.121387pt;}
._4{width:11.076693pt;}
._18{width:12.778667pt;}
._10{width:13.749333pt;}
._17{width:14.784000pt;}
._7{width:16.482987pt;}
._1a{width:17.721387pt;}
._19{width:18.880000pt;}
._f{width:19.940053pt;}
._5{width:21.331627pt;}
._6{width:22.287787pt;}
._1b{width:23.237120pt;}
._11{width:24.531627pt;}
._13{width:25.580800pt;}
._1d{width:26.583040pt;}
._b{width:27.603840pt;}
._a{width:28.507307pt;}
._c{width:29.425280pt;}
._20{width:30.360320pt;}
._1e{width:31.310720pt;}
._1f{width:32.814080pt;}
._22{width:34.311467pt;}
._24{width:35.512533pt;}
._25{width:36.786133pt;}
._29{width:37.944320pt;}
._23{width:38.925867pt;}
._21{width:39.986133pt;}
._32{width:41.280000pt;}
._28{width:42.218667pt;}
._37{width:46.242987pt;}
._34{width:47.168000pt;}
._30{width:51.520000pt;}
._2c{width:52.786133pt;}
._27{width:54.029867pt;}
._26{width:55.090133pt;}
._35{width:56.704000pt;}
._39{width:60.874880pt;}
._2b{width:64.320000pt;}
._31{width:65.536000pt;}
._2d{width:81.024000pt;}
._2a{width:83.648000pt;}
._38{width:89.674240pt;}
._33{width:97.344000pt;}
._2f{width:98.538667pt;}
._2e{width:158.464000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yeb{bottom:12.640000pt;}
.ye5{bottom:12.800000pt;}
.y119{bottom:19.360000pt;}
.yf1{bottom:19.520000pt;}
.y112{bottom:19.546667pt;}
.y106{bottom:19.560000pt;}
.y144{bottom:20.800000pt;}
.y10b{bottom:21.960000pt;}
.y118{bottom:37.760000pt;}
.y102{bottom:37.920000pt;}
.y111{bottom:37.946667pt;}
.y105{bottom:37.960000pt;}
.y3{bottom:51.392000pt;}
.y149{bottom:51.560000pt;}
.y5d{bottom:52.352000pt;}
.yf5{bottom:53.920000pt;}
.y14b{bottom:53.960000pt;}
.yef{bottom:54.560000pt;}
.y11d{bottom:54.600000pt;}
.y131{bottom:54.720000pt;}
.y142{bottom:55.840000pt;}
.y116{bottom:56.160000pt;}
.y168{bottom:56.200000pt;}
.y10e{bottom:56.320000pt;}
.y110{bottom:56.346667pt;}
.y104{bottom:56.360000pt;}
.y109{bottom:57.000000pt;}
.y137{bottom:58.760000pt;}
.y148{bottom:69.960000pt;}
.y5c{bottom:70.912000pt;}
.y117{bottom:72.160000pt;}
.y167{bottom:72.200000pt;}
.yf4{bottom:72.320000pt;}
.y191{bottom:72.480000pt;}
.y18d{bottom:72.520000pt;}
.y187{bottom:72.960000pt;}
.y122{bottom:74.720000pt;}
.y16e{bottom:74.746667pt;}
.y139{bottom:74.760000pt;}
.yfe{bottom:85.920000pt;}
.y14a{bottom:88.360000pt;}
.y115{bottom:90.560000pt;}
.y166{bottom:90.600000pt;}
.yf3{bottom:90.720000pt;}
.y16f{bottom:90.746667pt;}
.y18b{bottom:90.760000pt;}
.y18c{bottom:90.920000pt;}
.y123{bottom:93.120000pt;}
.y16c{bottom:93.146667pt;}
.y136{bottom:93.160000pt;}
.yfd{bottom:104.320000pt;}
.y147{bottom:104.360000pt;}
.y101{bottom:106.720000pt;}
.y121{bottom:109.120000pt;}
.y16d{bottom:109.146667pt;}
.y138{bottom:109.160000pt;}
.yfc{bottom:122.720000pt;}
.y146{bottom:122.760000pt;}
.y120{bottom:127.520000pt;}
.y16b{bottom:127.546667pt;}
.y135{bottom:127.560000pt;}
.yfb{bottom:141.120000pt;}
.y1b0{bottom:157.946667pt;}
.y100{bottom:159.520000pt;}
.y216{bottom:164.346667pt;}
.yec{bottom:164.506667pt;}
.y7d{bottom:165.146667pt;}
.ya2{bottom:165.946667pt;}
.y5a{bottom:166.586667pt;}
.y14c{bottom:166.906667pt;}
.y2b{bottom:167.066667pt;}
.yb7{bottom:172.666667pt;}
.yfa{bottom:175.520000pt;}
.y1f1{bottom:175.546667pt;}
.y1af{bottom:176.346667pt;}
.yff{bottom:177.920000pt;}
.y160{bottom:180.506667pt;}
.y1c8{bottom:181.146667pt;}
.y7c{bottom:183.546667pt;}
.ya1{bottom:184.346667pt;}
.y59{bottom:184.986667pt;}
.y2a{bottom:185.466667pt;}
.y1c1{bottom:189.946667pt;}
.yb6{bottom:191.066667pt;}
.y215{bottom:191.706667pt;}
.y1f0{bottom:192.666667pt;}
.yea{bottom:192.986667pt;}
.yf9{bottom:193.946667pt;}
.y1ae{bottom:194.746667pt;}
.y234{bottom:197.946667pt;}
.y15f{bottom:198.906667pt;}
.y1c7{bottom:199.546667pt;}
.y7b{bottom:201.946667pt;}
.ya0{bottom:202.746667pt;}
.y58{bottom:203.386667pt;}
.y29{bottom:203.866667pt;}
.y1c0{bottom:208.346667pt;}
.y214{bottom:208.826667pt;}
.yb5{bottom:209.466667pt;}
.yf8{bottom:212.346667pt;}
.y1ad{bottom:213.146667pt;}
.y233{bottom:214.906667pt;}
.y18a{bottom:215.546667pt;}
.y15e{bottom:217.306667pt;}
.y1c6{bottom:217.946667pt;}
.y7a{bottom:220.346667pt;}
.y9c{bottom:221.146667pt;}
.ye9{bottom:221.306667pt;}
.y57{bottom:221.786667pt;}
.y28{bottom:222.266667pt;}
.y213{bottom:225.626667pt;}
.y1bf{bottom:226.746667pt;}
.yb4{bottom:227.866667pt;}
.yf7{bottom:230.746667pt;}
.y1ac{bottom:231.546667pt;}
.y15d{bottom:235.706667pt;}
.y1c5{bottom:236.346667pt;}
.y1ef{bottom:236.826667pt;}
.y79{bottom:238.746667pt;}
.y9b{bottom:239.546667pt;}
.y56{bottom:240.186667pt;}
.y27{bottom:240.666667pt;}
.y232{bottom:242.426667pt;}
.y1be{bottom:245.146667pt;}
.yb3{bottom:246.266667pt;}
.y103{bottom:247.866667pt;}
.ye8{bottom:249.666667pt;}
.y1ab{bottom:249.986667pt;}
.y212{bottom:253.026667pt;}
.y15c{bottom:254.146667pt;}
.y1c4{bottom:254.786667pt;}
.y12e{bottom:256.546667pt;}
.y78{bottom:257.186667pt;}
.yc5{bottom:257.826667pt;}
.y9a{bottom:257.986667pt;}
.y55{bottom:258.626667pt;}
.y26{bottom:259.106667pt;}
.y231{bottom:259.426667pt;}
.y174{bottom:261.826667pt;}
.y1bd{bottom:263.586667pt;}
.y1ee{bottom:264.386667pt;}
.yb2{bottom:264.706667pt;}
.y1aa{bottom:268.386667pt;}
.y211{bottom:270.146667pt;}
.y15b{bottom:272.546667pt;}
.y1c3{bottom:273.186667pt;}
.y12d{bottom:274.946667pt;}
.y77{bottom:275.586667pt;}
.yc4{bottom:276.226667pt;}
.y99{bottom:276.386667pt;}
.y54{bottom:277.026667pt;}
.y25{bottom:277.506667pt;}
.ye7{bottom:277.986667pt;}
.y11a{bottom:280.226667pt;}
.y1ed{bottom:281.346667pt;}
.y1bc{bottom:281.826667pt;}
.y1e0{bottom:283.106667pt;}
.y1a9{bottom:286.786667pt;}
.y15a{bottom:290.946667pt;}
.y12c{bottom:293.346667pt;}
.y76{bottom:293.986667pt;}
.yc3{bottom:294.626667pt;}
.y98{bottom:294.786667pt;}
.y53{bottom:295.426667pt;}
.y24{bottom:295.906667pt;}
.y210{bottom:297.506667pt;}
.y1ec{bottom:298.306667pt;}
.y173{bottom:298.626667pt;}
.y1bb{bottom:300.226667pt;}
.y1df{bottom:301.506667pt;}
.yb1{bottom:301.666667pt;}
.y1a8{bottom:305.186667pt;}
.ye6{bottom:306.306667pt;}
.y1c2{bottom:307.586667pt;}
.y159{bottom:309.346667pt;}
.y12b{bottom:311.746667pt;}
.y75{bottom:312.386667pt;}
.yc2{bottom:313.026667pt;}
.y97{bottom:313.186667pt;}
.y52{bottom:313.826667pt;}
.y23{bottom:314.306667pt;}
.y20f{bottom:314.466667pt;}
.y1eb{bottom:315.106667pt;}
.y172{bottom:317.026667pt;}
.y1ba{bottom:318.626667pt;}
.yf6{bottom:319.746667pt;}
.y1de{bottom:319.906667pt;}
.y189{bottom:322.146667pt;}
.y1a7{bottom:323.586667pt;}
.y158{bottom:327.746667pt;}
.y12a{bottom:330.146667pt;}
.y74{bottom:330.786667pt;}
.yc1{bottom:331.426667pt;}
.y96{bottom:331.586667pt;}
.y51{bottom:332.226667pt;}
.y22{bottom:332.706667pt;}
.ye4{bottom:334.626667pt;}
.y171{bottom:335.426667pt;}
.y1b9{bottom:337.026667pt;}
.y1dd{bottom:338.306667pt;}
.yb0{bottom:338.786667pt;}
.y20e{bottom:341.826667pt;}
.y1a6{bottom:341.986667pt;}
.y1ea{bottom:342.466667pt;}
.y157{bottom:346.146667pt;}
.y129{bottom:348.546667pt;}
.y73{bottom:349.186667pt;}
.yc0{bottom:349.666667pt;}
.y95{bottom:349.986667pt;}
.y50{bottom:350.626667pt;}
.y21{bottom:351.106667pt;}
.y114{bottom:352.226667pt;}
.y170{bottom:353.826667pt;}
.y1b8{bottom:355.426667pt;}
.y1dc{bottom:356.706667pt;}
.yaf{bottom:357.186667pt;}
.y230{bottom:358.786667pt;}
.y20d{bottom:358.946667pt;}
.y1e9{bottom:359.586667pt;}
.y1a5{bottom:360.386667pt;}
.y156{bottom:364.546667pt;}
.y128{bottom:366.946667pt;}
.y72{bottom:367.586667pt;}
.ybf{bottom:368.066667pt;}
.y94{bottom:368.386667pt;}
.y4f{bottom:369.026667pt;}
.y20{bottom:369.506667pt;}
.y1b7{bottom:373.826667pt;}
.ye3{bottom:373.986667pt;}
.y1db{bottom:375.106667pt;}
.yae{bottom:375.586667pt;}
.y186{bottom:375.746667pt;}
.y1e8{bottom:376.386667pt;}
.y145{bottom:377.026667pt;}
.y1a4{bottom:378.786667pt;}
.y155{bottom:382.946667pt;}
.y127{bottom:385.346667pt;}
.y71{bottom:385.986667pt;}
.y20c{bottom:386.306667pt;}
.ybe{bottom:386.466667pt;}
.y93{bottom:386.786667pt;}
.y4e{bottom:387.426667pt;}
.y1f{bottom:387.906667pt;}
.y1da{bottom:393.506667pt;}
.yad{bottom:393.986667pt;}
.y1a3{bottom:397.186667pt;}
.y154{bottom:401.346667pt;}
.ye2{bottom:401.986667pt;}
.y22f{bottom:403.106667pt;}
.y126{bottom:403.746667pt;}
.y70{bottom:404.386667pt;}
.ybd{bottom:404.866667pt;}
.y92{bottom:405.186667pt;}
.y4d{bottom:405.666667pt;}
.y1e{bottom:406.306667pt;}
.y1b6{bottom:408.066667pt;}
.y1d9{bottom:411.906667pt;}
.yac{bottom:412.386667pt;}
.y20b{bottom:413.826667pt;}
.y1a2{bottom:415.586667pt;}
.y153{bottom:419.746667pt;}
.y22e{bottom:420.066667pt;}
.ye1{bottom:420.386667pt;}
.y1e7{bottom:420.866667pt;}
.y125{bottom:422.146667pt;}
.y6f{bottom:422.786667pt;}
.ybc{bottom:423.266667pt;}
.y91{bottom:423.586667pt;}
.y4c{bottom:424.066667pt;}
.y1d{bottom:424.706667pt;}
.y188{bottom:429.346667pt;}
.y1d8{bottom:430.306667pt;}
.y141{bottom:430.466667pt;}
.yab{bottom:430.786667pt;}
.y1a1{bottom:433.986667pt;}
.y1e6{bottom:437.666667pt;}
.y152{bottom:438.146667pt;}
.ye0{bottom:438.786667pt;}
.ybb{bottom:441.666667pt;}
.y90{bottom:441.986667pt;}
.y4b{bottom:442.466667pt;}
.y1c{bottom:443.106667pt;}
.y22d{bottom:447.586667pt;}
.y20a{bottom:447.746667pt;}
.y1d7{bottom:448.706667pt;}
.yaa{bottom:449.186667pt;}
.y1a0{bottom:452.386667pt;}
.y124{bottom:453.666667pt;}
.y151{bottom:456.546667pt;}
.ydf{bottom:457.186667pt;}
.y113{bottom:458.466667pt;}
.y6e{bottom:459.746667pt;}
.yba{bottom:460.066667pt;}
.y8f{bottom:460.386667pt;}
.y4a{bottom:460.866667pt;}
.y1b{bottom:461.506667pt;}
.y22c{bottom:464.546667pt;}
.y1e5{bottom:465.026667pt;}
.y143{bottom:466.786667pt;}
.ya9{bottom:467.586667pt;}
.y19f{bottom:470.786667pt;}
.y150{bottom:474.946667pt;}
.y209{bottom:475.106667pt;}
.y185{bottom:475.426667pt;}
.yde{bottom:475.586667pt;}
.yb9{bottom:478.466667pt;}
.y8e{bottom:478.786667pt;}
.y49{bottom:479.266667pt;}
.y1a{bottom:479.906667pt;}
.y22b{bottom:481.346667pt;}
.y1e4{bottom:482.146667pt;}
.y1d6{bottom:485.826667pt;}
.ya8{bottom:485.986667pt;}
.y19e{bottom:489.186667pt;}
.y208{bottom:492.066667pt;}
.y10f{bottom:493.506667pt;}
.ydd{bottom:493.986667pt;}
.y6d{bottom:496.866667pt;}
.y8d{bottom:497.186667pt;}
.y48{bottom:497.666667pt;}
.y19{bottom:498.306667pt;}
.y1e3{bottom:498.946667pt;}
.y184{bottom:503.453333pt;}
.ya7{bottom:504.413333pt;}
.y14f{bottom:506.493333pt;}
.y19d{bottom:507.613333pt;}
.ydc{bottom:512.413333pt;}
.y140{bottom:512.893333pt;}
.y22a{bottom:515.133333pt;}
.y6c{bottom:515.293333pt;}
.y8c{bottom:515.613333pt;}
.y1e2{bottom:515.773333pt;}
.y47{bottom:516.093333pt;}
.y18{bottom:516.733333pt;}
.y207{bottom:519.453333pt;}
.y183{bottom:521.853333pt;}
.ya6{bottom:522.813333pt;}
.y11f{bottom:525.693333pt;}
.y19c{bottom:526.013333pt;}
.ydb{bottom:530.813333pt;}
.y6b{bottom:533.693333pt;}
.y8b{bottom:534.013333pt;}
.y46{bottom:534.493333pt;}
.y206{bottom:536.573333pt;}
.y182{bottom:540.253333pt;}
.y13f{bottom:540.893333pt;}
.ya5{bottom:541.213333pt;}
.y1d5{bottom:541.533333pt;}
.y229{bottom:542.493333pt;}
.y19b{bottom:544.413333pt;}
.yda{bottom:549.213333pt;}
.y1e1{bottom:551.613333pt;}
.y6a{bottom:552.093333pt;}
.y8a{bottom:552.413333pt;}
.y45{bottom:552.893333pt;}
.y205{bottom:553.373333pt;}
.y17{bottom:553.693333pt;}
.y181{bottom:558.653333pt;}
.y13e{bottom:559.293333pt;}
.y1d4{bottom:559.933333pt;}
.y19a{bottom:562.813333pt;}
.y10d{bottom:565.373333pt;}
.yf2{bottom:566.013333pt;}
.yd9{bottom:567.613333pt;}
.y228{bottom:570.013333pt;}
.y69{bottom:570.493333pt;}
.y89{bottom:570.813333pt;}
.y44{bottom:571.293333pt;}
.y180{bottom:577.053333pt;}
.y13d{bottom:577.693333pt;}
.ya4{bottom:578.173333pt;}
.y1d3{bottom:578.333333pt;}
.y14e{bottom:578.493333pt;}
.y204{bottom:580.733333pt;}
.y199{bottom:581.213333pt;}
.yd8{bottom:586.013333pt;}
.y227{bottom:587.133333pt;}
.y68{bottom:588.893333pt;}
.y88{bottom:589.213333pt;}
.y43{bottom:589.693333pt;}
.y17f{bottom:595.453333pt;}
.y13c{bottom:596.093333pt;}
.y1d2{bottom:596.733333pt;}
.y203{bottom:597.693333pt;}
.y16a{bottom:600.253333pt;}
.y67{bottom:607.293333pt;}
.y87{bottom:607.613333pt;}
.y42{bottom:608.093333pt;}
.y16{bottom:609.053333pt;}
.y243{bottom:609.213333pt;}
.y17e{bottom:613.853333pt;}
.y13b{bottom:614.493333pt;}
.y1d1{bottom:615.133333pt;}
.y198{bottom:618.173333pt;}
.yd7{bottom:622.973333pt;}
.y202{bottom:625.053333pt;}
.y66{bottom:625.693333pt;}
.y15{bottom:626.013333pt;}
.y242{bottom:626.173333pt;}
.y41{bottom:626.493333pt;}
.y226{bottom:631.453333pt;}
.y17d{bottom:632.253333pt;}
.y1d0{bottom:633.533333pt;}
.y201{bottom:642.173333pt;}
.y241{bottom:642.973333pt;}
.y65{bottom:644.093333pt;}
.y86{bottom:644.413333pt;}
.y40{bottom:644.893333pt;}
.y13a{bottom:646.013333pt;}
.y17c{bottom:650.653333pt;}
.y1cf{bottom:651.933333pt;}
.y169{bottom:653.693333pt;}
.y197{bottom:655.293333pt;}
.y225{bottom:658.813333pt;}
.y240{bottom:659.933333pt;}
.yd6{bottom:660.093333pt;}
.y14{bottom:661.693333pt;}
.y64{bottom:662.493333pt;}
.y85{bottom:662.813333pt;}
.y3f{bottom:663.293333pt;}
.y11e{bottom:668.733333pt;}
.y17b{bottom:669.053333pt;}
.y200{bottom:669.533333pt;}
.y1ce{bottom:670.333333pt;}
.y10c{bottom:671.613333pt;}
.yee{bottom:672.253333pt;}
.y196{bottom:673.693333pt;}
.y1b5{bottom:674.813333pt;}
.y224{bottom:675.933333pt;}
.y23f{bottom:676.733333pt;}
.y13{bottom:678.493333pt;}
.y63{bottom:680.893333pt;}
.y84{bottom:681.213333pt;}
.y3e{bottom:681.693333pt;}
.y14d{bottom:684.733333pt;}
.y1ff{bottom:686.493333pt;}
.y17a{bottom:687.453333pt;}
.y1cd{bottom:688.733333pt;}
.y195{bottom:692.093333pt;}
.y1b4{bottom:693.213333pt;}
.y23e{bottom:693.533333pt;}
.y12{bottom:695.293333pt;}
.yd5{bottom:696.893333pt;}
.y62{bottom:699.293333pt;}
.y83{bottom:699.613333pt;}
.y3d{bottom:700.093333pt;}
.y223{bottom:703.293333pt;}
.y179{bottom:705.853333pt;}
.y108{bottom:706.653333pt;}
.y1cc{bottom:707.133333pt;}
.yf0{bottom:707.293333pt;}
.y194{bottom:710.493333pt;}
.y1b3{bottom:711.613333pt;}
.y11{bottom:712.253333pt;}
.y1fe{bottom:713.853333pt;}
.yd4{bottom:715.293333pt;}
.y61{bottom:717.693333pt;}
.y134{bottom:717.853333pt;}
.y82{bottom:718.013333pt;}
.y3c{bottom:718.493333pt;}
.y222{bottom:720.253333pt;}
.y178{bottom:724.253333pt;}
.y1cb{bottom:725.533333pt;}
.y165{bottom:725.693333pt;}
.y193{bottom:728.893333pt;}
.y10{bottom:729.053333pt;}
.y1b2{bottom:730.013333pt;}
.y1fd{bottom:730.973333pt;}
.yd3{bottom:733.693333pt;}
.y60{bottom:736.093333pt;}
.y81{bottom:736.413333pt;}
.y3b{bottom:736.893333pt;}
.y11c{bottom:738.173333pt;}
.y10a{bottom:741.693333pt;}
.y1ca{bottom:743.933333pt;}
.yf{bottom:746.013333pt;}
.y221{bottom:747.613333pt;}
.y1fc{bottom:747.773333pt;}
.yd2{bottom:752.093333pt;}
.yed{bottom:753.573333pt;}
.y5f{bottom:754.533333pt;}
.y80{bottom:754.853333pt;}
.y3a{bottom:755.333333pt;}
.y177{bottom:755.813333pt;}
.y23d{bottom:758.373333pt;}
.y192{bottom:760.453333pt;}
.ye{bottom:762.853333pt;}
.y1b1{bottom:764.133333pt;}
.y1fb{bottom:764.773333pt;}
.yd1{bottom:770.533333pt;}
.yb8{bottom:772.933333pt;}
.y7f{bottom:773.253333pt;}
.y39{bottom:773.733333pt;}
.y220{bottom:775.173333pt;}
.y23c{bottom:775.333333pt;}
.yd{bottom:779.653333pt;}
.y1c9{bottom:781.093333pt;}
.y107{bottom:790.373333pt;}
.y5e{bottom:791.653333pt;}
.y38{bottom:792.133333pt;}
.yc{bottom:796.613333pt;}
.yd0{bottom:799.653333pt;}
.y21f{bottom:802.693333pt;}
.y1fa{bottom:809.093333pt;}
.y9f{bottom:810.053333pt;}
.y37{bottom:810.533333pt;}
.yb{bottom:813.413333pt;}
.ycf{bottom:818.053333pt;}
.y11b{bottom:819.333333pt;}
.y21e{bottom:819.813333pt;}
.y1f9{bottom:826.053333pt;}
.y176{bottom:827.813333pt;}
.y9e{bottom:828.453333pt;}
.y7e{bottom:828.613333pt;}
.y36{bottom:828.933333pt;}
.ya{bottom:830.373333pt;}
.y164{bottom:831.973333pt;}
.y190{bottom:832.453333pt;}
.yce{bottom:836.453333pt;}
.ya3{bottom:847.013333pt;}
.y9{bottom:847.173333pt;}
.y35{bottom:847.333333pt;}
.y1f8{bottom:853.413333pt;}
.ycd{bottom:854.853333pt;}
.y133{bottom:860.933333pt;}
.y8{bottom:863.973333pt;}
.y21d{bottom:864.133333pt;}
.y9d{bottom:865.413333pt;}
.y34{bottom:865.733333pt;}
.y1f7{bottom:870.373333pt;}
.ycc{bottom:873.253333pt;}
.y7{bottom:880.773333pt;}
.y21c{bottom:881.093333pt;}
.y33{bottom:884.133333pt;}
.y162{bottom:885.413333pt;}
.y23b{bottom:891.493333pt;}
.ycb{bottom:891.653333pt;}
.y175{bottom:897.573333pt;}
.y1f6{bottom:897.733333pt;}
.y32{bottom:902.533333pt;}
.y21b{bottom:908.453333pt;}
.yca{bottom:910.053333pt;}
.y1f5{bottom:914.853333pt;}
.y23a{bottom:919.013333pt;}
.y163{bottom:920.453333pt;}
.y18f{bottom:920.613333pt;}
.y31{bottom:920.933333pt;}
.y21a{bottom:925.413333pt;}
.yc9{bottom:928.453333pt;}
.y130{bottom:932.773333pt;}
.y239{bottom:936.133333pt;}
.y30{bottom:939.333333pt;}
.y1f4{bottom:942.213333pt;}
.y6{bottom:943.333333pt;}
.yc8{bottom:946.853333pt;}
.y219{bottom:952.773333pt;}
.y238{bottom:952.933333pt;}
.y18e{bottom:955.813333pt;}
.y2f{bottom:957.733333pt;}
.y1f3{bottom:959.173333pt;}
.y161{bottom:966.533333pt;}
.y132{bottom:967.973333pt;}
.y218{bottom:969.893333pt;}
.y5{bottom:970.213333pt;}
.yc7{bottom:975.973333pt;}
.y2e{bottom:976.133333pt;}
.y237{bottom:980.293333pt;}
.y1f2{bottom:986.533333pt;}
.y217{bottom:986.693333pt;}
.y4{bottom:991.653333pt;}
.y2d{bottom:994.533333pt;}
.y236{bottom:997.413333pt;}
.y2c{bottom:1012.960000pt;}
.yc6{bottom:1013.120000pt;}
.y12f{bottom:1014.080000pt;}
.y235{bottom:1014.240000pt;}
.y2{bottom:1046.560000pt;}
.y5b{bottom:1053.920000pt;}
.y1{bottom:1061.920000pt;}
.h10{height:27.520000pt;}
.he{height:27.680000pt;}
.hf{height:27.712000pt;}
.h12{height:34.400000pt;}
.h1b{height:34.432000pt;}
.h2a{height:34.560000pt;}
.h21{height:35.680000pt;}
.h17{height:36.832000pt;}
.h6{height:42.521250pt;}
.h2c{height:45.156250pt;}
.h9{height:46.593750pt;}
.hb{height:46.739375pt;}
.h2{height:47.621250pt;}
.h8{height:51.807500pt;}
.h7{height:52.785000pt;}
.h22{height:52.800000pt;}
.h4{height:52.832812pt;}
.h5{height:54.075937pt;}
.ha{height:54.093750pt;}
.h2d{height:54.397500pt;}
.hc{height:56.312500pt;}
.h3{height:57.375000pt;}
.hd{height:62.761250pt;}
.h1c{height:68.800000pt;}
.h25{height:68.960000pt;}
.h11{height:69.440000pt;}
.h1a{height:69.472000pt;}
.h1e{height:69.600000pt;}
.h20{height:70.752000pt;}
.h19{height:71.200000pt;}
.h15{height:71.232000pt;}
.h26{height:71.360000pt;}
.h29{height:71.392000pt;}
.h16{height:71.872000pt;}
.h2b{height:87.520000pt;}
.h27{height:88.000000pt;}
.h18{height:105.440000pt;}
.h24{height:105.472000pt;}
.h13{height:105.600000pt;}
.h28{height:105.792000pt;}
.h23{height:137.626667pt;}
.h1d{height:142.400000pt;}
.h1f{height:142.426667pt;}
.h14{height:245.626667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.wf{width:56.032000pt;}
.w21{width:65.120000pt;}
.w2b{width:65.440000pt;}
.w1b{width:72.640000pt;}
.w3{width:74.880000pt;}
.w9{width:74.912000pt;}
.w29{width:76.800000pt;}
.w15{width:78.112000pt;}
.w24{width:79.040000pt;}
.w12{width:80.320000pt;}
.wb{width:81.280000pt;}
.w5{width:84.000000pt;}
.w8{width:84.480000pt;}
.w20{width:84.800000pt;}
.w28{width:92.352000pt;}
.w27{width:93.280000pt;}
.w25{width:93.632000pt;}
.w19{width:95.520000pt;}
.w16{width:101.280000pt;}
.w26{width:103.232000pt;}
.w10{width:103.360000pt;}
.wd{width:103.392000pt;}
.w1a{width:103.552000pt;}
.we{width:104.160000pt;}
.w1c{width:104.352000pt;}
.w18{width:105.472000pt;}
.w1d{width:106.080000pt;}
.w1f{width:107.072000pt;}
.w2a{width:112.800000pt;}
.w22{width:112.832000pt;}
.w14{width:116.512000pt;}
.w1e{width:131.712000pt;}
.w7{width:140.986667pt;}
.wa{width:141.146667pt;}
.w17{width:143.066667pt;}
.w23{width:150.586667pt;}
.w11{width:152.506667pt;}
.w6{width:519.133333pt;}
.wc{width:522.013333pt;}
.w13{width:522.973333pt;}
.w4{width:528.733333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1a{left:6.880000pt;}
.x17{left:8.320000pt;}
.x49{left:9.440000pt;}
.x23{left:12.480000pt;}
.x2e{left:16.160000pt;}
.x13{left:17.760000pt;}
.x3a{left:18.720000pt;}
.xb{left:20.480000pt;}
.x15{left:21.920000pt;}
.x19{left:23.360000pt;}
.x32{left:24.320000pt;}
.x21{left:27.520000pt;}
.x26{left:29.120000pt;}
.x47{left:30.560000pt;}
.xe{left:31.680000pt;}
.xf{left:32.960000pt;}
.x33{left:33.920000pt;}
.x27{left:35.200000pt;}
.x1c{left:36.480000pt;}
.x2c{left:40.000000pt;}
.x36{left:41.920000pt;}
.xd{left:44.640000pt;}
.x28{left:46.240000pt;}
.x3b{left:47.680000pt;}
.x41{left:50.586667pt;}
.x11{left:52.160000pt;}
.x37{left:55.200000pt;}
.x1d{left:56.346667pt;}
.x4a{left:57.280000pt;}
.x3c{left:60.040000pt;}
.x1b{left:64.960000pt;}
.x45{left:66.600000pt;}
.x42{left:69.440000pt;}
.x29{left:70.560000pt;}
.x1{left:94.591988pt;}
.x3{left:102.911988pt;}
.x9{left:118.431988pt;}
.x8{left:122.911988pt;}
.x6{left:132.351988pt;}
.xa{left:142.106655pt;}
.x2b{left:163.400000pt;}
.xc{left:170.426667pt;}
.x2a{left:176.186667pt;}
.x1e{left:177.146667pt;}
.x10{left:180.026667pt;}
.x1f{left:181.800000pt;}
.x5{left:200.346655pt;}
.x43{left:255.866667pt;}
.x4{left:273.826655pt;}
.x20{left:281.186667pt;}
.x34{left:282.306667pt;}
.x3d{left:283.906667pt;}
.x2d{left:293.346667pt;}
.x12{left:321.666667pt;}
.x44{left:350.146667pt;}
.x3e{left:369.346667pt;}
.x2f{left:375.266667pt;}
.x46{left:376.226667pt;}
.x35{left:378.466667pt;}
.x22{left:385.986667pt;}
.x38{left:387.906667pt;}
.x4b{left:397.346667pt;}
.x14{left:406.786667pt;}
.x3f{left:435.106667pt;}
.x24{left:442.653333pt;}
.x30{left:454.173333pt;}
.x48{left:469.213333pt;}
.x16{left:482.493333pt;}
.x39{left:491.933333pt;}
.x4c{left:501.373333pt;}
.x25{left:546.653333pt;}
.x40{left:548.573333pt;}
.x31{left:556.093333pt;}
.x18{left:558.013333pt;}
.x7{left:567.293322pt;}
.x2{left:683.173322pt;}
}




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