
    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_baf2ee28bc53dff9ad27f21d.woff')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_cbcb6978011e922dffe78126.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_45293b65fd4e6b67df62185d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5ea1094a88384ed75f209c04.woff')format("woff");}.ff4{font-family:ff4;line-height:0.708008;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_cb831bfc45030f6d94299355.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2708fd9fd160649447b04223.woff')format("woff");}.ff6{font-family:ff6;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b0b15e2014e9299aee880581.woff')format("woff");}.ff7{font-family:ff7;line-height:0.690918;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_33266788f5abbb78e14e9955.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5f459932aba5a9320d59779a.woff')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_b010e47a581509ad388b8702.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a07afe1b1823860ac453566f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.737793;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_165fb94c4df93711d2726227.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_9b03f4b4327374dcb79e06db.woff')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_06f5e4692831315512ab2715.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_4f4137585ebd749c1be6c6d0.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_00ed3d2b441a029495a17c7d.woff')format("woff");}.ff10{font-family:ff10;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_b5c37103281c953d38de906d.woff')format("woff");}.ff11{font-family:ff11;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls14{letter-spacing:-1.440000px;}
.ls20{letter-spacing:-1.080000px;}
.lse{letter-spacing:-0.810000px;}
.lsa{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.349800px;}
.ls18{letter-spacing:-0.269400px;}
.lsd{letter-spacing:-0.223800px;}
.ls21{letter-spacing:-0.206400px;}
.ls13{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.144720px;}
.ls5{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.181200px;}
.ls19{letter-spacing:0.226080px;}
.ls10{letter-spacing:0.259800px;}
.ls22{letter-spacing:0.259920px;}
.ls1c{letter-spacing:0.269400px;}
.ls24{letter-spacing:0.298800px;}
.lsf{letter-spacing:0.315600px;}
.ls6{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.466800px;}
.ls7{letter-spacing:0.493920px;}
.ls17{letter-spacing:0.513600px;}
.ls11{letter-spacing:0.666000px;}
.ls1f{letter-spacing:0.828000px;}
.ls15{letter-spacing:0.900000px;}
.ls23{letter-spacing:1.080000px;}
.ls1e{letter-spacing:3.060000px;}
.ls1b{letter-spacing:15.389280px;}
.ls1a{letter-spacing:15.569280px;}
.ls1d{letter-spacing:29.069280px;}
.ls3{letter-spacing:47.700000px;}
.ls12{letter-spacing:64.026720px;}
.ls1{letter-spacing:71.280000px;}
.ls2{letter-spacing:71.400000px;}
.ls0{letter-spacing:72.000000px;}
.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;}
}
.wsf{word-spacing:-59.760000px;}
.ws12{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.560000px;}
.ws17{word-spacing:-15.768000px;}
.ws11{word-spacing:-15.406800px;}
.wse{word-spacing:-15.300000px;}
.ws19{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.886720px;}
.ws18{word-spacing:-14.733600px;}
.ws16{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.500000px;}
.ws7{word-spacing:-12.420000px;}
.ws15{word-spacing:-12.329400px;}
.ws6{word-spacing:-12.241200px;}
.ws14{word-spacing:-12.060000px;}
.ws13{word-spacing:-11.790600px;}
.ws5{word-spacing:-11.340000px;}
.ws3{word-spacing:-10.990200px;}
.ws4{word-spacing:-10.980000px;}
.ws8{word-spacing:-10.950480px;}
.wsc{word-spacing:-10.755600px;}
.wsb{word-spacing:-10.440000px;}
.wsa{word-spacing:-9.000000px;}
.ws2{word-spacing:-7.560000px;}
.wsd{word-spacing:0.000000px;}
.ws0{word-spacing:60.840000px;}
._5{margin-left:-59.580000px;}
._15{margin-left:-3.346560px;}
._16{margin-left:-2.198880px;}
._2{margin-left:-1.059840px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._a{width:4.003920px;}
._9{width:5.079600px;}
._10{width:6.334560px;}
._14{width:8.067600px;}
._12{width:9.203040px;}
._13{width:10.816560px;}
._19{width:12.080640px;}
._11{width:13.147200px;}
._1a{width:14.886000px;}
._b{width:16.434000px;}
._c{width:18.066960px;}
._8{width:19.617120px;}
._7{width:20.916000px;}
._d{width:22.529520px;}
._1e{width:23.967360px;}
._20{width:25.517520px;}
._2e{width:26.684640px;}
._24{width:27.728640px;}
._3f{width:28.733760px;}
._1b{width:29.743200px;}
._f{width:31.672800px;}
._26{width:32.720400px;}
._1f{width:33.943680px;}
._18{width:35.377920px;}
._2a{width:36.513360px;}
._2f{width:38.489040px;}
._1c{width:40.799520px;}
._e{width:41.891760px;}
._17{width:43.983360px;}
._27{width:45.465120px;}
._21{width:46.732320px;}
._29{width:48.990960px;}
._22{width:51.544800px;}
._23{width:52.648560px;}
._28{width:54.114480px;}
._3b{width:56.592720px;}
._33{width:58.923360px;}
._38{width:61.194240px;}
._34{width:62.568720px;}
._35{width:63.676080px;}
._3{width:65.496000px;}
._2d{width:66.585600px;}
._3d{width:71.413200px;}
._2c{width:73.504800px;}
._2b{width:74.657520px;}
._30{width:82.946880px;}
._32{width:83.962800px;}
._40{width:85.522320px;}
._37{width:87.076080px;}
._39{width:88.922880px;}
._3e{width:89.998560px;}
._3c{width:94.525200px;}
._36{width:104.261760px;}
._31{width:105.986160px;}
._3a{width:107.348400px;}
._25{width:109.062000px;}
._4{width:199.620000px;}
._1d{width:282.270000px;}
._6{width:755.976000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fsf{font-size:6.000000px;}
.fsc{font-size:23.760000px;}
.fs8{font-size:30.240000px;}
.fsd{font-size:36.000000px;}
.fsb{font-size:37.946952px;}
.fs0{font-size:41.760000px;}
.fs7{font-size:45.360000px;}
.fs9{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fse{font-size:62.991941px;}
.fs6{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y45{bottom:-247.725000px;}
.y44{bottom:-213.885000px;}
.y43{bottom:-180.225000px;}
.y7b{bottom:-156.450000px;}
.y42{bottom:-146.385000px;}
.y7a{bottom:-122.610000px;}
.y41{bottom:-112.725000px;}
.y79{bottom:-88.950000px;}
.y40{bottom:-79.035000px;}
.y78{bottom:-55.065000px;}
.y3f{bottom:-45.195000px;}
.y48{bottom:-27.180000px;}
.y77{bottom:-21.405000px;}
.y7d{bottom:-17.922750px;}
.y3e{bottom:-11.535000px;}
.y0{bottom:0.000000px;}
.y64{bottom:1.785000px;}
.y28e{bottom:1.837500px;}
.y150{bottom:2.880000px;}
.y2{bottom:3.960000px;}
.y47{bottom:5.040000px;}
.y6c{bottom:5.580000px;}
.y127{bottom:5.760000px;}
.y12a{bottom:6.660000px;}
.y3d{bottom:6.825000px;}
.y118{bottom:6.840000px;}
.y138{bottom:7.185000px;}
.y11b{bottom:7.200000px;}
.y124{bottom:7.365000px;}
.y12e{bottom:8.100000px;}
.y131{bottom:8.460000px;}
.y18d{bottom:8.475000px;}
.y11e{bottom:9.180000px;}
.y135{bottom:9.540000px;}
.y1a7{bottom:9.720000px;}
.y176{bottom:11.340000px;}
.y115{bottom:11.700000px;}
.y180{bottom:12.075000px;}
.y76{bottom:12.435000px;}
.y5{bottom:12.600000px;}
.y198{bottom:13.665000px;}
.y128{bottom:14.940000px;}
.y1c4{bottom:15.480000px;}
.y1c9{bottom:15.660000px;}
.y12b{bottom:15.840000px;}
.y1ad{bottom:15.855000px;}
.y119{bottom:16.020000px;}
.y121{bottom:16.065000px;}
.y11c{bottom:16.380000px;}
.y139{bottom:16.410000px;}
.y125{bottom:16.545000px;}
.y63{bottom:17.130000px;}
.y12f{bottom:17.280000px;}
.y132{bottom:17.640000px;}
.y16e{bottom:18.180000px;}
.y11f{bottom:18.360000px;}
.y136{bottom:18.720000px;}
.y1b5{bottom:18.915000px;}
.y15c{bottom:20.355000px;}
.y116{bottom:20.700000px;}
.y3c{bottom:20.865000px;}
.y6{bottom:21.960000px;}
.y1be{bottom:22.320000px;}
.y18c{bottom:22.335000px;}
.y1cb{bottom:22.500000px;}
.y3{bottom:23.220000px;}
.y4{bottom:24.660000px;}
.y175{bottom:25.020000px;}
.y6a{bottom:25.065000px;}
.y164{bottom:25.365000px;}
.y17f{bottom:25.755000px;}
.y1b2{bottom:25.935000px;}
.y197{bottom:27.345000px;}
.y187{bottom:29.175000px;}
.y1c3{bottom:29.340000px;}
.y1ac{bottom:29.715000px;}
.y62{bottom:29.730000px;}
.y1a4{bottom:31.170000px;}
.y16d{bottom:32.040000px;}
.y17b{bottom:32.775000px;}
.y15b{bottom:34.215000px;}
.y3b{bottom:34.725000px;}
.y183{bottom:35.820000px;}
.y18b{bottom:36.015000px;}
.y1bd{bottom:36.180000px;}
.y1ca{bottom:36.360000px;}
.y174{bottom:38.880000px;}
.y163{bottom:39.225000px;}
.y69{bottom:39.285000px;}
.y178{bottom:39.420000px;}
.y1c6{bottom:39.600000px;}
.y17e{bottom:39.615000px;}
.y1a9{bottom:39.780000px;}
.y194{bottom:41.205000px;}
.y1af{bottom:42.840000px;}
.y185{bottom:43.020000px;}
.y1c8{bottom:43.200000px;}
.y75{bottom:43.395000px;}
.y1a3{bottom:45.030000px;}
.y16c{bottom:45.720000px;}
.y179{bottom:46.440000px;}
.y1b4{bottom:46.635000px;}
.y80{bottom:46.980000px;}
.y3a{bottom:47.505000px;}
.y61{bottom:47.550000px;}
.y15a{bottom:48.075000px;}
.y182{bottom:49.680000px;}
.y1b8{bottom:49.860000px;}
.y18a{bottom:49.875000px;}
.y1bc{bottom:50.040000px;}
.y173{bottom:52.740000px;}
.y162{bottom:52.905000px;}
.y1b0{bottom:53.460000px;}
.y17d{bottom:53.475000px;}
.y68{bottom:54.225000px;}
.y155{bottom:54.915000px;}
.y193{bottom:55.065000px;}
.y74{bottom:56.355000px;}
.y184{bottom:56.700000px;}
.y1c2{bottom:56.880000px;}
.y1c7{bottom:57.060000px;}
.y1aa{bottom:57.240000px;}
.y1{bottom:57.420000px;}
.y1a2{bottom:58.710000px;}
.y166{bottom:59.400000px;}
.y16b{bottom:59.580000px;}
.y15e{bottom:59.745000px;}
.y1b3{bottom:60.300000px;}
.y152{bottom:61.560000px;}
.y159{bottom:61.755000px;}
.y1bb{bottom:63.720000px;}
.y189{bottom:63.735000px;}
.y7c{bottom:63.780000px;}
.y60{bottom:65.370000px;}
.y172{bottom:66.420000px;}
.y161{bottom:66.765000px;}
.y17c{bottom:67.170000px;}
.y192{bottom:68.745000px;}
.y153{bottom:68.760000px;}
.y67{bottom:68.985000px;}
.y73{bottom:69.315000px;}
.y1b7{bottom:70.560000px;}
.y1c1{bottom:70.740000px;}
.y19b{bottom:72.390000px;}
.y1a1{bottom:72.570000px;}
.y16a{bottom:73.440000px;}
.y18f{bottom:75.585000px;}
.y158{bottom:75.615000px;}
.y188{bottom:77.400000px;}
.y1ba{bottom:77.580000px;}
.y171{bottom:80.280000px;}
.y160{bottom:80.670000px;}
.y72{bottom:82.455000px;}
.y191{bottom:82.605000px;}
.y5f{bottom:83.190000px;}
.y1c0{bottom:84.420000px;}
.y19a{bottom:86.250000px;}
.y1a0{bottom:86.430000px;}
.y169{bottom:87.120000px;}
.y66{bottom:87.345000px;}
.y157{bottom:89.460000px;}
.y1b9{bottom:91.440000px;}
.y170{bottom:94.140000px;}
.y15f{bottom:94.350000px;}
.y71{bottom:95.415000px;}
.y5e{bottom:96.510000px;}
.y1bf{bottom:98.325000px;}
.y19f{bottom:100.110000px;}
.ybc{bottom:100.620000px;}
.y168{bottom:100.965000px;}
.y1e7{bottom:101.340000px;}
.y1a5{bottom:101.520000px;}
.y203{bottom:102.240000px;}
.y156{bottom:103.140000px;}
.yb2{bottom:103.680000px;}
.y259{bottom:104.760000px;}
.y5d{bottom:105.330000px;}
.y112{bottom:107.460000px;}
.y16f{bottom:107.805000px;}
.y70{bottom:108.555000px;}
.y22d{bottom:108.900000px;}
.y28d{bottom:109.800000px;}
.y190{bottom:110.190000px;}
.yc0{bottom:111.600000px;}
.y19e{bottom:113.970000px;}
.y38{bottom:117.360000px;}
.y14d{bottom:118.440000px;}
.ybb{bottom:120.420000px;}
.y1e6{bottom:121.140000px;}
.y20b{bottom:121.320000px;}
.y6f{bottom:121.515000px;}
.y202{bottom:122.040000px;}
.y5c{bottom:123.150000px;}
.yb1{bottom:123.480000px;}
.y196{bottom:124.050000px;}
.ybf{bottom:124.200000px;}
.y28c{bottom:127.080000px;}
.y111{bottom:127.260000px;}
.y19d{bottom:127.830000px;}
.y22c{bottom:128.700000px;}
.yf1{bottom:131.400000px;}
.y6e{bottom:133.935000px;}
.y37{bottom:137.160000px;}
.ybe{bottom:137.700000px;}
.y195{bottom:137.910000px;}
.y199{bottom:138.240000px;}
.y14c{bottom:139.140000px;}
.y258{bottom:139.320000px;}
.yba{bottom:140.400000px;}
.y1e5{bottom:140.940000px;}
.y20a{bottom:141.120000px;}
.y5b{bottom:141.150000px;}
.y19c{bottom:141.510000px;}
.y201{bottom:141.840000px;}
.yb0{bottom:143.280000px;}
.y28b{bottom:144.360000px;}
.y110{bottom:147.060000px;}
.y22b{bottom:148.500000px;}
.yf0{bottom:151.200000px;}
.y5a{bottom:154.470000px;}
.y257{bottom:156.600000px;}
.y36{bottom:156.960000px;}
.y14b{bottom:159.840000px;}
.yb9{bottom:160.200000px;}
.y1e4{bottom:160.740000px;}
.y209{bottom:161.100000px;}
.y200{bottom:161.640000px;}
.yaf{bottom:163.110000px;}
.y59{bottom:163.290000px;}
.y10f{bottom:167.070000px;}
.y22a{bottom:169.230000px;}
.yef{bottom:171.030000px;}
.y256{bottom:173.910000px;}
.y35{bottom:176.790000px;}
.y28a{bottom:178.950000px;}
.yb8{bottom:180.030000px;}
.y14a{bottom:180.570000px;}
.y1e3{bottom:180.750000px;}
.y208{bottom:180.930000px;}
.y58{bottom:181.110000px;}
.y1ff{bottom:181.470000px;}
.yae{bottom:183.090000px;}
.y10e{bottom:186.870000px;}
.yee{bottom:191.010000px;}
.y255{bottom:191.190000px;}
.y289{bottom:196.050000px;}
.y34{bottom:196.590000px;}
.y57{bottom:198.930000px;}
.yb7{bottom:199.830000px;}
.y1e2{bottom:200.550000px;}
.y207{bottom:200.730000px;}
.y1fe{bottom:201.450000px;}
.yad{bottom:202.890000px;}
.y142{bottom:203.250000px;}
.y10d{bottom:206.670000px;}
.y254{bottom:208.290000px;}
.y229{bottom:210.270000px;}
.y149{bottom:210.630000px;}
.yed{bottom:210.810000px;}
.y288{bottom:213.330000px;}
.y33{bottom:216.570000px;}
.y56{bottom:216.750000px;}
.yb6{bottom:219.630000px;}
.y1e1{bottom:220.350000px;}
.y206{bottom:220.530000px;}
.y1fd{bottom:221.250000px;}
.yac{bottom:222.690000px;}
.y141{bottom:223.050000px;}
.y253{bottom:225.570000px;}
.y10c{bottom:226.470000px;}
.y148{bottom:227.910000px;}
.y228{bottom:230.070000px;}
.yec{bottom:230.610000px;}
.y55{bottom:234.570000px;}
.y32{bottom:236.370000px;}
.yb5{bottom:239.610000px;}
.y1e0{bottom:240.150000px;}
.y205{bottom:240.330000px;}
.y1fc{bottom:241.050000px;}
.yab{bottom:242.490000px;}
.y252{bottom:242.850000px;}
.y140{bottom:243.030000px;}
.y147{bottom:245.190000px;}
.y10b{bottom:246.270000px;}
.y287{bottom:247.890000px;}
.yeb{bottom:250.410000px;}
.y227{bottom:250.770000px;}
.y54{bottom:252.600000px;}
.y31{bottom:256.170000px;}
.y1df{bottom:259.950000px;}
.y251{bottom:260.130000px;}
.yb4{bottom:260.310000px;}
.y1fb{bottom:260.850000px;}
.yaa{bottom:262.290000px;}
.y13f{bottom:262.830000px;}
.y146{bottom:264.810000px;}
.y286{bottom:265.170000px;}
.y10a{bottom:266.250000px;}
.y53{bottom:270.420000px;}
.yea{bottom:271.110000px;}
.y30{bottom:275.970000px;}
.y250{bottom:277.410000px;}
.y1de{bottom:279.930000px;}
.y1fa{bottom:280.650000px;}
.y204{bottom:281.010000px;}
.yb3{bottom:281.190000px;}
.ya9{bottom:282.270000px;}
.y285{bottom:282.450000px;}
.y13e{bottom:282.630000px;}
.y52{bottom:283.740000px;}
.y145{bottom:284.610000px;}
.y109{bottom:286.050000px;}
.ye9{bottom:291.090000px;}
.y226{bottom:291.630000px;}
.y51{bottom:292.560000px;}
.y24f{bottom:294.690000px;}
.y2f{bottom:295.770000px;}
.y284{bottom:299.550000px;}
.y1dd{bottom:299.730000px;}
.y1f9{bottom:300.630000px;}
.ya8{bottom:302.070000px;}
.y13d{bottom:302.430000px;}
.ye8{bottom:304.050000px;}
.y144{bottom:304.410000px;}
.y18e{bottom:305.685000px;}
.y108{bottom:305.850000px;}
.y50{bottom:310.380000px;}
.y225{bottom:311.430000px;}
.y24e{bottom:311.790000px;}
.y2e{bottom:315.750000px;}
.y283{bottom:316.830000px;}
.y1dc{bottom:319.530000px;}
.y1f8{bottom:320.430000px;}
.ya7{bottom:321.870000px;}
.y13c{bottom:322.230000px;}
.ye7{bottom:323.850000px;}
.y143{bottom:324.210000px;}
.y107{bottom:325.650000px;}
.y4f{bottom:328.200000px;}
.y24d{bottom:329.070000px;}
.y224{bottom:331.410000px;}
.y282{bottom:334.110000px;}
.y2d{bottom:335.550000px;}
.y1db{bottom:339.330000px;}
.y1f7{bottom:340.230000px;}
.ya6{bottom:341.670000px;}
.y13b{bottom:342.210000px;}
.ye6{bottom:343.650000px;}
.y4e{bottom:346.200000px;}
.y106{bottom:346.350000px;}
.y281{bottom:351.390000px;}
.y223{bottom:352.110000px;}
.y2c{bottom:356.250000px;}
.y1da{bottom:359.130000px;}
.y1f6{bottom:360.030000px;}
.ya5{bottom:361.470000px;}
.y13a{bottom:362.010000px;}
.ye5{bottom:363.450000px;}
.y24c{bottom:363.630000px;}
.y4d{bottom:364.020000px;}
.y280{bottom:368.670000px;}
.y2b{bottom:373.530000px;}
.y137{bottom:377.865000px;}
.y1d9{bottom:379.110000px;}
.y1f5{bottom:379.830000px;}
.y24b{bottom:380.910000px;}
.ya4{bottom:381.450000px;}
.y4c{bottom:381.840000px;}
.y2a{bottom:381.990000px;}
.ye4{bottom:383.430000px;}
.y49{bottom:383.985000px;}
.y27f{bottom:385.770000px;}
.y105{bottom:387.390000px;}
.y222{bottom:393.015000px;}
.y24a{bottom:398.055000px;}
.y1d8{bottom:398.955000px;}
.y4b{bottom:399.660000px;}
.y1f4{bottom:399.855000px;}
.ya3{bottom:401.295000px;}
.y27e{bottom:403.095000px;}
.ye3{bottom:404.175000px;}
.y29{bottom:405.795000px;}
.y104{bottom:407.235000px;}
.y221{bottom:412.815000px;}
.y249{bottom:415.335000px;}
.y4a{bottom:417.480000px;}
.y1d7{bottom:418.755000px;}
.y134{bottom:419.115000px;}
.y1f3{bottom:419.655000px;}
.y27d{bottom:420.375000px;}
.ya2{bottom:421.095000px;}
.ye2{bottom:423.975000px;}
.y103{bottom:427.035000px;}
.y28{bottom:429.735000px;}
.y248{bottom:432.615000px;}
.y220{bottom:433.515000px;}
.ye1{bottom:436.935000px;}
.y27c{bottom:437.655000px;}
.y1d6{bottom:438.555000px;}
.y1f2{bottom:439.455000px;}
.ya1{bottom:440.895000px;}
.y102{bottom:446.835000px;}
.y247{bottom:449.895000px;}
.y27{bottom:453.495000px;}
.y27b{bottom:454.935000px;}
.ye0{bottom:456.735000px;}
.y21f{bottom:457.455000px;}
.y1d5{bottom:458.355000px;}
.y1f1{bottom:459.255000px;}
.ya0{bottom:460.695000px;}
.y6d{bottom:461.580000px;}
.y133{bottom:465.015000px;}
.y186{bottom:465.720000px;}
.y181{bottom:465.735000px;}
.y101{bottom:466.635000px;}
.y246{bottom:467.175000px;}
.y27a{bottom:472.215000px;}
.y26{bottom:474.375000px;}
.ydf{bottom:476.535000px;}
.y1d4{bottom:478.335000px;}
.y1f0{bottom:479.055000px;}
.y9f{bottom:480.675000px;}
.y245{bottom:484.455000px;}
.y100{bottom:486.615000px;}
.ybd{bottom:487.335000px;}
.y279{bottom:489.315000px;}
.y25{bottom:494.175000px;}
.yde{bottom:496.515000px;}
.y1d3{bottom:498.135000px;}
.y21e{bottom:498.315000px;}
.y1ef{bottom:499.035000px;}
.y9e{bottom:500.475000px;}
.y244{bottom:501.555000px;}
.yff{bottom:506.415000px;}
.y278{bottom:506.595000px;}
.y24{bottom:507.855000px;}
.y130{bottom:510.195000px;}
.ydd{bottom:516.315000px;}
.y23{bottom:516.675000px;}
.y1d2{bottom:517.935000px;}
.y21d{bottom:518.115000px;}
.y1ee{bottom:518.835000px;}
.y9d{bottom:520.275000px;}
.y277{bottom:523.875000px;}
.yfe{bottom:526.215000px;}
.ydc{bottom:536.115000px;}
.y1d1{bottom:537.735000px;}
.y21c{bottom:537.915000px;}
.y1ed{bottom:538.635000px;}
.y22{bottom:539.895000px;}
.y9c{bottom:540.075000px;}
.y276{bottom:541.155000px;}
.yfd{bottom:546.015000px;}
.y243{bottom:553.395000px;}
.y12d{bottom:554.115000px;}
.ydb{bottom:555.915000px;}
.y1d0{bottom:557.535000px;}
.y21b{bottom:557.715000px;}
.y1ec{bottom:558.435000px;}
.y9b{bottom:559.875000px;}
.y17a{bottom:560.220000px;}
.y177{bottom:560.235000px;}
.y21{bottom:563.115000px;}
.yfc{bottom:565.815000px;}
.y242{bottom:570.675000px;}
.yda{bottom:575.715000px;}
.y1cf{bottom:577.515000px;}
.y21a{bottom:577.695000px;}
.y1eb{bottom:578.235000px;}
.y9a{bottom:579.855000px;}
.yfb{bottom:585.795000px;}
.y20{bottom:586.515000px;}
.y241{bottom:587.955000px;}
.y275{bottom:592.815000px;}
.yd9{bottom:595.695000px;}
.y12c{bottom:597.315000px;}
.y219{bottom:597.495000px;}
.y1ea{bottom:598.215000px;}
.y99{bottom:599.655000px;}
.y240{bottom:605.055000px;}
.yfa{bottom:605.595000px;}
.y274{bottom:610.095000px;}
.yd8{bottom:615.495000px;}
.y65{bottom:615.840000px;}
.y1ce{bottom:617.115000px;}
.y218{bottom:617.295000px;}
.y1e9{bottom:618.015000px;}
.y98{bottom:619.455000px;}
.y23f{bottom:622.335000px;}
.yf9{bottom:625.425000px;}
.y273{bottom:627.405000px;}
.y1cd{bottom:634.965000px;}
.yd7{bottom:635.325000px;}
.y217{bottom:637.125000px;}
.y1e8{bottom:637.845000px;}
.y129{bottom:638.565000px;}
.y97{bottom:639.285000px;}
.y23e{bottom:639.645000px;}
.y1f{bottom:641.265000px;}
.y272{bottom:644.685000px;}
.yf8{bottom:645.225000px;}
.y165{bottom:647.925000px;}
.y167{bottom:647.940000px;}
.yd6{bottom:655.125000px;}
.y1cc{bottom:655.665000px;}
.y1e{bottom:656.925000px;}
.y96{bottom:659.085000px;}
.y271{bottom:661.965000px;}
.yf7{bottom:665.025000px;}
.y1d{bottom:672.405000px;}
.y23d{bottom:674.205000px;}
.y1c5{bottom:674.385000px;}
.yd5{bottom:674.925000px;}
.y216{bottom:676.905000px;}
.y95{bottom:679.065000px;}
.y270{bottom:679.245000px;}
.yf6{bottom:685.005000px;}
.y1c{bottom:687.885000px;}
.y23c{bottom:691.305000px;}
.yd4{bottom:694.905000px;}
.y26f{bottom:696.345000px;}
.y215{bottom:696.705000px;}
.y94{bottom:698.865000px;}
.y1b{bottom:703.365000px;}
.yf5{bottom:704.805000px;}
.y23b{bottom:708.585000px;}
.y26e{bottom:713.625000px;}
.y1a{bottom:714.525000px;}
.yd3{bottom:714.705000px;}
.y214{bottom:716.505000px;}
.y126{bottom:717.405000px;}
.y93{bottom:718.665000px;}
.y39{bottom:723.180000px;}
.yf4{bottom:724.605000px;}
.y23a{bottom:725.865000px;}
.y19{bottom:728.205000px;}
.y26d{bottom:730.905000px;}
.yd2{bottom:734.505000px;}
.y213{bottom:736.305000px;}
.y92{bottom:738.465000px;}
.y18{bottom:741.165000px;}
.y239{bottom:743.145000px;}
.yf3{bottom:745.305000px;}
.y26c{bottom:748.185000px;}
.y17{bottom:754.125000px;}
.yd1{bottom:754.305000px;}
.y1b6{bottom:755.385000px;}
.y212{bottom:756.105000px;}
.y91{bottom:758.265000px;}
.y238{bottom:760.425000px;}
.y123{bottom:762.780000px;}
.yf2{bottom:765.105000px;}
.y26b{bottom:765.465000px;}
.y16{bottom:767.085000px;}
.yd0{bottom:774.105000px;}
.y15d{bottom:775.560000px;}
.y211{bottom:776.085000px;}
.y237{bottom:777.705000px;}
.y90{bottom:778.245000px;}
.y15{bottom:780.765000px;}
.y26a{bottom:782.565000px;}
.y14{bottom:793.725000px;}
.ycf{bottom:794.085000px;}
.y236{bottom:794.805000px;}
.y210{bottom:795.885000px;}
.y8f{bottom:798.045000px;}
.y269{bottom:799.845000px;}
.y122{bottom:804.525000px;}
.y235{bottom:812.445000px;}
.yce{bottom:813.885000px;}
.y20f{bottom:815.685000px;}
.y268{bottom:817.125000px;}
.y8e{bottom:817.845000px;}
.y13{bottom:820.365000px;}
.y12{bottom:831.525000px;}
.ycd{bottom:833.685000px;}
.y267{bottom:834.405000px;}
.y20e{bottom:835.485000px;}
.y8d{bottom:837.645000px;}
.y120{bottom:845.025000px;}
.y266{bottom:851.685000px;}
.y234{bottom:853.350000px;}
.ycc{bottom:853.530000px;}
.y20d{bottom:855.330000px;}
.y11{bottom:855.870000px;}
.y8c{bottom:857.490000px;}
.y265{bottom:869.010000px;}
.y233{bottom:873.150000px;}
.ycb{bottom:873.330000px;}
.y20c{bottom:876.210000px;}
.y8b{bottom:877.470000px;}
.y1b1{bottom:877.635000px;}
.y1ae{bottom:877.650000px;}
.y10{bottom:880.710000px;}
.y11d{bottom:885.570000px;}
.y264{bottom:886.110000px;}
.yca{bottom:893.310000px;}
.y232{bottom:893.850000px;}
.yf{bottom:896.550000px;}
.y8a{bottom:897.270000px;}
.y263{bottom:903.390000px;}
.y154{bottom:903.915000px;}
.y151{bottom:903.930000px;}
.ye{bottom:911.670000px;}
.yc9{bottom:913.110000px;}
.y89{bottom:917.070000px;}
.y262{bottom:920.670000px;}
.yd{bottom:923.190000px;}
.y11a{bottom:930.750000px;}
.yc8{bottom:932.910000px;}
.y231{bottom:934.710000px;}
.y88{bottom:936.870000px;}
.y261{bottom:937.950000px;}
.yc{bottom:940.830000px;}
.yc7{bottom:952.710000px;}
.y230{bottom:954.510000px;}
.y260{bottom:955.230000px;}
.y87{bottom:956.670000px;}
.yb{bottom:965.130000px;}
.y1ab{bottom:965.475000px;}
.y1a8{bottom:965.490000px;}
.y117{bottom:971.970000px;}
.yc6{bottom:972.510000px;}
.y22f{bottom:974.490000px;}
.y86{bottom:976.650000px;}
.ya{bottom:986.730000px;}
.y25f{bottom:989.610000px;}
.yc5{bottom:992.490000px;}
.y22e{bottom:995.190000px;}
.y85{bottom:996.450000px;}
.y25e{bottom:1006.890000px;}
.y9{bottom:1008.690000px;}
.yc4{bottom:1012.290000px;}
.y114{bottom:1014.090000px;}
.y84{bottom:1016.250000px;}
.y25d{bottom:1024.170000px;}
.yc3{bottom:1032.090000px;}
.y83{bottom:1036.050000px;}
.y8{bottom:1036.230000px;}
.y14f{bottom:1037.670000px;}
.y25c{bottom:1041.450000px;}
.y1a6{bottom:1048.650000px;}
.yc2{bottom:1051.890000px;}
.y82{bottom:1055.850000px;}
.y25b{bottom:1058.730000px;}
.y14e{bottom:1059.270000px;}
.y7{bottom:1063.230000px;}
.yc1{bottom:1072.590000px;}
.y81{bottom:1075.650000px;}
.y25a{bottom:1075.830000px;}
.y113{bottom:1077.090000px;}
.y6b{bottom:1096.200000px;}
.y7f{bottom:1103.940000px;}
.y7e{bottom:1123.200000px;}
.y46{bottom:1137.240000px;}
.h6{height:5.653125px;}
.h16{height:5.805000px;}
.h57{height:6.257812px;}
.h2{height:13.500000px;}
.h3b{height:13.845000px;}
.h1a{height:16.920000px;}
.h4d{height:20.685000px;}
.h22{height:22.140000px;}
.h15{height:23.319141px;}
.h2c{height:29.664141px;}
.hc{height:29.678906px;}
.he{height:30.963516px;}
.h4{height:34.200000px;}
.h20{height:36.281250px;}
.h35{height:37.620000px;}
.h13{height:39.503370px;}
.h2e{height:39.765000px;}
.h32{height:39.780000px;}
.h31{height:39.802500px;}
.h2f{height:40.485000px;}
.h3a{height:40.521000px;}
.h36{height:40.530000px;}
.h5{height:40.985156px;}
.h33{height:41.025000px;}
.h29{height:41.726953px;}
.h21{height:42.086250px;}
.h37{height:42.465000px;}
.h38{height:43.185000px;}
.h27{height:43.737568px;}
.h30{height:44.445000px;}
.h10{height:44.518359px;}
.h34{height:44.640000px;}
.hb{height:45.116367px;}
.h39{height:45.165000px;}
.h18{height:45.714375px;}
.h11{height:46.622932px;}
.h12{height:47.344922px;}
.h1b{height:48.616875px;}
.h3e{height:49.583118px;}
.h2d{height:49.845000px;}
.h14{height:52.998047px;}
.h1c{height:54.421875px;}
.hf{height:55.291992px;}
.h1e{height:55.503491px;}
.h17{height:57.780000px;}
.h26{height:58.621992px;}
.h3{height:58.651172px;}
.h2b{height:60.226875px;}
.h2a{height:61.423863px;}
.ha{height:65.010937px;}
.h19{height:65.884219px;}
.hd{height:67.824844px;}
.h28{height:70.628906px;}
.h9{height:72.562500px;}
.h23{height:74.953125px;}
.h25{height:75.093750px;}
.h56{height:80.275500px;}
.h55{height:80.280000px;}
.h4e{height:80.805000px;}
.h4f{height:80.811000px;}
.h50{height:80.820000px;}
.h44{height:86.970000px;}
.h45{height:86.976000px;}
.h46{height:86.985000px;}
.h51{height:87.105000px;}
.h52{height:87.111000px;}
.h53{height:87.120000px;}
.h7{height:87.695156px;}
.h47{height:93.765000px;}
.h48{height:93.775500px;}
.h49{height:93.780000px;}
.h1f{height:95.445000px;}
.h8{height:96.508125px;}
.h54{height:121.522500px;}
.h43{height:126.895500px;}
.h42{height:126.900000px;}
.h40{height:127.461000px;}
.h41{height:127.462500px;}
.h3c{height:131.385000px;}
.h3d{height:131.391000px;}
.h3f{height:131.400000px;}
.h24{height:144.900000px;}
.h4a{height:159.315000px;}
.h4b{height:166.710000px;}
.h4c{height:166.725000px;}
.h1d{height:429.720000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.wb{width:37.071000px;}
.we{width:74.325000px;}
.w3{width:82.071000px;}
.w15{width:87.651000px;}
.w10{width:117.171000px;}
.wc{width:135.021000px;}
.w5{width:154.470000px;}
.wd{width:168.690000px;}
.wa{width:180.390000px;}
.w8{width:187.935000px;}
.wf{width:276.720000px;}
.w11{width:281.220000px;}
.w13{width:281.235000px;}
.w16{width:308.580000px;}
.w18{width:308.595000px;}
.w12{width:324.600000px;}
.w14{width:324.615000px;}
.w17{width:326.040000px;}
.w7{width:532.740000px;}
.w4{width:639.855000px;}
.w2{width:721.935000px;}
.w9{width:743.175000px;}
.w6{width:747.135000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x43{left:4.252500px;}
.x2{left:8.091000px;}
.x12{left:10.791000px;}
.x3f{left:12.405000px;}
.x34{left:15.285000px;}
.x29{left:17.625000px;}
.x35{left:19.425000px;}
.x18{left:21.255000px;}
.x31{left:23.205000px;}
.x2e{left:24.645000px;}
.x3b{left:25.725000px;}
.x33{left:27.525000px;}
.x37{left:29.505000px;}
.x25{left:32.385000px;}
.x38{left:33.465000px;}
.x2c{left:35.085000px;}
.x2d{left:37.080000px;}
.x30{left:38.520000px;}
.x27{left:42.480000px;}
.x2f{left:48.405000px;}
.x36{left:49.530000px;}
.x3a{left:51.150000px;}
.x39{left:52.590000px;}
.x32{left:61.560000px;}
.x3{left:73.965000px;}
.x16{left:80.505000px;}
.x13{left:81.765000px;}
.x2b{left:85.890000px;}
.x11{left:93.105000px;}
.x15{left:94.365000px;}
.x1{left:108.045000px;}
.x3c{left:111.270000px;}
.x9{left:118.476000px;}
.x22{left:121.536000px;}
.x23{left:122.805000px;}
.x41{left:124.950000px;}
.x1d{left:128.376000px;}
.x6{left:129.636000px;}
.xe{left:132.696000px;}
.x1e{left:135.036000px;}
.x3e{left:140.610000px;}
.x24{left:159.885000px;}
.x1a{left:186.690000px;}
.x4{left:190.125000px;}
.x40{left:195.705000px;}
.x21{left:224.670000px;}
.x7{left:242.850000px;}
.xc{left:245.775000px;}
.xd{left:262.335000px;}
.x1b{left:263.415000px;}
.x1c{left:267.195000px;}
.x26{left:294.915000px;}
.x14{left:302.835000px;}
.x17{left:310.350000px;}
.xa{left:336.495000px;}
.x8{left:443.085000px;}
.x5{left:446.505000px;}
.xb{left:459.105000px;}
.x28{left:463.620000px;}
.xf{left:489.165000px;}
.x10{left:490.785000px;}
.x42{left:504.300000px;}
.x3d{left:506.460000px;}
.x1f{left:517.785000px;}
.x2a{left:537.960000px;}
.x19{left:620.253000px;}
.x20{left:751.140000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls14{letter-spacing:-1.280000pt;}
.ls20{letter-spacing:-0.960000pt;}
.lse{letter-spacing:-0.720000pt;}
.lsa{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.310933pt;}
.ls18{letter-spacing:-0.239467pt;}
.lsd{letter-spacing:-0.198933pt;}
.ls21{letter-spacing:-0.183467pt;}
.ls13{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.128640pt;}
.ls5{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.161067pt;}
.ls19{letter-spacing:0.200960pt;}
.ls10{letter-spacing:0.230933pt;}
.ls22{letter-spacing:0.231040pt;}
.ls1c{letter-spacing:0.239467pt;}
.ls24{letter-spacing:0.265600pt;}
.lsf{letter-spacing:0.280533pt;}
.ls6{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.414933pt;}
.ls7{letter-spacing:0.439040pt;}
.ls17{letter-spacing:0.456533pt;}
.ls11{letter-spacing:0.592000pt;}
.ls1f{letter-spacing:0.736000pt;}
.ls15{letter-spacing:0.800000pt;}
.ls23{letter-spacing:0.960000pt;}
.ls1e{letter-spacing:2.720000pt;}
.ls1b{letter-spacing:13.679360pt;}
.ls1a{letter-spacing:13.839360pt;}
.ls1d{letter-spacing:25.839360pt;}
.ls3{letter-spacing:42.400000pt;}
.ls12{letter-spacing:56.912640pt;}
.ls1{letter-spacing:63.360000pt;}
.ls2{letter-spacing:63.466667pt;}
.ls0{letter-spacing:64.000000pt;}
.wsf{word-spacing:-53.120000pt;}
.ws12{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws17{word-spacing:-14.016000pt;}
.ws11{word-spacing:-13.694933pt;}
.wse{word-spacing:-13.600000pt;}
.ws19{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.232640pt;}
.ws18{word-spacing:-13.096533pt;}
.ws16{word-spacing:-12.320000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.040000pt;}
.ws15{word-spacing:-10.959467pt;}
.ws6{word-spacing:-10.881067pt;}
.ws14{word-spacing:-10.720000pt;}
.ws13{word-spacing:-10.480533pt;}
.ws5{word-spacing:-10.080000pt;}
.ws3{word-spacing:-9.769067pt;}
.ws4{word-spacing:-9.760000pt;}
.ws8{word-spacing:-9.733760pt;}
.wsc{word-spacing:-9.560533pt;}
.wsb{word-spacing:-9.280000pt;}
.wsa{word-spacing:-8.000000pt;}
.ws2{word-spacing:-6.720000pt;}
.wsd{word-spacing:0.000000pt;}
.ws0{word-spacing:54.080000pt;}
._5{margin-left:-52.960000pt;}
._15{margin-left:-2.974720pt;}
._16{margin-left:-1.954560pt;}
._2{margin-left:-0.942080pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._a{width:3.559040pt;}
._9{width:4.515200pt;}
._10{width:5.630720pt;}
._14{width:7.171200pt;}
._12{width:8.180480pt;}
._13{width:9.614720pt;}
._19{width:10.738347pt;}
._11{width:11.686400pt;}
._1a{width:13.232000pt;}
._b{width:14.608000pt;}
._c{width:16.059520pt;}
._8{width:17.437440pt;}
._7{width:18.592000pt;}
._d{width:20.026240pt;}
._1e{width:21.304320pt;}
._20{width:22.682240pt;}
._2e{width:23.719680pt;}
._24{width:24.647680pt;}
._3f{width:25.541120pt;}
._1b{width:26.438400pt;}
._f{width:28.153600pt;}
._26{width:29.084800pt;}
._1f{width:30.172160pt;}
._18{width:31.447040pt;}
._2a{width:32.456320pt;}
._2f{width:34.212480pt;}
._1c{width:36.266240pt;}
._e{width:37.237120pt;}
._17{width:39.096320pt;}
._27{width:40.413440pt;}
._21{width:41.539840pt;}
._29{width:43.547520pt;}
._22{width:45.817600pt;}
._23{width:46.798720pt;}
._28{width:48.101760pt;}
._3b{width:50.304640pt;}
._33{width:52.376320pt;}
._38{width:54.394880pt;}
._34{width:55.616640pt;}
._35{width:56.600960pt;}
._3{width:58.218667pt;}
._2d{width:59.187200pt;}
._3d{width:63.478400pt;}
._2c{width:65.337600pt;}
._2b{width:66.362240pt;}
._30{width:73.730560pt;}
._32{width:74.633600pt;}
._40{width:76.019840pt;}
._37{width:77.400960pt;}
._39{width:79.042560pt;}
._3e{width:79.998720pt;}
._3c{width:84.022400pt;}
._36{width:92.677120pt;}
._31{width:94.209920pt;}
._3a{width:95.420800pt;}
._25{width:96.944000pt;}
._4{width:177.440000pt;}
._1d{width:250.906667pt;}
._6{width:671.978667pt;}
.fs2{font-size:5.120000pt;}
.fsf{font-size:5.333333pt;}
.fsc{font-size:21.120000pt;}
.fs8{font-size:26.880000pt;}
.fsd{font-size:32.000000pt;}
.fsb{font-size:33.730624pt;}
.fs0{font-size:37.120000pt;}
.fs7{font-size:40.320000pt;}
.fs9{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fse{font-size:55.992837pt;}
.fs6{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y45{bottom:-220.200000pt;}
.y44{bottom:-190.120000pt;}
.y43{bottom:-160.200000pt;}
.y7b{bottom:-139.066667pt;}
.y42{bottom:-130.120000pt;}
.y7a{bottom:-108.986667pt;}
.y41{bottom:-100.200000pt;}
.y79{bottom:-79.066667pt;}
.y40{bottom:-70.253333pt;}
.y78{bottom:-48.946667pt;}
.y3f{bottom:-40.173333pt;}
.y48{bottom:-24.160000pt;}
.y77{bottom:-19.026667pt;}
.y7d{bottom:-15.931333pt;}
.y3e{bottom:-10.253333pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:1.586667pt;}
.y28e{bottom:1.633333pt;}
.y150{bottom:2.560000pt;}
.y2{bottom:3.520000pt;}
.y47{bottom:4.480000pt;}
.y6c{bottom:4.960000pt;}
.y127{bottom:5.120000pt;}
.y12a{bottom:5.920000pt;}
.y3d{bottom:6.066667pt;}
.y118{bottom:6.080000pt;}
.y138{bottom:6.386667pt;}
.y11b{bottom:6.400000pt;}
.y124{bottom:6.546667pt;}
.y12e{bottom:7.200000pt;}
.y131{bottom:7.520000pt;}
.y18d{bottom:7.533333pt;}
.y11e{bottom:8.160000pt;}
.y135{bottom:8.480000pt;}
.y1a7{bottom:8.640000pt;}
.y176{bottom:10.080000pt;}
.y115{bottom:10.400000pt;}
.y180{bottom:10.733333pt;}
.y76{bottom:11.053333pt;}
.y5{bottom:11.200000pt;}
.y198{bottom:12.146667pt;}
.y128{bottom:13.280000pt;}
.y1c4{bottom:13.760000pt;}
.y1c9{bottom:13.920000pt;}
.y12b{bottom:14.080000pt;}
.y1ad{bottom:14.093333pt;}
.y119{bottom:14.240000pt;}
.y121{bottom:14.280000pt;}
.y11c{bottom:14.560000pt;}
.y139{bottom:14.586667pt;}
.y125{bottom:14.706667pt;}
.y63{bottom:15.226667pt;}
.y12f{bottom:15.360000pt;}
.y132{bottom:15.680000pt;}
.y16e{bottom:16.160000pt;}
.y11f{bottom:16.320000pt;}
.y136{bottom:16.640000pt;}
.y1b5{bottom:16.813333pt;}
.y15c{bottom:18.093333pt;}
.y116{bottom:18.400000pt;}
.y3c{bottom:18.546667pt;}
.y6{bottom:19.520000pt;}
.y1be{bottom:19.840000pt;}
.y18c{bottom:19.853333pt;}
.y1cb{bottom:20.000000pt;}
.y3{bottom:20.640000pt;}
.y4{bottom:21.920000pt;}
.y175{bottom:22.240000pt;}
.y6a{bottom:22.280000pt;}
.y164{bottom:22.546667pt;}
.y17f{bottom:22.893333pt;}
.y1b2{bottom:23.053333pt;}
.y197{bottom:24.306667pt;}
.y187{bottom:25.933333pt;}
.y1c3{bottom:26.080000pt;}
.y1ac{bottom:26.413333pt;}
.y62{bottom:26.426667pt;}
.y1a4{bottom:27.706667pt;}
.y16d{bottom:28.480000pt;}
.y17b{bottom:29.133333pt;}
.y15b{bottom:30.413333pt;}
.y3b{bottom:30.866667pt;}
.y183{bottom:31.840000pt;}
.y18b{bottom:32.013333pt;}
.y1bd{bottom:32.160000pt;}
.y1ca{bottom:32.320000pt;}
.y174{bottom:34.560000pt;}
.y163{bottom:34.866667pt;}
.y69{bottom:34.920000pt;}
.y178{bottom:35.040000pt;}
.y1c6{bottom:35.200000pt;}
.y17e{bottom:35.213333pt;}
.y1a9{bottom:35.360000pt;}
.y194{bottom:36.626667pt;}
.y1af{bottom:38.080000pt;}
.y185{bottom:38.240000pt;}
.y1c8{bottom:38.400000pt;}
.y75{bottom:38.573333pt;}
.y1a3{bottom:40.026667pt;}
.y16c{bottom:40.640000pt;}
.y179{bottom:41.280000pt;}
.y1b4{bottom:41.453333pt;}
.y80{bottom:41.760000pt;}
.y3a{bottom:42.226667pt;}
.y61{bottom:42.266667pt;}
.y15a{bottom:42.733333pt;}
.y182{bottom:44.160000pt;}
.y1b8{bottom:44.320000pt;}
.y18a{bottom:44.333333pt;}
.y1bc{bottom:44.480000pt;}
.y173{bottom:46.880000pt;}
.y162{bottom:47.026667pt;}
.y1b0{bottom:47.520000pt;}
.y17d{bottom:47.533333pt;}
.y68{bottom:48.200000pt;}
.y155{bottom:48.813333pt;}
.y193{bottom:48.946667pt;}
.y74{bottom:50.093333pt;}
.y184{bottom:50.400000pt;}
.y1c2{bottom:50.560000pt;}
.y1c7{bottom:50.720000pt;}
.y1aa{bottom:50.880000pt;}
.y1{bottom:51.040000pt;}
.y1a2{bottom:52.186667pt;}
.y166{bottom:52.800000pt;}
.y16b{bottom:52.960000pt;}
.y15e{bottom:53.106667pt;}
.y1b3{bottom:53.600000pt;}
.y152{bottom:54.720000pt;}
.y159{bottom:54.893333pt;}
.y1bb{bottom:56.640000pt;}
.y189{bottom:56.653333pt;}
.y7c{bottom:56.693333pt;}
.y60{bottom:58.106667pt;}
.y172{bottom:59.040000pt;}
.y161{bottom:59.346667pt;}
.y17c{bottom:59.706667pt;}
.y192{bottom:61.106667pt;}
.y153{bottom:61.120000pt;}
.y67{bottom:61.320000pt;}
.y73{bottom:61.613333pt;}
.y1b7{bottom:62.720000pt;}
.y1c1{bottom:62.880000pt;}
.y19b{bottom:64.346667pt;}
.y1a1{bottom:64.506667pt;}
.y16a{bottom:65.280000pt;}
.y18f{bottom:67.186667pt;}
.y158{bottom:67.213333pt;}
.y188{bottom:68.800000pt;}
.y1ba{bottom:68.960000pt;}
.y171{bottom:71.360000pt;}
.y160{bottom:71.706667pt;}
.y72{bottom:73.293333pt;}
.y191{bottom:73.426667pt;}
.y5f{bottom:73.946667pt;}
.y1c0{bottom:75.040000pt;}
.y19a{bottom:76.666667pt;}
.y1a0{bottom:76.826667pt;}
.y169{bottom:77.440000pt;}
.y66{bottom:77.640000pt;}
.y157{bottom:79.520000pt;}
.y1b9{bottom:81.280000pt;}
.y170{bottom:83.680000pt;}
.y15f{bottom:83.866667pt;}
.y71{bottom:84.813333pt;}
.y5e{bottom:85.786667pt;}
.y1bf{bottom:87.400000pt;}
.y19f{bottom:88.986667pt;}
.ybc{bottom:89.440000pt;}
.y168{bottom:89.746667pt;}
.y1e7{bottom:90.080000pt;}
.y1a5{bottom:90.240000pt;}
.y203{bottom:90.880000pt;}
.y156{bottom:91.680000pt;}
.yb2{bottom:92.160000pt;}
.y259{bottom:93.120000pt;}
.y5d{bottom:93.626667pt;}
.y112{bottom:95.520000pt;}
.y16f{bottom:95.826667pt;}
.y70{bottom:96.493333pt;}
.y22d{bottom:96.800000pt;}
.y28d{bottom:97.600000pt;}
.y190{bottom:97.946667pt;}
.yc0{bottom:99.200000pt;}
.y19e{bottom:101.306667pt;}
.y38{bottom:104.320000pt;}
.y14d{bottom:105.280000pt;}
.ybb{bottom:107.040000pt;}
.y1e6{bottom:107.680000pt;}
.y20b{bottom:107.840000pt;}
.y6f{bottom:108.013333pt;}
.y202{bottom:108.480000pt;}
.y5c{bottom:109.466667pt;}
.yb1{bottom:109.760000pt;}
.y196{bottom:110.266667pt;}
.ybf{bottom:110.400000pt;}
.y28c{bottom:112.960000pt;}
.y111{bottom:113.120000pt;}
.y19d{bottom:113.626667pt;}
.y22c{bottom:114.400000pt;}
.yf1{bottom:116.800000pt;}
.y6e{bottom:119.053333pt;}
.y37{bottom:121.920000pt;}
.ybe{bottom:122.400000pt;}
.y195{bottom:122.586667pt;}
.y199{bottom:122.880000pt;}
.y14c{bottom:123.680000pt;}
.y258{bottom:123.840000pt;}
.yba{bottom:124.800000pt;}
.y1e5{bottom:125.280000pt;}
.y20a{bottom:125.440000pt;}
.y5b{bottom:125.466667pt;}
.y19c{bottom:125.786667pt;}
.y201{bottom:126.080000pt;}
.yb0{bottom:127.360000pt;}
.y28b{bottom:128.320000pt;}
.y110{bottom:130.720000pt;}
.y22b{bottom:132.000000pt;}
.yf0{bottom:134.400000pt;}
.y5a{bottom:137.306667pt;}
.y257{bottom:139.200000pt;}
.y36{bottom:139.520000pt;}
.y14b{bottom:142.080000pt;}
.yb9{bottom:142.400000pt;}
.y1e4{bottom:142.880000pt;}
.y209{bottom:143.200000pt;}
.y200{bottom:143.680000pt;}
.yaf{bottom:144.986667pt;}
.y59{bottom:145.146667pt;}
.y10f{bottom:148.506667pt;}
.y22a{bottom:150.426667pt;}
.yef{bottom:152.026667pt;}
.y256{bottom:154.586667pt;}
.y35{bottom:157.146667pt;}
.y28a{bottom:159.066667pt;}
.yb8{bottom:160.026667pt;}
.y14a{bottom:160.506667pt;}
.y1e3{bottom:160.666667pt;}
.y208{bottom:160.826667pt;}
.y58{bottom:160.986667pt;}
.y1ff{bottom:161.306667pt;}
.yae{bottom:162.746667pt;}
.y10e{bottom:166.106667pt;}
.yee{bottom:169.786667pt;}
.y255{bottom:169.946667pt;}
.y289{bottom:174.266667pt;}
.y34{bottom:174.746667pt;}
.y57{bottom:176.826667pt;}
.yb7{bottom:177.626667pt;}
.y1e2{bottom:178.266667pt;}
.y207{bottom:178.426667pt;}
.y1fe{bottom:179.066667pt;}
.yad{bottom:180.346667pt;}
.y142{bottom:180.666667pt;}
.y10d{bottom:183.706667pt;}
.y254{bottom:185.146667pt;}
.y229{bottom:186.906667pt;}
.y149{bottom:187.226667pt;}
.yed{bottom:187.386667pt;}
.y288{bottom:189.626667pt;}
.y33{bottom:192.506667pt;}
.y56{bottom:192.666667pt;}
.yb6{bottom:195.226667pt;}
.y1e1{bottom:195.866667pt;}
.y206{bottom:196.026667pt;}
.y1fd{bottom:196.666667pt;}
.yac{bottom:197.946667pt;}
.y141{bottom:198.266667pt;}
.y253{bottom:200.506667pt;}
.y10c{bottom:201.306667pt;}
.y148{bottom:202.586667pt;}
.y228{bottom:204.506667pt;}
.yec{bottom:204.986667pt;}
.y55{bottom:208.506667pt;}
.y32{bottom:210.106667pt;}
.yb5{bottom:212.986667pt;}
.y1e0{bottom:213.466667pt;}
.y205{bottom:213.626667pt;}
.y1fc{bottom:214.266667pt;}
.yab{bottom:215.546667pt;}
.y252{bottom:215.866667pt;}
.y140{bottom:216.026667pt;}
.y147{bottom:217.946667pt;}
.y10b{bottom:218.906667pt;}
.y287{bottom:220.346667pt;}
.yeb{bottom:222.586667pt;}
.y227{bottom:222.906667pt;}
.y54{bottom:224.533333pt;}
.y31{bottom:227.706667pt;}
.y1df{bottom:231.066667pt;}
.y251{bottom:231.226667pt;}
.yb4{bottom:231.386667pt;}
.y1fb{bottom:231.866667pt;}
.yaa{bottom:233.146667pt;}
.y13f{bottom:233.626667pt;}
.y146{bottom:235.386667pt;}
.y286{bottom:235.706667pt;}
.y10a{bottom:236.666667pt;}
.y53{bottom:240.373333pt;}
.yea{bottom:240.986667pt;}
.y30{bottom:245.306667pt;}
.y250{bottom:246.586667pt;}
.y1de{bottom:248.826667pt;}
.y1fa{bottom:249.466667pt;}
.y204{bottom:249.786667pt;}
.yb3{bottom:249.946667pt;}
.ya9{bottom:250.906667pt;}
.y285{bottom:251.066667pt;}
.y13e{bottom:251.226667pt;}
.y52{bottom:252.213333pt;}
.y145{bottom:252.986667pt;}
.y109{bottom:254.266667pt;}
.ye9{bottom:258.746667pt;}
.y226{bottom:259.226667pt;}
.y51{bottom:260.053333pt;}
.y24f{bottom:261.946667pt;}
.y2f{bottom:262.906667pt;}
.y284{bottom:266.266667pt;}
.y1dd{bottom:266.426667pt;}
.y1f9{bottom:267.226667pt;}
.ya8{bottom:268.506667pt;}
.y13d{bottom:268.826667pt;}
.ye8{bottom:270.266667pt;}
.y144{bottom:270.586667pt;}
.y18e{bottom:271.720000pt;}
.y108{bottom:271.866667pt;}
.y50{bottom:275.893333pt;}
.y225{bottom:276.826667pt;}
.y24e{bottom:277.146667pt;}
.y2e{bottom:280.666667pt;}
.y283{bottom:281.626667pt;}
.y1dc{bottom:284.026667pt;}
.y1f8{bottom:284.826667pt;}
.ya7{bottom:286.106667pt;}
.y13c{bottom:286.426667pt;}
.ye7{bottom:287.866667pt;}
.y143{bottom:288.186667pt;}
.y107{bottom:289.466667pt;}
.y4f{bottom:291.733333pt;}
.y24d{bottom:292.506667pt;}
.y224{bottom:294.586667pt;}
.y282{bottom:296.986667pt;}
.y2d{bottom:298.266667pt;}
.y1db{bottom:301.626667pt;}
.y1f7{bottom:302.426667pt;}
.ya6{bottom:303.706667pt;}
.y13b{bottom:304.186667pt;}
.ye6{bottom:305.466667pt;}
.y4e{bottom:307.733333pt;}
.y106{bottom:307.866667pt;}
.y281{bottom:312.346667pt;}
.y223{bottom:312.986667pt;}
.y2c{bottom:316.666667pt;}
.y1da{bottom:319.226667pt;}
.y1f6{bottom:320.026667pt;}
.ya5{bottom:321.306667pt;}
.y13a{bottom:321.786667pt;}
.ye5{bottom:323.066667pt;}
.y24c{bottom:323.226667pt;}
.y4d{bottom:323.573333pt;}
.y280{bottom:327.706667pt;}
.y2b{bottom:332.026667pt;}
.y137{bottom:335.880000pt;}
.y1d9{bottom:336.986667pt;}
.y1f5{bottom:337.626667pt;}
.y24b{bottom:338.586667pt;}
.ya4{bottom:339.066667pt;}
.y4c{bottom:339.413333pt;}
.y2a{bottom:339.546667pt;}
.ye4{bottom:340.826667pt;}
.y49{bottom:341.320000pt;}
.y27f{bottom:342.906667pt;}
.y105{bottom:344.346667pt;}
.y222{bottom:349.346667pt;}
.y24a{bottom:353.826667pt;}
.y1d8{bottom:354.626667pt;}
.y4b{bottom:355.253333pt;}
.y1f4{bottom:355.426667pt;}
.ya3{bottom:356.706667pt;}
.y27e{bottom:358.306667pt;}
.ye3{bottom:359.266667pt;}
.y29{bottom:360.706667pt;}
.y104{bottom:361.986667pt;}
.y221{bottom:366.946667pt;}
.y249{bottom:369.186667pt;}
.y4a{bottom:371.093333pt;}
.y1d7{bottom:372.226667pt;}
.y134{bottom:372.546667pt;}
.y1f3{bottom:373.026667pt;}
.y27d{bottom:373.666667pt;}
.ya2{bottom:374.306667pt;}
.ye2{bottom:376.866667pt;}
.y103{bottom:379.586667pt;}
.y28{bottom:381.986667pt;}
.y248{bottom:384.546667pt;}
.y220{bottom:385.346667pt;}
.ye1{bottom:388.386667pt;}
.y27c{bottom:389.026667pt;}
.y1d6{bottom:389.826667pt;}
.y1f2{bottom:390.626667pt;}
.ya1{bottom:391.906667pt;}
.y102{bottom:397.186667pt;}
.y247{bottom:399.906667pt;}
.y27{bottom:403.106667pt;}
.y27b{bottom:404.386667pt;}
.ye0{bottom:405.986667pt;}
.y21f{bottom:406.626667pt;}
.y1d5{bottom:407.426667pt;}
.y1f1{bottom:408.226667pt;}
.ya0{bottom:409.506667pt;}
.y6d{bottom:410.293333pt;}
.y133{bottom:413.346667pt;}
.y186{bottom:413.973333pt;}
.y181{bottom:413.986667pt;}
.y101{bottom:414.786667pt;}
.y246{bottom:415.266667pt;}
.y27a{bottom:419.746667pt;}
.y26{bottom:421.666667pt;}
.ydf{bottom:423.586667pt;}
.y1d4{bottom:425.186667pt;}
.y1f0{bottom:425.826667pt;}
.y9f{bottom:427.266667pt;}
.y245{bottom:430.626667pt;}
.y100{bottom:432.546667pt;}
.ybd{bottom:433.186667pt;}
.y279{bottom:434.946667pt;}
.y25{bottom:439.266667pt;}
.yde{bottom:441.346667pt;}
.y1d3{bottom:442.786667pt;}
.y21e{bottom:442.946667pt;}
.y1ef{bottom:443.586667pt;}
.y9e{bottom:444.866667pt;}
.y244{bottom:445.826667pt;}
.yff{bottom:450.146667pt;}
.y278{bottom:450.306667pt;}
.y24{bottom:451.426667pt;}
.y130{bottom:453.506667pt;}
.ydd{bottom:458.946667pt;}
.y23{bottom:459.266667pt;}
.y1d2{bottom:460.386667pt;}
.y21d{bottom:460.546667pt;}
.y1ee{bottom:461.186667pt;}
.y9d{bottom:462.466667pt;}
.y277{bottom:465.666667pt;}
.yfe{bottom:467.746667pt;}
.ydc{bottom:476.546667pt;}
.y1d1{bottom:477.986667pt;}
.y21c{bottom:478.146667pt;}
.y1ed{bottom:478.786667pt;}
.y22{bottom:479.906667pt;}
.y9c{bottom:480.066667pt;}
.y276{bottom:481.026667pt;}
.yfd{bottom:485.346667pt;}
.y243{bottom:491.906667pt;}
.y12d{bottom:492.546667pt;}
.ydb{bottom:494.146667pt;}
.y1d0{bottom:495.586667pt;}
.y21b{bottom:495.746667pt;}
.y1ec{bottom:496.386667pt;}
.y9b{bottom:497.666667pt;}
.y17a{bottom:497.973333pt;}
.y177{bottom:497.986667pt;}
.y21{bottom:500.546667pt;}
.yfc{bottom:502.946667pt;}
.y242{bottom:507.266667pt;}
.yda{bottom:511.746667pt;}
.y1cf{bottom:513.346667pt;}
.y21a{bottom:513.506667pt;}
.y1eb{bottom:513.986667pt;}
.y9a{bottom:515.426667pt;}
.yfb{bottom:520.706667pt;}
.y20{bottom:521.346667pt;}
.y241{bottom:522.626667pt;}
.y275{bottom:526.946667pt;}
.yd9{bottom:529.506667pt;}
.y12c{bottom:530.946667pt;}
.y219{bottom:531.106667pt;}
.y1ea{bottom:531.746667pt;}
.y99{bottom:533.026667pt;}
.y240{bottom:537.826667pt;}
.yfa{bottom:538.306667pt;}
.y274{bottom:542.306667pt;}
.yd8{bottom:547.106667pt;}
.y65{bottom:547.413333pt;}
.y1ce{bottom:548.546667pt;}
.y218{bottom:548.706667pt;}
.y1e9{bottom:549.346667pt;}
.y98{bottom:550.626667pt;}
.y23f{bottom:553.186667pt;}
.yf9{bottom:555.933333pt;}
.y273{bottom:557.693333pt;}
.y1cd{bottom:564.413333pt;}
.yd7{bottom:564.733333pt;}
.y217{bottom:566.333333pt;}
.y1e8{bottom:566.973333pt;}
.y129{bottom:567.613333pt;}
.y97{bottom:568.253333pt;}
.y23e{bottom:568.573333pt;}
.y1f{bottom:570.013333pt;}
.y272{bottom:573.053333pt;}
.yf8{bottom:573.533333pt;}
.y165{bottom:575.933333pt;}
.y167{bottom:575.946667pt;}
.yd6{bottom:582.333333pt;}
.y1cc{bottom:582.813333pt;}
.y1e{bottom:583.933333pt;}
.y96{bottom:585.853333pt;}
.y271{bottom:588.413333pt;}
.yf7{bottom:591.133333pt;}
.y1d{bottom:597.693333pt;}
.y23d{bottom:599.293333pt;}
.y1c5{bottom:599.453333pt;}
.yd5{bottom:599.933333pt;}
.y216{bottom:601.693333pt;}
.y95{bottom:603.613333pt;}
.y270{bottom:603.773333pt;}
.yf6{bottom:608.893333pt;}
.y1c{bottom:611.453333pt;}
.y23c{bottom:614.493333pt;}
.yd4{bottom:617.693333pt;}
.y26f{bottom:618.973333pt;}
.y215{bottom:619.293333pt;}
.y94{bottom:621.213333pt;}
.y1b{bottom:625.213333pt;}
.yf5{bottom:626.493333pt;}
.y23b{bottom:629.853333pt;}
.y26e{bottom:634.333333pt;}
.y1a{bottom:635.133333pt;}
.yd3{bottom:635.293333pt;}
.y214{bottom:636.893333pt;}
.y126{bottom:637.693333pt;}
.y93{bottom:638.813333pt;}
.y39{bottom:642.826667pt;}
.yf4{bottom:644.093333pt;}
.y23a{bottom:645.213333pt;}
.y19{bottom:647.293333pt;}
.y26d{bottom:649.693333pt;}
.yd2{bottom:652.893333pt;}
.y213{bottom:654.493333pt;}
.y92{bottom:656.413333pt;}
.y18{bottom:658.813333pt;}
.y239{bottom:660.573333pt;}
.yf3{bottom:662.493333pt;}
.y26c{bottom:665.053333pt;}
.y17{bottom:670.333333pt;}
.yd1{bottom:670.493333pt;}
.y1b6{bottom:671.453333pt;}
.y212{bottom:672.093333pt;}
.y91{bottom:674.013333pt;}
.y238{bottom:675.933333pt;}
.y123{bottom:678.026667pt;}
.yf2{bottom:680.093333pt;}
.y26b{bottom:680.413333pt;}
.y16{bottom:681.853333pt;}
.yd0{bottom:688.093333pt;}
.y15d{bottom:689.386667pt;}
.y211{bottom:689.853333pt;}
.y237{bottom:691.293333pt;}
.y90{bottom:691.773333pt;}
.y15{bottom:694.013333pt;}
.y26a{bottom:695.613333pt;}
.y14{bottom:705.533333pt;}
.ycf{bottom:705.853333pt;}
.y236{bottom:706.493333pt;}
.y210{bottom:707.453333pt;}
.y8f{bottom:709.373333pt;}
.y269{bottom:710.973333pt;}
.y122{bottom:715.133333pt;}
.y235{bottom:722.173333pt;}
.yce{bottom:723.453333pt;}
.y20f{bottom:725.053333pt;}
.y268{bottom:726.333333pt;}
.y8e{bottom:726.973333pt;}
.y13{bottom:729.213333pt;}
.y12{bottom:739.133333pt;}
.ycd{bottom:741.053333pt;}
.y267{bottom:741.693333pt;}
.y20e{bottom:742.653333pt;}
.y8d{bottom:744.573333pt;}
.y120{bottom:751.133333pt;}
.y266{bottom:757.053333pt;}
.y234{bottom:758.533333pt;}
.ycc{bottom:758.693333pt;}
.y20d{bottom:760.293333pt;}
.y11{bottom:760.773333pt;}
.y8c{bottom:762.213333pt;}
.y265{bottom:772.453333pt;}
.y233{bottom:776.133333pt;}
.ycb{bottom:776.293333pt;}
.y20c{bottom:778.853333pt;}
.y8b{bottom:779.973333pt;}
.y1b1{bottom:780.120000pt;}
.y1ae{bottom:780.133333pt;}
.y10{bottom:782.853333pt;}
.y11d{bottom:787.173333pt;}
.y264{bottom:787.653333pt;}
.yca{bottom:794.053333pt;}
.y232{bottom:794.533333pt;}
.yf{bottom:796.933333pt;}
.y8a{bottom:797.573333pt;}
.y263{bottom:803.013333pt;}
.y154{bottom:803.480000pt;}
.y151{bottom:803.493333pt;}
.ye{bottom:810.373333pt;}
.yc9{bottom:811.653333pt;}
.y89{bottom:815.173333pt;}
.y262{bottom:818.373333pt;}
.yd{bottom:820.613333pt;}
.y11a{bottom:827.333333pt;}
.yc8{bottom:829.253333pt;}
.y231{bottom:830.853333pt;}
.y88{bottom:832.773333pt;}
.y261{bottom:833.733333pt;}
.yc{bottom:836.293333pt;}
.yc7{bottom:846.853333pt;}
.y230{bottom:848.453333pt;}
.y260{bottom:849.093333pt;}
.y87{bottom:850.373333pt;}
.yb{bottom:857.893333pt;}
.y1ab{bottom:858.200000pt;}
.y1a8{bottom:858.213333pt;}
.y117{bottom:863.973333pt;}
.yc6{bottom:864.453333pt;}
.y22f{bottom:866.213333pt;}
.y86{bottom:868.133333pt;}
.ya{bottom:877.093333pt;}
.y25f{bottom:879.653333pt;}
.yc5{bottom:882.213333pt;}
.y22e{bottom:884.613333pt;}
.y85{bottom:885.733333pt;}
.y25e{bottom:895.013333pt;}
.y9{bottom:896.613333pt;}
.yc4{bottom:899.813333pt;}
.y114{bottom:901.413333pt;}
.y84{bottom:903.333333pt;}
.y25d{bottom:910.373333pt;}
.yc3{bottom:917.413333pt;}
.y83{bottom:920.933333pt;}
.y8{bottom:921.093333pt;}
.y14f{bottom:922.373333pt;}
.y25c{bottom:925.733333pt;}
.y1a6{bottom:932.133333pt;}
.yc2{bottom:935.013333pt;}
.y82{bottom:938.533333pt;}
.y25b{bottom:941.093333pt;}
.y14e{bottom:941.573333pt;}
.y7{bottom:945.093333pt;}
.yc1{bottom:953.413333pt;}
.y81{bottom:956.133333pt;}
.y25a{bottom:956.293333pt;}
.y113{bottom:957.413333pt;}
.y6b{bottom:974.400000pt;}
.y7f{bottom:981.280000pt;}
.y7e{bottom:998.400000pt;}
.y46{bottom:1010.880000pt;}
.h6{height:5.025000pt;}
.h16{height:5.160000pt;}
.h57{height:5.562500pt;}
.h2{height:12.000000pt;}
.h3b{height:12.306667pt;}
.h1a{height:15.040000pt;}
.h4d{height:18.386667pt;}
.h22{height:19.680000pt;}
.h15{height:20.728125pt;}
.h2c{height:26.368125pt;}
.hc{height:26.381250pt;}
.he{height:27.523125pt;}
.h4{height:30.400000pt;}
.h20{height:32.250000pt;}
.h35{height:33.440000pt;}
.h13{height:35.114107pt;}
.h2e{height:35.346667pt;}
.h32{height:35.360000pt;}
.h31{height:35.380000pt;}
.h2f{height:35.986667pt;}
.h3a{height:36.018667pt;}
.h36{height:36.026667pt;}
.h5{height:36.431250pt;}
.h33{height:36.466667pt;}
.h29{height:37.090625pt;}
.h21{height:37.410000pt;}
.h37{height:37.746667pt;}
.h38{height:38.386667pt;}
.h27{height:38.877839pt;}
.h30{height:39.506667pt;}
.h10{height:39.571875pt;}
.h34{height:39.680000pt;}
.hb{height:40.103437pt;}
.h39{height:40.146667pt;}
.h18{height:40.635000pt;}
.h11{height:41.442606pt;}
.h12{height:42.084375pt;}
.h1b{height:43.215000pt;}
.h3e{height:44.073883pt;}
.h2d{height:44.306667pt;}
.h14{height:47.109375pt;}
.h1c{height:48.375000pt;}
.hf{height:49.148438pt;}
.h1e{height:49.336436pt;}
.h17{height:51.360000pt;}
.h26{height:52.108438pt;}
.h3{height:52.134375pt;}
.h2b{height:53.535000pt;}
.h2a{height:54.598989pt;}
.ha{height:57.787500pt;}
.h19{height:58.563750pt;}
.hd{height:60.288750pt;}
.h28{height:62.781250pt;}
.h9{height:64.500000pt;}
.h23{height:66.625000pt;}
.h25{height:66.750000pt;}
.h56{height:71.356000pt;}
.h55{height:71.360000pt;}
.h4e{height:71.826667pt;}
.h4f{height:71.832000pt;}
.h50{height:71.840000pt;}
.h44{height:77.306667pt;}
.h45{height:77.312000pt;}
.h46{height:77.320000pt;}
.h51{height:77.426667pt;}
.h52{height:77.432000pt;}
.h53{height:77.440000pt;}
.h7{height:77.951250pt;}
.h47{height:83.346667pt;}
.h48{height:83.356000pt;}
.h49{height:83.360000pt;}
.h1f{height:84.840000pt;}
.h8{height:85.785000pt;}
.h54{height:108.020000pt;}
.h43{height:112.796000pt;}
.h42{height:112.800000pt;}
.h40{height:113.298667pt;}
.h41{height:113.300000pt;}
.h3c{height:116.786667pt;}
.h3d{height:116.792000pt;}
.h3f{height:116.800000pt;}
.h24{height:128.800000pt;}
.h4a{height:141.613333pt;}
.h4b{height:148.186667pt;}
.h4c{height:148.200000pt;}
.h1d{height:381.973333pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.wb{width:32.952000pt;}
.we{width:66.066667pt;}
.w3{width:72.952000pt;}
.w15{width:77.912000pt;}
.w10{width:104.152000pt;}
.wc{width:120.018667pt;}
.w5{width:137.306667pt;}
.wd{width:149.946667pt;}
.wa{width:160.346667pt;}
.w8{width:167.053333pt;}
.wf{width:245.973333pt;}
.w11{width:249.973333pt;}
.w13{width:249.986667pt;}
.w16{width:274.293333pt;}
.w18{width:274.306667pt;}
.w12{width:288.533333pt;}
.w14{width:288.546667pt;}
.w17{width:289.813333pt;}
.w7{width:473.546667pt;}
.w4{width:568.760000pt;}
.w2{width:641.720000pt;}
.w9{width:660.600000pt;}
.w6{width:664.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x43{left:3.780000pt;}
.x2{left:7.192000pt;}
.x12{left:9.592000pt;}
.x3f{left:11.026667pt;}
.x34{left:13.586667pt;}
.x29{left:15.666667pt;}
.x35{left:17.266667pt;}
.x18{left:18.893333pt;}
.x31{left:20.626667pt;}
.x2e{left:21.906667pt;}
.x3b{left:22.866667pt;}
.x33{left:24.466667pt;}
.x37{left:26.226667pt;}
.x25{left:28.786667pt;}
.x38{left:29.746667pt;}
.x2c{left:31.186667pt;}
.x2d{left:32.960000pt;}
.x30{left:34.240000pt;}
.x27{left:37.760000pt;}
.x2f{left:43.026667pt;}
.x36{left:44.026667pt;}
.x3a{left:45.466667pt;}
.x39{left:46.746667pt;}
.x32{left:54.720000pt;}
.x3{left:65.746667pt;}
.x16{left:71.560000pt;}
.x13{left:72.680000pt;}
.x2b{left:76.346667pt;}
.x11{left:82.760000pt;}
.x15{left:83.880000pt;}
.x1{left:96.040000pt;}
.x3c{left:98.906667pt;}
.x9{left:105.312000pt;}
.x22{left:108.032000pt;}
.x23{left:109.160000pt;}
.x41{left:111.066667pt;}
.x1d{left:114.112000pt;}
.x6{left:115.232000pt;}
.xe{left:117.952000pt;}
.x1e{left:120.032000pt;}
.x3e{left:124.986667pt;}
.x24{left:142.120000pt;}
.x1a{left:165.946667pt;}
.x4{left:169.000000pt;}
.x40{left:173.960000pt;}
.x21{left:199.706667pt;}
.x7{left:215.866667pt;}
.xc{left:218.466667pt;}
.xd{left:233.186667pt;}
.x1b{left:234.146667pt;}
.x1c{left:237.506667pt;}
.x26{left:262.146667pt;}
.x14{left:269.186667pt;}
.x17{left:275.866667pt;}
.xa{left:299.106667pt;}
.x8{left:393.853333pt;}
.x5{left:396.893333pt;}
.xb{left:408.093333pt;}
.x28{left:412.106667pt;}
.xf{left:434.813333pt;}
.x10{left:436.253333pt;}
.x42{left:448.266667pt;}
.x3d{left:450.186667pt;}
.x1f{left:460.253333pt;}
.x2a{left:478.186667pt;}
.x19{left:551.336000pt;}
.x20{left:667.680000pt;}
}




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