
    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_8ed067739dbc68877eb47172.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_06c5a3387e5a4eea2f824bdb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.101562;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_8525a519fe99d9dd278a49ba.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_a3486b8aa8e4e665c527b282.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_437aab5a26064a2fccb5452d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_09ed983e61862252ac82981a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9fe7b28a52aa2b23312e08d8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_344e1c37722fd521f2f92b34.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_69498a8daaf2fd6a866363f3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.102539;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_5f62500c74dd3343a71afec1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.092773;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_94d304a48c2783108ac497e9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.765625;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_c2a0a12472d4a07fc3ddb148.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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);}
.v2{vertical-align:-27.367920px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls2d{letter-spacing:-1.008000px;}
.ls23{letter-spacing:-0.936000px;}
.ls29{letter-spacing:-0.432000px;}
.lsb{letter-spacing:-0.336960px;}
.ls3{letter-spacing:-0.331200px;}
.ls4{letter-spacing:-0.288000px;}
.ls1d{letter-spacing:-0.216000px;}
.ls2a{letter-spacing:-0.168480px;}
.ls2e{letter-spacing:-0.144000px;}
.ls20{letter-spacing:-0.084240px;}
.ls12{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.144000px;}
.ls2c{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.336960px;}
.ls25{letter-spacing:0.378000px;}
.ls0{letter-spacing:0.402192px;}
.ls22{letter-spacing:0.432000px;}
.ls1{letter-spacing:0.504000px;}
.ls5{letter-spacing:0.720000px;}
.ls1c{letter-spacing:2.160000px;}
.ls15{letter-spacing:2.880000px;}
.ls13{letter-spacing:3.600000px;}
.ls17{letter-spacing:5.040000px;}
.ls27{letter-spacing:6.480000px;}
.ls1e{letter-spacing:7.920000px;}
.lse{letter-spacing:8.640000px;}
.ls11{letter-spacing:11.520000px;}
.ls16{letter-spacing:12.960000px;}
.ls1f{letter-spacing:13.680000px;}
.ls10{letter-spacing:14.400000px;}
.ls24{letter-spacing:15.840000px;}
.lsd{letter-spacing:16.560000px;}
.ls28{letter-spacing:17.280000px;}
.ls26{letter-spacing:18.000000px;}
.ls7{letter-spacing:20.880000px;}
.lsc{letter-spacing:22.320000px;}
.ls21{letter-spacing:23.760000px;}
.ls14{letter-spacing:25.920000px;}
.lsf{letter-spacing:28.800000px;}
.ls2b{letter-spacing:29.664000px;}
.ls19{letter-spacing:31.104000px;}
.ls2f{letter-spacing:33.984000px;}
.ls30{letter-spacing:39.600000px;}
.lsa{letter-spacing:54.864000px;}
.ls8{letter-spacing:77.184000px;}
.ls1a{letter-spacing:198.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;}
}
.ws34{word-spacing:-72.000000px;}
.ws54{word-spacing:-20.891520px;}
.ws56{word-spacing:-18.504000px;}
.ws5b{word-spacing:-18.432000px;}
.ws52{word-spacing:-18.288000px;}
.wsd{word-spacing:-18.144000px;}
.ws3a{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws1d{word-spacing:-17.928000px;}
.ws38{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.ws53{word-spacing:-17.568000px;}
.ws0{word-spacing:-16.560000px;}
.ws3c{word-spacing:-12.060000px;}
.ws30{word-spacing:-4.320000px;}
.ws2f{word-spacing:-3.888000px;}
.ws4d{word-spacing:-3.600000px;}
.ws1c{word-spacing:-2.880000px;}
.ws31{word-spacing:-2.448000px;}
.ws15{word-spacing:-2.160000px;}
.ws18{word-spacing:-1.440000px;}
.ws5{word-spacing:-0.720000px;}
.ws9{word-spacing:-0.589680px;}
.ws3d{word-spacing:-0.505440px;}
.ws44{word-spacing:-0.432000px;}
.wse{word-spacing:-0.336960px;}
.ws2c{word-spacing:-0.288000px;}
.wsc{word-spacing:-0.144000px;}
.ws3e{word-spacing:-0.084240px;}
.ws2{word-spacing:0.000000px;}
.ws48{word-spacing:0.054000px;}
.ws59{word-spacing:0.144000px;}
.ws5d{word-spacing:0.216000px;}
.ws4{word-spacing:0.288000px;}
.ws3{word-spacing:0.331200px;}
.ws1a{word-spacing:0.720000px;}
.ws46{word-spacing:0.936000px;}
.ws23{word-spacing:1.008000px;}
.ws28{word-spacing:1.440000px;}
.ws1b{word-spacing:2.016000px;}
.ws35{word-spacing:2.088000px;}
.ws17{word-spacing:2.160000px;}
.ws20{word-spacing:2.736000px;}
.ws24{word-spacing:2.880000px;}
.ws21{word-spacing:3.168000px;}
.ws5a{word-spacing:3.456000px;}
.ws37{word-spacing:3.600000px;}
.ws51{word-spacing:3.888000px;}
.ws22{word-spacing:4.176000px;}
.ws49{word-spacing:4.320000px;}
.ws26{word-spacing:5.040000px;}
.ws2e{word-spacing:5.328000px;}
.wsb{word-spacing:5.760000px;}
.ws58{word-spacing:6.048000px;}
.ws57{word-spacing:6.264000px;}
.ws2a{word-spacing:6.480000px;}
.ws50{word-spacing:6.696000px;}
.ws4b{word-spacing:6.768000px;}
.ws42{word-spacing:7.200000px;}
.ws33{word-spacing:7.920000px;}
.ws2d{word-spacing:8.208000px;}
.ws19{word-spacing:8.640000px;}
.ws10{word-spacing:8.928000px;}
.ws16{word-spacing:9.360000px;}
.ws47{word-spacing:9.936000px;}
.ws7{word-spacing:10.800000px;}
.ws62{word-spacing:11.088000px;}
.ws4c{word-spacing:11.520000px;}
.ws29{word-spacing:12.240000px;}
.ws3f{word-spacing:12.960000px;}
.ws40{word-spacing:13.680000px;}
.wsf{word-spacing:13.968000px;}
.ws1e{word-spacing:14.400000px;}
.ws43{word-spacing:15.840000px;}
.ws14{word-spacing:16.560000px;}
.ws25{word-spacing:16.848000px;}
.wsa{word-spacing:17.280000px;}
.ws32{word-spacing:17.568000px;}
.ws4e{word-spacing:18.000000px;}
.ws13{word-spacing:18.720000px;}
.ws63{word-spacing:19.440000px;}
.ws3b{word-spacing:19.728000px;}
.ws12{word-spacing:20.160000px;}
.ws11{word-spacing:20.448000px;}
.ws36{word-spacing:20.592000px;}
.ws45{word-spacing:20.736000px;}
.ws1f{word-spacing:21.600000px;}
.ws5e{word-spacing:21.888000px;}
.ws2b{word-spacing:22.176000px;}
.ws41{word-spacing:22.320000px;}
.ws39{word-spacing:23.760000px;}
.ws61{word-spacing:24.480000px;}
.ws4f{word-spacing:25.200000px;}
.ws27{word-spacing:28.080000px;}
.ws55{word-spacing:38.880000px;}
.ws5c{word-spacing:39.600000px;}
.ws6{word-spacing:44.640000px;}
.ws4a{word-spacing:46.800000px;}
.ws5f{word-spacing:48.240000px;}
.ws60{word-spacing:48.384000px;}
._15{margin-left:-5.230080px;}
._6{margin-left:-3.612960px;}
._2{margin-left:-2.147040px;}
._1{margin-left:-1.092960px;}
._0{width:1.139328px;}
._e{width:2.964672px;}
._13{width:4.836960px;}
._8{width:5.976000px;}
._9{width:6.984000px;}
._14{width:8.280000px;}
._19{width:9.431712px;}
._a{width:10.656000px;}
._1d{width:11.664288px;}
._16{width:12.744000px;}
._4{width:14.400000px;}
._5{width:15.852672px;}
._1e{width:16.953984px;}
._1f{width:19.008000px;}
._1a{width:20.028960px;}
._12{width:21.456000px;}
._3{width:23.040000px;}
._17{width:24.984000px;}
._11{width:26.640000px;}
._7{width:27.648000px;}
._20{width:28.728000px;}
._f{width:30.960000px;}
._10{width:32.040000px;}
._18{width:33.120000px;}
._21{width:34.704000px;}
._1b{width:36.072000px;}
._1c{width:37.512000px;}
._b{width:38.880000px;}
._c{width:39.985344px;}
._d{width:41.124672px;}
._24{width:42.598656px;}
._25{width:45.996480px;}
._23{width:48.160800px;}
._22{width:49.620672px;}
._26{width:53.220672px;}
._27{width:88.416000px;}
._28{width:129.312000px;}
._29{width:130.451040px;}
._2a{width:138.240000px;}
.fc1{color:rgb(166,166,166);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y197{bottom:14.220000px;}
.y191{bottom:14.400000px;}
.y19e{bottom:30.780000px;}
.y193{bottom:54.720000px;}
.y2{bottom:57.060000px;}
.y1{bottom:77.760000px;}
.y121{bottom:113.220000px;}
.y188{bottom:113.400000px;}
.y1b3{bottom:116.280000px;}
.y1f7{bottom:117.720000px;}
.ybc{bottom:119.160000px;}
.y25f{bottom:119.520000px;}
.y107{bottom:122.400000px;}
.y18f{bottom:123.120000px;}
.yb4{bottom:125.280000px;}
.y144{bottom:126.180000px;}
.y1e4{bottom:127.440000px;}
.y299{bottom:128.340000px;}
.ye2{bottom:131.220000px;}
.y23f{bottom:135.180000px;}
.y227{bottom:135.540000px;}
.y169{bottom:135.900000px;}
.yd0{bottom:137.160000px;}
.y44{bottom:138.780000px;}
.y27e{bottom:140.580000px;}
.y23{bottom:142.020000px;}
.y120{bottom:144.180000px;}
.y187{bottom:144.360000px;}
.y262{bottom:146.520000px;}
.y1b2{bottom:147.420000px;}
.y81{bottom:148.500000px;}
.y1f6{bottom:148.680000px;}
.ybb{bottom:150.300000px;}
.y25e{bottom:150.480000px;}
.y106{bottom:153.360000px;}
.y259{bottom:155.160000px;}
.yb3{bottom:156.240000px;}
.y143{bottom:157.140000px;}
.y153{bottom:157.500000px;}
.y63{bottom:157.860000px;}
.y1e3{bottom:158.580000px;}
.y290{bottom:160.200000px;}
.y15b{bottom:161.460000px;}
.ye1{bottom:162.180000px;}
.y18e{bottom:166.140000px;}
.y226{bottom:166.680000px;}
.y168{bottom:166.860000px;}
.yef{bottom:167.220000px;}
.ycf{bottom:168.300000px;}
.y133{bottom:169.200000px;}
.y1cc{bottom:169.380000px;}
.y43{bottom:169.920000px;}
.y208{bottom:170.280000px;}
.y298{bottom:171.360000px;}
.y22{bottom:172.980000px;}
.y11f{bottom:175.320000px;}
.y186{bottom:175.500000px;}
.y1b1{bottom:178.380000px;}
.y95{bottom:179.100000px;}
.y80{bottom:179.640000px;}
.yba{bottom:181.260000px;}
.y27d{bottom:183.600000px;}
.y105{bottom:184.500000px;}
.y258{bottom:186.300000px;}
.yb2{bottom:187.380000px;}
.y142{bottom:188.280000px;}
.y152{bottom:188.460000px;}
.y62{bottom:188.820000px;}
.y25d{bottom:189.180000px;}
.y1e2{bottom:189.540000px;}
.y28f{bottom:191.160000px;}
.y15a{bottom:192.600000px;}
.y23e{bottom:197.280000px;}
.y225{bottom:197.640000px;}
.y167{bottom:198.000000px;}
.yee{bottom:198.180000px;}
.yce{bottom:199.260000px;}
.y132{bottom:200.160000px;}
.y42{bottom:200.700000px;}
.y207{bottom:201.240000px;}
.y21{bottom:203.940000px;}
.y11e{bottom:206.280000px;}
.y185{bottom:206.460000px;}
.y1cb{bottom:207.361980px;}
.y18d{bottom:209.160000px;}
.y1b0{bottom:209.520000px;}
.y94{bottom:210.060000px;}
.y7f{bottom:210.600000px;}
.ye0{bottom:211.320000px;}
.yb9{bottom:212.400000px;}
.y297{bottom:214.380000px;}
.y104{bottom:215.460000px;}
.y257{bottom:217.260000px;}
.yb1{bottom:218.340000px;}
.y141{bottom:219.240000px;}
.y151{bottom:219.600000px;}
.y1f5{bottom:219.780000px;}
.y61{bottom:219.960000px;}
.y1e1{bottom:220.680000px;}
.y28e{bottom:222.300000px;}
.y159{bottom:223.560000px;}
.y27c{bottom:226.620000px;}
.y23d{bottom:228.240000px;}
.y224{bottom:228.600000px;}
.y166{bottom:228.960000px;}
.yed{bottom:229.320000px;}
.ycd{bottom:230.400000px;}
.y131{bottom:231.300000px;}
.y1ca{bottom:231.480000px;}
.y206{bottom:232.380000px;}
.y41{bottom:233.280000px;}
.y20{bottom:235.080000px;}
.y11d{bottom:237.420000px;}
.y184{bottom:237.600000px;}
.y18c{bottom:240.300000px;}
.y1af{bottom:240.480000px;}
.y93{bottom:241.200000px;}
.y7e{bottom:241.740000px;}
.yb8{bottom:243.360000px;}
.y256{bottom:248.400000px;}
.yb0{bottom:249.300000px;}
.y140{bottom:250.380000px;}
.y150{bottom:250.560000px;}
.y60{bottom:250.920000px;}
.y247{bottom:251.100000px;}
.y1e0{bottom:251.640000px;}
.y28d{bottom:253.260000px;}
.y158{bottom:254.700000px;}
.y296{bottom:257.400000px;}
.y23c{bottom:259.380000px;}
.y223{bottom:259.740000px;}
.y165{bottom:260.100000px;}
.ydf{bottom:260.280000px;}
.ycc{bottom:261.360000px;}
.y130{bottom:262.260000px;}
.y1c9{bottom:262.620000px;}
.y205{bottom:263.340000px;}
.y40{bottom:264.240000px;}
.y103{bottom:264.420000px;}
.y1f{bottom:266.040000px;}
.y11c{bottom:268.380000px;}
.y183{bottom:268.560000px;}
.y27b{bottom:269.640000px;}
.y18b{bottom:271.260000px;}
.y1ae{bottom:271.620000px;}
.y92{bottom:272.160000px;}
.y7d{bottom:272.700000px;}
.yb7{bottom:274.500000px;}
.y255{bottom:279.360000px;}
.y13f{bottom:281.340000px;}
.y14f{bottom:281.700000px;}
.y1f4{bottom:281.880000px;}
.y5f{bottom:282.060000px;}
.y1df{bottom:282.600000px;}
.y28c{bottom:284.400000px;}
.y157{bottom:285.660000px;}
.y23b{bottom:290.340000px;}
.y222{bottom:290.700000px;}
.yde{bottom:291.420000px;}
.ycb{bottom:292.500000px;}
.y12f{bottom:293.400000px;}
.y1c8{bottom:293.580000px;}
.y246{bottom:294.120000px;}
.y3f{bottom:295.380000px;}
.yaf{bottom:298.440000px;}
.y11b{bottom:299.520000px;}
.y182{bottom:299.700000px;}
.y164{bottom:300.060000px;}
.y1e{bottom:300.420000px;}
.y295{bottom:300.600000px;}
.y18a{bottom:302.400000px;}
.y1ad{bottom:302.580000px;}
.y91{bottom:303.300000px;}
.y7c{bottom:303.840000px;}
.yb6{bottom:305.460000px;}
.y254{bottom:310.500000px;}
.y13e{bottom:312.300000px;}
.y14e{bottom:312.660000px;}
.y5e{bottom:313.020000px;}
.y102{bottom:313.560000px;}
.y1de{bottom:313.740000px;}
.y28b{bottom:315.360000px;}
.y23a{bottom:321.300000px;}
.y221{bottom:321.840000px;}
.ydd{bottom:322.380000px;}
.yca{bottom:323.460000px;}
.y12e{bottom:324.360000px;}
.y1c7{bottom:324.720000px;}
.y1f3{bottom:324.900000px;}
.y245{bottom:325.080000px;}
.y3e{bottom:326.340000px;}
.y11a{bottom:330.480000px;}
.y181{bottom:330.660000px;}
.y163{bottom:331.200000px;}
.y1d{bottom:331.560000px;}
.y189{bottom:333.360000px;}
.y1ac{bottom:333.720000px;}
.y90{bottom:334.260000px;}
.y204{bottom:334.440000px;}
.y7b{bottom:334.800000px;}
.yae{bottom:341.460000px;}
.y13d{bottom:343.440000px;}
.y294{bottom:343.620000px;}
.y14d{bottom:343.800000px;}
.y5d{bottom:344.160000px;}
.y101{bottom:344.700000px;}
.y28a{bottom:346.500000px;}
.y239{bottom:352.440000px;}
.y220{bottom:352.800000px;}
.ydc{bottom:353.520000px;}
.yb5{bottom:354.600000px;}
.y12d{bottom:355.500000px;}
.y1c6{bottom:355.680000px;}
.y244{bottom:356.220000px;}
.y3d{bottom:357.300000px;}
.y180{bottom:361.800000px;}
.y162{bottom:362.160000px;}
.y1c{bottom:362.520000px;}
.y1f2{bottom:363.600000px;}
.y156{bottom:364.500000px;}
.y1ab{bottom:364.680000px;}
.y8f{bottom:365.400000px;}
.y7a{bottom:365.940000px;}
.yad{bottom:372.600000px;}
.y119{bottom:373.500000px;}
.y13c{bottom:374.400000px;}
.y14c{bottom:374.760000px;}
.y5c{bottom:375.120000px;}
.y100{bottom:375.660000px;}
.y1dd{bottom:375.840000px;}
.y289{bottom:377.460000px;}
.y238{bottom:383.400000px;}
.y21f{bottom:383.940000px;}
.ydb{bottom:384.480000px;}
.yc9{bottom:385.560000px;}
.y12c{bottom:386.460000px;}
.y293{bottom:386.640000px;}
.y1c5{bottom:386.820000px;}
.y243{bottom:387.180000px;}
.y3c{bottom:389.700000px;}
.y17f{bottom:392.760000px;}
.y1b{bottom:393.660000px;}
.y155{bottom:395.460000px;}
.y1aa{bottom:395.820000px;}
.y8e{bottom:396.360000px;}
.y203{bottom:396.540000px;}
.y79{bottom:396.900000px;}
.y27a{bottom:398.700000px;}
.y161{bottom:400.860000px;}
.yac{bottom:403.560000px;}
.y1f1{bottom:403.740000px;}
.y118{bottom:404.640000px;}
.y13b{bottom:405.540000px;}
.y14b{bottom:405.900000px;}
.y5b{bottom:406.260000px;}
.y1dc{bottom:406.800000px;}
.y288{bottom:408.600000px;}
.y253{bottom:411.840000px;}
.y237{bottom:414.540000px;}
.y21e{bottom:414.900000px;}
.yda{bottom:415.620000px;}
.yc8{bottom:416.700000px;}
.y12b{bottom:417.600000px;}
.y1c4{bottom:417.780000px;}
.y242{bottom:418.320000px;}
.y3b{bottom:420.840000px;}
.y17e{bottom:423.900000px;}
.y1a{bottom:424.620000px;}
.y154{bottom:426.600000px;}
.y1a9{bottom:426.780000px;}
.y8d{bottom:427.500000px;}
.y78{bottom:428.040000px;}
.y292{bottom:429.660000px;}
.y279{bottom:429.840000px;}
.yab{bottom:434.700000px;}
.y117{bottom:435.600000px;}
.y13a{bottom:436.500000px;}
.y14a{bottom:436.860000px;}
.y5a{bottom:437.220000px;}
.y1db{bottom:437.940000px;}
.y287{bottom:439.560000px;}
.y160{bottom:441.000000px;}
.y236{bottom:445.500000px;}
.y21d{bottom:446.040000px;}
.yd9{bottom:446.580000px;}
.yc7{bottom:447.660000px;}
.y1c3{bottom:448.920000px;}
.y241{bottom:449.280000px;}
.y17d{bottom:454.860000px;}
.y19{bottom:455.760000px;}
.y12a{bottom:457.560000px;}
.y252{bottom:457.740000px;}
.y8c{bottom:458.460000px;}
.y202{bottom:458.640000px;}
.y77{bottom:459.000000px;}
.y3a{bottom:459.540000px;}
.y278{bottom:460.800000px;}
.y1a8{bottom:465.480000px;}
.yaa{bottom:465.660000px;}
.y1f0{bottom:465.840000px;}
.y116{bottom:466.740000px;}
.y139{bottom:467.640000px;}
.y59{bottom:468.360000px;}
.y1da{bottom:468.900000px;}
.y286{bottom:470.700000px;}
.y15f{bottom:471.960000px;}
.yff{bottom:473.760000px;}
.y235{bottom:476.640000px;}
.y149{bottom:477.000000px;}
.yd8{bottom:477.720000px;}
.yc6{bottom:478.800000px;}
.y1c2{bottom:479.880000px;}
.y17c{bottom:486.000000px;}
.y18{bottom:486.720000px;}
.y240{bottom:487.980000px;}
.y129{bottom:488.700000px;}
.y21c{bottom:489.060000px;}
.y8b{bottom:489.600000px;}
.y76{bottom:490.140000px;}
.y277{bottom:491.940000px;}
.ya9{bottom:496.800000px;}
.y115{bottom:497.700000px;}
.y138{bottom:498.600000px;}
.y58{bottom:499.320000px;}
.y39{bottom:499.500000px;}
.y1d9{bottom:500.040000px;}
.y285{bottom:501.660000px;}
.y15e{bottom:503.100000px;}
.yfe{bottom:504.900000px;}
.y1a7{bottom:507.240000px;}
.y234{bottom:507.600000px;}
.y148{bottom:507.960000px;}
.yd7{bottom:508.680000px;}
.y291{bottom:509.760000px;}
.y1c1{bottom:511.020000px;}
.y17b{bottom:516.960000px;}
.y17{bottom:517.860000px;}
.y128{bottom:519.660000px;}
.y251{bottom:519.840000px;}
.y21b{bottom:520.200000px;}
.y8a{bottom:520.560000px;}
.y75{bottom:521.100000px;}
.y276{bottom:522.900000px;}
.y1a6{bottom:523.440000px;}
.ya8{bottom:527.760000px;}
.y1ef{bottom:527.940000px;}
.y114{bottom:528.840000px;}
.y137{bottom:529.740000px;}
.y38{bottom:530.640000px;}
.y1d8{bottom:531.000000px;}
.y284{bottom:532.800000px;}
.y15d{bottom:534.060000px;}
.yfd{bottom:535.860000px;}
.y233{bottom:538.740000px;}
.y147{bottom:539.100000px;}
.yd6{bottom:539.820000px;}
.y1c0{bottom:541.980000px;}
.y57{bottom:542.340000px;}
.y17a{bottom:548.100000px;}
.y16{bottom:548.820000px;}
.y127{bottom:550.800000px;}
.y21a{bottom:551.160000px;}
.y89{bottom:551.700000px;}
.y74{bottom:552.240000px;}
.y275{bottom:554.040000px;}
.y1a5{bottom:555.300000px;}
.y250{bottom:558.540000px;}
.ya7{bottom:558.900000px;}
.y113{bottom:559.800000px;}
.y136{bottom:560.700000px;}
.y37{bottom:561.600000px;}
.y1d7{bottom:562.140000px;}
.y283{bottom:563.760000px;}
.yfc{bottom:566.820000px;}
.y232{bottom:569.700000px;}
.yd5{bottom:570.780000px;}
.y15c{bottom:572.760000px;}
.y1bf{bottom:573.120000px;}
.yc5{bottom:576.900000px;}
.y146{bottom:577.800000px;}
.y179{bottom:579.060000px;}
.y15{bottom:579.960000px;}
.y56{bottom:581.040000px;}
.y126{bottom:581.760000px;}
.y219{bottom:582.120000px;}
.y88{bottom:582.660000px;}
.y73{bottom:583.200000px;}
.y274{bottom:585.000000px;}
.y1a4{bottom:586.980000px;}
.ya6{bottom:589.860000px;}
.y1ee{bottom:590.040000px;}
.y112{bottom:590.940000px;}
.y135{bottom:591.840000px;}
.y36{bottom:592.740000px;}
.y1d6{bottom:593.100000px;}
.y282{bottom:594.900000px;}
.yfb{bottom:597.960000px;}
.y231{bottom:600.840000px;}
.y24f{bottom:601.560000px;}
.yec{bottom:601.740000px;}
.yd4{bottom:601.920000px;}
.y1be{bottom:604.080000px;}
.yc4{bottom:607.860000px;}
.y178{bottom:610.020000px;}
.y14{bottom:610.920000px;}
.y125{bottom:612.900000px;}
.y218{bottom:613.260000px;}
.y87{bottom:613.620000px;}
.y72{bottom:614.340000px;}
.y273{bottom:616.140000px;}
.y1a3{bottom:618.840000px;}
.ya5{bottom:620.820000px;}
.y1ed{bottom:621.000000px;}
.y55{bottom:621.180000px;}
.y111{bottom:621.900000px;}
.y201{bottom:622.800000px;}
.y35{bottom:623.700000px;}
.y1d5{bottom:624.240000px;}
.y281{bottom:625.860000px;}
.y230{bottom:631.800000px;}
.y24e{bottom:632.520000px;}
.yd3{bottom:632.880000px;}
.y134{bottom:634.860000px;}
.y1bd{bottom:635.220000px;}
.yc3{bottom:638.820000px;}
.y177{bottom:641.160000px;}
.y13{bottom:642.060000px;}
.y124{bottom:643.860000px;}
.yfa{bottom:646.920000px;}
.y272{bottom:647.100000px;}
.y86{bottom:649.260000px;}
.y1a2{bottom:650.700000px;}
.yeb{bottom:650.880000px;}
.ya4{bottom:651.960000px;}
.y54{bottom:652.140000px;}
.y110{bottom:653.040000px;}
.y217{bottom:653.220000px;}
.y200{bottom:653.940000px;}
.y34{bottom:654.840000px;}
.y1d4{bottom:655.200000px;}
.y280{bottom:656.820000px;}
.y1ec{bottom:659.700000px;}
.y145{bottom:660.060000px;}
.y71{bottom:660.240000px;}
.y22f{bottom:662.940000px;}
.y24d{bottom:663.660000px;}
.yd2{bottom:664.020000px;}
.y1bc{bottom:666.180000px;}
.yc2{bottom:669.960000px;}
.y176{bottom:672.120000px;}
.y12{bottom:673.020000px;}
.y123{bottom:674.820000px;}
.y271{bottom:678.240000px;}
.yea{bottom:682.020000px;}
.y1a1{bottom:682.380000px;}
.y53{bottom:683.280000px;}
.y10f{bottom:684.000000px;}
.y216{bottom:684.360000px;}
.y1ff{bottom:684.900000px;}
.y33{bottom:685.800000px;}
.y1d3{bottom:686.340000px;}
.y85{bottom:687.960000px;}
.y70{bottom:691.200000px;}
.y22e{bottom:693.900000px;}
.yf9{bottom:696.060000px;}
.y1bb{bottom:697.320000px;}
.y1eb{bottom:698.940000px;}
.ya3{bottom:700.920000px;}
.y24c{bottom:702.360000px;}
.y175{bottom:703.260000px;}
.y11{bottom:704.160000px;}
.y122{bottom:705.960000px;}
.yd1{bottom:707.040000px;}
.y270{bottom:709.200000px;}
.ye9{bottom:712.980000px;}
.y52{bottom:714.240000px;}
.y10e{bottom:715.140000px;}
.y215{bottom:715.320000px;}
.y1fe{bottom:716.040000px;}
.y32{bottom:716.940000px;}
.y1d2{bottom:717.300000px;}
.y27f{bottom:718.920000px;}
.y6f{bottom:723.780000px;}
.y22d{bottom:725.040000px;}
.yf8{bottom:727.020000px;}
.y1ba{bottom:728.280000px;}
.yc1{bottom:732.060000px;}
.y174{bottom:734.220000px;}
.y10{bottom:735.120000px;}
.y84{bottom:736.920000px;}
.y26f{bottom:740.340000px;}
.y24b{bottom:742.320000px;}
.ye8{bottom:744.120000px;}
.y1ea{bottom:745.020000px;}
.y51{bottom:745.380000px;}
.y10d{bottom:746.100000px;}
.y214{bottom:746.460000px;}
.y1fd{bottom:747.000000px;}
.y31{bottom:747.900000px;}
.y1d1{bottom:748.440000px;}
.ya2{bottom:750.060000px;}
.y6e{bottom:754.740000px;}
.y22c{bottom:756.000000px;}
.yf7{bottom:758.160000px;}
.y1b9{bottom:759.420000px;}
.yc0{bottom:763.020000px;}
.y173{bottom:765.360000px;}
.yf{bottom:766.260000px;}
.y83{bottom:768.060000px;}
.y24a{bottom:773.460000px;}
.ye7{bottom:775.080000px;}
.y1e9{bottom:775.980000px;}
.y50{bottom:776.340000px;}
.y10c{bottom:777.240000px;}
.y213{bottom:777.420000px;}
.y1a0{bottom:777.780000px;}
.y1fc{bottom:778.140000px;}
.y30{bottom:779.040000px;}
.y1d0{bottom:779.400000px;}
.ya1{bottom:781.020000px;}
.y6d{bottom:785.700000px;}
.y22b{bottom:787.140000px;}
.y1b8{bottom:790.380000px;}
.ybf{bottom:794.160000px;}
.y172{bottom:796.320000px;}
.ye{bottom:797.220000px;}
.y82{bottom:799.020000px;}
.y249{bottom:804.420000px;}
.ye6{bottom:806.220000px;}
.yf6{bottom:807.120000px;}
.y4f{bottom:807.480000px;}
.y1fb{bottom:809.100000px;}
.y19d{bottom:809.640000px;}
.y2f{bottom:810.000000px;}
.y1cf{bottom:810.540000px;}
.ya0{bottom:812.160000px;}
.y19f{bottom:816.660000px;}
.y22a{bottom:818.100000px;}
.y26e{bottom:819.000000px;}
.y10b{bottom:820.260000px;}
.y212{bottom:820.620000px;}
.y1b7{bottom:821.520000px;}
.ybe{bottom:825.120000px;}
.y171{bottom:827.460000px;}
.yd{bottom:828.180000px;}
.y6c{bottom:830.160000px;}
.y248{bottom:835.560000px;}
.ye5{bottom:837.180000px;}
.y1e8{bottom:838.080000px;}
.y4e{bottom:838.440000px;}
.y25c{bottom:840.240000px;}
.y2e{bottom:841.140000px;}
.y1ce{bottom:841.500000px;}
.y9f{bottom:843.120000px;}
.y229{bottom:849.240000px;}
.y26d{bottom:850.140000px;}
.y10a{bottom:851.220000px;}
.y211{bottom:851.580000px;}
.y1fa{bottom:852.120000px;}
.y1b6{bottom:852.480000px;}
.ybd{bottom:856.260000px;}
.y19c{bottom:857.880000px;}
.y170{bottom:858.420000px;}
.yc{bottom:859.320000px;}
.y6b{bottom:861.120000px;}
.ye4{bottom:868.320000px;}
.y1e7{bottom:869.220000px;}
.y4d{bottom:869.580000px;}
.y25b{bottom:871.200000px;}
.y2d{bottom:872.100000px;}
.y1cd{bottom:872.640000px;}
.y9e{bottom:874.260000px;}
.y228{bottom:880.200000px;}
.y26c{bottom:881.100000px;}
.y210{bottom:882.720000px;}
.y1f9{bottom:883.260000px;}
.yf5{bottom:887.220000px;}
.y16f{bottom:889.560000px;}
.y19b{bottom:889.740000px;}
.yb{bottom:890.280000px;}
.y1b5{bottom:891.180000px;}
.y6a{bottom:892.260000px;}
.y109{bottom:900.180000px;}
.y25a{bottom:902.160000px;}
.y2c{bottom:903.240000px;}
.y261{bottom:903.600000px;}
.y9d{bottom:905.220000px;}
.y4c{bottom:908.820000px;}
.ye3{bottom:911.340000px;}
.y26b{bottom:912.240000px;}
.y20f{bottom:913.680000px;}
.y1f8{bottom:914.220000px;}
.yf4{bottom:918.360000px;}
.y16e{bottom:920.520000px;}
.ya{bottom:921.420000px;}
.y19a{bottom:921.600000px;}
.y69{bottom:923.220000px;}
.y1e6{bottom:931.320000px;}
.y2b{bottom:934.200000px;}
.y260{bottom:934.740000px;}
.y9c{bottom:936.360000px;}
.y26a{bottom:943.200000px;}
.y20e{bottom:944.820000px;}
.yf3{bottom:949.320000px;}
.y4b{bottom:951.660000px;}
.y9{bottom:952.380000px;}
.y199{bottom:953.280000px;}
.y68{bottom:954.360000px;}
.y2a{bottom:965.340000px;}
.y9b{bottom:967.320000px;}
.y1e5{bottom:970.560000px;}
.y1b4{bottom:973.440000px;}
.y269{bottom:974.340000px;}
.yf2{bottom:980.460000px;}
.y16d{bottom:982.620000px;}
.y4a{bottom:982.800000px;}
.y8{bottom:983.520000px;}
.y198{bottom:985.140000px;}
.y67{bottom:985.320000px;}
.y20d{bottom:987.840000px;}
.y29{bottom:996.300000px;}
.y9a{bottom:998.460000px;}
.y268{bottom:1005.300000px;}
.yf1{bottom:1011.420000px;}
.y16c{bottom:1013.580000px;}
.y49{bottom:1013.760000px;}
.y7{bottom:1014.480000px;}
.y66{bottom:1016.460000px;}
.y196{bottom:1017.000000px;}
.y28{bottom:1027.440000px;}
.y99{bottom:1029.420000px;}
.y20c{bottom:1030.860000px;}
.y267{bottom:1036.440000px;}
.yf0{bottom:1042.560000px;}
.y6{bottom:1045.620000px;}
.y48{bottom:1046.160000px;}
.y65{bottom:1047.420000px;}
.y192{bottom:1048.680000px;}
.y16b{bottom:1055.340000px;}
.y195{bottom:1055.880000px;}
.y108{bottom:1060.380000px;}
.y98{bottom:1060.560000px;}
.y27{bottom:1066.680000px;}
.y266{bottom:1067.400000px;}
.y20b{bottom:1070.820000px;}
.y47{bottom:1077.300000px;}
.y64{bottom:1078.560000px;}
.y194{bottom:1079.640000px;}
.y5{bottom:1084.320000px;}
.y97{bottom:1091.520000px;}
.y16a{bottom:1094.760000px;}
.y265{bottom:1098.540000px;}
.y20a{bottom:1101.960000px;}
.y46{bottom:1108.260000px;}
.y26{bottom:1109.520000px;}
.y190{bottom:1120.860000px;}
.y96{bottom:1122.660000px;}
.y4{bottom:1129.140000px;}
.y264{bottom:1129.500000px;}
.y209{bottom:1132.920000px;}
.y45{bottom:1139.220000px;}
.y25{bottom:1140.660000px;}
.y263{bottom:1168.740000px;}
.y24{bottom:1171.620000px;}
.y3{bottom:1172.880000px;}
.hf{height:30.960000px;}
.hd{height:30.961500px;}
.hb{height:31.138500px;}
.he{height:31.140000px;}
.h11{height:42.327773px;}
.h10{height:47.520000px;}
.h3{height:58.671562px;}
.h2{height:63.175781px;}
.h7{height:63.351562px;}
.h6{height:63.773438px;}
.h9{height:63.843750px;}
.h5{height:64.160156px;}
.ha{height:69.687773px;}
.hc{height:71.460000px;}
.h8{height:75.067383px;}
.h4{height:85.333008px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:33.480000px;}
.w3{width:644.578500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:7.740000px;}
.x2{left:106.200000px;}
.xb{left:132.300000px;}
.x8{left:138.060000px;}
.xd{left:141.300000px;}
.xe{left:149.040000px;}
.x4{left:159.300000px;}
.x9{left:165.060000px;}
.x5{left:180.720000px;}
.x7{left:186.300000px;}
.xa{left:192.060000px;}
.x6{left:212.580000px;}
.x3{left:295.380000px;}
.x1{left:432.900000px;}
.xf{left:446.400000px;}
@media print{
.v2{vertical-align:-24.327040pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls2d{letter-spacing:-0.896000pt;}
.ls23{letter-spacing:-0.832000pt;}
.ls29{letter-spacing:-0.384000pt;}
.lsb{letter-spacing:-0.299520pt;}
.ls3{letter-spacing:-0.294400pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls1d{letter-spacing:-0.192000pt;}
.ls2a{letter-spacing:-0.149760pt;}
.ls2e{letter-spacing:-0.128000pt;}
.ls20{letter-spacing:-0.074880pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls2c{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.299520pt;}
.ls25{letter-spacing:0.336000pt;}
.ls0{letter-spacing:0.357504pt;}
.ls22{letter-spacing:0.384000pt;}
.ls1{letter-spacing:0.448000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:1.920000pt;}
.ls15{letter-spacing:2.560000pt;}
.ls13{letter-spacing:3.200000pt;}
.ls17{letter-spacing:4.480000pt;}
.ls27{letter-spacing:5.760000pt;}
.ls1e{letter-spacing:7.040000pt;}
.lse{letter-spacing:7.680000pt;}
.ls11{letter-spacing:10.240000pt;}
.ls16{letter-spacing:11.520000pt;}
.ls1f{letter-spacing:12.160000pt;}
.ls10{letter-spacing:12.800000pt;}
.ls24{letter-spacing:14.080000pt;}
.lsd{letter-spacing:14.720000pt;}
.ls28{letter-spacing:15.360000pt;}
.ls26{letter-spacing:16.000000pt;}
.ls7{letter-spacing:18.560000pt;}
.lsc{letter-spacing:19.840000pt;}
.ls21{letter-spacing:21.120000pt;}
.ls14{letter-spacing:23.040000pt;}
.lsf{letter-spacing:25.600000pt;}
.ls2b{letter-spacing:26.368000pt;}
.ls19{letter-spacing:27.648000pt;}
.ls2f{letter-spacing:30.208000pt;}
.ls30{letter-spacing:35.200000pt;}
.lsa{letter-spacing:48.768000pt;}
.ls8{letter-spacing:68.608000pt;}
.ls1a{letter-spacing:176.000000pt;}
.ws34{word-spacing:-64.000000pt;}
.ws54{word-spacing:-18.570240pt;}
.ws56{word-spacing:-16.448000pt;}
.ws5b{word-spacing:-16.384000pt;}
.ws52{word-spacing:-16.256000pt;}
.wsd{word-spacing:-16.128000pt;}
.ws3a{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws1d{word-spacing:-15.936000pt;}
.ws38{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws53{word-spacing:-15.616000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws3c{word-spacing:-10.720000pt;}
.ws30{word-spacing:-3.840000pt;}
.ws2f{word-spacing:-3.456000pt;}
.ws4d{word-spacing:-3.200000pt;}
.ws1c{word-spacing:-2.560000pt;}
.ws31{word-spacing:-2.176000pt;}
.ws15{word-spacing:-1.920000pt;}
.ws18{word-spacing:-1.280000pt;}
.ws5{word-spacing:-0.640000pt;}
.ws9{word-spacing:-0.524160pt;}
.ws3d{word-spacing:-0.449280pt;}
.ws44{word-spacing:-0.384000pt;}
.wse{word-spacing:-0.299520pt;}
.ws2c{word-spacing:-0.256000pt;}
.wsc{word-spacing:-0.128000pt;}
.ws3e{word-spacing:-0.074880pt;}
.ws2{word-spacing:0.000000pt;}
.ws48{word-spacing:0.048000pt;}
.ws59{word-spacing:0.128000pt;}
.ws5d{word-spacing:0.192000pt;}
.ws4{word-spacing:0.256000pt;}
.ws3{word-spacing:0.294400pt;}
.ws1a{word-spacing:0.640000pt;}
.ws46{word-spacing:0.832000pt;}
.ws23{word-spacing:0.896000pt;}
.ws28{word-spacing:1.280000pt;}
.ws1b{word-spacing:1.792000pt;}
.ws35{word-spacing:1.856000pt;}
.ws17{word-spacing:1.920000pt;}
.ws20{word-spacing:2.432000pt;}
.ws24{word-spacing:2.560000pt;}
.ws21{word-spacing:2.816000pt;}
.ws5a{word-spacing:3.072000pt;}
.ws37{word-spacing:3.200000pt;}
.ws51{word-spacing:3.456000pt;}
.ws22{word-spacing:3.712000pt;}
.ws49{word-spacing:3.840000pt;}
.ws26{word-spacing:4.480000pt;}
.ws2e{word-spacing:4.736000pt;}
.wsb{word-spacing:5.120000pt;}
.ws58{word-spacing:5.376000pt;}
.ws57{word-spacing:5.568000pt;}
.ws2a{word-spacing:5.760000pt;}
.ws50{word-spacing:5.952000pt;}
.ws4b{word-spacing:6.016000pt;}
.ws42{word-spacing:6.400000pt;}
.ws33{word-spacing:7.040000pt;}
.ws2d{word-spacing:7.296000pt;}
.ws19{word-spacing:7.680000pt;}
.ws10{word-spacing:7.936000pt;}
.ws16{word-spacing:8.320000pt;}
.ws47{word-spacing:8.832000pt;}
.ws7{word-spacing:9.600000pt;}
.ws62{word-spacing:9.856000pt;}
.ws4c{word-spacing:10.240000pt;}
.ws29{word-spacing:10.880000pt;}
.ws3f{word-spacing:11.520000pt;}
.ws40{word-spacing:12.160000pt;}
.wsf{word-spacing:12.416000pt;}
.ws1e{word-spacing:12.800000pt;}
.ws43{word-spacing:14.080000pt;}
.ws14{word-spacing:14.720000pt;}
.ws25{word-spacing:14.976000pt;}
.wsa{word-spacing:15.360000pt;}
.ws32{word-spacing:15.616000pt;}
.ws4e{word-spacing:16.000000pt;}
.ws13{word-spacing:16.640000pt;}
.ws63{word-spacing:17.280000pt;}
.ws3b{word-spacing:17.536000pt;}
.ws12{word-spacing:17.920000pt;}
.ws11{word-spacing:18.176000pt;}
.ws36{word-spacing:18.304000pt;}
.ws45{word-spacing:18.432000pt;}
.ws1f{word-spacing:19.200000pt;}
.ws5e{word-spacing:19.456000pt;}
.ws2b{word-spacing:19.712000pt;}
.ws41{word-spacing:19.840000pt;}
.ws39{word-spacing:21.120000pt;}
.ws61{word-spacing:21.760000pt;}
.ws4f{word-spacing:22.400000pt;}
.ws27{word-spacing:24.960000pt;}
.ws55{word-spacing:34.560000pt;}
.ws5c{word-spacing:35.200000pt;}
.ws6{word-spacing:39.680000pt;}
.ws4a{word-spacing:41.600000pt;}
.ws5f{word-spacing:42.880000pt;}
.ws60{word-spacing:43.008000pt;}
._15{margin-left:-4.648960pt;}
._6{margin-left:-3.211520pt;}
._2{margin-left:-1.908480pt;}
._1{margin-left:-0.971520pt;}
._0{width:1.012736pt;}
._e{width:2.635264pt;}
._13{width:4.299520pt;}
._8{width:5.312000pt;}
._9{width:6.208000pt;}
._14{width:7.360000pt;}
._19{width:8.383744pt;}
._a{width:9.472000pt;}
._1d{width:10.368256pt;}
._16{width:11.328000pt;}
._4{width:12.800000pt;}
._5{width:14.091264pt;}
._1e{width:15.070208pt;}
._1f{width:16.896000pt;}
._1a{width:17.803520pt;}
._12{width:19.072000pt;}
._3{width:20.480000pt;}
._17{width:22.208000pt;}
._11{width:23.680000pt;}
._7{width:24.576000pt;}
._20{width:25.536000pt;}
._f{width:27.520000pt;}
._10{width:28.480000pt;}
._18{width:29.440000pt;}
._21{width:30.848000pt;}
._1b{width:32.064000pt;}
._1c{width:33.344000pt;}
._b{width:34.560000pt;}
._c{width:35.542528pt;}
._d{width:36.555264pt;}
._24{width:37.865472pt;}
._25{width:40.885760pt;}
._23{width:42.809600pt;}
._22{width:44.107264pt;}
._26{width:47.307264pt;}
._27{width:78.592000pt;}
._28{width:114.944000pt;}
._29{width:115.956480pt;}
._2a{width:122.880000pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y197{bottom:12.640000pt;}
.y191{bottom:12.800000pt;}
.y19e{bottom:27.360000pt;}
.y193{bottom:48.640000pt;}
.y2{bottom:50.720000pt;}
.y1{bottom:69.120000pt;}
.y121{bottom:100.640000pt;}
.y188{bottom:100.800000pt;}
.y1b3{bottom:103.360000pt;}
.y1f7{bottom:104.640000pt;}
.ybc{bottom:105.920000pt;}
.y25f{bottom:106.240000pt;}
.y107{bottom:108.800000pt;}
.y18f{bottom:109.440000pt;}
.yb4{bottom:111.360000pt;}
.y144{bottom:112.160000pt;}
.y1e4{bottom:113.280000pt;}
.y299{bottom:114.080000pt;}
.ye2{bottom:116.640000pt;}
.y23f{bottom:120.160000pt;}
.y227{bottom:120.480000pt;}
.y169{bottom:120.800000pt;}
.yd0{bottom:121.920000pt;}
.y44{bottom:123.360000pt;}
.y27e{bottom:124.960000pt;}
.y23{bottom:126.240000pt;}
.y120{bottom:128.160000pt;}
.y187{bottom:128.320000pt;}
.y262{bottom:130.240000pt;}
.y1b2{bottom:131.040000pt;}
.y81{bottom:132.000000pt;}
.y1f6{bottom:132.160000pt;}
.ybb{bottom:133.600000pt;}
.y25e{bottom:133.760000pt;}
.y106{bottom:136.320000pt;}
.y259{bottom:137.920000pt;}
.yb3{bottom:138.880000pt;}
.y143{bottom:139.680000pt;}
.y153{bottom:140.000000pt;}
.y63{bottom:140.320000pt;}
.y1e3{bottom:140.960000pt;}
.y290{bottom:142.400000pt;}
.y15b{bottom:143.520000pt;}
.ye1{bottom:144.160000pt;}
.y18e{bottom:147.680000pt;}
.y226{bottom:148.160000pt;}
.y168{bottom:148.320000pt;}
.yef{bottom:148.640000pt;}
.ycf{bottom:149.600000pt;}
.y133{bottom:150.400000pt;}
.y1cc{bottom:150.560000pt;}
.y43{bottom:151.040000pt;}
.y208{bottom:151.360000pt;}
.y298{bottom:152.320000pt;}
.y22{bottom:153.760000pt;}
.y11f{bottom:155.840000pt;}
.y186{bottom:156.000000pt;}
.y1b1{bottom:158.560000pt;}
.y95{bottom:159.200000pt;}
.y80{bottom:159.680000pt;}
.yba{bottom:161.120000pt;}
.y27d{bottom:163.200000pt;}
.y105{bottom:164.000000pt;}
.y258{bottom:165.600000pt;}
.yb2{bottom:166.560000pt;}
.y142{bottom:167.360000pt;}
.y152{bottom:167.520000pt;}
.y62{bottom:167.840000pt;}
.y25d{bottom:168.160000pt;}
.y1e2{bottom:168.480000pt;}
.y28f{bottom:169.920000pt;}
.y15a{bottom:171.200000pt;}
.y23e{bottom:175.360000pt;}
.y225{bottom:175.680000pt;}
.y167{bottom:176.000000pt;}
.yee{bottom:176.160000pt;}
.yce{bottom:177.120000pt;}
.y132{bottom:177.920000pt;}
.y42{bottom:178.400000pt;}
.y207{bottom:178.880000pt;}
.y21{bottom:181.280000pt;}
.y11e{bottom:183.360000pt;}
.y185{bottom:183.520000pt;}
.y1cb{bottom:184.321760pt;}
.y18d{bottom:185.920000pt;}
.y1b0{bottom:186.240000pt;}
.y94{bottom:186.720000pt;}
.y7f{bottom:187.200000pt;}
.ye0{bottom:187.840000pt;}
.yb9{bottom:188.800000pt;}
.y297{bottom:190.560000pt;}
.y104{bottom:191.520000pt;}
.y257{bottom:193.120000pt;}
.yb1{bottom:194.080000pt;}
.y141{bottom:194.880000pt;}
.y151{bottom:195.200000pt;}
.y1f5{bottom:195.360000pt;}
.y61{bottom:195.520000pt;}
.y1e1{bottom:196.160000pt;}
.y28e{bottom:197.600000pt;}
.y159{bottom:198.720000pt;}
.y27c{bottom:201.440000pt;}
.y23d{bottom:202.880000pt;}
.y224{bottom:203.200000pt;}
.y166{bottom:203.520000pt;}
.yed{bottom:203.840000pt;}
.ycd{bottom:204.800000pt;}
.y131{bottom:205.600000pt;}
.y1ca{bottom:205.760000pt;}
.y206{bottom:206.560000pt;}
.y41{bottom:207.360000pt;}
.y20{bottom:208.960000pt;}
.y11d{bottom:211.040000pt;}
.y184{bottom:211.200000pt;}
.y18c{bottom:213.600000pt;}
.y1af{bottom:213.760000pt;}
.y93{bottom:214.400000pt;}
.y7e{bottom:214.880000pt;}
.yb8{bottom:216.320000pt;}
.y256{bottom:220.800000pt;}
.yb0{bottom:221.600000pt;}
.y140{bottom:222.560000pt;}
.y150{bottom:222.720000pt;}
.y60{bottom:223.040000pt;}
.y247{bottom:223.200000pt;}
.y1e0{bottom:223.680000pt;}
.y28d{bottom:225.120000pt;}
.y158{bottom:226.400000pt;}
.y296{bottom:228.800000pt;}
.y23c{bottom:230.560000pt;}
.y223{bottom:230.880000pt;}
.y165{bottom:231.200000pt;}
.ydf{bottom:231.360000pt;}
.ycc{bottom:232.320000pt;}
.y130{bottom:233.120000pt;}
.y1c9{bottom:233.440000pt;}
.y205{bottom:234.080000pt;}
.y40{bottom:234.880000pt;}
.y103{bottom:235.040000pt;}
.y1f{bottom:236.480000pt;}
.y11c{bottom:238.560000pt;}
.y183{bottom:238.720000pt;}
.y27b{bottom:239.680000pt;}
.y18b{bottom:241.120000pt;}
.y1ae{bottom:241.440000pt;}
.y92{bottom:241.920000pt;}
.y7d{bottom:242.400000pt;}
.yb7{bottom:244.000000pt;}
.y255{bottom:248.320000pt;}
.y13f{bottom:250.080000pt;}
.y14f{bottom:250.400000pt;}
.y1f4{bottom:250.560000pt;}
.y5f{bottom:250.720000pt;}
.y1df{bottom:251.200000pt;}
.y28c{bottom:252.800000pt;}
.y157{bottom:253.920000pt;}
.y23b{bottom:258.080000pt;}
.y222{bottom:258.400000pt;}
.yde{bottom:259.040000pt;}
.ycb{bottom:260.000000pt;}
.y12f{bottom:260.800000pt;}
.y1c8{bottom:260.960000pt;}
.y246{bottom:261.440000pt;}
.y3f{bottom:262.560000pt;}
.yaf{bottom:265.280000pt;}
.y11b{bottom:266.240000pt;}
.y182{bottom:266.400000pt;}
.y164{bottom:266.720000pt;}
.y1e{bottom:267.040000pt;}
.y295{bottom:267.200000pt;}
.y18a{bottom:268.800000pt;}
.y1ad{bottom:268.960000pt;}
.y91{bottom:269.600000pt;}
.y7c{bottom:270.080000pt;}
.yb6{bottom:271.520000pt;}
.y254{bottom:276.000000pt;}
.y13e{bottom:277.600000pt;}
.y14e{bottom:277.920000pt;}
.y5e{bottom:278.240000pt;}
.y102{bottom:278.720000pt;}
.y1de{bottom:278.880000pt;}
.y28b{bottom:280.320000pt;}
.y23a{bottom:285.600000pt;}
.y221{bottom:286.080000pt;}
.ydd{bottom:286.560000pt;}
.yca{bottom:287.520000pt;}
.y12e{bottom:288.320000pt;}
.y1c7{bottom:288.640000pt;}
.y1f3{bottom:288.800000pt;}
.y245{bottom:288.960000pt;}
.y3e{bottom:290.080000pt;}
.y11a{bottom:293.760000pt;}
.y181{bottom:293.920000pt;}
.y163{bottom:294.400000pt;}
.y1d{bottom:294.720000pt;}
.y189{bottom:296.320000pt;}
.y1ac{bottom:296.640000pt;}
.y90{bottom:297.120000pt;}
.y204{bottom:297.280000pt;}
.y7b{bottom:297.600000pt;}
.yae{bottom:303.520000pt;}
.y13d{bottom:305.280000pt;}
.y294{bottom:305.440000pt;}
.y14d{bottom:305.600000pt;}
.y5d{bottom:305.920000pt;}
.y101{bottom:306.400000pt;}
.y28a{bottom:308.000000pt;}
.y239{bottom:313.280000pt;}
.y220{bottom:313.600000pt;}
.ydc{bottom:314.240000pt;}
.yb5{bottom:315.200000pt;}
.y12d{bottom:316.000000pt;}
.y1c6{bottom:316.160000pt;}
.y244{bottom:316.640000pt;}
.y3d{bottom:317.600000pt;}
.y180{bottom:321.600000pt;}
.y162{bottom:321.920000pt;}
.y1c{bottom:322.240000pt;}
.y1f2{bottom:323.200000pt;}
.y156{bottom:324.000000pt;}
.y1ab{bottom:324.160000pt;}
.y8f{bottom:324.800000pt;}
.y7a{bottom:325.280000pt;}
.yad{bottom:331.200000pt;}
.y119{bottom:332.000000pt;}
.y13c{bottom:332.800000pt;}
.y14c{bottom:333.120000pt;}
.y5c{bottom:333.440000pt;}
.y100{bottom:333.920000pt;}
.y1dd{bottom:334.080000pt;}
.y289{bottom:335.520000pt;}
.y238{bottom:340.800000pt;}
.y21f{bottom:341.280000pt;}
.ydb{bottom:341.760000pt;}
.yc9{bottom:342.720000pt;}
.y12c{bottom:343.520000pt;}
.y293{bottom:343.680000pt;}
.y1c5{bottom:343.840000pt;}
.y243{bottom:344.160000pt;}
.y3c{bottom:346.400000pt;}
.y17f{bottom:349.120000pt;}
.y1b{bottom:349.920000pt;}
.y155{bottom:351.520000pt;}
.y1aa{bottom:351.840000pt;}
.y8e{bottom:352.320000pt;}
.y203{bottom:352.480000pt;}
.y79{bottom:352.800000pt;}
.y27a{bottom:354.400000pt;}
.y161{bottom:356.320000pt;}
.yac{bottom:358.720000pt;}
.y1f1{bottom:358.880000pt;}
.y118{bottom:359.680000pt;}
.y13b{bottom:360.480000pt;}
.y14b{bottom:360.800000pt;}
.y5b{bottom:361.120000pt;}
.y1dc{bottom:361.600000pt;}
.y288{bottom:363.200000pt;}
.y253{bottom:366.080000pt;}
.y237{bottom:368.480000pt;}
.y21e{bottom:368.800000pt;}
.yda{bottom:369.440000pt;}
.yc8{bottom:370.400000pt;}
.y12b{bottom:371.200000pt;}
.y1c4{bottom:371.360000pt;}
.y242{bottom:371.840000pt;}
.y3b{bottom:374.080000pt;}
.y17e{bottom:376.800000pt;}
.y1a{bottom:377.440000pt;}
.y154{bottom:379.200000pt;}
.y1a9{bottom:379.360000pt;}
.y8d{bottom:380.000000pt;}
.y78{bottom:380.480000pt;}
.y292{bottom:381.920000pt;}
.y279{bottom:382.080000pt;}
.yab{bottom:386.400000pt;}
.y117{bottom:387.200000pt;}
.y13a{bottom:388.000000pt;}
.y14a{bottom:388.320000pt;}
.y5a{bottom:388.640000pt;}
.y1db{bottom:389.280000pt;}
.y287{bottom:390.720000pt;}
.y160{bottom:392.000000pt;}
.y236{bottom:396.000000pt;}
.y21d{bottom:396.480000pt;}
.yd9{bottom:396.960000pt;}
.yc7{bottom:397.920000pt;}
.y1c3{bottom:399.040000pt;}
.y241{bottom:399.360000pt;}
.y17d{bottom:404.320000pt;}
.y19{bottom:405.120000pt;}
.y12a{bottom:406.720000pt;}
.y252{bottom:406.880000pt;}
.y8c{bottom:407.520000pt;}
.y202{bottom:407.680000pt;}
.y77{bottom:408.000000pt;}
.y3a{bottom:408.480000pt;}
.y278{bottom:409.600000pt;}
.y1a8{bottom:413.760000pt;}
.yaa{bottom:413.920000pt;}
.y1f0{bottom:414.080000pt;}
.y116{bottom:414.880000pt;}
.y139{bottom:415.680000pt;}
.y59{bottom:416.320000pt;}
.y1da{bottom:416.800000pt;}
.y286{bottom:418.400000pt;}
.y15f{bottom:419.520000pt;}
.yff{bottom:421.120000pt;}
.y235{bottom:423.680000pt;}
.y149{bottom:424.000000pt;}
.yd8{bottom:424.640000pt;}
.yc6{bottom:425.600000pt;}
.y1c2{bottom:426.560000pt;}
.y17c{bottom:432.000000pt;}
.y18{bottom:432.640000pt;}
.y240{bottom:433.760000pt;}
.y129{bottom:434.400000pt;}
.y21c{bottom:434.720000pt;}
.y8b{bottom:435.200000pt;}
.y76{bottom:435.680000pt;}
.y277{bottom:437.280000pt;}
.ya9{bottom:441.600000pt;}
.y115{bottom:442.400000pt;}
.y138{bottom:443.200000pt;}
.y58{bottom:443.840000pt;}
.y39{bottom:444.000000pt;}
.y1d9{bottom:444.480000pt;}
.y285{bottom:445.920000pt;}
.y15e{bottom:447.200000pt;}
.yfe{bottom:448.800000pt;}
.y1a7{bottom:450.880000pt;}
.y234{bottom:451.200000pt;}
.y148{bottom:451.520000pt;}
.yd7{bottom:452.160000pt;}
.y291{bottom:453.120000pt;}
.y1c1{bottom:454.240000pt;}
.y17b{bottom:459.520000pt;}
.y17{bottom:460.320000pt;}
.y128{bottom:461.920000pt;}
.y251{bottom:462.080000pt;}
.y21b{bottom:462.400000pt;}
.y8a{bottom:462.720000pt;}
.y75{bottom:463.200000pt;}
.y276{bottom:464.800000pt;}
.y1a6{bottom:465.280000pt;}
.ya8{bottom:469.120000pt;}
.y1ef{bottom:469.280000pt;}
.y114{bottom:470.080000pt;}
.y137{bottom:470.880000pt;}
.y38{bottom:471.680000pt;}
.y1d8{bottom:472.000000pt;}
.y284{bottom:473.600000pt;}
.y15d{bottom:474.720000pt;}
.yfd{bottom:476.320000pt;}
.y233{bottom:478.880000pt;}
.y147{bottom:479.200000pt;}
.yd6{bottom:479.840000pt;}
.y1c0{bottom:481.760000pt;}
.y57{bottom:482.080000pt;}
.y17a{bottom:487.200000pt;}
.y16{bottom:487.840000pt;}
.y127{bottom:489.600000pt;}
.y21a{bottom:489.920000pt;}
.y89{bottom:490.400000pt;}
.y74{bottom:490.880000pt;}
.y275{bottom:492.480000pt;}
.y1a5{bottom:493.600000pt;}
.y250{bottom:496.480000pt;}
.ya7{bottom:496.800000pt;}
.y113{bottom:497.600000pt;}
.y136{bottom:498.400000pt;}
.y37{bottom:499.200000pt;}
.y1d7{bottom:499.680000pt;}
.y283{bottom:501.120000pt;}
.yfc{bottom:503.840000pt;}
.y232{bottom:506.400000pt;}
.yd5{bottom:507.360000pt;}
.y15c{bottom:509.120000pt;}
.y1bf{bottom:509.440000pt;}
.yc5{bottom:512.800000pt;}
.y146{bottom:513.600000pt;}
.y179{bottom:514.720000pt;}
.y15{bottom:515.520000pt;}
.y56{bottom:516.480000pt;}
.y126{bottom:517.120000pt;}
.y219{bottom:517.440000pt;}
.y88{bottom:517.920000pt;}
.y73{bottom:518.400000pt;}
.y274{bottom:520.000000pt;}
.y1a4{bottom:521.760000pt;}
.ya6{bottom:524.320000pt;}
.y1ee{bottom:524.480000pt;}
.y112{bottom:525.280000pt;}
.y135{bottom:526.080000pt;}
.y36{bottom:526.880000pt;}
.y1d6{bottom:527.200000pt;}
.y282{bottom:528.800000pt;}
.yfb{bottom:531.520000pt;}
.y231{bottom:534.080000pt;}
.y24f{bottom:534.720000pt;}
.yec{bottom:534.880000pt;}
.yd4{bottom:535.040000pt;}
.y1be{bottom:536.960000pt;}
.yc4{bottom:540.320000pt;}
.y178{bottom:542.240000pt;}
.y14{bottom:543.040000pt;}
.y125{bottom:544.800000pt;}
.y218{bottom:545.120000pt;}
.y87{bottom:545.440000pt;}
.y72{bottom:546.080000pt;}
.y273{bottom:547.680000pt;}
.y1a3{bottom:550.080000pt;}
.ya5{bottom:551.840000pt;}
.y1ed{bottom:552.000000pt;}
.y55{bottom:552.160000pt;}
.y111{bottom:552.800000pt;}
.y201{bottom:553.600000pt;}
.y35{bottom:554.400000pt;}
.y1d5{bottom:554.880000pt;}
.y281{bottom:556.320000pt;}
.y230{bottom:561.600000pt;}
.y24e{bottom:562.240000pt;}
.yd3{bottom:562.560000pt;}
.y134{bottom:564.320000pt;}
.y1bd{bottom:564.640000pt;}
.yc3{bottom:567.840000pt;}
.y177{bottom:569.920000pt;}
.y13{bottom:570.720000pt;}
.y124{bottom:572.320000pt;}
.yfa{bottom:575.040000pt;}
.y272{bottom:575.200000pt;}
.y86{bottom:577.120000pt;}
.y1a2{bottom:578.400000pt;}
.yeb{bottom:578.560000pt;}
.ya4{bottom:579.520000pt;}
.y54{bottom:579.680000pt;}
.y110{bottom:580.480000pt;}
.y217{bottom:580.640000pt;}
.y200{bottom:581.280000pt;}
.y34{bottom:582.080000pt;}
.y1d4{bottom:582.400000pt;}
.y280{bottom:583.840000pt;}
.y1ec{bottom:586.400000pt;}
.y145{bottom:586.720000pt;}
.y71{bottom:586.880000pt;}
.y22f{bottom:589.280000pt;}
.y24d{bottom:589.920000pt;}
.yd2{bottom:590.240000pt;}
.y1bc{bottom:592.160000pt;}
.yc2{bottom:595.520000pt;}
.y176{bottom:597.440000pt;}
.y12{bottom:598.240000pt;}
.y123{bottom:599.840000pt;}
.y271{bottom:602.880000pt;}
.yea{bottom:606.240000pt;}
.y1a1{bottom:606.560000pt;}
.y53{bottom:607.360000pt;}
.y10f{bottom:608.000000pt;}
.y216{bottom:608.320000pt;}
.y1ff{bottom:608.800000pt;}
.y33{bottom:609.600000pt;}
.y1d3{bottom:610.080000pt;}
.y85{bottom:611.520000pt;}
.y70{bottom:614.400000pt;}
.y22e{bottom:616.800000pt;}
.yf9{bottom:618.720000pt;}
.y1bb{bottom:619.840000pt;}
.y1eb{bottom:621.280000pt;}
.ya3{bottom:623.040000pt;}
.y24c{bottom:624.320000pt;}
.y175{bottom:625.120000pt;}
.y11{bottom:625.920000pt;}
.y122{bottom:627.520000pt;}
.yd1{bottom:628.480000pt;}
.y270{bottom:630.400000pt;}
.ye9{bottom:633.760000pt;}
.y52{bottom:634.880000pt;}
.y10e{bottom:635.680000pt;}
.y215{bottom:635.840000pt;}
.y1fe{bottom:636.480000pt;}
.y32{bottom:637.280000pt;}
.y1d2{bottom:637.600000pt;}
.y27f{bottom:639.040000pt;}
.y6f{bottom:643.360000pt;}
.y22d{bottom:644.480000pt;}
.yf8{bottom:646.240000pt;}
.y1ba{bottom:647.360000pt;}
.yc1{bottom:650.720000pt;}
.y174{bottom:652.640000pt;}
.y10{bottom:653.440000pt;}
.y84{bottom:655.040000pt;}
.y26f{bottom:658.080000pt;}
.y24b{bottom:659.840000pt;}
.ye8{bottom:661.440000pt;}
.y1ea{bottom:662.240000pt;}
.y51{bottom:662.560000pt;}
.y10d{bottom:663.200000pt;}
.y214{bottom:663.520000pt;}
.y1fd{bottom:664.000000pt;}
.y31{bottom:664.800000pt;}
.y1d1{bottom:665.280000pt;}
.ya2{bottom:666.720000pt;}
.y6e{bottom:670.880000pt;}
.y22c{bottom:672.000000pt;}
.yf7{bottom:673.920000pt;}
.y1b9{bottom:675.040000pt;}
.yc0{bottom:678.240000pt;}
.y173{bottom:680.320000pt;}
.yf{bottom:681.120000pt;}
.y83{bottom:682.720000pt;}
.y24a{bottom:687.520000pt;}
.ye7{bottom:688.960000pt;}
.y1e9{bottom:689.760000pt;}
.y50{bottom:690.080000pt;}
.y10c{bottom:690.880000pt;}
.y213{bottom:691.040000pt;}
.y1a0{bottom:691.360000pt;}
.y1fc{bottom:691.680000pt;}
.y30{bottom:692.480000pt;}
.y1d0{bottom:692.800000pt;}
.ya1{bottom:694.240000pt;}
.y6d{bottom:698.400000pt;}
.y22b{bottom:699.680000pt;}
.y1b8{bottom:702.560000pt;}
.ybf{bottom:705.920000pt;}
.y172{bottom:707.840000pt;}
.ye{bottom:708.640000pt;}
.y82{bottom:710.240000pt;}
.y249{bottom:715.040000pt;}
.ye6{bottom:716.640000pt;}
.yf6{bottom:717.440000pt;}
.y4f{bottom:717.760000pt;}
.y1fb{bottom:719.200000pt;}
.y19d{bottom:719.680000pt;}
.y2f{bottom:720.000000pt;}
.y1cf{bottom:720.480000pt;}
.ya0{bottom:721.920000pt;}
.y19f{bottom:725.920000pt;}
.y22a{bottom:727.200000pt;}
.y26e{bottom:728.000000pt;}
.y10b{bottom:729.120000pt;}
.y212{bottom:729.440000pt;}
.y1b7{bottom:730.240000pt;}
.ybe{bottom:733.440000pt;}
.y171{bottom:735.520000pt;}
.yd{bottom:736.160000pt;}
.y6c{bottom:737.920000pt;}
.y248{bottom:742.720000pt;}
.ye5{bottom:744.160000pt;}
.y1e8{bottom:744.960000pt;}
.y4e{bottom:745.280000pt;}
.y25c{bottom:746.880000pt;}
.y2e{bottom:747.680000pt;}
.y1ce{bottom:748.000000pt;}
.y9f{bottom:749.440000pt;}
.y229{bottom:754.880000pt;}
.y26d{bottom:755.680000pt;}
.y10a{bottom:756.640000pt;}
.y211{bottom:756.960000pt;}
.y1fa{bottom:757.440000pt;}
.y1b6{bottom:757.760000pt;}
.ybd{bottom:761.120000pt;}
.y19c{bottom:762.560000pt;}
.y170{bottom:763.040000pt;}
.yc{bottom:763.840000pt;}
.y6b{bottom:765.440000pt;}
.ye4{bottom:771.840000pt;}
.y1e7{bottom:772.640000pt;}
.y4d{bottom:772.960000pt;}
.y25b{bottom:774.400000pt;}
.y2d{bottom:775.200000pt;}
.y1cd{bottom:775.680000pt;}
.y9e{bottom:777.120000pt;}
.y228{bottom:782.400000pt;}
.y26c{bottom:783.200000pt;}
.y210{bottom:784.640000pt;}
.y1f9{bottom:785.120000pt;}
.yf5{bottom:788.640000pt;}
.y16f{bottom:790.720000pt;}
.y19b{bottom:790.880000pt;}
.yb{bottom:791.360000pt;}
.y1b5{bottom:792.160000pt;}
.y6a{bottom:793.120000pt;}
.y109{bottom:800.160000pt;}
.y25a{bottom:801.920000pt;}
.y2c{bottom:802.880000pt;}
.y261{bottom:803.200000pt;}
.y9d{bottom:804.640000pt;}
.y4c{bottom:807.840000pt;}
.ye3{bottom:810.080000pt;}
.y26b{bottom:810.880000pt;}
.y20f{bottom:812.160000pt;}
.y1f8{bottom:812.640000pt;}
.yf4{bottom:816.320000pt;}
.y16e{bottom:818.240000pt;}
.ya{bottom:819.040000pt;}
.y19a{bottom:819.200000pt;}
.y69{bottom:820.640000pt;}
.y1e6{bottom:827.840000pt;}
.y2b{bottom:830.400000pt;}
.y260{bottom:830.880000pt;}
.y9c{bottom:832.320000pt;}
.y26a{bottom:838.400000pt;}
.y20e{bottom:839.840000pt;}
.yf3{bottom:843.840000pt;}
.y4b{bottom:845.920000pt;}
.y9{bottom:846.560000pt;}
.y199{bottom:847.360000pt;}
.y68{bottom:848.320000pt;}
.y2a{bottom:858.080000pt;}
.y9b{bottom:859.840000pt;}
.y1e5{bottom:862.720000pt;}
.y1b4{bottom:865.280000pt;}
.y269{bottom:866.080000pt;}
.yf2{bottom:871.520000pt;}
.y16d{bottom:873.440000pt;}
.y4a{bottom:873.600000pt;}
.y8{bottom:874.240000pt;}
.y198{bottom:875.680000pt;}
.y67{bottom:875.840000pt;}
.y20d{bottom:878.080000pt;}
.y29{bottom:885.600000pt;}
.y9a{bottom:887.520000pt;}
.y268{bottom:893.600000pt;}
.yf1{bottom:899.040000pt;}
.y16c{bottom:900.960000pt;}
.y49{bottom:901.120000pt;}
.y7{bottom:901.760000pt;}
.y66{bottom:903.520000pt;}
.y196{bottom:904.000000pt;}
.y28{bottom:913.280000pt;}
.y99{bottom:915.040000pt;}
.y20c{bottom:916.320000pt;}
.y267{bottom:921.280000pt;}
.yf0{bottom:926.720000pt;}
.y6{bottom:929.440000pt;}
.y48{bottom:929.920000pt;}
.y65{bottom:931.040000pt;}
.y192{bottom:932.160000pt;}
.y16b{bottom:938.080000pt;}
.y195{bottom:938.560000pt;}
.y108{bottom:942.560000pt;}
.y98{bottom:942.720000pt;}
.y27{bottom:948.160000pt;}
.y266{bottom:948.800000pt;}
.y20b{bottom:951.840000pt;}
.y47{bottom:957.600000pt;}
.y64{bottom:958.720000pt;}
.y194{bottom:959.680000pt;}
.y5{bottom:963.840000pt;}
.y97{bottom:970.240000pt;}
.y16a{bottom:973.120000pt;}
.y265{bottom:976.480000pt;}
.y20a{bottom:979.520000pt;}
.y46{bottom:985.120000pt;}
.y26{bottom:986.240000pt;}
.y190{bottom:996.320000pt;}
.y96{bottom:997.920000pt;}
.y4{bottom:1003.680000pt;}
.y264{bottom:1004.000000pt;}
.y209{bottom:1007.040000pt;}
.y45{bottom:1012.640000pt;}
.y25{bottom:1013.920000pt;}
.y263{bottom:1038.880000pt;}
.y24{bottom:1041.440000pt;}
.y3{bottom:1042.560000pt;}
.hf{height:27.520000pt;}
.hd{height:27.521333pt;}
.hb{height:27.678667pt;}
.he{height:27.680000pt;}
.h11{height:37.624687pt;}
.h10{height:42.240000pt;}
.h3{height:52.152500pt;}
.h2{height:56.156250pt;}
.h7{height:56.312500pt;}
.h6{height:56.687500pt;}
.h9{height:56.750000pt;}
.h5{height:57.031250pt;}
.ha{height:61.944687pt;}
.hc{height:63.520000pt;}
.h8{height:66.726562pt;}
.h4{height:75.851562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:29.760000pt;}
.w3{width:572.958667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.880000pt;}
.x2{left:94.400000pt;}
.xb{left:117.600000pt;}
.x8{left:122.720000pt;}
.xd{left:125.600000pt;}
.xe{left:132.480000pt;}
.x4{left:141.600000pt;}
.x9{left:146.720000pt;}
.x5{left:160.640000pt;}
.x7{left:165.600000pt;}
.xa{left:170.720000pt;}
.x6{left:188.960000pt;}
.x3{left:262.560000pt;}
.x1{left:384.800000pt;}
.xf{left:396.800000pt;}
}




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