
    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_add69a98266531b7124e1eb0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_bc96c1116ccbac1c69ccc5aa.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.848145;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_2e801000e904c0d05e17279c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.848145;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_bd801a695627740d1d5a4ecc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_19492e4d1fb7cb16c1bf9cf1.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_3fc46ad875608f88379e0e89.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_073b61202f845253fdfb958a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_1bff9711847caece7ce86295.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3097b91377f51a20ae59e50f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a80cf2bd84358ecb94da9714.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.767578;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_3cb25660aaa18e7508d00a0e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_0d50e13c33242903b289507f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.885742;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-89.280000px;}
.v4{vertical-align:-82.080000px;}
.v7{vertical-align:-76.320000px;}
.v6{vertical-align:-74.880000px;}
.v8{vertical-align:-70.560000px;}
.vb{vertical-align:-69.120000px;}
.v9{vertical-align:-64.800000px;}
.va{vertical-align:-63.360000px;}
.v3{vertical-align:-54.720000px;}
.v5{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.ls11{letter-spacing:-1.440000px;}
.ls27{letter-spacing:-1.134000px;}
.ls25{letter-spacing:-1.104000px;}
.lsf{letter-spacing:-0.936000px;}
.ls29{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.570000px;}
.ls14{letter-spacing:-0.504000px;}
.ls26{letter-spacing:-0.457800px;}
.ls1a{letter-spacing:-0.305400px;}
.ls24{letter-spacing:-0.282000px;}
.ls9{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.020160px;}
.ls1{letter-spacing:0.045120px;}
.ls28{letter-spacing:0.080400px;}
.ls22{letter-spacing:0.080640px;}
.ls2d{letter-spacing:0.152400px;}
.lsd{letter-spacing:0.178560px;}
.ls2{letter-spacing:0.254880px;}
.ls10{letter-spacing:0.288000px;}
.ls1c{letter-spacing:0.298560px;}
.ls13{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.452160px;}
.ls8{letter-spacing:0.630720px;}
.ls4{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.732000px;}
.ls17{letter-spacing:0.809280px;}
.ls16{letter-spacing:0.828000px;}
.ls2a{letter-spacing:0.982080px;}
.ls19{letter-spacing:0.984000px;}
.lse{letter-spacing:1.152000px;}
.ls12{letter-spacing:1.440000px;}
.ls15{letter-spacing:1.746000px;}
.lsb{letter-spacing:7.344000px;}
.ls7{letter-spacing:21.433440px;}
.ls1b{letter-spacing:49.265280px;}
.lsa{letter-spacing:66.557280px;}
.ls5{letter-spacing:80.064000px;}
.ls1d{letter-spacing:91.596000px;}
.ls3{letter-spacing:490.596000px;}
.ls2c{letter-spacing:667.716000px;}
.ls1f{letter-spacing:698.296800px;}
.ls1e{letter-spacing:781.476000px;}
.ls21{letter-spacing:809.196000px;}
.ls20{letter-spacing:908.736000px;}
.ls2b{letter-spacing:915.576000px;}
.ls23{letter-spacing:969.216000px;}
.ls2f{letter-spacing:1277.136000px;}
.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;}
}
.ws0{word-spacing:-29.880000px;}
.ws1{word-spacing:-24.120000px;}
.ws6{word-spacing:-20.880000px;}
.ws4{word-spacing:-19.440000px;}
.wsa{word-spacing:-19.152000px;}
.wsc{word-spacing:-18.306000px;}
.ws2{word-spacing:-18.000000px;}
.wse{word-spacing:-17.544000px;}
.wsb{word-spacing:-17.496000px;}
.wsd{word-spacing:-17.388000px;}
.ws12{word-spacing:-17.280000px;}
.ws14{word-spacing:-16.865400px;}
.ws17{word-spacing:-16.712400px;}
.ws16{word-spacing:-16.640400px;}
.ws7{word-spacing:-16.560000px;}
.ws10{word-spacing:-16.278000px;}
.wsf{word-spacing:-16.254600px;}
.ws13{word-spacing:-16.102200px;}
.ws5{word-spacing:-15.840000px;}
.ws11{word-spacing:-15.456000px;}
.ws15{word-spacing:-15.426000px;}
.ws19{word-spacing:-15.140160px;}
.ws9{word-spacing:-15.120000px;}
.ws18{word-spacing:-14.400000px;}
.ws3{word-spacing:-11.880000px;}
.ws8{word-spacing:0.000000px;}
._25{margin-left:-166.222080px;}
._29{margin-left:-163.520640px;}
._24{margin-left:-162.120000px;}
._28{margin-left:-159.120000px;}
._2c{margin-left:-151.920000px;}
._2b{margin-left:-136.546560px;}
._2a{margin-left:-133.380000px;}
._23{margin-left:-122.607840px;}
._27{margin-left:-85.041360px;}
._26{margin-left:-81.360000px;}
._30{margin-left:-8.668320px;}
._4{margin-left:-3.024000px;}
._0{margin-left:-1.935360px;}
._1{width:1.391040px;}
._2{width:2.444160px;}
._6{width:4.178400px;}
._d{width:5.694720px;}
._a{width:7.115520px;}
._9{width:8.527680px;}
._5{width:9.616320px;}
._3{width:10.765440px;}
._8{width:12.156480px;}
._7{width:13.547520px;}
._14{width:14.696640px;}
._c{width:16.208640px;}
._b{width:17.297280px;}
._e{width:19.224480px;}
._f{width:20.262240px;}
._17{width:21.703200px;}
._18{width:23.349600px;}
._1b{width:24.568800px;}
._10{width:26.418720px;}
._12{width:28.708320px;}
._11{width:30.409920px;}
._19{width:31.412160px;}
._1a{width:32.665920px;}
._2e{width:34.675680px;}
._1d{width:37.184160px;}
._1c{width:38.220480px;}
._1f{width:39.242880px;}
._1e{width:40.530240px;}
._22{width:41.760000px;}
._2f{width:49.815840px;}
._16{width:67.949280px;}
._15{width:69.244320px;}
._21{width:74.419200px;}
._13{width:427.730400px;}
._20{width:604.320000px;}
._2d{width:665.528160px;}
.fc6{color:rgb(0,16,128);}
.fc5{color:rgb(121,94,38);}
.fc7{color:rgb(0,128,0);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(163,21,21);}
.fc2{color:rgb(175,0,219);}
.fc8{color:rgb(9,136,90);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:36.000000px;}
.fsb{font-size:41.760000px;}
.fs6{font-size:47.520000px;}
.fs4{font-size:50.400000px;}
.fsa{font-size:54.720000px;}
.fsd{font-size:57.600000px;}
.fs0{font-size:60.480000px;}
.fs8{font-size:63.360000px;}
.fs7{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs9{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.fs1{font-size:119.520000px;}
.y123{bottom:-15.840000px;}
.yed{bottom:-15.120000px;}
.y12f{bottom:-14.760000px;}
.y12d{bottom:-14.040000px;}
.y13f{bottom:-12.960000px;}
.y142{bottom:-9.720000px;}
.y133{bottom:-9.360000px;}
.y13d{bottom:-8.280000px;}
.y137{bottom:-6.480000px;}
.y0{bottom:0.000000px;}
.ye2{bottom:1.080000px;}
.y126{bottom:2.520000px;}
.yeb{bottom:3.600000px;}
.ye1{bottom:3.960000px;}
.yd3{bottom:4.320000px;}
.ydc{bottom:4.680000px;}
.y12a{bottom:4.710000px;}
.yde{bottom:5.040000px;}
.yf3{bottom:5.400000px;}
.ye7{bottom:5.760000px;}
.yd9{bottom:6.120000px;}
.y11e{bottom:6.480000px;}
.y121{bottom:6.840000px;}
.yd6{bottom:7.200000px;}
.y141{bottom:10.110000px;}
.y132{bottom:10.440000px;}
.y12b{bottom:10.800000px;}
.y13c{bottom:11.520000px;}
.y136{bottom:13.320000px;}
.yef{bottom:14.400000px;}
.yf1{bottom:16.200000px;}
.ye0{bottom:23.040000px;}
.yea{bottom:23.400000px;}
.yd2{bottom:23.760000px;}
.y12e{bottom:24.120000px;}
.y11b{bottom:24.480000px;}
.ydb{bottom:24.840000px;}
.ye6{bottom:25.560000px;}
.yd8{bottom:25.920000px;}
.y11d{bottom:26.280000px;}
.yd5{bottom:27.000000px;}
.y131{bottom:29.190000px;}
.y13b{bottom:30.240000px;}
.y139{bottom:32.040000px;}
.y135{bottom:32.070000px;}
.ye9{bottom:42.480000px;}
.yec{bottom:42.840000px;}
.y2{bottom:111.276000px;}
.y33{bottom:111.996000px;}
.y32{bottom:131.436000px;}
.y31{bottom:139.356000px;}
.yd0{bottom:149.796000px;}
.y64{bottom:155.190000px;}
.y11a{bottom:155.910000px;}
.ya6{bottom:156.990000px;}
.y30{bottom:158.070000px;}
.y100{bottom:163.830000px;}
.y1a2{bottom:165.990000px;}
.ycf{bottom:167.070000px;}
.y1c1{bottom:167.430000px;}
.y172{bottom:168.870000px;}
.y119{bottom:173.190000px;}
.y63{bottom:174.270000px;}
.ya5{bottom:176.070000px;}
.y2f{bottom:177.150000px;}
.y1a1{bottom:179.310000px;}
.y1fc{bottom:180.030000px;}
.yff{bottom:182.910000px;}
.yce{bottom:183.990000px;}
.y1c0{bottom:186.150000px;}
.y1d9{bottom:186.870000px;}
.y171{bottom:187.590000px;}
.y118{bottom:190.110000px;}
.y62{bottom:193.350000px;}
.ya4{bottom:194.835000px;}
.y2e{bottom:196.275000px;}
.y1fb{bottom:197.355000px;}
.y1a0{bottom:198.435000px;}
.ycd{bottom:201.675000px;}
.yfe{bottom:202.035000px;}
.y1bf{bottom:205.635000px;}
.y117{bottom:206.355000px;}
.y170{bottom:206.715000px;}
.y61{bottom:212.115000px;}
.y127{bottom:213.195000px;}
.ya3{bottom:213.915000px;}
.y1fa{bottom:214.635000px;}
.y2d{bottom:215.355000px;}
.y19f{bottom:217.515000px;}
.ycc{bottom:220.755000px;}
.y116{bottom:225.435000px;}
.y16f{bottom:225.795000px;}
.y60{bottom:231.195000px;}
.y1f9{bottom:231.915000px;}
.ya2{bottom:232.995000px;}
.y2c{bottom:234.075000px;}
.y19e{bottom:236.235000px;}
.ycb{bottom:239.835000px;}
.y16e{bottom:244.515000px;}
.y1f8{bottom:249.195000px;}
.y5f{bottom:250.275000px;}
.ya1{bottom:251.715000px;}
.y2b{bottom:253.155000px;}
.y19d{bottom:255.315000px;}
.y115{bottom:256.035000px;}
.yca{bottom:258.555000px;}
.yfd{bottom:258.915000px;}
.y1be{bottom:260.355000px;}
.y16d{bottom:263.595000px;}
.y122{bottom:264.675000px;}
.y1f7{bottom:266.475000px;}
.y5e{bottom:268.995000px;}
.ya0{bottom:270.795000px;}
.y2a{bottom:272.235000px;}
.y19c{bottom:274.395000px;}
.yc9{bottom:277.635000px;}
.y1bd{bottom:279.435000px;}
.y16c{bottom:282.675000px;}
.y1f6{bottom:283.755000px;}
.y5d{bottom:288.075000px;}
.y114{bottom:288.795000px;}
.y9f{bottom:289.875000px;}
.y29{bottom:290.955000px;}
.y19b{bottom:293.115000px;}
.yc8{bottom:296.715000px;}
.y1bc{bottom:298.515000px;}
.y1f5{bottom:301.035000px;}
.y16b{bottom:301.755000px;}
.y5c{bottom:307.155000px;}
.y9e{bottom:308.955000px;}
.y28{bottom:310.035000px;}
.y19a{bottom:312.195000px;}
.y140{bottom:313.275000px;}
.yc7{bottom:315.795000px;}
.y1bb{bottom:317.595000px;}
.y1f4{bottom:318.315000px;}
.y16a{bottom:320.505000px;}
.y88{bottom:325.905000px;}
.y5b{bottom:327.705000px;}
.y27{bottom:329.145000px;}
.y113{bottom:330.945000px;}
.y199{bottom:331.305000px;}
.yc6{bottom:334.545000px;}
.y1f3{bottom:335.265000px;}
.y1ba{bottom:336.345000px;}
.y169{bottom:339.585000px;}
.y87{bottom:344.985000px;}
.y9d{bottom:346.785000px;}
.y5a{bottom:347.505000px;}
.y26{bottom:347.865000px;}
.y198{bottom:350.385000px;}
.y1f2{bottom:352.545000px;}
.yc5{bottom:353.625000px;}
.y1b9{bottom:355.425000px;}
.y168{bottom:358.665000px;}
.y86{bottom:364.065000px;}
.y9c{bottom:365.865000px;}
.y25{bottom:366.945000px;}
.y197{bottom:369.105000px;}
.y1f1{bottom:369.825000px;}
.y59{bottom:370.905000px;}
.yc4{bottom:372.705000px;}
.y112{bottom:373.785000px;}
.y1b8{bottom:374.505000px;}
.y167{bottom:377.385000px;}
.y85{bottom:383.145000px;}
.y9b{bottom:384.585000px;}
.y13a{bottom:385.665000px;}
.y24{bottom:386.025000px;}
.y14d{bottom:386.385000px;}
.y1f0{bottom:387.105000px;}
.y196{bottom:388.185000px;}
.y58{bottom:389.985000px;}
.y13e{bottom:390.345000px;}
.yc3{bottom:391.425000px;}
.yfc{bottom:391.785000px;}
.y1b7{bottom:393.225000px;}
.y166{bottom:396.465000px;}
.y84{bottom:401.865000px;}
.y9a{bottom:403.665000px;}
.y1ef{bottom:404.385000px;}
.y23{bottom:405.105000px;}
.y14c{bottom:406.185000px;}
.y195{bottom:407.265000px;}
.y57{bottom:408.705000px;}
.yc2{bottom:410.505000px;}
.y1b6{bottom:412.305000px;}
.y165{bottom:415.185000px;}
.y111{bottom:416.625000px;}
.y83{bottom:420.945000px;}
.y1ee{bottom:422.385000px;}
.y99{bottom:422.745000px;}
.y22{bottom:423.825000px;}
.y194{bottom:425.985000px;}
.y56{bottom:427.785000px;}
.yc1{bottom:429.585000px;}
.y1b5{bottom:431.385000px;}
.y164{bottom:432.825000px;}
.y1d8{bottom:436.785000px;}
.y82{bottom:440.025000px;}
.y98{bottom:441.465000px;}
.y1ed{bottom:442.905000px;}
.y21{bottom:443.625000px;}
.y193{bottom:445.065000px;}
.y55{bottom:446.910000px;}
.yc0{bottom:448.710000px;}
.y1b4{bottom:450.150000px;}
.y163{bottom:453.030000px;}
.y1d7{bottom:454.470000px;}
.y81{bottom:458.790000px;}
.y110{bottom:459.510000px;}
.y97{bottom:460.590000px;}
.y1ec{bottom:461.670000px;}
.y192{bottom:464.190000px;}
.y54{bottom:465.990000px;}
.y20{bottom:467.070000px;}
.yfb{bottom:467.430000px;}
.y138{bottom:468.510000px;}
.y1b3{bottom:469.230000px;}
.y162{bottom:470.310000px;}
.y1d6{bottom:473.550000px;}
.y80{bottom:478.230000px;}
.y10f{bottom:478.590000px;}
.y96{bottom:479.670000px;}
.y1eb{bottom:480.750000px;}
.y191{bottom:482.910000px;}
.y161{bottom:483.990000px;}
.ybf{bottom:484.350000px;}
.y53{bottom:484.710000px;}
.y1f{bottom:485.790000px;}
.yfa{bottom:486.510000px;}
.y1b2{bottom:488.310000px;}
.y1d5{bottom:492.270000px;}
.y7f{bottom:498.750000px;}
.y1ea{bottom:499.830000px;}
.ybe{bottom:501.630000px;}
.y190{bottom:501.990000px;}
.y1e{bottom:503.070000px;}
.y52{bottom:503.790000px;}
.y14b{bottom:505.230000px;}
.yf9{bottom:505.590000px;}
.y1b1{bottom:507.390000px;}
.y1d4{bottom:511.350000px;}
.y1e9{bottom:518.550000px;}
.ybd{bottom:518.910000px;}
.y7e{bottom:519.270000px;}
.y95{bottom:519.630000px;}
.y1d{bottom:520.710000px;}
.y18f{bottom:521.070000px;}
.y10e{bottom:521.430000px;}
.y51{bottom:522.870000px;}
.ye8{bottom:523.950000px;}
.yf8{bottom:524.310000px;}
.y1b0{bottom:526.110000px;}
.y1d3{bottom:530.430000px;}
.y1e8{bottom:537.630000px;}
.y7d{bottom:538.350000px;}
.ye4{bottom:538.710000px;}
.y1c{bottom:540.150000px;}
.y50{bottom:541.950000px;}
.ye5{bottom:543.030000px;}
.yf7{bottom:543.390000px;}
.y1af{bottom:545.190000px;}
.ybc{bottom:550.230000px;}
.y1d2{bottom:550.950000px;}
.y18e{bottom:552.030000px;}
.y1e7{bottom:556.710000px;}
.y134{bottom:557.070000px;}
.y7c{bottom:557.430000px;}
.y94{bottom:558.870000px;}
.y130{bottom:559.950000px;}
.y1b{bottom:562.110000px;}
.y4f{bottom:562.470000px;}
.y10d{bottom:564.270000px;}
.y1d1{bottom:570.030000px;}
.y18d{bottom:571.110000px;}
.y1e6{bottom:575.460000px;}
.y7b{bottom:576.180000px;}
.y93{bottom:577.980000px;}
.y1a{bottom:580.500000px;}
.y14a{bottom:581.220000px;}
.y4e{bottom:581.580000px;}
.y1ae{bottom:583.020000px;}
.ybb{bottom:583.740000px;}
.y217{bottom:588.420000px;}
.y1d0{bottom:589.140000px;}
.y18c{bottom:589.500000px;}
.y1e5{bottom:594.540000px;}
.y7a{bottom:595.260000px;}
.y92{bottom:597.060000px;}
.y19{bottom:597.780000px;}
.y149{bottom:599.940000px;}
.y4d{bottom:600.300000px;}
.y1ad{bottom:602.100000px;}
.y18b{bottom:605.700000px;}
.y10c{bottom:607.140000px;}
.y1cf{bottom:608.220000px;}
.y1e4{bottom:613.620000px;}
.y79{bottom:614.340000px;}
.y18{bottom:615.060000px;}
.y91{bottom:615.780000px;}
.yba{bottom:617.580000px;}
.y4c{bottom:619.380000px;}
.y1ac{bottom:621.180000px;}
.yf2{bottom:621.540000px;}
.y18a{bottom:624.420000px;}
.y10b{bottom:626.220000px;}
.y1ce{bottom:628.740000px;}
.y17{bottom:632.340000px;}
.y1e3{bottom:632.700000px;}
.y78{bottom:633.060000px;}
.y90{bottom:634.860000px;}
.y4b{bottom:638.460000px;}
.y1ab{bottom:639.900000px;}
.y216{bottom:645.300000px;}
.y1cd{bottom:647.820000px;}
.y16{bottom:649.620000px;}
.yb9{bottom:651.420000px;}
.y77{bottom:652.140000px;}
.y8f{bottom:653.940000px;}
.y4a{bottom:657.180000px;}
.y1aa{bottom:658.980000px;}
.yd7{bottom:659.340000px;}
.y189{bottom:664.380000px;}
.ydf{bottom:665.460000px;}
.ye3{bottom:666.180000px;}
.y1cc{bottom:666.540000px;}
.y15{bottom:666.900000px;}
.y10a{bottom:668.700000px;}
.y1e2{bottom:670.500000px;}
.y76{bottom:671.220000px;}
.y8e{bottom:673.020000px;}
.y49{bottom:676.260000px;}
.y1a9{bottom:678.060000px;}
.y215{bottom:682.740000px;}
.y188{bottom:683.100000px;}
.y14{bottom:684.180000px;}
.yb8{bottom:684.900000px;}
.y1cb{bottom:685.620000px;}
.y1e1{bottom:689.580000px;}
.y75{bottom:689.940000px;}
.y8d{bottom:691.740000px;}
.y148{bottom:694.980000px;}
.y48{bottom:695.340000px;}
.y1a8{bottom:697.140000px;}
.y214{bottom:700.050000px;}
.y13{bottom:701.490000px;}
.y187{bottom:702.210000px;}
.y1ca{bottom:704.370000px;}
.y160{bottom:707.250000px;}
.y1e0{bottom:708.330000px;}
.y74{bottom:709.050000px;}
.y8c{bottom:710.850000px;}
.y109{bottom:711.570000px;}
.y47{bottom:714.450000px;}
.y1a7{bottom:715.890000px;}
.y213{bottom:717.330000px;}
.y12{bottom:718.770000px;}
.y186{bottom:721.290000px;}
.y1c9{bottom:723.450000px;}
.yf0{bottom:725.250000px;}
.y15f{bottom:726.330000px;}
.y1df{bottom:727.410000px;}
.y73{bottom:728.130000px;}
.y8b{bottom:729.930000px;}
.y46{bottom:733.170000px;}
.y212{bottom:734.610000px;}
.y1a6{bottom:734.970000px;}
.y11{bottom:736.050000px;}
.y12c{bottom:737.490000px;}
.y185{bottom:740.010000px;}
.y1c8{bottom:742.530000px;}
.y15e{bottom:745.410000px;}
.y108{bottom:746.490000px;}
.y72{bottom:747.210000px;}
.y8a{bottom:748.650000px;}
.y211{bottom:751.890000px;}
.y45{bottom:752.250000px;}
.yb7{bottom:752.610000px;}
.y10{bottom:752.970000px;}
.y1a5{bottom:754.050000px;}
.y184{bottom:759.090000px;}
.y1c7{bottom:761.610000px;}
.y15d{bottom:764.130000px;}
.y1de{bottom:765.570000px;}
.y71{bottom:767.730000px;}
.y210{bottom:769.170000px;}
.yf{bottom:770.250000px;}
.y147{bottom:770.970000px;}
.y44{bottom:771.330000px;}
.y1a4{bottom:772.770000px;}
.y183{bottom:778.170000px;}
.yd4{bottom:778.890000px;}
.y1c6{bottom:780.690000px;}
.yda{bottom:783.210000px;}
.y15c{bottom:783.930000px;}
.yd1{bottom:784.650000px;}
.ydd{bottom:785.010000px;}
.yb6{bottom:786.450000px;}
.y70{bottom:786.810000px;}
.ye{bottom:787.890000px;}
.y146{bottom:789.690000px;}
.y43{bottom:790.050000px;}
.y1a3{bottom:791.490000px;}
.y182{bottom:796.890000px;}
.y1c5{bottom:800.850000px;}
.y20f{bottom:803.730000px;}
.y6f{bottom:805.530000px;}
.yd{bottom:807.330000px;}
.y1dd{bottom:808.050000px;}
.y42{bottom:809.130000px;}
.y181{bottom:815.970000px;}
.y124{bottom:816.330000px;}
.y1c4{bottom:818.130000px;}
.yb5{bottom:819.930000px;}
.y20e{bottom:821.010000px;}
.y6e{bottom:824.610000px;}
.y1dc{bottom:825.375000px;}
.y15b{bottom:826.455000px;}
.y41{bottom:828.255000px;}
.yc{bottom:829.335000px;}
.y180{bottom:835.095000px;}
.y1c3{bottom:835.455000px;}
.y20d{bottom:837.975000px;}
.yb4{bottom:840.135000px;}
.y1db{bottom:841.935000px;}
.y6d{bottom:843.735000px;}
.yee{bottom:844.455000px;}
.y15a{bottom:845.535000px;}
.y40{bottom:846.975000px;}
.yb{bottom:848.775000px;}
.y1c2{bottom:849.135000px;}
.y1da{bottom:852.735000px;}
.y17f{bottom:854.175000px;}
.y20c{bottom:855.255000px;}
.yb3{bottom:859.215000px;}
.y6c{bottom:862.815000px;}
.y159{bottom:864.255000px;}
.y3f{bottom:866.055000px;}
.y107{bottom:870.735000px;}
.y17e{bottom:872.175000px;}
.y20b{bottom:872.535000px;}
.ya{bottom:876.495000px;}
.yb2{bottom:877.935000px;}
.y6b{bottom:881.535000px;}
.y158{bottom:883.335000px;}
.y89{bottom:883.695000px;}
.yf6{bottom:885.135000px;}
.y17d{bottom:886.935000px;}
.y20a{bottom:889.815000px;}
.y9{bottom:890.175000px;}
.y120{bottom:891.255000px;}
.yb1{bottom:895.575000px;}
.y6a{bottom:900.615000px;}
.y157{bottom:902.415000px;}
.y3e{bottom:904.215000px;}
.y17c{bottom:905.655000px;}
.y209{bottom:907.095000px;}
.y106{bottom:912.135000px;}
.yb0{bottom:914.295000px;}
.y69{bottom:919.695000px;}
.y156{bottom:921.135000px;}
.y145{bottom:922.575000px;}
.y3d{bottom:922.935000px;}
.y17b{bottom:924.015000px;}
.y208{bottom:924.375000px;}
.y8{bottom:931.575000px;}
.yaf{bottom:933.375000px;}
.y68{bottom:938.415000px;}
.y155{bottom:940.215000px;}
.y207{bottom:941.655000px;}
.y3c{bottom:942.015000px;}
.y129{bottom:948.855000px;}
.yae{bottom:952.485000px;}
.y105{bottom:953.565000px;}
.y128{bottom:955.365000px;}
.y67{bottom:957.885000px;}
.y206{bottom:958.965000px;}
.y154{bottom:959.325000px;}
.y3b{bottom:961.125000px;}
.y17a{bottom:961.845000px;}
.yad{bottom:973.005000px;}
.y7{bottom:975.165000px;}
.y205{bottom:976.245000px;}
.y66{bottom:978.405000px;}
.y3a{bottom:979.845000px;}
.yac{bottom:992.085000px;}
.y179{bottom:992.445000px;}
.y204{bottom:993.525000px;}
.y104{bottom:994.965000px;}
.y153{bottom:997.125000px;}
.y39{bottom:998.925000px;}
.y6{bottom:1000.725000px;}
.y178{bottom:1005.765000px;}
.y203{bottom:1010.805000px;}
.yab{bottom:1011.165000px;}
.y152{bottom:1016.205000px;}
.y144{bottom:1017.645000px;}
.y65{bottom:1018.005000px;}
.y11c{bottom:1018.365000px;}
.y11f{bottom:1024.125000px;}
.y177{bottom:1024.845000px;}
.y202{bottom:1028.085000px;}
.yaa{bottom:1029.885000px;}
.y5{bottom:1034.565000px;}
.y151{bottom:1035.285000px;}
.y103{bottom:1036.365000px;}
.y38{bottom:1036.725000px;}
.y176{bottom:1043.925000px;}
.y201{bottom:1045.005000px;}
.ya9{bottom:1048.965000px;}
.y150{bottom:1054.005000px;}
.y37{bottom:1055.805000px;}
.y175{bottom:1061.925000px;}
.y200{bottom:1062.285000px;}
.y4{bottom:1068.045000px;}
.y14f{bottom:1073.085000px;}
.y36{bottom:1074.885000px;}
.y174{bottom:1076.685000px;}
.y102{bottom:1077.810000px;}
.y1ff{bottom:1079.610000px;}
.ya8{bottom:1088.610000px;}
.y14e{bottom:1092.210000px;}
.yf5{bottom:1093.650000px;}
.y35{bottom:1094.010000px;}
.y173{bottom:1095.090000px;}
.y1fe{bottom:1096.890000px;}
.y125{bottom:1098.690000px;}
.y3{bottom:1101.930000px;}
.y101{bottom:1105.530000px;}
.ya7{bottom:1108.410000px;}
.yf4{bottom:1111.290000px;}
.y143{bottom:1112.370000px;}
.y34{bottom:1112.730000px;}
.y1fd{bottom:1114.170000px;}
.y1{bottom:1141.170000px;}
.h26{height:17.640000px;}
.h24{height:19.080000px;}
.h1c{height:20.160000px;}
.h28{height:20.556000px;}
.h27{height:21.240000px;}
.h25{height:23.796000px;}
.h23{height:26.280000px;}
.h29{height:26.640000px;}
.h1a{height:30.240000px;}
.h1b{height:32.040000px;}
.h33{height:35.332031px;}
.h16{height:38.196000px;}
.h22{height:38.880000px;}
.h2a{height:39.240000px;}
.h11{height:39.600000px;}
.h17{height:39.636000px;}
.h2f{height:40.680000px;}
.h31{height:40.985156px;}
.h20{height:41.436000px;}
.h15{height:41.796000px;}
.h14{height:42.156000px;}
.h18{height:43.236000px;}
.h13{height:43.956000px;}
.h2b{height:44.316000px;}
.h21{height:44.640000px;}
.h2e{height:45.360000px;}
.h12{height:46.116000px;}
.h6{height:46.638281px;}
.h2d{height:47.160000px;}
.h2c{height:47.196000px;}
.hc{height:50.229844px;}
.h1f{height:53.704687px;}
.h19{height:57.996000px;}
.ha{height:59.328281px;}
.h2{height:59.357813px;}
.he{height:59.383125px;}
.h32{height:60.952500px;}
.h9{height:64.978594px;}
.h7{height:65.010937px;}
.h1e{height:66.757500px;}
.hd{height:68.084282px;}
.h30{height:68.956875px;}
.h5{height:70.664062px;}
.h10{height:72.562500px;}
.hf{height:74.953125px;}
.h8{height:76.279219px;}
.h4{height:76.317188px;}
.h3{height:80.944453px;}
.hb{height:86.945625px;}
.h1d{height:97.233750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1a{width:49.356000px;}
.w19{width:55.080000px;}
.w1b{width:65.880000px;}
.w13{width:94.716000px;}
.w3{width:97.236000px;}
.wa{width:99.756000px;}
.w12{width:103.716000px;}
.w8{width:104.796000px;}
.wc{width:105.876000px;}
.wb{width:106.992000px;}
.w1e{width:107.676000px;}
.w9{width:109.116000px;}
.w18{width:111.996000px;}
.w1c{width:115.596000px;}
.w6{width:118.116000px;}
.w4{width:118.476000px;}
.w5{width:118.872000px;}
.w7{width:120.996000px;}
.we{width:124.236000px;}
.wd{width:125.316000px;}
.w1d{width:127.152000px;}
.w10{width:137.556000px;}
.w11{width:154.110000px;}
.w14{width:180.075000px;}
.wf{width:181.830000px;}
.w15{width:193.755000px;}
.w17{width:199.155000px;}
.w16{width:201.315000px;}
.w20{width:209.235000px;}
.w1f{width:209.265000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1b{left:10.800000px;}
.x1d{left:11.880000px;}
.x3f{left:14.040000px;}
.x16{left:15.480000px;}
.x23{left:16.920000px;}
.x19{left:18.036000px;}
.x12{left:21.243000px;}
.x25{left:23.439000px;}
.x1e{left:29.520000px;}
.x21{left:32.445000px;}
.x13{left:33.483000px;}
.x44{left:35.670000px;}
.x18{left:37.479000px;}
.x35{left:38.523000px;}
.x15{left:40.725000px;}
.x26{left:42.165000px;}
.x37{left:52.590000px;}
.x43{left:53.640000px;}
.x40{left:57.600000px;}
.x33{left:59.070000px;}
.x3a{left:60.870000px;}
.x28{left:61.950000px;}
.x42{left:63.390000px;}
.x46{left:74.190000px;}
.x38{left:100.470000px;}
.x47{left:104.430000px;}
.x2{left:123.155987px;}
.x17{left:131.076000px;}
.x24{left:132.876000px;}
.x1{left:137.555987px;}
.x11{left:142.632000px;}
.x5{left:145.151987px;}
.x34{left:148.392000px;}
.xd{left:150.194987px;}
.xe{left:157.034987px;}
.xc{left:163.874987px;}
.x8{left:175.034987px;}
.x49{left:177.194987px;}
.x2c{left:189.434987px;}
.x45{left:194.475000px;}
.x4{left:204.554987px;}
.x6{left:205.994987px;}
.x31{left:207.795000px;}
.x7{left:218.594987px;}
.xb{left:249.224987px;}
.x2a{left:271.185000px;}
.x14{left:291.345000px;}
.x20{left:309.345000px;}
.x10{left:348.989987px;}
.x2b{left:351.870000px;}
.x52{left:352.949987px;}
.x4b{left:357.269987px;}
.x2f{left:363.029987px;}
.x4e{left:364.469987px;}
.x9{left:366.989987px;}
.x2e{left:368.789987px;}
.x50{left:370.589987px;}
.x2d{left:373.469987px;}
.x29{left:428.940000px;}
.xf{left:442.979987px;}
.x3{left:446.579987px;}
.x1c{left:460.620000px;}
.x39{left:469.260000px;}
.x27{left:483.300000px;}
.x32{left:486.180000px;}
.x1f{left:487.980000px;}
.x48{left:495.180000px;}
.x36{left:496.980000px;}
.x41{left:510.300000px;}
.x3e{left:520.410000px;}
.x3b{left:521.490000px;}
.x30{left:523.650000px;}
.x3c{left:547.410000px;}
.x4a{left:548.849987px;}
.x1a{left:638.895000px;}
.x22{left:653.655000px;}
.x4d{left:659.054987px;}
.x4f{left:674.894987px;}
.x3d{left:686.055000px;}
.x51{left:724.964987px;}
.x4c{left:754.844987px;}
.xa{left:762.404987px;}
@media print{
.v1{vertical-align:-79.360000pt;}
.v4{vertical-align:-72.960000pt;}
.v7{vertical-align:-67.840000pt;}
.v6{vertical-align:-66.560000pt;}
.v8{vertical-align:-62.720000pt;}
.vb{vertical-align:-61.440000pt;}
.v9{vertical-align:-57.600000pt;}
.va{vertical-align:-56.320000pt;}
.v3{vertical-align:-48.640000pt;}
.v5{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.ls11{letter-spacing:-1.280000pt;}
.ls27{letter-spacing:-1.008000pt;}
.ls25{letter-spacing:-0.981333pt;}
.lsf{letter-spacing:-0.832000pt;}
.ls29{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.506667pt;}
.ls14{letter-spacing:-0.448000pt;}
.ls26{letter-spacing:-0.406933pt;}
.ls1a{letter-spacing:-0.271467pt;}
.ls24{letter-spacing:-0.250667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.017920pt;}
.ls1{letter-spacing:0.040107pt;}
.ls28{letter-spacing:0.071467pt;}
.ls22{letter-spacing:0.071680pt;}
.ls2d{letter-spacing:0.135467pt;}
.lsd{letter-spacing:0.158720pt;}
.ls2{letter-spacing:0.226560pt;}
.ls10{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:0.265387pt;}
.ls13{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.401920pt;}
.ls8{letter-spacing:0.560640pt;}
.ls4{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.650667pt;}
.ls17{letter-spacing:0.719360pt;}
.ls16{letter-spacing:0.736000pt;}
.ls2a{letter-spacing:0.872960pt;}
.ls19{letter-spacing:0.874667pt;}
.lse{letter-spacing:1.024000pt;}
.ls12{letter-spacing:1.280000pt;}
.ls15{letter-spacing:1.552000pt;}
.lsb{letter-spacing:6.528000pt;}
.ls7{letter-spacing:19.051947pt;}
.ls1b{letter-spacing:43.791360pt;}
.lsa{letter-spacing:59.162027pt;}
.ls5{letter-spacing:71.168000pt;}
.ls1d{letter-spacing:81.418667pt;}
.ls3{letter-spacing:436.085333pt;}
.ls2c{letter-spacing:593.525333pt;}
.ls1f{letter-spacing:620.708267pt;}
.ls1e{letter-spacing:694.645333pt;}
.ls21{letter-spacing:719.285333pt;}
.ls20{letter-spacing:807.765333pt;}
.ls2b{letter-spacing:813.845333pt;}
.ls23{letter-spacing:861.525333pt;}
.ls2f{letter-spacing:1135.232000pt;}
.ws0{word-spacing:-26.560000pt;}
.ws1{word-spacing:-21.440000pt;}
.ws6{word-spacing:-18.560000pt;}
.ws4{word-spacing:-17.280000pt;}
.wsa{word-spacing:-17.024000pt;}
.wsc{word-spacing:-16.272000pt;}
.ws2{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.594667pt;}
.wsb{word-spacing:-15.552000pt;}
.wsd{word-spacing:-15.456000pt;}
.ws12{word-spacing:-15.360000pt;}
.ws14{word-spacing:-14.991467pt;}
.ws17{word-spacing:-14.855467pt;}
.ws16{word-spacing:-14.791467pt;}
.ws7{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.469333pt;}
.wsf{word-spacing:-14.448533pt;}
.ws13{word-spacing:-14.313067pt;}
.ws5{word-spacing:-14.080000pt;}
.ws11{word-spacing:-13.738667pt;}
.ws15{word-spacing:-13.712000pt;}
.ws19{word-spacing:-13.457920pt;}
.ws9{word-spacing:-13.440000pt;}
.ws18{word-spacing:-12.800000pt;}
.ws3{word-spacing:-10.560000pt;}
.ws8{word-spacing:0.000000pt;}
._25{margin-left:-147.752960pt;}
._29{margin-left:-145.351680pt;}
._24{margin-left:-144.106667pt;}
._28{margin-left:-141.440000pt;}
._2c{margin-left:-135.040000pt;}
._2b{margin-left:-121.374720pt;}
._2a{margin-left:-118.560000pt;}
._23{margin-left:-108.984747pt;}
._27{margin-left:-75.592320pt;}
._26{margin-left:-72.320000pt;}
._30{margin-left:-7.705173pt;}
._4{margin-left:-2.688000pt;}
._0{margin-left:-1.720320pt;}
._1{width:1.236480pt;}
._2{width:2.172587pt;}
._6{width:3.714133pt;}
._d{width:5.061973pt;}
._a{width:6.324907pt;}
._9{width:7.580160pt;}
._5{width:8.547840pt;}
._3{width:9.569280pt;}
._8{width:10.805760pt;}
._7{width:12.042240pt;}
._14{width:13.063680pt;}
._c{width:14.407680pt;}
._b{width:15.375360pt;}
._e{width:17.088427pt;}
._f{width:18.010880pt;}
._17{width:19.291733pt;}
._18{width:20.755200pt;}
._1b{width:21.838933pt;}
._10{width:23.483307pt;}
._12{width:25.518507pt;}
._11{width:27.031040pt;}
._19{width:27.921920pt;}
._1a{width:29.036373pt;}
._2e{width:30.822827pt;}
._1d{width:33.052587pt;}
._1c{width:33.973760pt;}
._1f{width:34.882560pt;}
._1e{width:36.026880pt;}
._22{width:37.120000pt;}
._2f{width:44.280747pt;}
._16{width:60.399360pt;}
._15{width:61.550507pt;}
._21{width:66.150400pt;}
._13{width:380.204800pt;}
._20{width:537.173333pt;}
._2d{width:591.580587pt;}
.fsc{font-size:32.000000pt;}
.fsb{font-size:37.120000pt;}
.fs6{font-size:42.240000pt;}
.fs4{font-size:44.800000pt;}
.fsa{font-size:48.640000pt;}
.fsd{font-size:51.200000pt;}
.fs0{font-size:53.760000pt;}
.fs8{font-size:56.320000pt;}
.fs7{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs9{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.fs1{font-size:106.240000pt;}
.y123{bottom:-14.080000pt;}
.yed{bottom:-13.440000pt;}
.y12f{bottom:-13.120000pt;}
.y12d{bottom:-12.480000pt;}
.y13f{bottom:-11.520000pt;}
.y142{bottom:-8.640000pt;}
.y133{bottom:-8.320000pt;}
.y13d{bottom:-7.360000pt;}
.y137{bottom:-5.760000pt;}
.y0{bottom:0.000000pt;}
.ye2{bottom:0.960000pt;}
.y126{bottom:2.240000pt;}
.yeb{bottom:3.200000pt;}
.ye1{bottom:3.520000pt;}
.yd3{bottom:3.840000pt;}
.ydc{bottom:4.160000pt;}
.y12a{bottom:4.186667pt;}
.yde{bottom:4.480000pt;}
.yf3{bottom:4.800000pt;}
.ye7{bottom:5.120000pt;}
.yd9{bottom:5.440000pt;}
.y11e{bottom:5.760000pt;}
.y121{bottom:6.080000pt;}
.yd6{bottom:6.400000pt;}
.y141{bottom:8.986667pt;}
.y132{bottom:9.280000pt;}
.y12b{bottom:9.600000pt;}
.y13c{bottom:10.240000pt;}
.y136{bottom:11.840000pt;}
.yef{bottom:12.800000pt;}
.yf1{bottom:14.400000pt;}
.ye0{bottom:20.480000pt;}
.yea{bottom:20.800000pt;}
.yd2{bottom:21.120000pt;}
.y12e{bottom:21.440000pt;}
.y11b{bottom:21.760000pt;}
.ydb{bottom:22.080000pt;}
.ye6{bottom:22.720000pt;}
.yd8{bottom:23.040000pt;}
.y11d{bottom:23.360000pt;}
.yd5{bottom:24.000000pt;}
.y131{bottom:25.946667pt;}
.y13b{bottom:26.880000pt;}
.y139{bottom:28.480000pt;}
.y135{bottom:28.506667pt;}
.ye9{bottom:37.760000pt;}
.yec{bottom:38.080000pt;}
.y2{bottom:98.912000pt;}
.y33{bottom:99.552000pt;}
.y32{bottom:116.832000pt;}
.y31{bottom:123.872000pt;}
.yd0{bottom:133.152000pt;}
.y64{bottom:137.946667pt;}
.y11a{bottom:138.586667pt;}
.ya6{bottom:139.546667pt;}
.y30{bottom:140.506667pt;}
.y100{bottom:145.626667pt;}
.y1a2{bottom:147.546667pt;}
.ycf{bottom:148.506667pt;}
.y1c1{bottom:148.826667pt;}
.y172{bottom:150.106667pt;}
.y119{bottom:153.946667pt;}
.y63{bottom:154.906667pt;}
.ya5{bottom:156.506667pt;}
.y2f{bottom:157.466667pt;}
.y1a1{bottom:159.386667pt;}
.y1fc{bottom:160.026667pt;}
.yff{bottom:162.586667pt;}
.yce{bottom:163.546667pt;}
.y1c0{bottom:165.466667pt;}
.y1d9{bottom:166.106667pt;}
.y171{bottom:166.746667pt;}
.y118{bottom:168.986667pt;}
.y62{bottom:171.866667pt;}
.ya4{bottom:173.186667pt;}
.y2e{bottom:174.466667pt;}
.y1fb{bottom:175.426667pt;}
.y1a0{bottom:176.386667pt;}
.ycd{bottom:179.266667pt;}
.yfe{bottom:179.586667pt;}
.y1bf{bottom:182.786667pt;}
.y117{bottom:183.426667pt;}
.y170{bottom:183.746667pt;}
.y61{bottom:188.546667pt;}
.y127{bottom:189.506667pt;}
.ya3{bottom:190.146667pt;}
.y1fa{bottom:190.786667pt;}
.y2d{bottom:191.426667pt;}
.y19f{bottom:193.346667pt;}
.ycc{bottom:196.226667pt;}
.y116{bottom:200.386667pt;}
.y16f{bottom:200.706667pt;}
.y60{bottom:205.506667pt;}
.y1f9{bottom:206.146667pt;}
.ya2{bottom:207.106667pt;}
.y2c{bottom:208.066667pt;}
.y19e{bottom:209.986667pt;}
.ycb{bottom:213.186667pt;}
.y16e{bottom:217.346667pt;}
.y1f8{bottom:221.506667pt;}
.y5f{bottom:222.466667pt;}
.ya1{bottom:223.746667pt;}
.y2b{bottom:225.026667pt;}
.y19d{bottom:226.946667pt;}
.y115{bottom:227.586667pt;}
.yca{bottom:229.826667pt;}
.yfd{bottom:230.146667pt;}
.y1be{bottom:231.426667pt;}
.y16d{bottom:234.306667pt;}
.y122{bottom:235.266667pt;}
.y1f7{bottom:236.866667pt;}
.y5e{bottom:239.106667pt;}
.ya0{bottom:240.706667pt;}
.y2a{bottom:241.986667pt;}
.y19c{bottom:243.906667pt;}
.yc9{bottom:246.786667pt;}
.y1bd{bottom:248.386667pt;}
.y16c{bottom:251.266667pt;}
.y1f6{bottom:252.226667pt;}
.y5d{bottom:256.066667pt;}
.y114{bottom:256.706667pt;}
.y9f{bottom:257.666667pt;}
.y29{bottom:258.626667pt;}
.y19b{bottom:260.546667pt;}
.yc8{bottom:263.746667pt;}
.y1bc{bottom:265.346667pt;}
.y1f5{bottom:267.586667pt;}
.y16b{bottom:268.226667pt;}
.y5c{bottom:273.026667pt;}
.y9e{bottom:274.626667pt;}
.y28{bottom:275.586667pt;}
.y19a{bottom:277.506667pt;}
.y140{bottom:278.466667pt;}
.yc7{bottom:280.706667pt;}
.y1bb{bottom:282.306667pt;}
.y1f4{bottom:282.946667pt;}
.y16a{bottom:284.893333pt;}
.y88{bottom:289.693333pt;}
.y5b{bottom:291.293333pt;}
.y27{bottom:292.573333pt;}
.y113{bottom:294.173333pt;}
.y199{bottom:294.493333pt;}
.yc6{bottom:297.373333pt;}
.y1f3{bottom:298.013333pt;}
.y1ba{bottom:298.973333pt;}
.y169{bottom:301.853333pt;}
.y87{bottom:306.653333pt;}
.y9d{bottom:308.253333pt;}
.y5a{bottom:308.893333pt;}
.y26{bottom:309.213333pt;}
.y198{bottom:311.453333pt;}
.y1f2{bottom:313.373333pt;}
.yc5{bottom:314.333333pt;}
.y1b9{bottom:315.933333pt;}
.y168{bottom:318.813333pt;}
.y86{bottom:323.613333pt;}
.y9c{bottom:325.213333pt;}
.y25{bottom:326.173333pt;}
.y197{bottom:328.093333pt;}
.y1f1{bottom:328.733333pt;}
.y59{bottom:329.693333pt;}
.yc4{bottom:331.293333pt;}
.y112{bottom:332.253333pt;}
.y1b8{bottom:332.893333pt;}
.y167{bottom:335.453333pt;}
.y85{bottom:340.573333pt;}
.y9b{bottom:341.853333pt;}
.y13a{bottom:342.813333pt;}
.y24{bottom:343.133333pt;}
.y14d{bottom:343.453333pt;}
.y1f0{bottom:344.093333pt;}
.y196{bottom:345.053333pt;}
.y58{bottom:346.653333pt;}
.y13e{bottom:346.973333pt;}
.yc3{bottom:347.933333pt;}
.yfc{bottom:348.253333pt;}
.y1b7{bottom:349.533333pt;}
.y166{bottom:352.413333pt;}
.y84{bottom:357.213333pt;}
.y9a{bottom:358.813333pt;}
.y1ef{bottom:359.453333pt;}
.y23{bottom:360.093333pt;}
.y14c{bottom:361.053333pt;}
.y195{bottom:362.013333pt;}
.y57{bottom:363.293333pt;}
.yc2{bottom:364.893333pt;}
.y1b6{bottom:366.493333pt;}
.y165{bottom:369.053333pt;}
.y111{bottom:370.333333pt;}
.y83{bottom:374.173333pt;}
.y1ee{bottom:375.453333pt;}
.y99{bottom:375.773333pt;}
.y22{bottom:376.733333pt;}
.y194{bottom:378.653333pt;}
.y56{bottom:380.253333pt;}
.yc1{bottom:381.853333pt;}
.y1b5{bottom:383.453333pt;}
.y164{bottom:384.733333pt;}
.y1d8{bottom:388.253333pt;}
.y82{bottom:391.133333pt;}
.y98{bottom:392.413333pt;}
.y1ed{bottom:393.693333pt;}
.y21{bottom:394.333333pt;}
.y193{bottom:395.613333pt;}
.y55{bottom:397.253333pt;}
.yc0{bottom:398.853333pt;}
.y1b4{bottom:400.133333pt;}
.y163{bottom:402.693333pt;}
.y1d7{bottom:403.973333pt;}
.y81{bottom:407.813333pt;}
.y110{bottom:408.453333pt;}
.y97{bottom:409.413333pt;}
.y1ec{bottom:410.373333pt;}
.y192{bottom:412.613333pt;}
.y54{bottom:414.213333pt;}
.y20{bottom:415.173333pt;}
.yfb{bottom:415.493333pt;}
.y138{bottom:416.453333pt;}
.y1b3{bottom:417.093333pt;}
.y162{bottom:418.053333pt;}
.y1d6{bottom:420.933333pt;}
.y80{bottom:425.093333pt;}
.y10f{bottom:425.413333pt;}
.y96{bottom:426.373333pt;}
.y1eb{bottom:427.333333pt;}
.y191{bottom:429.253333pt;}
.y161{bottom:430.213333pt;}
.ybf{bottom:430.533333pt;}
.y53{bottom:430.853333pt;}
.y1f{bottom:431.813333pt;}
.yfa{bottom:432.453333pt;}
.y1b2{bottom:434.053333pt;}
.y1d5{bottom:437.573333pt;}
.y7f{bottom:443.333333pt;}
.y1ea{bottom:444.293333pt;}
.ybe{bottom:445.893333pt;}
.y190{bottom:446.213333pt;}
.y1e{bottom:447.173333pt;}
.y52{bottom:447.813333pt;}
.y14b{bottom:449.093333pt;}
.yf9{bottom:449.413333pt;}
.y1b1{bottom:451.013333pt;}
.y1d4{bottom:454.533333pt;}
.y1e9{bottom:460.933333pt;}
.ybd{bottom:461.253333pt;}
.y7e{bottom:461.573333pt;}
.y95{bottom:461.893333pt;}
.y1d{bottom:462.853333pt;}
.y18f{bottom:463.173333pt;}
.y10e{bottom:463.493333pt;}
.y51{bottom:464.773333pt;}
.ye8{bottom:465.733333pt;}
.yf8{bottom:466.053333pt;}
.y1b0{bottom:467.653333pt;}
.y1d3{bottom:471.493333pt;}
.y1e8{bottom:477.893333pt;}
.y7d{bottom:478.533333pt;}
.ye4{bottom:478.853333pt;}
.y1c{bottom:480.133333pt;}
.y50{bottom:481.733333pt;}
.ye5{bottom:482.693333pt;}
.yf7{bottom:483.013333pt;}
.y1af{bottom:484.613333pt;}
.ybc{bottom:489.093333pt;}
.y1d2{bottom:489.733333pt;}
.y18e{bottom:490.693333pt;}
.y1e7{bottom:494.853333pt;}
.y134{bottom:495.173333pt;}
.y7c{bottom:495.493333pt;}
.y94{bottom:496.773333pt;}
.y130{bottom:497.733333pt;}
.y1b{bottom:499.653333pt;}
.y4f{bottom:499.973333pt;}
.y10d{bottom:501.573333pt;}
.y1d1{bottom:506.693333pt;}
.y18d{bottom:507.653333pt;}
.y1e6{bottom:511.520000pt;}
.y7b{bottom:512.160000pt;}
.y93{bottom:513.760000pt;}
.y1a{bottom:516.000000pt;}
.y14a{bottom:516.640000pt;}
.y4e{bottom:516.960000pt;}
.y1ae{bottom:518.240000pt;}
.ybb{bottom:518.880000pt;}
.y217{bottom:523.040000pt;}
.y1d0{bottom:523.680000pt;}
.y18c{bottom:524.000000pt;}
.y1e5{bottom:528.480000pt;}
.y7a{bottom:529.120000pt;}
.y92{bottom:530.720000pt;}
.y19{bottom:531.360000pt;}
.y149{bottom:533.280000pt;}
.y4d{bottom:533.600000pt;}
.y1ad{bottom:535.200000pt;}
.y18b{bottom:538.400000pt;}
.y10c{bottom:539.680000pt;}
.y1cf{bottom:540.640000pt;}
.y1e4{bottom:545.440000pt;}
.y79{bottom:546.080000pt;}
.y18{bottom:546.720000pt;}
.y91{bottom:547.360000pt;}
.yba{bottom:548.960000pt;}
.y4c{bottom:550.560000pt;}
.y1ac{bottom:552.160000pt;}
.yf2{bottom:552.480000pt;}
.y18a{bottom:555.040000pt;}
.y10b{bottom:556.640000pt;}
.y1ce{bottom:558.880000pt;}
.y17{bottom:562.080000pt;}
.y1e3{bottom:562.400000pt;}
.y78{bottom:562.720000pt;}
.y90{bottom:564.320000pt;}
.y4b{bottom:567.520000pt;}
.y1ab{bottom:568.800000pt;}
.y216{bottom:573.600000pt;}
.y1cd{bottom:575.840000pt;}
.y16{bottom:577.440000pt;}
.yb9{bottom:579.040000pt;}
.y77{bottom:579.680000pt;}
.y8f{bottom:581.280000pt;}
.y4a{bottom:584.160000pt;}
.y1aa{bottom:585.760000pt;}
.yd7{bottom:586.080000pt;}
.y189{bottom:590.560000pt;}
.ydf{bottom:591.520000pt;}
.ye3{bottom:592.160000pt;}
.y1cc{bottom:592.480000pt;}
.y15{bottom:592.800000pt;}
.y10a{bottom:594.400000pt;}
.y1e2{bottom:596.000000pt;}
.y76{bottom:596.640000pt;}
.y8e{bottom:598.240000pt;}
.y49{bottom:601.120000pt;}
.y1a9{bottom:602.720000pt;}
.y215{bottom:606.880000pt;}
.y188{bottom:607.200000pt;}
.y14{bottom:608.160000pt;}
.yb8{bottom:608.800000pt;}
.y1cb{bottom:609.440000pt;}
.y1e1{bottom:612.960000pt;}
.y75{bottom:613.280000pt;}
.y8d{bottom:614.880000pt;}
.y148{bottom:617.760000pt;}
.y48{bottom:618.080000pt;}
.y1a8{bottom:619.680000pt;}
.y214{bottom:622.266667pt;}
.y13{bottom:623.546667pt;}
.y187{bottom:624.186667pt;}
.y1ca{bottom:626.106667pt;}
.y160{bottom:628.666667pt;}
.y1e0{bottom:629.626667pt;}
.y74{bottom:630.266667pt;}
.y8c{bottom:631.866667pt;}
.y109{bottom:632.506667pt;}
.y47{bottom:635.066667pt;}
.y1a7{bottom:636.346667pt;}
.y213{bottom:637.626667pt;}
.y12{bottom:638.906667pt;}
.y186{bottom:641.146667pt;}
.y1c9{bottom:643.066667pt;}
.yf0{bottom:644.666667pt;}
.y15f{bottom:645.626667pt;}
.y1df{bottom:646.586667pt;}
.y73{bottom:647.226667pt;}
.y8b{bottom:648.826667pt;}
.y46{bottom:651.706667pt;}
.y212{bottom:652.986667pt;}
.y1a6{bottom:653.306667pt;}
.y11{bottom:654.266667pt;}
.y12c{bottom:655.546667pt;}
.y185{bottom:657.786667pt;}
.y1c8{bottom:660.026667pt;}
.y15e{bottom:662.586667pt;}
.y108{bottom:663.546667pt;}
.y72{bottom:664.186667pt;}
.y8a{bottom:665.466667pt;}
.y211{bottom:668.346667pt;}
.y45{bottom:668.666667pt;}
.yb7{bottom:668.986667pt;}
.y10{bottom:669.306667pt;}
.y1a5{bottom:670.266667pt;}
.y184{bottom:674.746667pt;}
.y1c7{bottom:676.986667pt;}
.y15d{bottom:679.226667pt;}
.y1de{bottom:680.506667pt;}
.y71{bottom:682.426667pt;}
.y210{bottom:683.706667pt;}
.yf{bottom:684.666667pt;}
.y147{bottom:685.306667pt;}
.y44{bottom:685.626667pt;}
.y1a4{bottom:686.906667pt;}
.y183{bottom:691.706667pt;}
.yd4{bottom:692.346667pt;}
.y1c6{bottom:693.946667pt;}
.yda{bottom:696.186667pt;}
.y15c{bottom:696.826667pt;}
.yd1{bottom:697.466667pt;}
.ydd{bottom:697.786667pt;}
.yb6{bottom:699.066667pt;}
.y70{bottom:699.386667pt;}
.ye{bottom:700.346667pt;}
.y146{bottom:701.946667pt;}
.y43{bottom:702.266667pt;}
.y1a3{bottom:703.546667pt;}
.y182{bottom:708.346667pt;}
.y1c5{bottom:711.866667pt;}
.y20f{bottom:714.426667pt;}
.y6f{bottom:716.026667pt;}
.yd{bottom:717.626667pt;}
.y1dd{bottom:718.266667pt;}
.y42{bottom:719.226667pt;}
.y181{bottom:725.306667pt;}
.y124{bottom:725.626667pt;}
.y1c4{bottom:727.226667pt;}
.yb5{bottom:728.826667pt;}
.y20e{bottom:729.786667pt;}
.y6e{bottom:732.986667pt;}
.y1dc{bottom:733.666667pt;}
.y15b{bottom:734.626667pt;}
.y41{bottom:736.226667pt;}
.yc{bottom:737.186667pt;}
.y180{bottom:742.306667pt;}
.y1c3{bottom:742.626667pt;}
.y20d{bottom:744.866667pt;}
.yb4{bottom:746.786667pt;}
.y1db{bottom:748.386667pt;}
.y6d{bottom:749.986667pt;}
.yee{bottom:750.626667pt;}
.y15a{bottom:751.586667pt;}
.y40{bottom:752.866667pt;}
.yb{bottom:754.466667pt;}
.y1c2{bottom:754.786667pt;}
.y1da{bottom:757.986667pt;}
.y17f{bottom:759.266667pt;}
.y20c{bottom:760.226667pt;}
.yb3{bottom:763.746667pt;}
.y6c{bottom:766.946667pt;}
.y159{bottom:768.226667pt;}
.y3f{bottom:769.826667pt;}
.y107{bottom:773.986667pt;}
.y17e{bottom:775.266667pt;}
.y20b{bottom:775.586667pt;}
.ya{bottom:779.106667pt;}
.yb2{bottom:780.386667pt;}
.y6b{bottom:783.586667pt;}
.y158{bottom:785.186667pt;}
.y89{bottom:785.506667pt;}
.yf6{bottom:786.786667pt;}
.y17d{bottom:788.386667pt;}
.y20a{bottom:790.946667pt;}
.y9{bottom:791.266667pt;}
.y120{bottom:792.226667pt;}
.yb1{bottom:796.066667pt;}
.y6a{bottom:800.546667pt;}
.y157{bottom:802.146667pt;}
.y3e{bottom:803.746667pt;}
.y17c{bottom:805.026667pt;}
.y209{bottom:806.306667pt;}
.y106{bottom:810.786667pt;}
.yb0{bottom:812.706667pt;}
.y69{bottom:817.506667pt;}
.y156{bottom:818.786667pt;}
.y145{bottom:820.066667pt;}
.y3d{bottom:820.386667pt;}
.y17b{bottom:821.346667pt;}
.y208{bottom:821.666667pt;}
.y8{bottom:828.066667pt;}
.yaf{bottom:829.666667pt;}
.y68{bottom:834.146667pt;}
.y155{bottom:835.746667pt;}
.y207{bottom:837.026667pt;}
.y3c{bottom:837.346667pt;}
.y129{bottom:843.426667pt;}
.yae{bottom:846.653333pt;}
.y105{bottom:847.613333pt;}
.y128{bottom:849.213333pt;}
.y67{bottom:851.453333pt;}
.y206{bottom:852.413333pt;}
.y154{bottom:852.733333pt;}
.y3b{bottom:854.333333pt;}
.y17a{bottom:854.973333pt;}
.yad{bottom:864.893333pt;}
.y7{bottom:866.813333pt;}
.y205{bottom:867.773333pt;}
.y66{bottom:869.693333pt;}
.y3a{bottom:870.973333pt;}
.yac{bottom:881.853333pt;}
.y179{bottom:882.173333pt;}
.y204{bottom:883.133333pt;}
.y104{bottom:884.413333pt;}
.y153{bottom:886.333333pt;}
.y39{bottom:887.933333pt;}
.y6{bottom:889.533333pt;}
.y178{bottom:894.013333pt;}
.y203{bottom:898.493333pt;}
.yab{bottom:898.813333pt;}
.y152{bottom:903.293333pt;}
.y144{bottom:904.573333pt;}
.y65{bottom:904.893333pt;}
.y11c{bottom:905.213333pt;}
.y11f{bottom:910.333333pt;}
.y177{bottom:910.973333pt;}
.y202{bottom:913.853333pt;}
.yaa{bottom:915.453333pt;}
.y5{bottom:919.613333pt;}
.y151{bottom:920.253333pt;}
.y103{bottom:921.213333pt;}
.y38{bottom:921.533333pt;}
.y176{bottom:927.933333pt;}
.y201{bottom:928.893333pt;}
.ya9{bottom:932.413333pt;}
.y150{bottom:936.893333pt;}
.y37{bottom:938.493333pt;}
.y175{bottom:943.933333pt;}
.y200{bottom:944.253333pt;}
.y4{bottom:949.373333pt;}
.y14f{bottom:953.853333pt;}
.y36{bottom:955.453333pt;}
.y174{bottom:957.053333pt;}
.y102{bottom:958.053333pt;}
.y1ff{bottom:959.653333pt;}
.ya8{bottom:967.653333pt;}
.y14e{bottom:970.853333pt;}
.yf5{bottom:972.133333pt;}
.y35{bottom:972.453333pt;}
.y173{bottom:973.413333pt;}
.y1fe{bottom:975.013333pt;}
.y125{bottom:976.613333pt;}
.y3{bottom:979.493333pt;}
.y101{bottom:982.693333pt;}
.ya7{bottom:985.253333pt;}
.yf4{bottom:987.813333pt;}
.y143{bottom:988.773333pt;}
.y34{bottom:989.093333pt;}
.y1fd{bottom:990.373333pt;}
.y1{bottom:1014.373333pt;}
.h26{height:15.680000pt;}
.h24{height:16.960000pt;}
.h1c{height:17.920000pt;}
.h28{height:18.272000pt;}
.h27{height:18.880000pt;}
.h25{height:21.152000pt;}
.h23{height:23.360000pt;}
.h29{height:23.680000pt;}
.h1a{height:26.880000pt;}
.h1b{height:28.480000pt;}
.h33{height:31.406250pt;}
.h16{height:33.952000pt;}
.h22{height:34.560000pt;}
.h2a{height:34.880000pt;}
.h11{height:35.200000pt;}
.h17{height:35.232000pt;}
.h2f{height:36.160000pt;}
.h31{height:36.431250pt;}
.h20{height:36.832000pt;}
.h15{height:37.152000pt;}
.h14{height:37.472000pt;}
.h18{height:38.432000pt;}
.h13{height:39.072000pt;}
.h2b{height:39.392000pt;}
.h21{height:39.680000pt;}
.h2e{height:40.320000pt;}
.h12{height:40.992000pt;}
.h6{height:41.456250pt;}
.h2d{height:41.920000pt;}
.h2c{height:41.952000pt;}
.hc{height:44.648750pt;}
.h1f{height:47.737500pt;}
.h19{height:51.552000pt;}
.ha{height:52.736250pt;}
.h2{height:52.762500pt;}
.he{height:52.785000pt;}
.h32{height:54.180000pt;}
.h9{height:57.758750pt;}
.h7{height:57.787500pt;}
.h1e{height:59.340000pt;}
.hd{height:60.519362pt;}
.h30{height:61.295000pt;}
.h5{height:62.812500pt;}
.h10{height:64.500000pt;}
.hf{height:66.625000pt;}
.h8{height:67.803750pt;}
.h4{height:67.837500pt;}
.h3{height:71.950625pt;}
.hb{height:77.285000pt;}
.h1d{height:86.430000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1a{width:43.872000pt;}
.w19{width:48.960000pt;}
.w1b{width:58.560000pt;}
.w13{width:84.192000pt;}
.w3{width:86.432000pt;}
.wa{width:88.672000pt;}
.w12{width:92.192000pt;}
.w8{width:93.152000pt;}
.wc{width:94.112000pt;}
.wb{width:95.104000pt;}
.w1e{width:95.712000pt;}
.w9{width:96.992000pt;}
.w18{width:99.552000pt;}
.w1c{width:102.752000pt;}
.w6{width:104.992000pt;}
.w4{width:105.312000pt;}
.w5{width:105.664000pt;}
.w7{width:107.552000pt;}
.we{width:110.432000pt;}
.wd{width:111.392000pt;}
.w1d{width:113.024000pt;}
.w10{width:122.272000pt;}
.w11{width:136.986667pt;}
.w14{width:160.066667pt;}
.wf{width:161.626667pt;}
.w15{width:172.226667pt;}
.w17{width:177.026667pt;}
.w16{width:178.946667pt;}
.w20{width:185.986667pt;}
.w1f{width:186.013333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1b{left:9.600000pt;}
.x1d{left:10.560000pt;}
.x3f{left:12.480000pt;}
.x16{left:13.760000pt;}
.x23{left:15.040000pt;}
.x19{left:16.032000pt;}
.x12{left:18.882667pt;}
.x25{left:20.834667pt;}
.x1e{left:26.240000pt;}
.x21{left:28.840000pt;}
.x13{left:29.762667pt;}
.x44{left:31.706667pt;}
.x18{left:33.314667pt;}
.x35{left:34.242667pt;}
.x15{left:36.200000pt;}
.x26{left:37.480000pt;}
.x37{left:46.746667pt;}
.x43{left:47.680000pt;}
.x40{left:51.200000pt;}
.x33{left:52.506667pt;}
.x3a{left:54.106667pt;}
.x28{left:55.066667pt;}
.x42{left:56.346667pt;}
.x46{left:65.946667pt;}
.x38{left:89.306667pt;}
.x47{left:92.826667pt;}
.x2{left:109.471988pt;}
.x17{left:116.512000pt;}
.x24{left:118.112000pt;}
.x1{left:122.271988pt;}
.x11{left:126.784000pt;}
.x5{left:129.023988pt;}
.x34{left:131.904000pt;}
.xd{left:133.506655pt;}
.xe{left:139.586655pt;}
.xc{left:145.666655pt;}
.x8{left:155.586655pt;}
.x49{left:157.506655pt;}
.x2c{left:168.386655pt;}
.x45{left:172.866667pt;}
.x4{left:181.826655pt;}
.x6{left:183.106655pt;}
.x31{left:184.706667pt;}
.x7{left:194.306655pt;}
.xb{left:221.533322pt;}
.x2a{left:241.053333pt;}
.x14{left:258.973333pt;}
.x20{left:274.973333pt;}
.x10{left:310.213322pt;}
.x2b{left:312.773333pt;}
.x52{left:313.733322pt;}
.x4b{left:317.573322pt;}
.x2f{left:322.693322pt;}
.x4e{left:323.973322pt;}
.x9{left:326.213322pt;}
.x2e{left:327.813322pt;}
.x50{left:329.413322pt;}
.x2d{left:331.973322pt;}
.x29{left:381.280000pt;}
.xf{left:393.759988pt;}
.x3{left:396.959988pt;}
.x1c{left:409.440000pt;}
.x39{left:417.120000pt;}
.x27{left:429.600000pt;}
.x32{left:432.160000pt;}
.x1f{left:433.760000pt;}
.x48{left:440.160000pt;}
.x36{left:441.760000pt;}
.x41{left:453.600000pt;}
.x3e{left:462.586667pt;}
.x3b{left:463.546667pt;}
.x30{left:465.466667pt;}
.x3c{left:486.586667pt;}
.x4a{left:487.866655pt;}
.x1a{left:567.906667pt;}
.x22{left:581.026667pt;}
.x4d{left:585.826655pt;}
.x4f{left:599.906655pt;}
.x3d{left:609.826667pt;}
.x51{left:644.413322pt;}
.x4c{left:670.973322pt;}
.xa{left:677.693322pt;}
}




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