
    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_2c7eec6234a67f08ed2aefeb.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f1da5fc1090b97003409d78e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_eabe88362994a993c6a575a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.783691;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_eac7028027c107fd4ed83417.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0b094b9313ceaf16567bd3a5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_805b9e29d222ec41a7b0bddc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_3dd3bb6783ac1c60bd3af670.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4debc65fa94319a9efecd2a3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v7{vertical-align:-69.120000px;}
.v3{vertical-align:-65.520000px;}
.v2{vertical-align:-18.000000px;}
.v5{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:5.760000px;}
.v4{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.ls14{letter-spacing:-0.774000px;}
.ls9{letter-spacing:-0.726000px;}
.lsa{letter-spacing:-0.540000px;}
.ls2a{letter-spacing:-0.538800px;}
.lsb{letter-spacing:-0.460200px;}
.ls5{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.252000px;}
.ls17{letter-spacing:-0.233400px;}
.ls16{letter-spacing:-0.223800px;}
.ls24{letter-spacing:-0.106800px;}
.lse{letter-spacing:-0.053280px;}
.ls15{letter-spacing:-0.010080px;}
.ls4{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.033840px;}
.ls26{letter-spacing:0.045360px;}
.ls1e{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.156240px;}
.ls1{letter-spacing:0.180000px;}
.ls27{letter-spacing:0.181440px;}
.ls25{letter-spacing:0.206400px;}
.ls22{letter-spacing:0.206640px;}
.ls23{letter-spacing:0.223800px;}
.ls13{letter-spacing:0.243360px;}
.ls6{letter-spacing:0.259800px;}
.lsd{letter-spacing:0.259920px;}
.ls2b{letter-spacing:0.269400px;}
.ls20{letter-spacing:0.306720px;}
.ls0{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.511800px;}
.ls28{letter-spacing:2.340000px;}
.ls29{letter-spacing:3.060000px;}
.ls1f{letter-spacing:6.660000px;}
.ls21{letter-spacing:10.260000px;}
.lsf{letter-spacing:17.460000px;}
.ls1a{letter-spacing:23.220000px;}
.ls12{letter-spacing:31.860000px;}
.ls1b{letter-spacing:31.980000px;}
.ls18{letter-spacing:45.540000px;}
.ls19{letter-spacing:63.540000px;}
.ls3{letter-spacing:66.162720px;}
.lsc{letter-spacing:112.476000px;}
.ls10{letter-spacing:220.476000px;}
.ls1c{letter-spacing:240.636000px;}
.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;}
}
.ws14{word-spacing:-59.760000px;}
.wse{word-spacing:-30.240000px;}
.ws1{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.146400px;}
.ws12{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws11{word-spacing:-14.833200px;}
.ws0{word-spacing:-14.580000px;}
.ws9{word-spacing:-14.479800px;}
.ws6{word-spacing:-13.860000px;}
.ws5{word-spacing:-13.248000px;}
.ws10{word-spacing:-12.420000px;}
.ws15{word-spacing:-12.105360px;}
.wsb{word-spacing:-12.060000px;}
.wsd{word-spacing:-11.836200px;}
.ws16{word-spacing:-11.521200px;}
.ws2{word-spacing:-9.720000px;}
.ws7{word-spacing:-8.994000px;}
.ws3{word-spacing:-7.560000px;}
.wsc{word-spacing:-7.549920px;}
.wsf{word-spacing:-7.326600px;}
.ws8{word-spacing:0.000000px;}
._1e{margin-left:-3.236640px;}
._17{margin-left:-2.096880px;}
._1{margin-left:-1.075680px;}
._0{width:1.314720px;}
._2{width:2.594400px;}
._6{width:4.474800px;}
._e{width:5.526720px;}
._4{width:6.840000px;}
._7{width:8.220000px;}
._10{width:9.740880px;}
._8{width:10.908000px;}
._9{width:12.312000px;}
._f{width:13.798800px;}
._2c{width:14.884080px;}
._11{width:16.140720px;}
._12{width:17.584560px;}
._15{width:18.645120px;}
._16{width:19.661040px;}
._a{width:21.654000px;}
._1a{width:22.807440px;}
._1b{width:24.304320px;}
._1d{width:25.330320px;}
._1c{width:26.925840px;}
._d{width:27.993600px;}
._c{width:29.047680px;}
._b{width:30.186000px;}
._20{width:33.506640px;}
._23{width:35.708160px;}
._21{width:36.793440px;}
._26{width:41.163120px;}
._25{width:42.298320px;}
._1f{width:50.119920px;}
._24{width:51.153120px;}
._27{width:54.179280px;}
._28{width:55.621440px;}
._22{width:59.828160px;}
._2a{width:61.968000px;}
._29{width:63.672000px;}
._2b{width:72.235440px;}
._5{width:155.700000px;}
._13{width:509.086560px;}
._18{width:735.660000px;}
._14{width:865.686720px;}
._19{width:1073.100000px;}
._3{width:1101.912000px;}
.fc3{color:rgb(0,176,240);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:30.240000px;}
.fs2{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yc6{bottom:2.520000px;}
.ye2{bottom:2.565000px;}
.ye0{bottom:2.700000px;}
.ye3{bottom:2.745000px;}
.y2a{bottom:2.880000px;}
.y132{bottom:3.060000px;}
.y10{bottom:3.240000px;}
.yff{bottom:3.420000px;}
.y129{bottom:3.450000px;}
.y1de{bottom:3.780000px;}
.yc8{bottom:4.140000px;}
.yca{bottom:4.320000px;}
.y176{bottom:7.740000px;}
.y34{bottom:9.000000px;}
.y168{bottom:9.360000px;}
.y3a{bottom:12.240000px;}
.y173{bottom:16.380000px;}
.y102{bottom:17.100000px;}
.y128{bottom:17.130000px;}
.y136{bottom:17.145000px;}
.y104{bottom:17.280000px;}
.yfe{bottom:17.325000px;}
.y29{bottom:18.390000px;}
.y15{bottom:20.520000px;}
.y39{bottom:29.520000px;}
.y172{bottom:30.060000px;}
.y28{bottom:34.050000px;}
.y14{bottom:37.800000px;}
.y175{bottom:42.300000px;}
.y38{bottom:46.800000px;}
.y27{bottom:49.530000px;}
.y13{bottom:55.080000px;}
.y174{bottom:56.340000px;}
.y37{bottom:64.080000px;}
.y26{bottom:65.010000px;}
.y33{bottom:65.880000px;}
.y1e3{bottom:72.390000px;}
.y25{bottom:80.490000px;}
.y12{bottom:81.225000px;}
.y5{bottom:88.200000px;}
.y36{bottom:90.180000px;}
.y24{bottom:96.150000px;}
.y246{bottom:104.220000px;}
.y243{bottom:104.265000px;}
.y23{bottom:111.630000px;}
.yf5{bottom:117.900000px;}
.y85{bottom:118.260000px;}
.y32{bottom:118.830000px;}
.y1ff{bottom:118.980000px;}
.y1a4{bottom:119.700000px;}
.y242{bottom:119.745000px;}
.y4c{bottom:124.200000px;}
.y163{bottom:124.740000px;}
.y22{bottom:127.110000px;}
.y1d3{bottom:128.160000px;}
.y144{bottom:132.480000px;}
.y1fe{bottom:132.840000px;}
.y84{bottom:133.740000px;}
.yc1{bottom:135.036000px;}
.y23c{bottom:135.180000px;}
.yf4{bottom:135.216000px;}
.y241{bottom:135.225000px;}
.y31{bottom:136.110000px;}
.y1a3{bottom:137.016000px;}
.y4b{bottom:141.516000px;}
.y162{bottom:141.876000px;}
.y11d{bottom:142.416000px;}
.y21{bottom:142.590000px;}
.y23d{bottom:145.116000px;}
.y1d2{bottom:145.476000px;}
.y1fd{bottom:146.736000px;}
.y83{bottom:149.256000px;}
.y143{bottom:149.796000px;}
.yc0{bottom:152.310000px;}
.yf3{bottom:152.490000px;}
.y30{bottom:153.390000px;}
.y1a2{bottom:154.290000px;}
.y20{bottom:158.250000px;}
.y4a{bottom:158.790000px;}
.y161{bottom:159.150000px;}
.y11c{bottom:159.690000px;}
.y1fc{bottom:160.410000px;}
.y23b{bottom:160.770000px;}
.y1d1{bottom:162.750000px;}
.y82{bottom:165.090000px;}
.y142{bottom:167.070000px;}
.ybf{bottom:169.590000px;}
.yf2{bottom:169.770000px;}
.y2f{bottom:170.670000px;}
.y1a1{bottom:171.570000px;}
.y1f{bottom:173.730000px;}
.y1fb{bottom:174.270000px;}
.y49{bottom:175.890000px;}
.y160{bottom:176.430000px;}
.y11b{bottom:176.970000px;}
.y1d0{bottom:179.850000px;}
.y81{bottom:182.370000px;}
.y141{bottom:184.350000px;}
.y166{bottom:184.860000px;}
.yf1{bottom:186.150000px;}
.ybe{bottom:186.870000px;}
.y2e{bottom:187.950000px;}
.y1fa{bottom:188.130000px;}
.y1a0{bottom:188.850000px;}
.y1e{bottom:189.210000px;}
.y48{bottom:193.170000px;}
.y15f{bottom:193.710000px;}
.y11a{bottom:194.070000px;}
.y1cf{bottom:197.130000px;}
.y80{bottom:199.650000px;}
.yf0{bottom:200.010000px;}
.y140{bottom:201.630000px;}
.y1f9{bottom:201.810000px;}
.y165{bottom:202.140000px;}
.ybd{bottom:204.150000px;}
.y1d{bottom:204.690000px;}
.y2d{bottom:205.230000px;}
.y19f{bottom:205.950000px;}
.y47{bottom:210.450000px;}
.y15e{bottom:210.990000px;}
.y119{bottom:211.350000px;}
.yef{bottom:212.070000px;}
.y1ce{bottom:214.410000px;}
.y1f8{bottom:215.670000px;}
.y7f{bottom:216.930000px;}
.y13f{bottom:218.730000px;}
.y1c{bottom:220.350000px;}
.ybc{bottom:221.250000px;}
.y2c{bottom:222.330000px;}
.y19e{bottom:223.230000px;}
.yee{bottom:226.830000px;}
.y46{bottom:227.730000px;}
.y15d{bottom:228.090000px;}
.y118{bottom:228.630000px;}
.y1f7{bottom:229.530000px;}
.y1cd{bottom:231.690000px;}
.y7e{bottom:234.210000px;}
.y1b{bottom:235.830000px;}
.y13e{bottom:236.010000px;}
.ybb{bottom:238.530000px;}
.y19d{bottom:240.510000px;}
.yed{bottom:241.410000px;}
.y1f6{bottom:243.210000px;}
.y45{bottom:245.010000px;}
.y15c{bottom:245.370000px;}
.y117{bottom:245.910000px;}
.y2b{bottom:248.610000px;}
.y1cc{bottom:248.970000px;}
.y1a{bottom:251.310000px;}
.y7d{bottom:251.490000px;}
.y13d{bottom:253.290000px;}
.yec{bottom:255.270000px;}
.yba{bottom:255.810000px;}
.y1f5{bottom:257.070000px;}
.y19c{bottom:257.790000px;}
.y44{bottom:262.110000px;}
.y15b{bottom:262.650000px;}
.y116{bottom:263.190000px;}
.y1cb{bottom:266.250000px;}
.y19{bottom:266.835000px;}
.y7c{bottom:268.590000px;}
.yeb{bottom:270.030000px;}
.y13c{bottom:270.570000px;}
.y1f4{bottom:270.930000px;}
.yb9{bottom:273.090000px;}
.y19b{bottom:275.070000px;}
.y15a{bottom:279.210000px;}
.y43{bottom:279.390000px;}
.y115{bottom:280.470000px;}
.y1ca{bottom:283.350000px;}
.yea{bottom:284.610000px;}
.y7b{bottom:285.510000px;}
.yb8{bottom:290.370000px;}
.y13b{bottom:291.630000px;}
.y19a{bottom:292.350000px;}
.y159{bottom:293.070000px;}
.y42{bottom:296.670000px;}
.y114{bottom:297.570000px;}
.y1f3{bottom:298.470000px;}
.y13a{bottom:299.190000px;}
.ye9{bottom:299.370000px;}
.y1c9{bottom:300.630000px;}
.y7a{bottom:301.350000px;}
.y158{bottom:307.470000px;}
.yb7{bottom:307.650000px;}
.y199{bottom:309.450000px;}
.y1f2{bottom:312.330000px;}
.y23a{bottom:312.510000px;}
.ye8{bottom:313.230000px;}
.y139{bottom:313.410000px;}
.y41{bottom:313.950000px;}
.y113{bottom:314.850000px;}
.y1c8{bottom:317.910000px;}
.y79{bottom:318.630000px;}
.y157{bottom:324.030000px;}
.yb6{bottom:324.750000px;}
.y1f1{bottom:326.010000px;}
.y198{bottom:326.730000px;}
.ye7{bottom:327.810000px;}
.y239{bottom:328.350000px;}
.y40{bottom:331.230000px;}
.y112{bottom:332.130000px;}
.y1c7{bottom:335.190000px;}
.y156{bottom:335.370000px;}
.y78{bottom:335.910000px;}
.y1f0{bottom:339.870000px;}
.y138{bottom:341.850000px;}
.yb5{bottom:342.030000px;}
.ye6{bottom:342.570000px;}
.y197{bottom:344.010000px;}
.y238{bottom:344.730000px;}
.y3f{bottom:348.510000px;}
.y111{bottom:349.410000px;}
.y1c6{bottom:352.470000px;}
.y77{bottom:353.190000px;}
.y17{bottom:353.595000px;}
.y1ef{bottom:353.730000px;}
.y137{bottom:356.070000px;}
.ye5{bottom:357.330000px;}
.y237{bottom:358.590000px;}
.yb4{bottom:359.310000px;}
.y196{bottom:361.290000px;}
.y3e{bottom:365.610000px;}
.y110{bottom:366.690000px;}
.y1ee{bottom:368.130000px;}
.y1c5{bottom:369.750000px;}
.y76{bottom:370.470000px;}
.ye4{bottom:371.010000px;}
.y236{bottom:372.450000px;}
.yb3{bottom:376.590000px;}
.y195{bottom:378.570000px;}
.y3d{bottom:382.890000px;}
.y10f{bottom:383.970000px;}
.y1ed{bottom:385.410000px;}
.ye1{bottom:385.770000px;}
.y235{bottom:386.130000px;}
.y1c4{bottom:386.850000px;}
.y75{bottom:387.795000px;}
.yb2{bottom:393.915000px;}
.y194{bottom:395.895000px;}
.y135{bottom:398.955000px;}
.y234{bottom:400.035000px;}
.y3c{bottom:400.215000px;}
.ydf{bottom:400.575000px;}
.y10e{bottom:401.115000px;}
.y1ec{bottom:402.735000px;}
.y1c3{bottom:404.175000px;}
.y74{bottom:404.895000px;}
.yb1{bottom:411.195000px;}
.y193{bottom:412.995000px;}
.y134{bottom:413.715000px;}
.y233{bottom:413.895000px;}
.yde{bottom:415.155000px;}
.y3b{bottom:417.495000px;}
.y10d{bottom:418.395000px;}
.y1eb{bottom:420.015000px;}
.y1c2{bottom:421.455000px;}
.y73{bottom:422.175000px;}
.y133{bottom:427.395000px;}
.y232{bottom:427.575000px;}
.yb0{bottom:428.295000px;}
.ydd{bottom:429.735000px;}
.y192{bottom:430.275000px;}
.y10c{bottom:432.435000px;}
.y35{bottom:433.695000px;}
.y1ea{bottom:437.295000px;}
.y1c1{bottom:438.735000px;}
.y72{bottom:439.455000px;}
.y231{bottom:441.435000px;}
.y131{bottom:441.615000px;}
.yaf{bottom:445.575000px;}
.y191{bottom:447.555000px;}
.y1e9{bottom:454.395000px;}
.y230{bottom:455.295000px;}
.y1c0{bottom:456.015000px;}
.y71{bottom:456.735000px;}
.yae{bottom:462.855000px;}
.ydc{bottom:464.115000px;}
.y190{bottom:464.835000px;}
.y22f{bottom:468.975000px;}
.y1e8{bottom:471.675000px;}
.y1bf{bottom:473.115000px;}
.y70{bottom:474.015000px;}
.ydb{bottom:477.795000px;}
.yad{bottom:480.135000px;}
.y18f{bottom:482.115000px;}
.y22e{bottom:482.835000px;}
.y1e7{bottom:488.235000px;}
.y1be{bottom:490.395000px;}
.y6f{bottom:491.115000px;}
.y130{bottom:491.835000px;}
.yda{bottom:492.375000px;}
.y22d{bottom:496.695000px;}
.yac{bottom:497.055000px;}
.y18e{bottom:499.215000px;}
.y1e6{bottom:502.095000px;}
.y1bd{bottom:507.675000px;}
.y6e{bottom:508.395000px;}
.y12f{bottom:508.935000px;}
.yd9{bottom:509.655000px;}
.y22c{bottom:510.375000px;}
.yab{bottom:512.895000px;}
.y18d{bottom:516.495000px;}
.y22b{bottom:524.235000px;}
.y1bc{bottom:524.955000px;}
.y6d{bottom:525.675000px;}
.yd8{bottom:526.935000px;}
.y12e{bottom:529.995000px;}
.yaa{bottom:530.175000px;}
.y18c{bottom:533.775000px;}
.y12d{bottom:537.555000px;}
.y22a{bottom:538.095000px;}
.y1bb{bottom:542.235000px;}
.y6c{bottom:542.955000px;}
.yd7{bottom:544.215000px;}
.ya9{bottom:547.455000px;}
.y16{bottom:547.815000px;}
.y1e5{bottom:550.335000px;}
.y18b{bottom:551.055000px;}
.y12c{bottom:551.415000px;}
.y229{bottom:551.775000px;}
.y1ba{bottom:559.515000px;}
.y6b{bottom:560.235000px;}
.yd6{bottom:561.315000px;}
.y1e4{bottom:564.195000px;}
.ya8{bottom:564.555000px;}
.y228{bottom:565.635000px;}
.y18a{bottom:568.335000px;}
.y1e2{bottom:575.355000px;}
.y1b9{bottom:576.615000px;}
.y6a{bottom:577.515000px;}
.yd5{bottom:578.595000px;}
.y227{bottom:579.495000px;}
.y12b{bottom:579.855000px;}
.ya7{bottom:581.835000px;}
.y189{bottom:585.615000px;}
.y155{bottom:592.275000px;}
.y226{bottom:593.175000px;}
.y1b8{bottom:593.895000px;}
.y69{bottom:594.615000px;}
.yd4{bottom:595.875000px;}
.ya6{bottom:599.115000px;}
.y188{bottom:602.715000px;}
.y154{bottom:606.135000px;}
.y225{bottom:607.035000px;}
.y12a{bottom:608.295000px;}
.y1b7{bottom:611.175000px;}
.y68{bottom:611.895000px;}
.yd3{bottom:613.155000px;}
.ya5{bottom:616.395000px;}
.y187{bottom:619.995000px;}
.y224{bottom:620.895000px;}
.y153{bottom:624.315000px;}
.y1b6{bottom:628.455000px;}
.y67{bottom:629.175000px;}
.yd2{bottom:630.435000px;}
.y152{bottom:631.875000px;}
.ya4{bottom:633.315000px;}
.y223{bottom:634.575000px;}
.y18{bottom:636.015000px;}
.y127{bottom:636.915000px;}
.y186{bottom:637.275000px;}
.y151{bottom:645.765000px;}
.y66{bottom:646.485000px;}
.yd1{bottom:647.745000px;}
.y222{bottom:648.465000px;}
.ya3{bottom:649.185000px;}
.y126{bottom:651.525000px;}
.y247{bottom:652.065000px;}
.y185{bottom:654.585000px;}
.y221{bottom:662.325000px;}
.y1b5{bottom:663.045000px;}
.y65{bottom:663.765000px;}
.yd0{bottom:664.125000px;}
.y125{bottom:665.385000px;}
.y245{bottom:665.925000px;}
.ya2{bottom:666.465000px;}
.y184{bottom:671.865000px;}
.y150{bottom:674.205000px;}
.y220{bottom:676.005000px;}
.y1e1{bottom:676.185000px;}
.ycf{bottom:677.985000px;}
.y124{bottom:680.145000px;}
.y64{bottom:681.045000px;}
.ya1{bottom:683.745000px;}
.y14f{bottom:688.965000px;}
.y183{bottom:689.145000px;}
.y21f{bottom:689.865000px;}
.yce{bottom:691.845000px;}
.y1e0{bottom:693.465000px;}
.y123{bottom:694.725000px;}
.y1b4{bottom:697.425000px;}
.y63{bottom:698.145000px;}
.ya0{bottom:700.845000px;}
.y14e{bottom:702.825000px;}
.y21e{bottom:703.725000px;}
.ycd{bottom:703.905000px;}
.y182{bottom:706.245000px;}
.y10b{bottom:707.865000px;}
.y1df{bottom:710.745000px;}
.y1b3{bottom:714.705000px;}
.y62{bottom:715.425000px;}
.y21d{bottom:717.405000px;}
.y9f{bottom:718.125000px;}
.ycc{bottom:721.005000px;}
.y181{bottom:723.525000px;}
.y10a{bottom:725.145000px;}
.y1dd{bottom:728.025000px;}
.y122{bottom:729.645000px;}
.y14d{bottom:731.265000px;}
.y1b2{bottom:731.985000px;}
.y61{bottom:732.705000px;}
.y9e{bottom:735.405000px;}
.ycb{bottom:738.285000px;}
.y180{bottom:740.805000px;}
.y21c{bottom:745.125000px;}
.y14c{bottom:746.025000px;}
.y109{bottom:746.205000px;}
.y121{bottom:746.925000px;}
.y1b1{bottom:749.265000px;}
.y60{bottom:749.985000px;}
.y9d{bottom:752.685000px;}
.y108{bottom:753.765000px;}
.yc9{bottom:755.565000px;}
.y17f{bottom:758.085000px;}
.y21b{bottom:758.805000px;}
.y14b{bottom:759.705000px;}
.y120{bottom:764.205000px;}
.y1b0{bottom:766.545000px;}
.y5f{bottom:767.265000px;}
.y107{bottom:767.625000px;}
.y9c{bottom:769.965000px;}
.y21a{bottom:772.665000px;}
.yc7{bottom:772.845000px;}
.y14a{bottom:774.465000px;}
.y17e{bottom:775.365000px;}
.y1dc{bottom:780.945000px;}
.y11f{bottom:781.485000px;}
.y1af{bottom:783.645000px;}
.y5e{bottom:784.545000px;}
.y219{bottom:786.525000px;}
.y9b{bottom:787.245000px;}
.y149{bottom:789.045000px;}
.yc5{bottom:790.845000px;}
.y17d{bottom:792.645000px;}
.y11e{bottom:795.525000px;}
.y106{bottom:796.065000px;}
.y1db{bottom:798.225000px;}
.y218{bottom:800.205000px;}
.y1ae{bottom:800.925000px;}
.y5d{bottom:801.645000px;}
.y9a{bottom:804.165000px;}
.yc4{bottom:808.665000px;}
.y17c{bottom:809.745000px;}
.y105{bottom:810.825000px;}
.y217{bottom:814.065000px;}
.y244{bottom:814.785000px;}
.y1da{bottom:815.505000px;}
.y1ad{bottom:818.205000px;}
.y5c{bottom:818.925000px;}
.y99{bottom:820.005000px;}
.y11{bottom:820.185000px;}
.y148{bottom:823.245000px;}
.y103{bottom:824.505000px;}
.y17b{bottom:827.025000px;}
.y216{bottom:827.745000px;}
.y240{bottom:830.265000px;}
.y1d9{bottom:832.065000px;}
.y1ac{bottom:835.485000px;}
.y5b{bottom:836.205000px;}
.y98{bottom:837.105000px;}
.y215{bottom:841.605000px;}
.yc3{bottom:842.325000px;}
.y17a{bottom:844.305000px;}
.y1d8{bottom:845.745000px;}
.y147{bottom:851.685000px;}
.y1ab{bottom:852.765000px;}
.y101{bottom:853.125000px;}
.y5a{bottom:853.485000px;}
.y97{bottom:854.385000px;}
.y214{bottom:855.465000px;}
.yc2{bottom:856.185000px;}
.y1d7{bottom:860.325000px;}
.y179{bottom:861.585000px;}
.y100{bottom:867.705000px;}
.y146{bottom:868.245000px;}
.y213{bottom:869.145000px;}
.y1aa{bottom:869.865000px;}
.y59{bottom:870.765000px;}
.y96{bottom:871.665000px;}
.y1d6{bottom:877.605000px;}
.y145{bottom:879.405000px;}
.yfd{bottom:881.565000px;}
.y212{bottom:883.005000px;}
.y1a9{bottom:887.145000px;}
.y58{bottom:887.865000px;}
.y95{bottom:888.945000px;}
.y1d5{bottom:894.210000px;}
.y178{bottom:896.010000px;}
.yfc{bottom:896.370000px;}
.y211{bottom:896.910000px;}
.y1a8{bottom:904.470000px;}
.y57{bottom:905.190000px;}
.y94{bottom:906.270000px;}
.y1d4{bottom:907.890000px;}
.y210{bottom:910.590000px;}
.yfb{bottom:910.770000px;}
.y177{bottom:913.290000px;}
.y1a7{bottom:921.750000px;}
.y56{bottom:922.470000px;}
.y93{bottom:923.550000px;}
.y20f{bottom:924.450000px;}
.yf{bottom:925.170000px;}
.y164{bottom:927.330000px;}
.y20e{bottom:938.310000px;}
.y1a6{bottom:939.030000px;}
.y55{bottom:939.750000px;}
.y92{bottom:940.650000px;}
.yfa{bottom:945.150000px;}
.y20d{bottom:951.990000px;}
.y1a5{bottom:956.310000px;}
.ye{bottom:957.030000px;}
.y91{bottom:957.930000px;}
.yf9{bottom:959.010000px;}
.y20c{bottom:965.850000px;}
.y171{bottom:969.450000px;}
.yf8{bottom:973.410000px;}
.yd{bottom:974.310000px;}
.y90{bottom:975.210000px;}
.y23f{bottom:979.170000px;}
.y20b{bottom:979.710000px;}
.y170{bottom:983.310000px;}
.yf7{bottom:990.690000px;}
.y54{bottom:991.410000px;}
.y8f{bottom:992.490000px;}
.y20a{bottom:993.390000px;}
.y23e{bottom:994.650000px;}
.yc{bottom:995.190000px;}
.y16f{bottom:997.170000px;}
.y209{bottom:1007.250000px;}
.yf6{bottom:1007.970000px;}
.y53{bottom:1008.690000px;}
.yb{bottom:1009.050000px;}
.y8e{bottom:1009.410000px;}
.y16e{bottom:1010.850000px;}
.y208{bottom:1021.110000px;}
.ya{bottom:1022.910000px;}
.y16d{bottom:1024.710000px;}
.y8d{bottom:1025.250000px;}
.y52{bottom:1025.970000px;}
.y9{bottom:1032.810000px;}
.y207{bottom:1034.790000px;}
.y16c{bottom:1038.570000px;}
.y8c{bottom:1042.530000px;}
.y51{bottom:1043.250000px;}
.y206{bottom:1048.650000px;}
.y8{bottom:1050.090000px;}
.y16b{bottom:1052.250000px;}
.y8b{bottom:1059.810000px;}
.y50{bottom:1060.530000px;}
.y205{bottom:1062.510000px;}
.y16a{bottom:1066.110000px;}
.y7{bottom:1067.370000px;}
.y204{bottom:1076.190000px;}
.y8a{bottom:1076.910000px;}
.y4f{bottom:1077.810000px;}
.y167{bottom:1080.690000px;}
.y6{bottom:1086.630000px;}
.y203{bottom:1090.050000px;}
.y89{bottom:1094.190000px;}
.y169{bottom:1094.370000px;}
.y4e{bottom:1094.910000px;}
.y202{bottom:1103.910000px;}
.y88{bottom:1111.470000px;}
.y4{bottom:1112.190000px;}
.y201{bottom:1117.590000px;}
.y87{bottom:1128.750000px;}
.y3{bottom:1129.470000px;}
.y200{bottom:1131.450000px;}
.y2{bottom:1146.780000px;}
.y4d{bottom:1160.640000px;}
.y86{bottom:1161.000000px;}
.y1{bottom:1164.060000px;}
.h1f{height:13.680000px;}
.h18{height:13.860000px;}
.h1a{height:13.860150px;}
.h26{height:13.896000px;}
.h25{height:14.220000px;}
.h24{height:14.400000px;}
.h1b{height:14.580000px;}
.h23{height:14.616000px;}
.h1e{height:14.760000px;}
.h1c{height:14.796000px;}
.h2d{height:15.480000px;}
.h2b{height:15.660000px;}
.h15{height:17.100000px;}
.h13{height:17.280000px;}
.h7{height:26.280000px;}
.h28{height:27.540000px;}
.h21{height:28.440000px;}
.h20{height:28.476000px;}
.h22{height:28.620000px;}
.h6{height:29.678906px;}
.h16{height:41.726953px;}
.h17{height:47.344922px;}
.h1d{height:47.678906px;}
.h19{height:48.616875px;}
.hf{height:52.971680px;}
.hc{height:52.998047px;}
.h14{height:54.421875px;}
.h4{height:58.621992px;}
.h3{height:58.651172px;}
.h12{height:59.038594px;}
.h2{height:60.226875px;}
.h11{height:62.211094px;}
.h8{height:70.664062px;}
.h29{height:86.256000px;}
.he{height:87.480000px;}
.h5{height:96.508125px;}
.h9{height:104.256000px;}
.h10{height:113.220000px;}
.h2a{height:148.680000px;}
.h2c{height:148.860000px;}
.h2e{height:148.896000px;}
.h27{height:216.180000px;}
.hd{height:271.650000px;}
.hb{height:288.435000px;}
.ha{height:376.635000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:21.240000px;}
.w7{width:29.880000px;}
.w8{width:30.060000px;}
.w2d{width:35.100000px;}
.w28{width:35.280000px;}
.w2c{width:35.316000px;}
.w29{width:35.640000px;}
.w2e{width:36.036000px;}
.w2a{width:36.180000px;}
.w2f{width:36.360000px;}
.w30{width:36.540000px;}
.w2b{width:36.720000px;}
.wa{width:43.200000px;}
.wc{width:53.280000px;}
.wd{width:55.080000px;}
.wb{width:58.176000px;}
.w9{width:59.580000px;}
.w16{width:82.620000px;}
.we{width:84.960000px;}
.w24{width:87.156000px;}
.w14{width:90.180000px;}
.w25{width:91.800000px;}
.w1f{width:95.580000px;}
.w19{width:95.760000px;}
.w1d{width:109.440000px;}
.w10{width:111.240000px;}
.w15{width:111.636000px;}
.w1e{width:113.796000px;}
.w1a{width:117.036000px;}
.w34{width:122.400000px;}
.w22{width:131.220000px;}
.w17{width:133.056000px;}
.w11{width:133.596000px;}
.w20{width:148.896000px;}
.w27{width:158.070000px;}
.w1b{width:159.510000px;}
.w23{width:178.950000px;}
.w13{width:182.910000px;}
.w1c{width:191.550000px;}
.w33{width:198.570000px;}
.w18{width:201.990000px;}
.w3{width:209.010000px;}
.w31{width:214.770000px;}
.wf{width:219.495000px;}
.w32{width:244.290000px;}
.w12{width:304.455000px;}
.w26{width:337.575000px;}
.w21{width:337.710000px;}
.w5{width:433.155000px;}
.w35{width:552.885000px;}
.w6{width:663.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.100000px;}
.x3a{left:9.180000px;}
.xb{left:10.620000px;}
.x17{left:11.880000px;}
.x19{left:13.320000px;}
.x30{left:14.580000px;}
.x1b{left:16.200000px;}
.x3f{left:17.640000px;}
.x2e{left:20.520000px;}
.x1a{left:21.600000px;}
.x3d{left:22.680000px;}
.x1d{left:26.640000px;}
.x2c{left:28.080000px;}
.x1c{left:29.700000px;}
.x51{left:32.220000px;}
.x44{left:33.480000px;}
.x42{left:35.280000px;}
.x2b{left:38.025000px;}
.x43{left:39.420000px;}
.x50{left:40.545000px;}
.x25{left:42.120000px;}
.x23{left:45.000000px;}
.x24{left:46.980000px;}
.x2f{left:49.710000px;}
.x3c{left:51.165000px;}
.x2d{left:52.770000px;}
.x38{left:54.894000px;}
.x45{left:59.400000px;}
.x4f{left:71.685000px;}
.x31{left:74.520000px;}
.x53{left:84.090000px;}
.x20{left:88.065000px;}
.xd{left:106.560000px;}
.x63{left:114.294000px;}
.x4b{left:119.556000px;}
.x8{left:125.496000px;}
.x1{left:127.655987px;}
.x4d{left:133.236000px;}
.x32{left:138.275987px;}
.x4c{left:153.354000px;}
.x10{left:154.649987px;}
.x26{left:156.990000px;}
.x48{left:159.689987px;}
.x2{left:179.849987px;}
.xf{left:181.649987px;}
.x4{left:188.129987px;}
.x35{left:191.549987px;}
.x4a{left:212.609987px;}
.x64{left:241.950000px;}
.x4e{left:264.450000px;}
.x1f{left:267.510000px;}
.x37{left:275.429987px;}
.x47{left:278.714987px;}
.x54{left:286.095000px;}
.x1e{left:287.174987px;}
.x5{left:292.034987px;}
.x52{left:293.655000px;}
.x6{left:298.154987px;}
.x7{left:304.274987px;}
.x11{left:312.734987px;}
.x3e{left:319.035000px;}
.x55{left:321.375000px;}
.x39{left:329.655000px;}
.x34{left:332.894987px;}
.xa{left:334.515000px;}
.x27{left:339.915000px;}
.x61{left:343.155000px;}
.x13{left:351.614987px;}
.xc{left:355.755000px;}
.x56{left:357.015000px;}
.x57{left:393.195000px;}
.x14{left:395.535000px;}
.xe{left:425.055000px;}
.x40{left:428.475000px;}
.x28{left:430.095000px;}
.x15{left:455.115000px;}
.x3{left:457.274987px;}
.x58{left:466.095000px;}
.x21{left:487.005000px;}
.x59{left:501.405000px;}
.x16{left:513.285000px;}
.x5a{left:536.685000px;}
.x29{left:541.725000px;}
.x18{left:566.565000px;}
.x5b{left:571.965000px;}
.x62{left:587.445000px;}
.x22{left:598.245000px;}
.x5c{left:607.065000px;}
.x2a{left:624.345000px;}
.x3b{left:627.405000px;}
.x41{left:637.845000px;}
.x49{left:640.544987px;}
.x5d{left:642.345000px;}
.x46{left:647.384987px;}
.x33{left:672.089987px;}
.x36{left:675.509987px;}
.x5e{left:678.390000px;}
.x5f{left:714.750000px;}
.x60{left:749.850000px;}
.x12{left:756.870000px;}
@media print{
.v7{vertical-align:-61.440000pt;}
.v3{vertical-align:-58.240000pt;}
.v2{vertical-align:-16.000000pt;}
.v5{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:5.120000pt;}
.v4{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls14{letter-spacing:-0.688000pt;}
.ls9{letter-spacing:-0.645333pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls2a{letter-spacing:-0.478933pt;}
.lsb{letter-spacing:-0.409067pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.224000pt;}
.ls17{letter-spacing:-0.207467pt;}
.ls16{letter-spacing:-0.198933pt;}
.ls24{letter-spacing:-0.094933pt;}
.lse{letter-spacing:-0.047360pt;}
.ls15{letter-spacing:-0.008960pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.030080pt;}
.ls26{letter-spacing:0.040320pt;}
.ls1e{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.138880pt;}
.ls1{letter-spacing:0.160000pt;}
.ls27{letter-spacing:0.161280pt;}
.ls25{letter-spacing:0.183467pt;}
.ls22{letter-spacing:0.183680pt;}
.ls23{letter-spacing:0.198933pt;}
.ls13{letter-spacing:0.216320pt;}
.ls6{letter-spacing:0.230933pt;}
.lsd{letter-spacing:0.231040pt;}
.ls2b{letter-spacing:0.239467pt;}
.ls20{letter-spacing:0.272640pt;}
.ls0{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.454933pt;}
.ls28{letter-spacing:2.080000pt;}
.ls29{letter-spacing:2.720000pt;}
.ls1f{letter-spacing:5.920000pt;}
.ls21{letter-spacing:9.120000pt;}
.lsf{letter-spacing:15.520000pt;}
.ls1a{letter-spacing:20.640000pt;}
.ls12{letter-spacing:28.320000pt;}
.ls1b{letter-spacing:28.426667pt;}
.ls18{letter-spacing:40.480000pt;}
.ls19{letter-spacing:56.480000pt;}
.ls3{letter-spacing:58.811307pt;}
.lsc{letter-spacing:99.978667pt;}
.ls10{letter-spacing:195.978667pt;}
.ls1c{letter-spacing:213.898667pt;}
.ws14{word-spacing:-53.120000pt;}
.wse{word-spacing:-26.880000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.463467pt;}
.ws12{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws11{word-spacing:-13.185067pt;}
.ws0{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.870933pt;}
.ws6{word-spacing:-12.320000pt;}
.ws5{word-spacing:-11.776000pt;}
.ws10{word-spacing:-11.040000pt;}
.ws15{word-spacing:-10.760320pt;}
.wsb{word-spacing:-10.720000pt;}
.wsd{word-spacing:-10.521067pt;}
.ws16{word-spacing:-10.241067pt;}
.ws2{word-spacing:-8.640000pt;}
.ws7{word-spacing:-7.994667pt;}
.ws3{word-spacing:-6.720000pt;}
.wsc{word-spacing:-6.711040pt;}
.wsf{word-spacing:-6.512533pt;}
.ws8{word-spacing:0.000000pt;}
._1e{margin-left:-2.877013pt;}
._17{margin-left:-1.863893pt;}
._1{margin-left:-0.956160pt;}
._0{width:1.168640pt;}
._2{width:2.306133pt;}
._6{width:3.977600pt;}
._e{width:4.912640pt;}
._4{width:6.080000pt;}
._7{width:7.306667pt;}
._10{width:8.658560pt;}
._8{width:9.696000pt;}
._9{width:10.944000pt;}
._f{width:12.265600pt;}
._2c{width:13.230293pt;}
._11{width:14.347307pt;}
._12{width:15.630720pt;}
._15{width:16.573440pt;}
._16{width:17.476480pt;}
._a{width:19.248000pt;}
._1a{width:20.273280pt;}
._1b{width:21.603840pt;}
._1d{width:22.515840pt;}
._1c{width:23.934080pt;}
._d{width:24.883200pt;}
._c{width:25.820160pt;}
._b{width:26.832000pt;}
._20{width:29.783680pt;}
._23{width:31.740587pt;}
._21{width:32.705280pt;}
._26{width:36.589440pt;}
._25{width:37.598507pt;}
._1f{width:44.551040pt;}
._24{width:45.469440pt;}
._27{width:48.159360pt;}
._28{width:49.441280pt;}
._22{width:53.180587pt;}
._2a{width:55.082667pt;}
._29{width:56.597333pt;}
._2b{width:64.209280pt;}
._5{width:138.400000pt;}
._13{width:452.521387pt;}
._18{width:653.920000pt;}
._14{width:769.499307pt;}
._19{width:953.866667pt;}
._3{width:979.477333pt;}
.fs3{font-size:26.880000pt;}
.fs2{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yc6{bottom:2.240000pt;}
.ye2{bottom:2.280000pt;}
.ye0{bottom:2.400000pt;}
.ye3{bottom:2.440000pt;}
.y2a{bottom:2.560000pt;}
.y132{bottom:2.720000pt;}
.y10{bottom:2.880000pt;}
.yff{bottom:3.040000pt;}
.y129{bottom:3.066667pt;}
.y1de{bottom:3.360000pt;}
.yc8{bottom:3.680000pt;}
.yca{bottom:3.840000pt;}
.y176{bottom:6.880000pt;}
.y34{bottom:8.000000pt;}
.y168{bottom:8.320000pt;}
.y3a{bottom:10.880000pt;}
.y173{bottom:14.560000pt;}
.y102{bottom:15.200000pt;}
.y128{bottom:15.226667pt;}
.y136{bottom:15.240000pt;}
.y104{bottom:15.360000pt;}
.yfe{bottom:15.400000pt;}
.y29{bottom:16.346667pt;}
.y15{bottom:18.240000pt;}
.y39{bottom:26.240000pt;}
.y172{bottom:26.720000pt;}
.y28{bottom:30.266667pt;}
.y14{bottom:33.600000pt;}
.y175{bottom:37.600000pt;}
.y38{bottom:41.600000pt;}
.y27{bottom:44.026667pt;}
.y13{bottom:48.960000pt;}
.y174{bottom:50.080000pt;}
.y37{bottom:56.960000pt;}
.y26{bottom:57.786667pt;}
.y33{bottom:58.560000pt;}
.y1e3{bottom:64.346667pt;}
.y25{bottom:71.546667pt;}
.y12{bottom:72.200000pt;}
.y5{bottom:78.400000pt;}
.y36{bottom:80.160000pt;}
.y24{bottom:85.466667pt;}
.y246{bottom:92.640000pt;}
.y243{bottom:92.680000pt;}
.y23{bottom:99.226667pt;}
.yf5{bottom:104.800000pt;}
.y85{bottom:105.120000pt;}
.y32{bottom:105.626667pt;}
.y1ff{bottom:105.760000pt;}
.y1a4{bottom:106.400000pt;}
.y242{bottom:106.440000pt;}
.y4c{bottom:110.400000pt;}
.y163{bottom:110.880000pt;}
.y22{bottom:112.986667pt;}
.y1d3{bottom:113.920000pt;}
.y144{bottom:117.760000pt;}
.y1fe{bottom:118.080000pt;}
.y84{bottom:118.880000pt;}
.yc1{bottom:120.032000pt;}
.y23c{bottom:120.160000pt;}
.yf4{bottom:120.192000pt;}
.y241{bottom:120.200000pt;}
.y31{bottom:120.986667pt;}
.y1a3{bottom:121.792000pt;}
.y4b{bottom:125.792000pt;}
.y162{bottom:126.112000pt;}
.y11d{bottom:126.592000pt;}
.y21{bottom:126.746667pt;}
.y23d{bottom:128.992000pt;}
.y1d2{bottom:129.312000pt;}
.y1fd{bottom:130.432000pt;}
.y83{bottom:132.672000pt;}
.y143{bottom:133.152000pt;}
.yc0{bottom:135.386667pt;}
.yf3{bottom:135.546667pt;}
.y30{bottom:136.346667pt;}
.y1a2{bottom:137.146667pt;}
.y20{bottom:140.666667pt;}
.y4a{bottom:141.146667pt;}
.y161{bottom:141.466667pt;}
.y11c{bottom:141.946667pt;}
.y1fc{bottom:142.586667pt;}
.y23b{bottom:142.906667pt;}
.y1d1{bottom:144.666667pt;}
.y82{bottom:146.746667pt;}
.y142{bottom:148.506667pt;}
.ybf{bottom:150.746667pt;}
.yf2{bottom:150.906667pt;}
.y2f{bottom:151.706667pt;}
.y1a1{bottom:152.506667pt;}
.y1f{bottom:154.426667pt;}
.y1fb{bottom:154.906667pt;}
.y49{bottom:156.346667pt;}
.y160{bottom:156.826667pt;}
.y11b{bottom:157.306667pt;}
.y1d0{bottom:159.866667pt;}
.y81{bottom:162.106667pt;}
.y141{bottom:163.866667pt;}
.y166{bottom:164.320000pt;}
.yf1{bottom:165.466667pt;}
.ybe{bottom:166.106667pt;}
.y2e{bottom:167.066667pt;}
.y1fa{bottom:167.226667pt;}
.y1a0{bottom:167.866667pt;}
.y1e{bottom:168.186667pt;}
.y48{bottom:171.706667pt;}
.y15f{bottom:172.186667pt;}
.y11a{bottom:172.506667pt;}
.y1cf{bottom:175.226667pt;}
.y80{bottom:177.466667pt;}
.yf0{bottom:177.786667pt;}
.y140{bottom:179.226667pt;}
.y1f9{bottom:179.386667pt;}
.y165{bottom:179.680000pt;}
.ybd{bottom:181.466667pt;}
.y1d{bottom:181.946667pt;}
.y2d{bottom:182.426667pt;}
.y19f{bottom:183.066667pt;}
.y47{bottom:187.066667pt;}
.y15e{bottom:187.546667pt;}
.y119{bottom:187.866667pt;}
.yef{bottom:188.506667pt;}
.y1ce{bottom:190.586667pt;}
.y1f8{bottom:191.706667pt;}
.y7f{bottom:192.826667pt;}
.y13f{bottom:194.426667pt;}
.y1c{bottom:195.866667pt;}
.ybc{bottom:196.666667pt;}
.y2c{bottom:197.626667pt;}
.y19e{bottom:198.426667pt;}
.yee{bottom:201.626667pt;}
.y46{bottom:202.426667pt;}
.y15d{bottom:202.746667pt;}
.y118{bottom:203.226667pt;}
.y1f7{bottom:204.026667pt;}
.y1cd{bottom:205.946667pt;}
.y7e{bottom:208.186667pt;}
.y1b{bottom:209.626667pt;}
.y13e{bottom:209.786667pt;}
.ybb{bottom:212.026667pt;}
.y19d{bottom:213.786667pt;}
.yed{bottom:214.586667pt;}
.y1f6{bottom:216.186667pt;}
.y45{bottom:217.786667pt;}
.y15c{bottom:218.106667pt;}
.y117{bottom:218.586667pt;}
.y2b{bottom:220.986667pt;}
.y1cc{bottom:221.306667pt;}
.y1a{bottom:223.386667pt;}
.y7d{bottom:223.546667pt;}
.y13d{bottom:225.146667pt;}
.yec{bottom:226.906667pt;}
.yba{bottom:227.386667pt;}
.y1f5{bottom:228.506667pt;}
.y19c{bottom:229.146667pt;}
.y44{bottom:232.986667pt;}
.y15b{bottom:233.466667pt;}
.y116{bottom:233.946667pt;}
.y1cb{bottom:236.666667pt;}
.y19{bottom:237.186667pt;}
.y7c{bottom:238.746667pt;}
.yeb{bottom:240.026667pt;}
.y13c{bottom:240.506667pt;}
.y1f4{bottom:240.826667pt;}
.yb9{bottom:242.746667pt;}
.y19b{bottom:244.506667pt;}
.y15a{bottom:248.186667pt;}
.y43{bottom:248.346667pt;}
.y115{bottom:249.306667pt;}
.y1ca{bottom:251.866667pt;}
.yea{bottom:252.986667pt;}
.y7b{bottom:253.786667pt;}
.yb8{bottom:258.106667pt;}
.y13b{bottom:259.226667pt;}
.y19a{bottom:259.866667pt;}
.y159{bottom:260.506667pt;}
.y42{bottom:263.706667pt;}
.y114{bottom:264.506667pt;}
.y1f3{bottom:265.306667pt;}
.y13a{bottom:265.946667pt;}
.ye9{bottom:266.106667pt;}
.y1c9{bottom:267.226667pt;}
.y7a{bottom:267.866667pt;}
.y158{bottom:273.306667pt;}
.yb7{bottom:273.466667pt;}
.y199{bottom:275.066667pt;}
.y1f2{bottom:277.626667pt;}
.y23a{bottom:277.786667pt;}
.ye8{bottom:278.426667pt;}
.y139{bottom:278.586667pt;}
.y41{bottom:279.066667pt;}
.y113{bottom:279.866667pt;}
.y1c8{bottom:282.586667pt;}
.y79{bottom:283.226667pt;}
.y157{bottom:288.026667pt;}
.yb6{bottom:288.666667pt;}
.y1f1{bottom:289.786667pt;}
.y198{bottom:290.426667pt;}
.ye7{bottom:291.386667pt;}
.y239{bottom:291.866667pt;}
.y40{bottom:294.426667pt;}
.y112{bottom:295.226667pt;}
.y1c7{bottom:297.946667pt;}
.y156{bottom:298.106667pt;}
.y78{bottom:298.586667pt;}
.y1f0{bottom:302.106667pt;}
.y138{bottom:303.866667pt;}
.yb5{bottom:304.026667pt;}
.ye6{bottom:304.506667pt;}
.y197{bottom:305.786667pt;}
.y238{bottom:306.426667pt;}
.y3f{bottom:309.786667pt;}
.y111{bottom:310.586667pt;}
.y1c6{bottom:313.306667pt;}
.y77{bottom:313.946667pt;}
.y17{bottom:314.306667pt;}
.y1ef{bottom:314.426667pt;}
.y137{bottom:316.506667pt;}
.ye5{bottom:317.626667pt;}
.y237{bottom:318.746667pt;}
.yb4{bottom:319.386667pt;}
.y196{bottom:321.146667pt;}
.y3e{bottom:324.986667pt;}
.y110{bottom:325.946667pt;}
.y1ee{bottom:327.226667pt;}
.y1c5{bottom:328.666667pt;}
.y76{bottom:329.306667pt;}
.ye4{bottom:329.786667pt;}
.y236{bottom:331.066667pt;}
.yb3{bottom:334.746667pt;}
.y195{bottom:336.506667pt;}
.y3d{bottom:340.346667pt;}
.y10f{bottom:341.306667pt;}
.y1ed{bottom:342.586667pt;}
.ye1{bottom:342.906667pt;}
.y235{bottom:343.226667pt;}
.y1c4{bottom:343.866667pt;}
.y75{bottom:344.706667pt;}
.yb2{bottom:350.146667pt;}
.y194{bottom:351.906667pt;}
.y135{bottom:354.626667pt;}
.y234{bottom:355.586667pt;}
.y3c{bottom:355.746667pt;}
.ydf{bottom:356.066667pt;}
.y10e{bottom:356.546667pt;}
.y1ec{bottom:357.986667pt;}
.y1c3{bottom:359.266667pt;}
.y74{bottom:359.906667pt;}
.yb1{bottom:365.506667pt;}
.y193{bottom:367.106667pt;}
.y134{bottom:367.746667pt;}
.y233{bottom:367.906667pt;}
.yde{bottom:369.026667pt;}
.y3b{bottom:371.106667pt;}
.y10d{bottom:371.906667pt;}
.y1eb{bottom:373.346667pt;}
.y1c2{bottom:374.626667pt;}
.y73{bottom:375.266667pt;}
.y133{bottom:379.906667pt;}
.y232{bottom:380.066667pt;}
.yb0{bottom:380.706667pt;}
.ydd{bottom:381.986667pt;}
.y192{bottom:382.466667pt;}
.y10c{bottom:384.386667pt;}
.y35{bottom:385.506667pt;}
.y1ea{bottom:388.706667pt;}
.y1c1{bottom:389.986667pt;}
.y72{bottom:390.626667pt;}
.y231{bottom:392.386667pt;}
.y131{bottom:392.546667pt;}
.yaf{bottom:396.066667pt;}
.y191{bottom:397.826667pt;}
.y1e9{bottom:403.906667pt;}
.y230{bottom:404.706667pt;}
.y1c0{bottom:405.346667pt;}
.y71{bottom:405.986667pt;}
.yae{bottom:411.426667pt;}
.ydc{bottom:412.546667pt;}
.y190{bottom:413.186667pt;}
.y22f{bottom:416.866667pt;}
.y1e8{bottom:419.266667pt;}
.y1bf{bottom:420.546667pt;}
.y70{bottom:421.346667pt;}
.ydb{bottom:424.706667pt;}
.yad{bottom:426.786667pt;}
.y18f{bottom:428.546667pt;}
.y22e{bottom:429.186667pt;}
.y1e7{bottom:433.986667pt;}
.y1be{bottom:435.906667pt;}
.y6f{bottom:436.546667pt;}
.y130{bottom:437.186667pt;}
.yda{bottom:437.666667pt;}
.y22d{bottom:441.506667pt;}
.yac{bottom:441.826667pt;}
.y18e{bottom:443.746667pt;}
.y1e6{bottom:446.306667pt;}
.y1bd{bottom:451.266667pt;}
.y6e{bottom:451.906667pt;}
.y12f{bottom:452.386667pt;}
.yd9{bottom:453.026667pt;}
.y22c{bottom:453.666667pt;}
.yab{bottom:455.906667pt;}
.y18d{bottom:459.106667pt;}
.y22b{bottom:465.986667pt;}
.y1bc{bottom:466.626667pt;}
.y6d{bottom:467.266667pt;}
.yd8{bottom:468.386667pt;}
.y12e{bottom:471.106667pt;}
.yaa{bottom:471.266667pt;}
.y18c{bottom:474.466667pt;}
.y12d{bottom:477.826667pt;}
.y22a{bottom:478.306667pt;}
.y1bb{bottom:481.986667pt;}
.y6c{bottom:482.626667pt;}
.yd7{bottom:483.746667pt;}
.ya9{bottom:486.626667pt;}
.y16{bottom:486.946667pt;}
.y1e5{bottom:489.186667pt;}
.y18b{bottom:489.826667pt;}
.y12c{bottom:490.146667pt;}
.y229{bottom:490.466667pt;}
.y1ba{bottom:497.346667pt;}
.y6b{bottom:497.986667pt;}
.yd6{bottom:498.946667pt;}
.y1e4{bottom:501.506667pt;}
.ya8{bottom:501.826667pt;}
.y228{bottom:502.786667pt;}
.y18a{bottom:505.186667pt;}
.y1e2{bottom:511.426667pt;}
.y1b9{bottom:512.546667pt;}
.y6a{bottom:513.346667pt;}
.yd5{bottom:514.306667pt;}
.y227{bottom:515.106667pt;}
.y12b{bottom:515.426667pt;}
.ya7{bottom:517.186667pt;}
.y189{bottom:520.546667pt;}
.y155{bottom:526.466667pt;}
.y226{bottom:527.266667pt;}
.y1b8{bottom:527.906667pt;}
.y69{bottom:528.546667pt;}
.yd4{bottom:529.666667pt;}
.ya6{bottom:532.546667pt;}
.y188{bottom:535.746667pt;}
.y154{bottom:538.786667pt;}
.y225{bottom:539.586667pt;}
.y12a{bottom:540.706667pt;}
.y1b7{bottom:543.266667pt;}
.y68{bottom:543.906667pt;}
.yd3{bottom:545.026667pt;}
.ya5{bottom:547.906667pt;}
.y187{bottom:551.106667pt;}
.y224{bottom:551.906667pt;}
.y153{bottom:554.946667pt;}
.y1b6{bottom:558.626667pt;}
.y67{bottom:559.266667pt;}
.yd2{bottom:560.386667pt;}
.y152{bottom:561.666667pt;}
.ya4{bottom:562.946667pt;}
.y223{bottom:564.066667pt;}
.y18{bottom:565.346667pt;}
.y127{bottom:566.146667pt;}
.y186{bottom:566.466667pt;}
.y151{bottom:574.013333pt;}
.y66{bottom:574.653333pt;}
.yd1{bottom:575.773333pt;}
.y222{bottom:576.413333pt;}
.ya3{bottom:577.053333pt;}
.y126{bottom:579.133333pt;}
.y247{bottom:579.613333pt;}
.y185{bottom:581.853333pt;}
.y221{bottom:588.733333pt;}
.y1b5{bottom:589.373333pt;}
.y65{bottom:590.013333pt;}
.yd0{bottom:590.333333pt;}
.y125{bottom:591.453333pt;}
.y245{bottom:591.933333pt;}
.ya2{bottom:592.413333pt;}
.y184{bottom:597.213333pt;}
.y150{bottom:599.293333pt;}
.y220{bottom:600.893333pt;}
.y1e1{bottom:601.053333pt;}
.ycf{bottom:602.653333pt;}
.y124{bottom:604.573333pt;}
.y64{bottom:605.373333pt;}
.ya1{bottom:607.773333pt;}
.y14f{bottom:612.413333pt;}
.y183{bottom:612.573333pt;}
.y21f{bottom:613.213333pt;}
.yce{bottom:614.973333pt;}
.y1e0{bottom:616.413333pt;}
.y123{bottom:617.533333pt;}
.y1b4{bottom:619.933333pt;}
.y63{bottom:620.573333pt;}
.ya0{bottom:622.973333pt;}
.y14e{bottom:624.733333pt;}
.y21e{bottom:625.533333pt;}
.ycd{bottom:625.693333pt;}
.y182{bottom:627.773333pt;}
.y10b{bottom:629.213333pt;}
.y1df{bottom:631.773333pt;}
.y1b3{bottom:635.293333pt;}
.y62{bottom:635.933333pt;}
.y21d{bottom:637.693333pt;}
.y9f{bottom:638.333333pt;}
.ycc{bottom:640.893333pt;}
.y181{bottom:643.133333pt;}
.y10a{bottom:644.573333pt;}
.y1dd{bottom:647.133333pt;}
.y122{bottom:648.573333pt;}
.y14d{bottom:650.013333pt;}
.y1b2{bottom:650.653333pt;}
.y61{bottom:651.293333pt;}
.y9e{bottom:653.693333pt;}
.ycb{bottom:656.253333pt;}
.y180{bottom:658.493333pt;}
.y21c{bottom:662.333333pt;}
.y14c{bottom:663.133333pt;}
.y109{bottom:663.293333pt;}
.y121{bottom:663.933333pt;}
.y1b1{bottom:666.013333pt;}
.y60{bottom:666.653333pt;}
.y9d{bottom:669.053333pt;}
.y108{bottom:670.013333pt;}
.yc9{bottom:671.613333pt;}
.y17f{bottom:673.853333pt;}
.y21b{bottom:674.493333pt;}
.y14b{bottom:675.293333pt;}
.y120{bottom:679.293333pt;}
.y1b0{bottom:681.373333pt;}
.y5f{bottom:682.013333pt;}
.y107{bottom:682.333333pt;}
.y9c{bottom:684.413333pt;}
.y21a{bottom:686.813333pt;}
.yc7{bottom:686.973333pt;}
.y14a{bottom:688.413333pt;}
.y17e{bottom:689.213333pt;}
.y1dc{bottom:694.173333pt;}
.y11f{bottom:694.653333pt;}
.y1af{bottom:696.573333pt;}
.y5e{bottom:697.373333pt;}
.y219{bottom:699.133333pt;}
.y9b{bottom:699.773333pt;}
.y149{bottom:701.373333pt;}
.yc5{bottom:702.973333pt;}
.y17d{bottom:704.573333pt;}
.y11e{bottom:707.133333pt;}
.y106{bottom:707.613333pt;}
.y1db{bottom:709.533333pt;}
.y218{bottom:711.293333pt;}
.y1ae{bottom:711.933333pt;}
.y5d{bottom:712.573333pt;}
.y9a{bottom:714.813333pt;}
.yc4{bottom:718.813333pt;}
.y17c{bottom:719.773333pt;}
.y105{bottom:720.733333pt;}
.y217{bottom:723.613333pt;}
.y244{bottom:724.253333pt;}
.y1da{bottom:724.893333pt;}
.y1ad{bottom:727.293333pt;}
.y5c{bottom:727.933333pt;}
.y99{bottom:728.893333pt;}
.y11{bottom:729.053333pt;}
.y148{bottom:731.773333pt;}
.y103{bottom:732.893333pt;}
.y17b{bottom:735.133333pt;}
.y216{bottom:735.773333pt;}
.y240{bottom:738.013333pt;}
.y1d9{bottom:739.613333pt;}
.y1ac{bottom:742.653333pt;}
.y5b{bottom:743.293333pt;}
.y98{bottom:744.093333pt;}
.y215{bottom:748.093333pt;}
.yc3{bottom:748.733333pt;}
.y17a{bottom:750.493333pt;}
.y1d8{bottom:751.773333pt;}
.y147{bottom:757.053333pt;}
.y1ab{bottom:758.013333pt;}
.y101{bottom:758.333333pt;}
.y5a{bottom:758.653333pt;}
.y97{bottom:759.453333pt;}
.y214{bottom:760.413333pt;}
.yc2{bottom:761.053333pt;}
.y1d7{bottom:764.733333pt;}
.y179{bottom:765.853333pt;}
.y100{bottom:771.293333pt;}
.y146{bottom:771.773333pt;}
.y213{bottom:772.573333pt;}
.y1aa{bottom:773.213333pt;}
.y59{bottom:774.013333pt;}
.y96{bottom:774.813333pt;}
.y1d6{bottom:780.093333pt;}
.y145{bottom:781.693333pt;}
.yfd{bottom:783.613333pt;}
.y212{bottom:784.893333pt;}
.y1a9{bottom:788.573333pt;}
.y58{bottom:789.213333pt;}
.y95{bottom:790.173333pt;}
.y1d5{bottom:794.853333pt;}
.y178{bottom:796.453333pt;}
.yfc{bottom:796.773333pt;}
.y211{bottom:797.253333pt;}
.y1a8{bottom:803.973333pt;}
.y57{bottom:804.613333pt;}
.y94{bottom:805.573333pt;}
.y1d4{bottom:807.013333pt;}
.y210{bottom:809.413333pt;}
.yfb{bottom:809.573333pt;}
.y177{bottom:811.813333pt;}
.y1a7{bottom:819.333333pt;}
.y56{bottom:819.973333pt;}
.y93{bottom:820.933333pt;}
.y20f{bottom:821.733333pt;}
.yf{bottom:822.373333pt;}
.y164{bottom:824.293333pt;}
.y20e{bottom:834.053333pt;}
.y1a6{bottom:834.693333pt;}
.y55{bottom:835.333333pt;}
.y92{bottom:836.133333pt;}
.yfa{bottom:840.133333pt;}
.y20d{bottom:846.213333pt;}
.y1a5{bottom:850.053333pt;}
.ye{bottom:850.693333pt;}
.y91{bottom:851.493333pt;}
.yf9{bottom:852.453333pt;}
.y20c{bottom:858.533333pt;}
.y171{bottom:861.733333pt;}
.yf8{bottom:865.253333pt;}
.yd{bottom:866.053333pt;}
.y90{bottom:866.853333pt;}
.y23f{bottom:870.373333pt;}
.y20b{bottom:870.853333pt;}
.y170{bottom:874.053333pt;}
.yf7{bottom:880.613333pt;}
.y54{bottom:881.253333pt;}
.y8f{bottom:882.213333pt;}
.y20a{bottom:883.013333pt;}
.y23e{bottom:884.133333pt;}
.yc{bottom:884.613333pt;}
.y16f{bottom:886.373333pt;}
.y209{bottom:895.333333pt;}
.yf6{bottom:895.973333pt;}
.y53{bottom:896.613333pt;}
.yb{bottom:896.933333pt;}
.y8e{bottom:897.253333pt;}
.y16e{bottom:898.533333pt;}
.y208{bottom:907.653333pt;}
.ya{bottom:909.253333pt;}
.y16d{bottom:910.853333pt;}
.y8d{bottom:911.333333pt;}
.y52{bottom:911.973333pt;}
.y9{bottom:918.053333pt;}
.y207{bottom:919.813333pt;}
.y16c{bottom:923.173333pt;}
.y8c{bottom:926.693333pt;}
.y51{bottom:927.333333pt;}
.y206{bottom:932.133333pt;}
.y8{bottom:933.413333pt;}
.y16b{bottom:935.333333pt;}
.y8b{bottom:942.053333pt;}
.y50{bottom:942.693333pt;}
.y205{bottom:944.453333pt;}
.y16a{bottom:947.653333pt;}
.y7{bottom:948.773333pt;}
.y204{bottom:956.613333pt;}
.y8a{bottom:957.253333pt;}
.y4f{bottom:958.053333pt;}
.y167{bottom:960.613333pt;}
.y6{bottom:965.893333pt;}
.y203{bottom:968.933333pt;}
.y89{bottom:972.613333pt;}
.y169{bottom:972.773333pt;}
.y4e{bottom:973.253333pt;}
.y202{bottom:981.253333pt;}
.y88{bottom:987.973333pt;}
.y4{bottom:988.613333pt;}
.y201{bottom:993.413333pt;}
.y87{bottom:1003.333333pt;}
.y3{bottom:1003.973333pt;}
.y200{bottom:1005.733333pt;}
.y2{bottom:1019.360000pt;}
.y4d{bottom:1031.680000pt;}
.y86{bottom:1032.000000pt;}
.y1{bottom:1034.720000pt;}
.h1f{height:12.160000pt;}
.h18{height:12.320000pt;}
.h1a{height:12.320133pt;}
.h26{height:12.352000pt;}
.h25{height:12.640000pt;}
.h24{height:12.800000pt;}
.h1b{height:12.960000pt;}
.h23{height:12.992000pt;}
.h1e{height:13.120000pt;}
.h1c{height:13.152000pt;}
.h2d{height:13.760000pt;}
.h2b{height:13.920000pt;}
.h15{height:15.200000pt;}
.h13{height:15.360000pt;}
.h7{height:23.360000pt;}
.h28{height:24.480000pt;}
.h21{height:25.280000pt;}
.h20{height:25.312000pt;}
.h22{height:25.440000pt;}
.h6{height:26.381250pt;}
.h16{height:37.090625pt;}
.h17{height:42.084375pt;}
.h1d{height:42.381250pt;}
.h19{height:43.215000pt;}
.hf{height:47.085938pt;}
.hc{height:47.109375pt;}
.h14{height:48.375000pt;}
.h4{height:52.108438pt;}
.h3{height:52.134375pt;}
.h12{height:52.478750pt;}
.h2{height:53.535000pt;}
.h11{height:55.298750pt;}
.h8{height:62.812500pt;}
.h29{height:76.672000pt;}
.he{height:77.760000pt;}
.h5{height:85.785000pt;}
.h9{height:92.672000pt;}
.h10{height:100.640000pt;}
.h2a{height:132.160000pt;}
.h2c{height:132.320000pt;}
.h2e{height:132.352000pt;}
.h27{height:192.160000pt;}
.hd{height:241.466667pt;}
.hb{height:256.386667pt;}
.ha{height:334.786667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:18.880000pt;}
.w7{width:26.560000pt;}
.w8{width:26.720000pt;}
.w2d{width:31.200000pt;}
.w28{width:31.360000pt;}
.w2c{width:31.392000pt;}
.w29{width:31.680000pt;}
.w2e{width:32.032000pt;}
.w2a{width:32.160000pt;}
.w2f{width:32.320000pt;}
.w30{width:32.480000pt;}
.w2b{width:32.640000pt;}
.wa{width:38.400000pt;}
.wc{width:47.360000pt;}
.wd{width:48.960000pt;}
.wb{width:51.712000pt;}
.w9{width:52.960000pt;}
.w16{width:73.440000pt;}
.we{width:75.520000pt;}
.w24{width:77.472000pt;}
.w14{width:80.160000pt;}
.w25{width:81.600000pt;}
.w1f{width:84.960000pt;}
.w19{width:85.120000pt;}
.w1d{width:97.280000pt;}
.w10{width:98.880000pt;}
.w15{width:99.232000pt;}
.w1e{width:101.152000pt;}
.w1a{width:104.032000pt;}
.w34{width:108.800000pt;}
.w22{width:116.640000pt;}
.w17{width:118.272000pt;}
.w11{width:118.752000pt;}
.w20{width:132.352000pt;}
.w27{width:140.506667pt;}
.w1b{width:141.786667pt;}
.w23{width:159.066667pt;}
.w13{width:162.586667pt;}
.w1c{width:170.266667pt;}
.w33{width:176.506667pt;}
.w18{width:179.546667pt;}
.w3{width:185.786667pt;}
.w31{width:190.906667pt;}
.wf{width:195.106667pt;}
.w32{width:217.146667pt;}
.w12{width:270.626667pt;}
.w26{width:300.066667pt;}
.w21{width:300.186667pt;}
.w5{width:385.026667pt;}
.w35{width:491.453333pt;}
.w6{width:589.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.200000pt;}
.x3a{left:8.160000pt;}
.xb{left:9.440000pt;}
.x17{left:10.560000pt;}
.x19{left:11.840000pt;}
.x30{left:12.960000pt;}
.x1b{left:14.400000pt;}
.x3f{left:15.680000pt;}
.x2e{left:18.240000pt;}
.x1a{left:19.200000pt;}
.x3d{left:20.160000pt;}
.x1d{left:23.680000pt;}
.x2c{left:24.960000pt;}
.x1c{left:26.400000pt;}
.x51{left:28.640000pt;}
.x44{left:29.760000pt;}
.x42{left:31.360000pt;}
.x2b{left:33.800000pt;}
.x43{left:35.040000pt;}
.x50{left:36.040000pt;}
.x25{left:37.440000pt;}
.x23{left:40.000000pt;}
.x24{left:41.760000pt;}
.x2f{left:44.186667pt;}
.x3c{left:45.480000pt;}
.x2d{left:46.906667pt;}
.x38{left:48.794667pt;}
.x45{left:52.800000pt;}
.x4f{left:63.720000pt;}
.x31{left:66.240000pt;}
.x53{left:74.746667pt;}
.x20{left:78.280000pt;}
.xd{left:94.720000pt;}
.x63{left:101.594667pt;}
.x4b{left:106.272000pt;}
.x8{left:111.552000pt;}
.x1{left:113.471988pt;}
.x4d{left:118.432000pt;}
.x32{left:122.911988pt;}
.x4c{left:136.314667pt;}
.x10{left:137.466655pt;}
.x26{left:139.546667pt;}
.x48{left:141.946655pt;}
.x2{left:159.866655pt;}
.xf{left:161.466655pt;}
.x4{left:167.226655pt;}
.x35{left:170.266655pt;}
.x4a{left:188.986655pt;}
.x64{left:215.066667pt;}
.x4e{left:235.066667pt;}
.x1f{left:237.786667pt;}
.x37{left:244.826655pt;}
.x47{left:247.746655pt;}
.x54{left:254.306667pt;}
.x1e{left:255.266655pt;}
.x5{left:259.586655pt;}
.x52{left:261.026667pt;}
.x6{left:265.026655pt;}
.x7{left:270.466655pt;}
.x11{left:277.986655pt;}
.x3e{left:283.586667pt;}
.x55{left:285.666667pt;}
.x39{left:293.026667pt;}
.x34{left:295.906655pt;}
.xa{left:297.346667pt;}
.x27{left:302.146667pt;}
.x61{left:305.026667pt;}
.x13{left:312.546655pt;}
.xc{left:316.226667pt;}
.x56{left:317.346667pt;}
.x57{left:349.506667pt;}
.x14{left:351.586667pt;}
.xe{left:377.826667pt;}
.x40{left:380.866667pt;}
.x28{left:382.306667pt;}
.x15{left:404.546667pt;}
.x3{left:406.466655pt;}
.x58{left:414.306667pt;}
.x21{left:432.893333pt;}
.x59{left:445.693333pt;}
.x16{left:456.253333pt;}
.x5a{left:477.053333pt;}
.x29{left:481.533333pt;}
.x18{left:503.613333pt;}
.x5b{left:508.413333pt;}
.x62{left:522.173333pt;}
.x22{left:531.773333pt;}
.x5c{left:539.613333pt;}
.x2a{left:554.973333pt;}
.x3b{left:557.693333pt;}
.x41{left:566.973333pt;}
.x49{left:569.373322pt;}
.x5d{left:570.973333pt;}
.x46{left:575.453322pt;}
.x33{left:597.413322pt;}
.x36{left:600.453322pt;}
.x5e{left:603.013333pt;}
.x5f{left:635.333333pt;}
.x60{left:666.533333pt;}
.x12{left:672.773333pt;}
}




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