
    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_d337372e2102e66927f356e6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_d78b1f81b8edf0c07e2cdaab.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_92f5865d6394e5f14ceb6db2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_b4a9703e58e0079792f39c2c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_8810c642b2b4b3daeb2fa706.woff')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_abb14367949789ef841a04a8.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_51d7697c73b3f292a1678398.woff')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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_beabdac95d5572c48bf40d9b.woff')format("woff");}.ffb{font-family:ffb;line-height:1.123047;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_d8568c2634af3bd87be483d0.woff')format("woff");}.ffc{font-family:ffc;line-height:1.070312;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_2ca6d07610bf2c7208433208.woff')format("woff");}.ffd{font-family:ffd;line-height:0.930664;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_ce0140aa7aa49a2794a96e77.woff')format("woff");}.ffe{font-family:ffe;line-height:1.040039;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_d7d16c7af80b2a5df38f6b09.woff')format("woff");}.fff{font-family:fff;line-height:0.930664;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_8b35bf25033d5b6ec2a5dc1c.woff')format("woff");}.ff10{font-family:ff10;line-height:1.378906;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_1998f015b524412be356f623.woff')format("woff");}.ff11{font-family:ff11;line-height:0.953125;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:ff12;src:url('chunks/assets/font_965c64c351aee4a2f1d84ff1.woff')format("woff");}.ff12{font-family:ff12;line-height:1.172852;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);}
.v8{vertical-align:-37.560000px;}
.v9{vertical-align:-2.280000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:4.800000px;}
.va{vertical-align:9.480000px;}
.v6{vertical-align:12.960000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.v7{vertical-align:30.240000px;}
.v5{vertical-align:35.280000px;}
.v4{vertical-align:40.320000px;}
.v2{vertical-align:46.080000px;}
.ls2b{letter-spacing:-2.520000px;}
.ls22{letter-spacing:-0.774000px;}
.ls7{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.360000px;}
.ls27{letter-spacing:-0.106800px;}
.ls29{letter-spacing:-0.057600px;}
.lsb{letter-spacing:-0.053280px;}
.ls6{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018000px;}
.ls15{letter-spacing:0.029520px;}
.ls12{letter-spacing:0.053280px;}
.ls28{letter-spacing:0.106800px;}
.lse{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.221760px;}
.ls2a{letter-spacing:0.227400px;}
.ls4{letter-spacing:0.259800px;}
.ls11{letter-spacing:0.259920px;}
.ls16{letter-spacing:0.260640px;}
.ls8{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.532800px;}
.ls2{letter-spacing:0.720000px;}
.ls25{letter-spacing:1.512000px;}
.ls1a{letter-spacing:2.340000px;}
.ls24{letter-spacing:2.387520px;}
.ls1d{letter-spacing:5.220000px;}
.ls19{letter-spacing:7.200000px;}
.ls1c{letter-spacing:7.380000px;}
.ls10{letter-spacing:8.100000px;}
.ls1b{letter-spacing:8.820000px;}
.ls20{letter-spacing:10.080000px;}
.ls21{letter-spacing:11.520000px;}
.ls18{letter-spacing:15.120000px;}
.lsd{letter-spacing:30.545280px;}
.ls17{letter-spacing:34.020000px;}
.ls14{letter-spacing:35.460000px;}
.ls13{letter-spacing:35.561280px;}
.ls2e{letter-spacing:37.025280px;}
.lsf{letter-spacing:55.386720px;}
.ls1e{letter-spacing:59.321280px;}
.lsc{letter-spacing:64.002720px;}
.ls23{letter-spacing:64.200000px;}
.lsa{letter-spacing:82.746720px;}
.ls2c{letter-spacing:141.822000px;}
.ls2d{letter-spacing:155.502000px;}
.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;}
}
.wsb{word-spacing:-82.050480px;}
.ws8{word-spacing:-66.240000px;}
.ws7{word-spacing:-59.760000px;}
.ws18{word-spacing:-19.038240px;}
.wsa{word-spacing:-18.000000px;}
.wsc{word-spacing:-16.560000px;}
.ws12{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.238800px;}
.ws1{word-spacing:-15.199800px;}
.wse{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.833200px;}
.ws2{word-spacing:-14.580000px;}
.ws3{word-spacing:-13.482000px;}
.wsf{word-spacing:-13.089600px;}
.ws13{word-spacing:-12.420000px;}
.ws4{word-spacing:-9.720000px;}
.ws10{word-spacing:-9.414600px;}
.ws11{word-spacing:-9.187200px;}
.ws15{word-spacing:-0.108000px;}
.ws14{word-spacing:-0.059760px;}
.ws5{word-spacing:0.000000px;}
.ws16{word-spacing:120.714000px;}
.ws17{word-spacing:129.654000px;}
.ws19{word-spacing:656.448000px;}
.ws1a{word-spacing:767.796000px;}
._1f{margin-left:-82.050480px;}
._2f{margin-left:-5.318640px;}
._0{margin-left:-1.008000px;}
._1{width:1.380000px;}
._a{width:2.520720px;}
._9{width:3.878880px;}
._d{width:5.079600px;}
._15{width:6.274800px;}
._e{width:7.362960px;}
._c{width:8.419920px;}
._b{width:9.615840px;}
._16{width:11.234880px;}
._14{width:12.783120px;}
._1a{width:13.799040px;}
._22{width:15.770400px;}
._11{width:16.900320px;}
._5{width:17.943120px;}
._6{width:19.119600px;}
._8{width:20.240880px;}
._7{width:22.128960px;}
._18{width:23.163600px;}
._17{width:24.629760px;}
._12{width:25.810800px;}
._13{width:26.897520px;}
._23{width:28.296000px;}
._19{width:30.612720px;}
._10{width:31.656000px;}
._f{width:32.842560px;}
._1e{width:34.597200px;}
._1d{width:35.675280px;}
._24{width:37.476720px;}
._1c{width:40.123200px;}
._1b{width:41.131200px;}
._30{width:50.556960px;}
._2c{width:56.473200px;}
._33{width:59.478000px;}
._20{width:72.900000px;}
._21{width:73.933680px;}
._25{width:83.664000px;}
._2d{width:100.573920px;}
._32{width:115.530000px;}
._2e{width:126.349920px;}
._29{width:145.679040px;}
._28{width:146.969280px;}
._2b{width:181.563840px;}
._2a{width:182.770560px;}
._26{width:196.186560px;}
._27{width:197.333040px;}
._4{width:393.420000px;}
._31{width:780.702000px;}
._3{width:833.400000px;}
._2{width:1590.936000px;}
.fc7{color:rgb(22,198,12);}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fcb{color:rgb(89,89,89);}
.fca{color:rgb(64,64,64);}
.fc9{color:rgb(13,13,13);}
.fc8{color:rgb(68,84,106);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fsb{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs9{font-size:59.904000px;}
.fs7{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fsc{font-size:108.000000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.916000px;}
.y38{bottom:3.240000px;}
.y154{bottom:3.600000px;}
.y160{bottom:4.860000px;}
.y159{bottom:11.700000px;}
.y2e{bottom:11.874000px;}
.y156{bottom:11.880000px;}
.y1c0{bottom:12.645000px;}
.y1c1{bottom:12.780000px;}
.y17c{bottom:14.940000px;}
.y1d2{bottom:15.480000px;}
.y186{bottom:16.920000px;}
.y178{bottom:17.100000px;}
.y17a{bottom:17.640000px;}
.y180{bottom:18.000000px;}
.yb5{bottom:18.900000px;}
.y184{bottom:19.800000px;}
.y15a{bottom:20.340000px;}
.y15c{bottom:20.514000px;}
.y37{bottom:20.520000px;}
.y15e{bottom:21.630000px;}
.y15f{bottom:22.170000px;}
.y17e{bottom:24.840000px;}
.y182{bottom:29.340000px;}
.y176{bottom:30.780000px;}
.y162{bottom:37.620000px;}
.y2d{bottom:37.794000px;}
.y36{bottom:37.800000px;}
.y1bc{bottom:38.520000px;}
.yba{bottom:39.705000px;}
.y1be{bottom:40.185000px;}
.y1d1{bottom:40.785000px;}
.ye{bottom:43.740000px;}
.y175{bottom:47.910000px;}
.yb7{bottom:48.495000px;}
.ybd{bottom:49.575000px;}
.yb4{bottom:54.540000px;}
.y35{bottom:54.900000px;}
.yc2{bottom:57.675000px;}
.y1c3{bottom:58.680000px;}
.yc0{bottom:61.095000px;}
.y2c{bottom:63.534000px;}
.y1b5{bottom:63.540000px;}
.y1ba{bottom:64.440000px;}
.y1d0{bottom:66.090000px;}
.yc{bottom:68.580000px;}
.y34{bottom:72.210000px;}
.y2b{bottom:89.454000px;}
.y1b3{bottom:89.460000px;}
.y1cf{bottom:91.410000px;}
.y1b8{bottom:91.800000px;}
.ya{bottom:94.896000px;}
.y1ad{bottom:110.880000px;}
.y2a{bottom:115.374000px;}
.y1ce{bottom:116.745000px;}
.y1b7{bottom:117.720000px;}
.y112{bottom:130.896000px;}
.y15b{bottom:131.976000px;}
.y81{bottom:133.056000px;}
.y132{bottom:134.676000px;}
.y1ac{bottom:136.185000px;}
.y29{bottom:141.294000px;}
.y1aa{bottom:142.455000px;}
.y18c{bottom:145.476000px;}
.y1a9{bottom:146.235000px;}
.y16{bottom:146.736000px;}
.y208{bottom:148.536000px;}
.y1f3{bottom:149.616000px;}
.y5a{bottom:152.310000px;}
.y111{bottom:156.810000px;}
.y80{bottom:158.970000px;}
.y131{bottom:160.590000px;}
.y1a7{bottom:162.930000px;}
.y28{bottom:167.034000px;}
.y158{bottom:167.250000px;}
.y18b{bottom:171.210000px;}
.y207{bottom:174.450000px;}
.y1f2{bottom:175.350000px;}
.ye0{bottom:176.430000px;}
.ya0{bottom:178.050000px;}
.y59{bottom:178.230000px;}
.y110{bottom:182.730000px;}
.y7f{bottom:184.890000px;}
.y130{bottom:186.510000px;}
.y1a6{bottom:188.850000px;}
.y27{bottom:192.999000px;}
.y18a{bottom:197.130000px;}
.y1c4{bottom:199.290000px;}
.y1c6{bottom:200.805000px;}
.y1f1{bottom:201.270000px;}
.y157{bottom:202.350000px;}
.y1a5{bottom:203.610000px;}
.y58{bottom:203.970000px;}
.ydf{bottom:207.390000px;}
.y10f{bottom:208.470000px;}
.y7e{bottom:210.630000px;}
.y1c7{bottom:212.685000px;}
.y206{bottom:213.510000px;}
.y26{bottom:218.919000px;}
.y1cb{bottom:220.530000px;}
.y189{bottom:223.410000px;}
.y1c8{bottom:224.565000px;}
.y12f{bottom:225.570000px;}
.y1f0{bottom:227.190000px;}
.y9f{bottom:229.710000px;}
.y57{bottom:229.890000px;}
.y1a4{bottom:230.250000px;}
.y1c2{bottom:235.110000px;}
.y1c9{bottom:236.445000px;}
.y7d{bottom:236.550000px;}
.y155{bottom:237.630000px;}
.yde{bottom:238.350000px;}
.y205{bottom:239.250000px;}
.y188{bottom:240.690000px;}
.y25{bottom:244.839000px;}
.y10e{bottom:247.530000px;}
.y1ca{bottom:248.325000px;}
.y12e{bottom:252.750000px;}
.y1ef{bottom:253.110000px;}
.y56{bottom:255.810000px;}
.y1a3{bottom:255.990000px;}
.y7c{bottom:262.470000px;}
.y1cc{bottom:263.310000px;}
.y1ab{bottom:264.345000px;}
.y204{bottom:266.250000px;}
.y187{bottom:266.430000px;}
.y9e{bottom:268.770000px;}
.ydd{bottom:269.490000px;}
.y24{bottom:270.579000px;}
.y153{bottom:272.910000px;}
.y10d{bottom:274.890000px;}
.y12d{bottom:278.670000px;}
.y1ee{bottom:278.850000px;}
.y185{bottom:281.370000px;}
.y55{bottom:281.550000px;}
.y1a2{bottom:281.910000px;}
.yf6{bottom:284.430000px;}
.yc1{bottom:288.000000px;}
.y7b{bottom:288.390000px;}
.y203{bottom:292.170000px;}
.y1cd{bottom:292.680000px;}
.y152{bottom:295.590000px;}
.y23{bottom:296.499000px;}
.ydc{bottom:300.450000px;}
.y10c{bottom:300.810000px;}
.y1ed{bottom:304.770000px;}
.y54{bottom:307.470000px;}
.y9d{bottom:308.010000px;}
.y1a1{bottom:308.550000px;}
.y183{bottom:313.050000px;}
.yf5{bottom:315.570000px;}
.y12c{bottom:317.730000px;}
.y151{bottom:318.090000px;}
.y22{bottom:322.419000px;}
.y7a{bottom:326.190000px;}
.y10b{bottom:326.550000px;}
.yc3{bottom:328.350000px;}
.y1ec{bottom:330.690000px;}
.ydb{bottom:331.590000px;}
.y53{bottom:333.390000px;}
.y9c{bottom:333.930000px;}
.y1bf{bottom:336.090000px;}
.y1a0{bottom:338.475000px;}
.y202{bottom:343.875000px;}
.y12b{bottom:345.135000px;}
.yf4{bottom:346.575000px;}
.y181{bottom:347.655000px;}
.y21{bottom:348.339000px;}
.y10a{bottom:352.515000px;}
.y79{bottom:353.235000px;}
.y19f{bottom:355.755000px;}
.y1eb{bottom:356.475000px;}
.y150{bottom:357.195000px;}
.y52{bottom:359.355000px;}
.y9b{bottom:360.975000px;}
.yda{bottom:362.595000px;}
.y1b6{bottom:363.495000px;}
.y201{bottom:369.795000px;}
.y12a{bottom:370.875000px;}
.y20{bottom:374.079000px;}
.yf3{bottom:377.535000px;}
.y109{bottom:378.435000px;}
.y78{bottom:379.155000px;}
.y19e{bottom:381.495000px;}
.y1ea{bottom:382.395000px;}
.y51{bottom:385.095000px;}
.y9a{bottom:386.895000px;}
.y14f{bottom:387.795000px;}
.y1bd{bottom:390.135000px;}
.ybf{bottom:391.500000px;}
.y17f{bottom:391.755000px;}
.yd9{bottom:393.735000px;}
.y200{bottom:395.715000px;}
.y1f{bottom:399.999000px;}
.y77{bottom:404.895000px;}
.yb6{bottom:406.260000px;}
.y19d{bottom:407.415000px;}
.y1e9{bottom:408.315000px;}
.y129{bottom:409.935000px;}
.y50{bottom:411.015000px;}
.ybc{bottom:414.180000px;}
.y1b9{bottom:416.775000px;}
.y108{bottom:417.495000px;}
.y14e{bottom:418.575000px;}
.yf2{bottom:420.735000px;}
.y1ff{bottom:421.455000px;}
.y17d{bottom:424.515000px;}
.y99{bottom:425.775000px;}
.y1e{bottom:425.919000px;}
.y76{bottom:430.815000px;}
.y19c{bottom:433.335000px;}
.yd8{bottom:433.695000px;}
.y1e8{bottom:434.235000px;}
.y4f{bottom:436.935000px;}
.y128{bottom:437.295000px;}
.yb8{bottom:437.475000px;}
.y1bb{bottom:443.415000px;}
.y107{bottom:444.675000px;}
.ybe{bottom:446.475000px;}
.y1fe{bottom:447.375000px;}
.y14d{bottom:449.175000px;}
.y1d{bottom:451.659000px;}
.yf1{bottom:451.695000px;}
.y75{bottom:456.735000px;}
.y19b{bottom:459.255000px;}
.y1e7{bottom:459.975000px;}
.y4e{bottom:462.855000px;}
.y127{bottom:463.215000px;}
.y17b{bottom:464.115000px;}
.yd7{bottom:464.835000px;}
.y98{bottom:465.195000px;}
.y106{bottom:470.595000px;}
.y1fd{bottom:473.295000px;}
.y19a{bottom:474.015000px;}
.y1c{bottom:477.609000px;}
.y14c{bottom:479.955000px;}
.yf0{bottom:482.835000px;}
.y1e6{bottom:485.895000px;}
.y4d{bottom:488.595000px;}
.y126{bottom:488.955000px;}
.y97{bottom:491.115000px;}
.y179{bottom:493.815000px;}
.y74{bottom:494.535000px;}
.yd6{bottom:495.795000px;}
.y1b2{bottom:495.975000px;}
.y105{bottom:496.515000px;}
.y1fc{bottom:499.215000px;}
.y199{bottom:500.655000px;}
.y1b{bottom:503.529000px;}
.y14b{bottom:510.555000px;}
.y1e5{bottom:511.815000px;}
.yef{bottom:513.795000px;}
.y4c{bottom:514.515000px;}
.y125{bottom:514.875000px;}
.y96{bottom:517.935000px;}
.y73{bottom:521.535000px;}
.y104{bottom:522.435000px;}
.y1fb{bottom:524.955000px;}
.y177{bottom:526.215000px;}
.y198{bottom:526.395000px;}
.yd5{bottom:526.935000px;}
.y1a{bottom:529.449000px;}
.y1e4{bottom:537.735000px;}
.y4b{bottom:540.435000px;}
.y14a{bottom:541.515000px;}
.y72{bottom:547.455000px;}
.y1b4{bottom:547.635000px;}
.y103{bottom:548.175000px;}
.y1fa{bottom:550.875000px;}
.y197{bottom:552.315000px;}
.y124{bottom:553.935000px;}
.y19{bottom:555.189000px;}
.y95{bottom:556.995000px;}
.yd4{bottom:557.895000px;}
.y174{bottom:558.075000px;}
.y21d{bottom:562.215000px;}
.y1e3{bottom:563.475000px;}
.y4a{bottom:566.355000px;}
.y149{bottom:571.035000px;}
.y71{bottom:573.195000px;}
.y1f9{bottom:576.795000px;}
.y196{bottom:578.235000px;}
.yb9{bottom:578.340000px;}
.y18{bottom:581.109000px;}
.y123{bottom:581.295000px;}
.y94{bottom:585.435000px;}
.y102{bottom:587.235000px;}
.yee{bottom:587.955000px;}
.y21c{bottom:588.135000px;}
.yd3{bottom:589.035000px;}
.y1e2{bottom:589.395000px;}
.y49{bottom:592.095000px;}
.y70{bottom:599.115000px;}
.y148{bottom:599.655000px;}
.ybb{bottom:600.735000px;}
.y195{bottom:604.185000px;}
.y101{bottom:605.985000px;}
.y17{bottom:607.029000px;}
.y122{bottom:607.065000px;}
.y21b{bottom:614.085000px;}
.y1f8{bottom:614.625000px;}
.y1e1{bottom:615.345000px;}
.y48{bottom:618.045000px;}
.yed{bottom:618.945000px;}
.yd2{bottom:620.025000px;}
.y100{bottom:623.265000px;}
.yb3{bottom:623.625000px;}
.y93{bottom:624.885000px;}
.y6f{bottom:625.065000px;}
.y147{bottom:629.205000px;}
.y1b1{bottom:629.565000px;}
.y194{bottom:630.645000px;}
.y121{bottom:632.985000px;}
.y173{bottom:635.145000px;}
.y21a{bottom:639.825000px;}
.y1e0{bottom:641.265000px;}
.y47{bottom:643.965000px;}
.yb2{bottom:649.545000px;}
.y92{bottom:650.625000px;}
.y6e{bottom:650.985000px;}
.yd1{bottom:651.165000px;}
.y1f7{bottom:653.685000px;}
.yff{bottom:656.025000px;}
.y146{bottom:656.385000px;}
.y120{bottom:658.905000px;}
.y193{bottom:660.525000px;}
.yec{bottom:662.145000px;}
.y172{bottom:663.045000px;}
.y219{bottom:665.745000px;}
.y1df{bottom:667.005000px;}
.y46{bottom:669.885000px;}
.y171{bottom:670.605000px;}
.yb1{bottom:675.285000px;}
.y6d{bottom:676.725000px;}
.y91{bottom:677.625000px;}
.y1b0{bottom:680.505000px;}
.yd0{bottom:682.125000px;}
.y145{bottom:682.305000px;}
.y192{bottom:686.445000px;}
.yfe{bottom:687.165000px;}
.y218{bottom:691.665000px;}
.y1f6{bottom:692.565000px;}
.y1de{bottom:692.925000px;}
.yeb{bottom:693.105000px;}
.y45{bottom:695.625000px;}
.y11f{bottom:697.965000px;}
.y170{bottom:700.485000px;}
.yb0{bottom:701.205000px;}
.y6c{bottom:702.645000px;}
.y90{bottom:703.545000px;}
.y1af{bottom:706.425000px;}
.y144{bottom:708.225000px;}
.y191{bottom:712.365000px;}
.ycf{bottom:713.265000px;}
.y217{bottom:717.585000px;}
.yfd{bottom:718.125000px;}
.y1dd{bottom:718.845000px;}
.y1f5{bottom:719.565000px;}
.y44{bottom:721.545000px;}
.y16f{bottom:723.525000px;}
.y11e{bottom:725.145000px;}
.y143{bottom:726.045000px;}
.y6b{bottom:728.565000px;}
.y1ae{bottom:729.105000px;}
.y1c5{bottom:729.180000px;}
.yaf{bottom:730.545000px;}
.y16e{bottom:733.605000px;}
.yea{bottom:736.125000px;}
.y190{bottom:738.105000px;}
.y8f{bottom:741.345000px;}
.y216{bottom:743.325000px;}
.y1dc{bottom:744.765000px;}
.y142{bottom:745.485000px;}
.y43{bottom:747.465000px;}
.yfc{bottom:749.265000px;}
.y11d{bottom:751.065000px;}
.yce{bottom:753.225000px;}
.y6a{bottom:754.485000px;}
.yae{bottom:760.785000px;}
.y1a8{bottom:761.040000px;}
.y141{bottom:762.765000px;}
.ye9{bottom:767.265000px;}
.y16d{bottom:769.065000px;}
.y215{bottom:769.245000px;}
.y1db{bottom:770.505000px;}
.y1f4{bottom:771.225000px;}
.y15{bottom:773.205000px;}
.y11c{bottom:776.985000px;}
.y8e{bottom:779.325000px;}
.y140{bottom:779.865000px;}
.y69{bottom:780.225000px;}
.yad{bottom:786.705000px;}
.yfb{bottom:789.225000px;}
.y14{bottom:789.765000px;}
.ycd{bottom:793.365000px;}
.y214{bottom:795.165000px;}
.y16c{bottom:796.245000px;}
.y1da{bottom:796.425000px;}
.y13f{bottom:797.145000px;}
.ye8{bottom:798.225000px;}
.y42{bottom:799.125000px;}
.y11b{bottom:802.905000px;}
.y8d{bottom:805.065000px;}
.y68{bottom:806.145000px;}
.yac{bottom:812.445000px;}
.y13{bottom:813.345000px;}
.yfa{bottom:820.365000px;}
.y213{bottom:821.085000px;}
.y1d9{bottom:822.345000px;}
.y13e{bottom:823.065000px;}
.ycc{bottom:824.325000px;}
.y41{bottom:825.045000px;}
.y16b{bottom:826.125000px;}
.y11a{bottom:828.645000px;}
.ye7{bottom:829.365000px;}
.y67{bottom:832.065000px;}
.y12{bottom:832.605000px;}
.yab{bottom:840.345000px;}
.y8c{bottom:843.045000px;}
.y212{bottom:846.825000px;}
.y1d8{bottom:848.085000px;}
.y13d{bottom:848.805000px;}
.y40{bottom:850.965000px;}
.yf9{bottom:851.325000px;}
.ycb{bottom:855.285000px;}
.y16a{bottom:855.825000px;}
.y66{bottom:857.805000px;}
.ye6{bottom:860.325000px;}
.y11{bottom:863.025000px;}
.y119{bottom:867.705000px;}
.yaa{bottom:868.605000px;}
.y8b{bottom:868.785000px;}
.y211{bottom:872.790000px;}
.y1d7{bottom:874.050000px;}
.y13c{bottom:874.770000px;}
.y3f{bottom:876.750000px;}
.yf8{bottom:882.330000px;}
.y65{bottom:883.770000px;}
.y169{bottom:884.490000px;}
.y10{bottom:890.970000px;}
.ye5{bottom:891.510000px;}
.y118{bottom:895.110000px;}
.ya9{bottom:896.550000px;}
.yca{bottom:898.530000px;}
.y210{bottom:898.710000px;}
.y13b{bottom:900.690000px;}
.y3e{bottom:902.670000px;}
.y8a{bottom:907.890000px;}
.y64{bottom:909.690000px;}
.y168{bottom:913.110000px;}
.yf{bottom:915.810000px;}
.y117{bottom:921.030000px;}
.ye4{bottom:922.470000px;}
.y20f{bottom:924.630000px;}
.ya8{bottom:924.990000px;}
.y13a{bottom:926.610000px;}
.y3d{bottom:928.590000px;}
.yc9{bottom:929.490000px;}
.y89{bottom:935.250000px;}
.y63{bottom:935.610000px;}
.y167{bottom:938.850000px;}
.y1d6{bottom:940.470000px;}
.y9{bottom:941.370000px;}
.y116{bottom:946.770000px;}
.y20e{bottom:950.370000px;}
.y139{bottom:952.350000px;}
.ya7{bottom:952.890000px;}
.ye3{bottom:953.610000px;}
.y3c{bottom:954.510000px;}
.y166{bottom:956.130000px;}
.y8{bottom:958.650000px;}
.y88{bottom:961.170000px;}
.y62{bottom:961.350000px;}
.y1d5{bottom:966.210000px;}
.yc8{bottom:972.510000px;}
.y7{bottom:972.690000px;}
.y20d{bottom:976.290000px;}
.y138{bottom:978.270000px;}
.y3b{bottom:980.250000px;}
.ya6{bottom:981.330000px;}
.y165{bottom:982.050000px;}
.ye2{bottom:984.570000px;}
.y87{bottom:986.910000px;}
.y61{bottom:987.270000px;}
.y1d4{bottom:992.130000px;}
.y164{bottom:996.810000px;}
.y115{bottom:998.610000px;}
.yc7{bottom:1003.650000px;}
.y137{bottom:1004.190000px;}
.y20c{bottom:1005.090000px;}
.ya5{bottom:1009.230000px;}
.y86{bottom:1012.830000px;}
.y60{bottom:1013.190000px;}
.y3a{bottom:1015.170000px;}
.ye1{bottom:1015.710000px;}
.y1d3{bottom:1018.050000px;}
.y114{bottom:1024.530000px;}
.y20b{bottom:1024.890000px;}
.y6{bottom:1027.230000px;}
.y136{bottom:1030.110000px;}
.y163{bottom:1032.090000px;}
.ya4{bottom:1037.310000px;}
.y85{bottom:1038.750000px;}
.y5f{bottom:1039.110000px;}
.y39{bottom:1043.430000px;}
.yc6{bottom:1046.670000px;}
.y5{bottom:1052.070000px;}
.y135{bottom:1055.850000px;}
.y20a{bottom:1056.750000px;}
.y113{bottom:1063.410000px;}
.y5e{bottom:1064.850000px;}
.y18f{bottom:1066.290000px;}
.y161{bottom:1067.370000px;}
.y33{bottom:1068.090000px;}
.y4{bottom:1073.130000px;}
.y84{bottom:1073.670000px;}
.ya3{bottom:1076.190000px;}
.y209{bottom:1076.550000px;}
.yc5{bottom:1077.810000px;}
.y134{bottom:1081.770000px;}
.y18e{bottom:1086.270000px;}
.y5d{bottom:1090.770000px;}
.y3{bottom:1093.830000px;}
.y18d{bottom:1104.270000px;}
.y133{bottom:1107.690000px;}
.yc4{bottom:1108.770000px;}
.y83{bottom:1111.470000px;}
.y2{bottom:1114.530000px;}
.ya2{bottom:1115.610000px;}
.y5c{bottom:1116.690000px;}
.y15d{bottom:1119.750000px;}
.y1{bottom:1131.270000px;}
.yf7{bottom:1139.760000px;}
.y82{bottom:1139.940000px;}
.ya1{bottom:1141.560000px;}
.y5b{bottom:1142.640000px;}
.y32{bottom:1166.400000px;}
.y31{bottom:1180.440000px;}
.y30{bottom:1201.140000px;}
.y2f{bottom:1227.420000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.h1d{height:18.000000px;}
.h30{height:25.740000px;}
.h2f{height:25.920000px;}
.h31{height:25.956000px;}
.h3d{height:26.676000px;}
.h3e{height:26.820000px;}
.h29{height:28.980000px;}
.h2e{height:30.960000px;}
.h27{height:31.140000px;}
.h28{height:31.500000px;}
.h2b{height:32.040000px;}
.h2d{height:33.876000px;}
.h1f{height:34.380000px;}
.h1e{height:34.560000px;}
.h20{height:36.036000px;}
.h2a{height:38.880000px;}
.hc{height:42.327773px;}
.h2c{height:43.380000px;}
.h5{height:44.507812px;}
.h33{height:46.308164px;}
.h7{height:47.381836px;}
.h38{height:50.940000px;}
.h14{height:51.468750px;}
.h21{height:51.660000px;}
.h37{height:51.840000px;}
.h4{height:52.435898px;}
.h3b{height:52.560000px;}
.h17{height:52.562250px;}
.h2{height:53.077852px;}
.h16{height:53.640000px;}
.h35{height:53.709961px;}
.h3c{height:54.216000px;}
.h10{height:54.536836px;}
.hb{height:55.412578px;}
.h11{height:55.586250px;}
.h1b{height:58.121719px;}
.hf{height:58.833281px;}
.h26{height:61.956000px;}
.h15{height:62.640000px;}
.h13{height:63.175781px;}
.h18{height:63.900000px;}
.h3{height:63.949219px;}
.h24{height:70.759687px;}
.h12{height:71.280000px;}
.h1a{height:71.820000px;}
.h3f{height:72.720000px;}
.h1c{height:73.096875px;}
.ha{height:74.820586px;}
.h19{height:75.240000px;}
.h3a{height:78.480000px;}
.h25{height:83.317852px;}
.h34{height:83.689453px;}
.h42{height:83.787539px;}
.h9{height:85.052461px;}
.he{height:86.256000px;}
.h23{height:93.397852px;}
.h41{height:94.209961px;}
.h22{height:96.852656px;}
.h36{height:103.500000px;}
.h39{height:131.760000px;}
.h32{height:301.320000px;}
.h40{height:324.000000px;}
.hd{height:621.075000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1c{width:72.900000px;}
.w1e{width:97.200000px;}
.wa{width:106.020000px;}
.wb{width:111.780000px;}
.wd{width:137.700000px;}
.w1d{width:140.256000px;}
.wc{width:155.520000px;}
.w13{width:159.660000px;}
.w9{width:161.460000px;}
.we{width:190.290000px;}
.w17{width:202.890000px;}
.w12{width:209.550000px;}
.w11{width:209.730000px;}
.w16{width:212.250000px;}
.w10{width:232.050000px;}
.w18{width:232.410000px;}
.w14{width:254.055000px;}
.w1b{width:281.235000px;}
.w1a{width:288.210000px;}
.w15{width:291.090000px;}
.w7{width:348.015000px;}
.w4{width:348.375000px;}
.w3{width:349.230000px;}
.w6{width:349.590000px;}
.wf{width:487.875000px;}
.w19{width:540.000000px;}
.w1f{width:643.965000px;}
.w8{width:658.185000px;}
.w20{width:679.500000px;}
.w5{width:679.785000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.460000px;}
.x16{left:10.836000px;}
.x3a{left:86.145000px;}
.x39{left:92.985000px;}
.x29{left:94.176000px;}
.x9{left:97.776000px;}
.x7{left:106.235987px;}
.x3f{left:111.455987px;}
.x3e{left:112.470000px;}
.x17{left:117.575987px;}
.x2b{left:119.745000px;}
.x2c{left:123.165000px;}
.x2e{left:128.520000px;}
.xf{left:133.235987px;}
.x2d{left:136.080000px;}
.x11{left:137.735987px;}
.x24{left:142.055987px;}
.x15{left:146.735987px;}
.x1f{left:149.435987px;}
.x10{left:160.229987px;}
.x14{left:164.729987px;}
.x33{left:167.325000px;}
.x31{left:176.400000px;}
.xd{left:180.749987px;}
.x3b{left:182.190000px;}
.x12{left:187.229987px;}
.x34{left:199.950000px;}
.x13{left:214.229987px;}
.xc{left:234.029987px;}
.x27{left:235.469987px;}
.x2{left:254.189987px;}
.x6{left:273.989987px;}
.x21{left:289.695000px;}
.x32{left:290.880000px;}
.x3d{left:294.990000px;}
.x20{left:302.834987px;}
.xb{left:312.915000px;}
.x25{left:331.455000px;}
.x2f{left:335.055000px;}
.xe{left:339.879000px;}
.x5{left:362.414987px;}
.x1d{left:375.480000px;}
.x4{left:379.874987px;}
.x1e{left:386.354987px;}
.x36{left:387.615000px;}
.x1a{left:388.980000px;}
.x18{left:396.900000px;}
.x3{left:398.414987px;}
.x1b{left:399.854987px;}
.x19{left:407.774987px;}
.x22{left:440.714987px;}
.x8{left:446.474987px;}
.x23{left:476.564987px;}
.x2a{left:507.885000px;}
.x35{left:513.465000px;}
.x38{left:528.585000px;}
.x30{left:537.945000px;}
.x26{left:541.905000px;}
.x3c{left:544.530000px;}
.x1c{left:608.400000px;}
.x37{left:669.750000px;}
.x28{left:716.549987px;}
.x1{left:786.749987px;}
@media print{
.v8{vertical-align:-33.386667pt;}
.v9{vertical-align:-2.026667pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:4.266667pt;}
.va{vertical-align:8.426667pt;}
.v6{vertical-align:11.520000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.v7{vertical-align:26.880000pt;}
.v5{vertical-align:31.360000pt;}
.v4{vertical-align:35.840000pt;}
.v2{vertical-align:40.960000pt;}
.ls2b{letter-spacing:-2.240000pt;}
.ls22{letter-spacing:-0.688000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls27{letter-spacing:-0.094933pt;}
.ls29{letter-spacing:-0.051200pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016000pt;}
.ls15{letter-spacing:0.026240pt;}
.ls12{letter-spacing:0.047360pt;}
.ls28{letter-spacing:0.094933pt;}
.lse{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.197120pt;}
.ls2a{letter-spacing:0.202133pt;}
.ls4{letter-spacing:0.230933pt;}
.ls11{letter-spacing:0.231040pt;}
.ls16{letter-spacing:0.231680pt;}
.ls8{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.473600pt;}
.ls2{letter-spacing:0.640000pt;}
.ls25{letter-spacing:1.344000pt;}
.ls1a{letter-spacing:2.080000pt;}
.ls24{letter-spacing:2.122240pt;}
.ls1d{letter-spacing:4.640000pt;}
.ls19{letter-spacing:6.400000pt;}
.ls1c{letter-spacing:6.560000pt;}
.ls10{letter-spacing:7.200000pt;}
.ls1b{letter-spacing:7.840000pt;}
.ls20{letter-spacing:8.960000pt;}
.ls21{letter-spacing:10.240000pt;}
.ls18{letter-spacing:13.440000pt;}
.lsd{letter-spacing:27.151360pt;}
.ls17{letter-spacing:30.240000pt;}
.ls14{letter-spacing:31.520000pt;}
.ls13{letter-spacing:31.610027pt;}
.ls2e{letter-spacing:32.911360pt;}
.lsf{letter-spacing:49.232640pt;}
.ls1e{letter-spacing:52.730027pt;}
.lsc{letter-spacing:56.891307pt;}
.ls23{letter-spacing:57.066667pt;}
.lsa{letter-spacing:73.552640pt;}
.ls2c{letter-spacing:126.064000pt;}
.ls2d{letter-spacing:138.224000pt;}
.wsb{word-spacing:-72.933760pt;}
.ws8{word-spacing:-58.880000pt;}
.ws7{word-spacing:-53.120000pt;}
.ws18{word-spacing:-16.922880pt;}
.wsa{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.720000pt;}
.ws12{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.545600pt;}
.ws1{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.185067pt;}
.ws2{word-spacing:-12.960000pt;}
.ws3{word-spacing:-11.984000pt;}
.wsf{word-spacing:-11.635200pt;}
.ws13{word-spacing:-11.040000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws10{word-spacing:-8.368533pt;}
.ws11{word-spacing:-8.166400pt;}
.ws15{word-spacing:-0.096000pt;}
.ws14{word-spacing:-0.053120pt;}
.ws5{word-spacing:0.000000pt;}
.ws16{word-spacing:107.301333pt;}
.ws17{word-spacing:115.248000pt;}
.ws19{word-spacing:583.509333pt;}
.ws1a{word-spacing:682.485333pt;}
._1f{margin-left:-72.933760pt;}
._2f{margin-left:-4.727680pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.226667pt;}
._a{width:2.240640pt;}
._9{width:3.447893pt;}
._d{width:4.515200pt;}
._15{width:5.577600pt;}
._e{width:6.544853pt;}
._c{width:7.484373pt;}
._b{width:8.547413pt;}
._16{width:9.986560pt;}
._14{width:11.362773pt;}
._1a{width:12.265813pt;}
._22{width:14.018133pt;}
._11{width:15.022507pt;}
._5{width:15.949440pt;}
._6{width:16.995200pt;}
._8{width:17.991893pt;}
._7{width:19.670187pt;}
._18{width:20.589867pt;}
._17{width:21.893120pt;}
._12{width:22.942933pt;}
._13{width:23.908907pt;}
._23{width:25.152000pt;}
._19{width:27.211307pt;}
._10{width:28.138667pt;}
._f{width:29.193387pt;}
._1e{width:30.753067pt;}
._1d{width:31.711360pt;}
._24{width:33.312640pt;}
._1c{width:35.665067pt;}
._1b{width:36.561067pt;}
._30{width:44.939520pt;}
._2c{width:50.198400pt;}
._33{width:52.869333pt;}
._20{width:64.800000pt;}
._21{width:65.718827pt;}
._25{width:74.368000pt;}
._2d{width:89.399040pt;}
._32{width:102.693333pt;}
._2e{width:112.311040pt;}
._29{width:129.492480pt;}
._28{width:130.639360pt;}
._2b{width:161.390080pt;}
._2a{width:162.462720pt;}
._26{width:174.388053pt;}
._27{width:175.407147pt;}
._4{width:349.706667pt;}
._31{width:693.957333pt;}
._3{width:740.800000pt;}
._2{width:1414.165333pt;}
.fsb{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.fs7{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fsc{font-size:96.000000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.592000pt;}
.y38{bottom:2.880000pt;}
.y154{bottom:3.200000pt;}
.y160{bottom:4.320000pt;}
.y159{bottom:10.400000pt;}
.y2e{bottom:10.554667pt;}
.y156{bottom:10.560000pt;}
.y1c0{bottom:11.240000pt;}
.y1c1{bottom:11.360000pt;}
.y17c{bottom:13.280000pt;}
.y1d2{bottom:13.760000pt;}
.y186{bottom:15.040000pt;}
.y178{bottom:15.200000pt;}
.y17a{bottom:15.680000pt;}
.y180{bottom:16.000000pt;}
.yb5{bottom:16.800000pt;}
.y184{bottom:17.600000pt;}
.y15a{bottom:18.080000pt;}
.y15c{bottom:18.234667pt;}
.y37{bottom:18.240000pt;}
.y15e{bottom:19.226667pt;}
.y15f{bottom:19.706667pt;}
.y17e{bottom:22.080000pt;}
.y182{bottom:26.080000pt;}
.y176{bottom:27.360000pt;}
.y162{bottom:33.440000pt;}
.y2d{bottom:33.594667pt;}
.y36{bottom:33.600000pt;}
.y1bc{bottom:34.240000pt;}
.yba{bottom:35.293333pt;}
.y1be{bottom:35.720000pt;}
.y1d1{bottom:36.253333pt;}
.ye{bottom:38.880000pt;}
.y175{bottom:42.586667pt;}
.yb7{bottom:43.106667pt;}
.ybd{bottom:44.066667pt;}
.yb4{bottom:48.480000pt;}
.y35{bottom:48.800000pt;}
.yc2{bottom:51.266667pt;}
.y1c3{bottom:52.160000pt;}
.yc0{bottom:54.306667pt;}
.y2c{bottom:56.474667pt;}
.y1b5{bottom:56.480000pt;}
.y1ba{bottom:57.280000pt;}
.y1d0{bottom:58.746667pt;}
.yc{bottom:60.960000pt;}
.y34{bottom:64.186667pt;}
.y2b{bottom:79.514667pt;}
.y1b3{bottom:79.520000pt;}
.y1cf{bottom:81.253333pt;}
.y1b8{bottom:81.600000pt;}
.ya{bottom:84.352000pt;}
.y1ad{bottom:98.560000pt;}
.y2a{bottom:102.554667pt;}
.y1ce{bottom:103.773333pt;}
.y1b7{bottom:104.640000pt;}
.y112{bottom:116.352000pt;}
.y15b{bottom:117.312000pt;}
.y81{bottom:118.272000pt;}
.y132{bottom:119.712000pt;}
.y1ac{bottom:121.053333pt;}
.y29{bottom:125.594667pt;}
.y1aa{bottom:126.626667pt;}
.y18c{bottom:129.312000pt;}
.y1a9{bottom:129.986667pt;}
.y16{bottom:130.432000pt;}
.y208{bottom:132.032000pt;}
.y1f3{bottom:132.992000pt;}
.y5a{bottom:135.386667pt;}
.y111{bottom:139.386667pt;}
.y80{bottom:141.306667pt;}
.y131{bottom:142.746667pt;}
.y1a7{bottom:144.826667pt;}
.y28{bottom:148.474667pt;}
.y158{bottom:148.666667pt;}
.y18b{bottom:152.186667pt;}
.y207{bottom:155.066667pt;}
.y1f2{bottom:155.866667pt;}
.ye0{bottom:156.826667pt;}
.ya0{bottom:158.266667pt;}
.y59{bottom:158.426667pt;}
.y110{bottom:162.426667pt;}
.y7f{bottom:164.346667pt;}
.y130{bottom:165.786667pt;}
.y1a6{bottom:167.866667pt;}
.y27{bottom:171.554667pt;}
.y18a{bottom:175.226667pt;}
.y1c4{bottom:177.146667pt;}
.y1c6{bottom:178.493333pt;}
.y1f1{bottom:178.906667pt;}
.y157{bottom:179.866667pt;}
.y1a5{bottom:180.986667pt;}
.y58{bottom:181.306667pt;}
.ydf{bottom:184.346667pt;}
.y10f{bottom:185.306667pt;}
.y7e{bottom:187.226667pt;}
.y1c7{bottom:189.053333pt;}
.y206{bottom:189.786667pt;}
.y26{bottom:194.594667pt;}
.y1cb{bottom:196.026667pt;}
.y189{bottom:198.586667pt;}
.y1c8{bottom:199.613333pt;}
.y12f{bottom:200.506667pt;}
.y1f0{bottom:201.946667pt;}
.y9f{bottom:204.186667pt;}
.y57{bottom:204.346667pt;}
.y1a4{bottom:204.666667pt;}
.y1c2{bottom:208.986667pt;}
.y1c9{bottom:210.173333pt;}
.y7d{bottom:210.266667pt;}
.y155{bottom:211.226667pt;}
.yde{bottom:211.866667pt;}
.y205{bottom:212.666667pt;}
.y188{bottom:213.946667pt;}
.y25{bottom:217.634667pt;}
.y10e{bottom:220.026667pt;}
.y1ca{bottom:220.733333pt;}
.y12e{bottom:224.666667pt;}
.y1ef{bottom:224.986667pt;}
.y56{bottom:227.386667pt;}
.y1a3{bottom:227.546667pt;}
.y7c{bottom:233.306667pt;}
.y1cc{bottom:234.053333pt;}
.y1ab{bottom:234.973333pt;}
.y204{bottom:236.666667pt;}
.y187{bottom:236.826667pt;}
.y9e{bottom:238.906667pt;}
.ydd{bottom:239.546667pt;}
.y24{bottom:240.514667pt;}
.y153{bottom:242.586667pt;}
.y10d{bottom:244.346667pt;}
.y12d{bottom:247.706667pt;}
.y1ee{bottom:247.866667pt;}
.y185{bottom:250.106667pt;}
.y55{bottom:250.266667pt;}
.y1a2{bottom:250.586667pt;}
.yf6{bottom:252.826667pt;}
.yc1{bottom:256.000000pt;}
.y7b{bottom:256.346667pt;}
.y203{bottom:259.706667pt;}
.y1cd{bottom:260.160000pt;}
.y152{bottom:262.746667pt;}
.y23{bottom:263.554667pt;}
.ydc{bottom:267.066667pt;}
.y10c{bottom:267.386667pt;}
.y1ed{bottom:270.906667pt;}
.y54{bottom:273.306667pt;}
.y9d{bottom:273.786667pt;}
.y1a1{bottom:274.266667pt;}
.y183{bottom:278.266667pt;}
.yf5{bottom:280.506667pt;}
.y12c{bottom:282.426667pt;}
.y151{bottom:282.746667pt;}
.y22{bottom:286.594667pt;}
.y7a{bottom:289.946667pt;}
.y10b{bottom:290.266667pt;}
.yc3{bottom:291.866667pt;}
.y1ec{bottom:293.946667pt;}
.ydb{bottom:294.746667pt;}
.y53{bottom:296.346667pt;}
.y9c{bottom:296.826667pt;}
.y1bf{bottom:298.746667pt;}
.y1a0{bottom:300.866667pt;}
.y202{bottom:305.666667pt;}
.y12b{bottom:306.786667pt;}
.yf4{bottom:308.066667pt;}
.y181{bottom:309.026667pt;}
.y21{bottom:309.634667pt;}
.y10a{bottom:313.346667pt;}
.y79{bottom:313.986667pt;}
.y19f{bottom:316.226667pt;}
.y1eb{bottom:316.866667pt;}
.y150{bottom:317.506667pt;}
.y52{bottom:319.426667pt;}
.y9b{bottom:320.866667pt;}
.yda{bottom:322.306667pt;}
.y1b6{bottom:323.106667pt;}
.y201{bottom:328.706667pt;}
.y12a{bottom:329.666667pt;}
.y20{bottom:332.514667pt;}
.yf3{bottom:335.586667pt;}
.y109{bottom:336.386667pt;}
.y78{bottom:337.026667pt;}
.y19e{bottom:339.106667pt;}
.y1ea{bottom:339.906667pt;}
.y51{bottom:342.306667pt;}
.y9a{bottom:343.906667pt;}
.y14f{bottom:344.706667pt;}
.y1bd{bottom:346.786667pt;}
.ybf{bottom:348.000000pt;}
.y17f{bottom:348.226667pt;}
.yd9{bottom:349.986667pt;}
.y200{bottom:351.746667pt;}
.y1f{bottom:355.554667pt;}
.y77{bottom:359.906667pt;}
.yb6{bottom:361.120000pt;}
.y19d{bottom:362.146667pt;}
.y1e9{bottom:362.946667pt;}
.y129{bottom:364.386667pt;}
.y50{bottom:365.346667pt;}
.ybc{bottom:368.160000pt;}
.y1b9{bottom:370.466667pt;}
.y108{bottom:371.106667pt;}
.y14e{bottom:372.066667pt;}
.yf2{bottom:373.986667pt;}
.y1ff{bottom:374.626667pt;}
.y17d{bottom:377.346667pt;}
.y99{bottom:378.466667pt;}
.y1e{bottom:378.594667pt;}
.y76{bottom:382.946667pt;}
.y19c{bottom:385.186667pt;}
.yd8{bottom:385.506667pt;}
.y1e8{bottom:385.986667pt;}
.y4f{bottom:388.386667pt;}
.y128{bottom:388.706667pt;}
.yb8{bottom:388.866667pt;}
.y1bb{bottom:394.146667pt;}
.y107{bottom:395.266667pt;}
.ybe{bottom:396.866667pt;}
.y1fe{bottom:397.666667pt;}
.y14d{bottom:399.266667pt;}
.y1d{bottom:401.474667pt;}
.yf1{bottom:401.506667pt;}
.y75{bottom:405.986667pt;}
.y19b{bottom:408.226667pt;}
.y1e7{bottom:408.866667pt;}
.y4e{bottom:411.426667pt;}
.y127{bottom:411.746667pt;}
.y17b{bottom:412.546667pt;}
.yd7{bottom:413.186667pt;}
.y98{bottom:413.506667pt;}
.y106{bottom:418.306667pt;}
.y1fd{bottom:420.706667pt;}
.y19a{bottom:421.346667pt;}
.y1c{bottom:424.541333pt;}
.y14c{bottom:426.626667pt;}
.yf0{bottom:429.186667pt;}
.y1e6{bottom:431.906667pt;}
.y4d{bottom:434.306667pt;}
.y126{bottom:434.626667pt;}
.y97{bottom:436.546667pt;}
.y179{bottom:438.946667pt;}
.y74{bottom:439.586667pt;}
.yd6{bottom:440.706667pt;}
.y1b2{bottom:440.866667pt;}
.y105{bottom:441.346667pt;}
.y1fc{bottom:443.746667pt;}
.y199{bottom:445.026667pt;}
.y1b{bottom:447.581333pt;}
.y14b{bottom:453.826667pt;}
.y1e5{bottom:454.946667pt;}
.yef{bottom:456.706667pt;}
.y4c{bottom:457.346667pt;}
.y125{bottom:457.666667pt;}
.y96{bottom:460.386667pt;}
.y73{bottom:463.586667pt;}
.y104{bottom:464.386667pt;}
.y1fb{bottom:466.626667pt;}
.y177{bottom:467.746667pt;}
.y198{bottom:467.906667pt;}
.yd5{bottom:468.386667pt;}
.y1a{bottom:470.621333pt;}
.y1e4{bottom:477.986667pt;}
.y4b{bottom:480.386667pt;}
.y14a{bottom:481.346667pt;}
.y72{bottom:486.626667pt;}
.y1b4{bottom:486.786667pt;}
.y103{bottom:487.266667pt;}
.y1fa{bottom:489.666667pt;}
.y197{bottom:490.946667pt;}
.y124{bottom:492.386667pt;}
.y19{bottom:493.501333pt;}
.y95{bottom:495.106667pt;}
.yd4{bottom:495.906667pt;}
.y174{bottom:496.066667pt;}
.y21d{bottom:499.746667pt;}
.y1e3{bottom:500.866667pt;}
.y4a{bottom:503.426667pt;}
.y149{bottom:507.586667pt;}
.y71{bottom:509.506667pt;}
.y1f9{bottom:512.706667pt;}
.y196{bottom:513.986667pt;}
.yb9{bottom:514.080000pt;}
.y18{bottom:516.541333pt;}
.y123{bottom:516.706667pt;}
.y94{bottom:520.386667pt;}
.y102{bottom:521.986667pt;}
.yee{bottom:522.626667pt;}
.y21c{bottom:522.786667pt;}
.yd3{bottom:523.586667pt;}
.y1e2{bottom:523.906667pt;}
.y49{bottom:526.306667pt;}
.y70{bottom:532.546667pt;}
.y148{bottom:533.026667pt;}
.ybb{bottom:533.986667pt;}
.y195{bottom:537.053333pt;}
.y101{bottom:538.653333pt;}
.y17{bottom:539.581333pt;}
.y122{bottom:539.613333pt;}
.y21b{bottom:545.853333pt;}
.y1f8{bottom:546.333333pt;}
.y1e1{bottom:546.973333pt;}
.y48{bottom:549.373333pt;}
.yed{bottom:550.173333pt;}
.yd2{bottom:551.133333pt;}
.y100{bottom:554.013333pt;}
.yb3{bottom:554.333333pt;}
.y93{bottom:555.453333pt;}
.y6f{bottom:555.613333pt;}
.y147{bottom:559.293333pt;}
.y1b1{bottom:559.613333pt;}
.y194{bottom:560.573333pt;}
.y121{bottom:562.653333pt;}
.y173{bottom:564.573333pt;}
.y21a{bottom:568.733333pt;}
.y1e0{bottom:570.013333pt;}
.y47{bottom:572.413333pt;}
.yb2{bottom:577.373333pt;}
.y92{bottom:578.333333pt;}
.y6e{bottom:578.653333pt;}
.yd1{bottom:578.813333pt;}
.y1f7{bottom:581.053333pt;}
.yff{bottom:583.133333pt;}
.y146{bottom:583.453333pt;}
.y120{bottom:585.693333pt;}
.y193{bottom:587.133333pt;}
.yec{bottom:588.573333pt;}
.y172{bottom:589.373333pt;}
.y219{bottom:591.773333pt;}
.y1df{bottom:592.893333pt;}
.y46{bottom:595.453333pt;}
.y171{bottom:596.093333pt;}
.yb1{bottom:600.253333pt;}
.y6d{bottom:601.533333pt;}
.y91{bottom:602.333333pt;}
.y1b0{bottom:604.893333pt;}
.yd0{bottom:606.333333pt;}
.y145{bottom:606.493333pt;}
.y192{bottom:610.173333pt;}
.yfe{bottom:610.813333pt;}
.y218{bottom:614.813333pt;}
.y1f6{bottom:615.613333pt;}
.y1de{bottom:615.933333pt;}
.yeb{bottom:616.093333pt;}
.y45{bottom:618.333333pt;}
.y11f{bottom:620.413333pt;}
.y170{bottom:622.653333pt;}
.yb0{bottom:623.293333pt;}
.y6c{bottom:624.573333pt;}
.y90{bottom:625.373333pt;}
.y1af{bottom:627.933333pt;}
.y144{bottom:629.533333pt;}
.y191{bottom:633.213333pt;}
.ycf{bottom:634.013333pt;}
.y217{bottom:637.853333pt;}
.yfd{bottom:638.333333pt;}
.y1dd{bottom:638.973333pt;}
.y1f5{bottom:639.613333pt;}
.y44{bottom:641.373333pt;}
.y16f{bottom:643.133333pt;}
.y11e{bottom:644.573333pt;}
.y143{bottom:645.373333pt;}
.y6b{bottom:647.613333pt;}
.y1ae{bottom:648.093333pt;}
.y1c5{bottom:648.160000pt;}
.yaf{bottom:649.373333pt;}
.y16e{bottom:652.093333pt;}
.yea{bottom:654.333333pt;}
.y190{bottom:656.093333pt;}
.y8f{bottom:658.973333pt;}
.y216{bottom:660.733333pt;}
.y1dc{bottom:662.013333pt;}
.y142{bottom:662.653333pt;}
.y43{bottom:664.413333pt;}
.yfc{bottom:666.013333pt;}
.y11d{bottom:667.613333pt;}
.yce{bottom:669.533333pt;}
.y6a{bottom:670.653333pt;}
.yae{bottom:676.253333pt;}
.y1a8{bottom:676.480000pt;}
.y141{bottom:678.013333pt;}
.ye9{bottom:682.013333pt;}
.y16d{bottom:683.613333pt;}
.y215{bottom:683.773333pt;}
.y1db{bottom:684.893333pt;}
.y1f4{bottom:685.533333pt;}
.y15{bottom:687.293333pt;}
.y11c{bottom:690.653333pt;}
.y8e{bottom:692.733333pt;}
.y140{bottom:693.213333pt;}
.y69{bottom:693.533333pt;}
.yad{bottom:699.293333pt;}
.yfb{bottom:701.533333pt;}
.y14{bottom:702.013333pt;}
.ycd{bottom:705.213333pt;}
.y214{bottom:706.813333pt;}
.y16c{bottom:707.773333pt;}
.y1da{bottom:707.933333pt;}
.y13f{bottom:708.573333pt;}
.ye8{bottom:709.533333pt;}
.y42{bottom:710.333333pt;}
.y11b{bottom:713.693333pt;}
.y8d{bottom:715.613333pt;}
.y68{bottom:716.573333pt;}
.yac{bottom:722.173333pt;}
.y13{bottom:722.973333pt;}
.yfa{bottom:729.213333pt;}
.y213{bottom:729.853333pt;}
.y1d9{bottom:730.973333pt;}
.y13e{bottom:731.613333pt;}
.ycc{bottom:732.733333pt;}
.y41{bottom:733.373333pt;}
.y16b{bottom:734.333333pt;}
.y11a{bottom:736.573333pt;}
.ye7{bottom:737.213333pt;}
.y67{bottom:739.613333pt;}
.y12{bottom:740.093333pt;}
.yab{bottom:746.973333pt;}
.y8c{bottom:749.373333pt;}
.y212{bottom:752.733333pt;}
.y1d8{bottom:753.853333pt;}
.y13d{bottom:754.493333pt;}
.y40{bottom:756.413333pt;}
.yf9{bottom:756.733333pt;}
.ycb{bottom:760.253333pt;}
.y16a{bottom:760.733333pt;}
.y66{bottom:762.493333pt;}
.ye6{bottom:764.733333pt;}
.y11{bottom:767.133333pt;}
.y119{bottom:771.293333pt;}
.yaa{bottom:772.093333pt;}
.y8b{bottom:772.253333pt;}
.y211{bottom:775.813333pt;}
.y1d7{bottom:776.933333pt;}
.y13c{bottom:777.573333pt;}
.y3f{bottom:779.333333pt;}
.yf8{bottom:784.293333pt;}
.y65{bottom:785.573333pt;}
.y169{bottom:786.213333pt;}
.y10{bottom:791.973333pt;}
.ye5{bottom:792.453333pt;}
.y118{bottom:795.653333pt;}
.ya9{bottom:796.933333pt;}
.yca{bottom:798.693333pt;}
.y210{bottom:798.853333pt;}
.y13b{bottom:800.613333pt;}
.y3e{bottom:802.373333pt;}
.y8a{bottom:807.013333pt;}
.y64{bottom:808.613333pt;}
.y168{bottom:811.653333pt;}
.yf{bottom:814.053333pt;}
.y117{bottom:818.693333pt;}
.ye4{bottom:819.973333pt;}
.y20f{bottom:821.893333pt;}
.ya8{bottom:822.213333pt;}
.y13a{bottom:823.653333pt;}
.y3d{bottom:825.413333pt;}
.yc9{bottom:826.213333pt;}
.y89{bottom:831.333333pt;}
.y63{bottom:831.653333pt;}
.y167{bottom:834.533333pt;}
.y1d6{bottom:835.973333pt;}
.y9{bottom:836.773333pt;}
.y116{bottom:841.573333pt;}
.y20e{bottom:844.773333pt;}
.y139{bottom:846.533333pt;}
.ya7{bottom:847.013333pt;}
.ye3{bottom:847.653333pt;}
.y3c{bottom:848.453333pt;}
.y166{bottom:849.893333pt;}
.y8{bottom:852.133333pt;}
.y88{bottom:854.373333pt;}
.y62{bottom:854.533333pt;}
.y1d5{bottom:858.853333pt;}
.yc8{bottom:864.453333pt;}
.y7{bottom:864.613333pt;}
.y20d{bottom:867.813333pt;}
.y138{bottom:869.573333pt;}
.y3b{bottom:871.333333pt;}
.ya6{bottom:872.293333pt;}
.y165{bottom:872.933333pt;}
.ye2{bottom:875.173333pt;}
.y87{bottom:877.253333pt;}
.y61{bottom:877.573333pt;}
.y1d4{bottom:881.893333pt;}
.y164{bottom:886.053333pt;}
.y115{bottom:887.653333pt;}
.yc7{bottom:892.133333pt;}
.y137{bottom:892.613333pt;}
.y20c{bottom:893.413333pt;}
.ya5{bottom:897.093333pt;}
.y86{bottom:900.293333pt;}
.y60{bottom:900.613333pt;}
.y3a{bottom:902.373333pt;}
.ye1{bottom:902.853333pt;}
.y1d3{bottom:904.933333pt;}
.y114{bottom:910.693333pt;}
.y20b{bottom:911.013333pt;}
.y6{bottom:913.093333pt;}
.y136{bottom:915.653333pt;}
.y163{bottom:917.413333pt;}
.ya4{bottom:922.053333pt;}
.y85{bottom:923.333333pt;}
.y5f{bottom:923.653333pt;}
.y39{bottom:927.493333pt;}
.yc6{bottom:930.373333pt;}
.y5{bottom:935.173333pt;}
.y135{bottom:938.533333pt;}
.y20a{bottom:939.333333pt;}
.y113{bottom:945.253333pt;}
.y5e{bottom:946.533333pt;}
.y18f{bottom:947.813333pt;}
.y161{bottom:948.773333pt;}
.y33{bottom:949.413333pt;}
.y4{bottom:953.893333pt;}
.y84{bottom:954.373333pt;}
.ya3{bottom:956.613333pt;}
.y209{bottom:956.933333pt;}
.yc5{bottom:958.053333pt;}
.y134{bottom:961.573333pt;}
.y18e{bottom:965.573333pt;}
.y5d{bottom:969.573333pt;}
.y3{bottom:972.293333pt;}
.y18d{bottom:981.573333pt;}
.y133{bottom:984.613333pt;}
.yc4{bottom:985.573333pt;}
.y83{bottom:987.973333pt;}
.y2{bottom:990.693333pt;}
.ya2{bottom:991.653333pt;}
.y5c{bottom:992.613333pt;}
.y15d{bottom:995.333333pt;}
.y1{bottom:1005.573333pt;}
.yf7{bottom:1013.120000pt;}
.y82{bottom:1013.280000pt;}
.ya1{bottom:1014.720000pt;}
.y5b{bottom:1015.680000pt;}
.y32{bottom:1036.800000pt;}
.y31{bottom:1049.280000pt;}
.y30{bottom:1067.680000pt;}
.y2f{bottom:1091.040000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.h1d{height:16.000000pt;}
.h30{height:22.880000pt;}
.h2f{height:23.040000pt;}
.h31{height:23.072000pt;}
.h3d{height:23.712000pt;}
.h3e{height:23.840000pt;}
.h29{height:25.760000pt;}
.h2e{height:27.520000pt;}
.h27{height:27.680000pt;}
.h28{height:28.000000pt;}
.h2b{height:28.480000pt;}
.h2d{height:30.112000pt;}
.h1f{height:30.560000pt;}
.h1e{height:30.720000pt;}
.h20{height:32.032000pt;}
.h2a{height:34.560000pt;}
.hc{height:37.624687pt;}
.h2c{height:38.560000pt;}
.h5{height:39.562500pt;}
.h33{height:41.162813pt;}
.h7{height:42.117188pt;}
.h38{height:45.280000pt;}
.h14{height:45.750000pt;}
.h21{height:45.920000pt;}
.h37{height:46.080000pt;}
.h4{height:46.609688pt;}
.h3b{height:46.720000pt;}
.h17{height:46.722000pt;}
.h2{height:47.180312pt;}
.h16{height:47.680000pt;}
.h35{height:47.742188pt;}
.h3c{height:48.192000pt;}
.h10{height:48.477187pt;}
.hb{height:49.255625pt;}
.h11{height:49.410000pt;}
.h1b{height:51.663750pt;}
.hf{height:52.296250pt;}
.h26{height:55.072000pt;}
.h15{height:55.680000pt;}
.h13{height:56.156250pt;}
.h18{height:56.800000pt;}
.h3{height:56.843750pt;}
.h24{height:62.897500pt;}
.h12{height:63.360000pt;}
.h1a{height:63.840000pt;}
.h3f{height:64.640000pt;}
.h1c{height:64.975000pt;}
.ha{height:66.507188pt;}
.h19{height:66.880000pt;}
.h3a{height:69.760000pt;}
.h25{height:74.060313pt;}
.h34{height:74.390625pt;}
.h42{height:74.477812pt;}
.h9{height:75.602187pt;}
.he{height:76.672000pt;}
.h23{height:83.020312pt;}
.h41{height:83.742188pt;}
.h22{height:86.091250pt;}
.h36{height:92.000000pt;}
.h39{height:117.120000pt;}
.h32{height:267.840000pt;}
.h40{height:288.000000pt;}
.hd{height:552.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1c{width:64.800000pt;}
.w1e{width:86.400000pt;}
.wa{width:94.240000pt;}
.wb{width:99.360000pt;}
.wd{width:122.400000pt;}
.w1d{width:124.672000pt;}
.wc{width:138.240000pt;}
.w13{width:141.920000pt;}
.w9{width:143.520000pt;}
.we{width:169.146667pt;}
.w17{width:180.346667pt;}
.w12{width:186.266667pt;}
.w11{width:186.426667pt;}
.w16{width:188.666667pt;}
.w10{width:206.266667pt;}
.w18{width:206.586667pt;}
.w14{width:225.826667pt;}
.w1b{width:249.986667pt;}
.w1a{width:256.186667pt;}
.w15{width:258.746667pt;}
.w7{width:309.346667pt;}
.w4{width:309.666667pt;}
.w3{width:310.426667pt;}
.w6{width:310.746667pt;}
.wf{width:433.666667pt;}
.w19{width:480.000000pt;}
.w1f{width:572.413333pt;}
.w8{width:585.053333pt;}
.w20{width:604.000000pt;}
.w5{width:604.253333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.520000pt;}
.x16{left:9.632000pt;}
.x3a{left:76.573333pt;}
.x39{left:82.653333pt;}
.x29{left:83.712000pt;}
.x9{left:86.912000pt;}
.x7{left:94.431988pt;}
.x3f{left:99.071988pt;}
.x3e{left:99.973333pt;}
.x17{left:104.511988pt;}
.x2b{left:106.440000pt;}
.x2c{left:109.480000pt;}
.x2e{left:114.240000pt;}
.xf{left:118.431988pt;}
.x2d{left:120.960000pt;}
.x11{left:122.431988pt;}
.x24{left:126.271988pt;}
.x15{left:130.431988pt;}
.x1f{left:132.831988pt;}
.x10{left:142.426655pt;}
.x14{left:146.426655pt;}
.x33{left:148.733333pt;}
.x31{left:156.800000pt;}
.xd{left:160.666655pt;}
.x3b{left:161.946667pt;}
.x12{left:166.426655pt;}
.x34{left:177.733333pt;}
.x13{left:190.426655pt;}
.xc{left:208.026655pt;}
.x27{left:209.306655pt;}
.x2{left:225.946655pt;}
.x6{left:243.546655pt;}
.x21{left:257.506667pt;}
.x32{left:258.560000pt;}
.x3d{left:262.213333pt;}
.x20{left:269.186655pt;}
.xb{left:278.146667pt;}
.x25{left:294.626667pt;}
.x2f{left:297.826667pt;}
.xe{left:302.114667pt;}
.x5{left:322.146655pt;}
.x1d{left:333.760000pt;}
.x4{left:337.666655pt;}
.x1e{left:343.426655pt;}
.x36{left:344.546667pt;}
.x1a{left:345.760000pt;}
.x18{left:352.800000pt;}
.x3{left:354.146655pt;}
.x1b{left:355.426655pt;}
.x19{left:362.466655pt;}
.x22{left:391.746655pt;}
.x8{left:396.866655pt;}
.x23{left:423.613322pt;}
.x2a{left:451.453333pt;}
.x35{left:456.413333pt;}
.x38{left:469.853333pt;}
.x30{left:478.173333pt;}
.x26{left:481.693333pt;}
.x3c{left:484.026667pt;}
.x1c{left:540.800000pt;}
.x37{left:595.333333pt;}
.x28{left:636.933322pt;}
.x1{left:699.333322pt;}
}




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