
    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_3a706462f48156fa7e1318ec.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_37e6305d2cba816318c8e7a1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_fba871ef49ab93edb0cc541d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_879881098f882169ab9b6ca4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_097d0bd20264d301d889376e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_990f31ff38fe2facde7b2a49.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.401855;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_1b9bf1f5c7c9f483446bcb57.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1eb84ae1a66b7e47c11d408c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-68.940000px;}
.v6{vertical-align:-67.500000px;}
.v4{vertical-align:-64.500000px;}
.v3{vertical-align:-45.000000px;}
.v2{vertical-align:-24.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.000000px;}
.ls33{letter-spacing:-1.680000px;}
.ls25{letter-spacing:-0.984000px;}
.lsb{letter-spacing:-0.516000px;}
.ls24{letter-spacing:-0.513000px;}
.ls29{letter-spacing:-0.468000px;}
.lsa{letter-spacing:-0.348000px;}
.ls26{letter-spacing:-0.342000px;}
.ls17{letter-spacing:-0.024000px;}
.ls15{letter-spacing:-0.018000px;}
.ls16{letter-spacing:-0.012000px;}
.ls18{letter-spacing:-0.006000px;}
.ls2{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.006000px;}
.ls11{letter-spacing:0.012000px;}
.ls12{letter-spacing:0.018000px;}
.ls3{letter-spacing:0.024000px;}
.ls8{letter-spacing:0.060000px;}
.ls14{letter-spacing:0.078000px;}
.ls10{letter-spacing:0.084000px;}
.ls2d{letter-spacing:0.120000px;}
.ls19{letter-spacing:0.138000px;}
.lsc{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.150000px;}
.ls23{letter-spacing:0.171000px;}
.ls6{letter-spacing:0.174000px;}
.ls0{letter-spacing:0.180000px;}
.ls2b{letter-spacing:0.198000px;}
.ls1d{letter-spacing:0.204000px;}
.ls1f{letter-spacing:0.300000px;}
.ls22{letter-spacing:0.342000px;}
.ls21{letter-spacing:0.513000px;}
.ls28{letter-spacing:0.516000px;}
.ls4{letter-spacing:0.522000px;}
.ls2e{letter-spacing:0.660000px;}
.ls27{letter-spacing:0.684000px;}
.ls9{letter-spacing:0.696000px;}
.lsd{letter-spacing:0.984000px;}
.lse{letter-spacing:1.032000px;}
.ls7{letter-spacing:1.500000px;}
.lsf{letter-spacing:1.524000px;}
.ls31{letter-spacing:4.560000px;}
.ls30{letter-spacing:14.940000px;}
.ls2c{letter-spacing:16.500000px;}
.ls2f{letter-spacing:27.168000px;}
.ls5{letter-spacing:33.984000px;}
.ls20{letter-spacing:44.664000px;}
.ls1e{letter-spacing:63.984000px;}
.ls2a{letter-spacing:90.000000px;}
.ls1c{letter-spacing:105.984000px;}
.ls1b{letter-spacing:129.984000px;}
.ls1a{letter-spacing:153.984000px;}
.ls32{letter-spacing:306.150000px;}
.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;}
}
.ws1b{word-spacing:-60.000000px;}
.ws6{word-spacing:-19.032000px;}
.ws5{word-spacing:-18.984000px;}
.ws2{word-spacing:-18.024000px;}
.ws0{word-spacing:-18.000000px;}
.ws1a{word-spacing:-17.976000px;}
.ws17{word-spacing:-17.532000px;}
.wse{word-spacing:-17.484000px;}
.ws4{word-spacing:-16.500000px;}
.ws19{word-spacing:-15.000000px;}
.wsb{word-spacing:-13.524000px;}
.ws7{word-spacing:-13.518000px;}
.wsa{word-spacing:-13.512000px;}
.ws8{word-spacing:-13.506000px;}
.ws1{word-spacing:-13.500000px;}
.ws18{word-spacing:-13.494000px;}
.wsc{word-spacing:-13.488000px;}
.wsd{word-spacing:-13.482000px;}
.ws9{word-spacing:-13.476000px;}
.ws1c{word-spacing:-13.320000px;}
.ws16{word-spacing:-10.434000px;}
.ws11{word-spacing:-10.263000px;}
.ws13{word-spacing:-10.092000px;}
.wsf{word-spacing:-9.921000px;}
.ws10{word-spacing:-9.750000px;}
.ws15{word-spacing:-9.408000px;}
.ws12{word-spacing:-9.237000px;}
.ws14{word-spacing:-8.766000px;}
.ws3{word-spacing:0.000000px;}
._5{margin-left:-3.294000px;}
._4{margin-left:-2.136000px;}
._0{margin-left:-1.008000px;}
._1{width:1.008000px;}
._2{width:2.388000px;}
._9{width:3.672000px;}
._e{width:4.824000px;}
._7{width:5.988000px;}
._8{width:7.458000px;}
._f{width:8.742000px;}
._10{width:9.774000px;}
._13{width:11.178000px;}
._1a{width:12.384000px;}
._b{width:14.340000px;}
._a{width:15.492000px;}
._11{width:16.560000px;}
._12{width:17.628000px;}
._16{width:19.116000px;}
._18{width:20.160000px;}
._d{width:21.744000px;}
._c{width:22.896000px;}
._17{width:25.326000px;}
._14{width:34.506000px;}
._15{width:52.488000px;}
._19{width:65.916000px;}
._6{width:193.383000px;}
._3{width:846.450000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:39.000000px;}
.fs5{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yca{bottom:2.235000px;}
.ybf{bottom:2.250000px;}
.yf1{bottom:2.265000px;}
.yb9{bottom:2.625000px;}
.y20a{bottom:2.985000px;}
.y1a2{bottom:3.000000px;}
.y1c6{bottom:3.375000px;}
.y20c{bottom:3.390000px;}
.y3{bottom:3.750000px;}
.y9b{bottom:4.875000px;}
.y6d{bottom:5.235000px;}
.y7a{bottom:5.250000px;}
.yce{bottom:7.860000px;}
.ybd{bottom:7.875000px;}
.y13b{bottom:7.890000px;}
.y1c2{bottom:10.875000px;}
.y104{bottom:13.125000px;}
.yef{bottom:13.140000px;}
.y14f{bottom:13.162500px;}
.yc6{bottom:13.485000px;}
.ybb{bottom:13.500000px;}
.y13c{bottom:13.515000px;}
.y116{bottom:13.530000px;}
.y12f{bottom:13.545000px;}
.y8b{bottom:13.875000px;}
.y6a{bottom:14.280000px;}
.y205{bottom:16.860000px;}
.y1fa{bottom:18.375000px;}
.y1b3{bottom:18.420000px;}
.y209{bottom:18.735000px;}
.y1a1{bottom:18.750000px;}
.y1bd{bottom:18.757500px;}
.yf4{bottom:18.765000px;}
.ycd{bottom:19.110000px;}
.ybc{bottom:19.125000px;}
.y127{bottom:19.155000px;}
.y79{bottom:22.875000px;}
.y6b{bottom:22.905000px;}
.y88{bottom:23.250000px;}
.ydb{bottom:24.375000px;}
.y152{bottom:24.405000px;}
.y14e{bottom:24.412500px;}
.yc5{bottom:24.735000px;}
.ybe{bottom:24.750000px;}
.y139{bottom:24.765000px;}
.y115{bottom:24.780000px;}
.y12e{bottom:24.795000px;}
.y1c1{bottom:26.250000px;}
.y1aa{bottom:26.280000px;}
.y101{bottom:30.000000px;}
.yf3{bottom:30.015000px;}
.y126{bottom:30.045000px;}
.yc8{bottom:30.360000px;}
.ye5{bottom:30.375000px;}
.y137{bottom:30.420000px;}
.y8a{bottom:31.875000px;}
.y69{bottom:31.905000px;}
.y204{bottom:32.235000px;}
.y208{bottom:34.110000px;}
.y1bf{bottom:34.125000px;}
.y1bc{bottom:34.162500px;}
.y1b2{bottom:34.170000px;}
.yda{bottom:35.625000px;}
.yed{bottom:35.640000px;}
.y151{bottom:35.655000px;}
.y14d{bottom:35.662500px;}
.y12a{bottom:35.670000px;}
.yc2{bottom:35.985000px;}
.yfa{bottom:36.000000px;}
.y114{bottom:36.030000px;}
.y11f{bottom:36.045000px;}
.y9a{bottom:40.545000px;}
.y78{bottom:40.875000px;}
.y6c{bottom:40.905000px;}
.y87{bottom:40.920000px;}
.ye4{bottom:41.250000px;}
.yfd{bottom:41.280000px;}
.yc3{bottom:41.610000px;}
.yff{bottom:41.625000px;}
.y108{bottom:41.670000px;}
.y1c0{bottom:42.000000px;}
.ye7{bottom:46.875000px;}
.yee{bottom:46.890000px;}
.yd9{bottom:46.905000px;}
.y14c{bottom:46.912500px;}
.y129{bottom:46.920000px;}
.yc1{bottom:47.235000px;}
.y133{bottom:47.250000px;}
.y10e{bottom:47.280000px;}
.y10a{bottom:47.295000px;}
.y203{bottom:47.610000px;}
.y207{bottom:49.485000px;}
.y1c3{bottom:49.500000px;}
.y1b1{bottom:49.530000px;}
.y1c5{bottom:49.905000px;}
.y1b8{bottom:49.912500px;}
.ye0{bottom:52.500000px;}
.yf2{bottom:52.515000px;}
.yf7{bottom:52.530000px;}
.y146{bottom:52.537500px;}
.y125{bottom:52.545000px;}
.yc7{bottom:52.905000px;}
.y118{bottom:52.920000px;}
.y1b6{bottom:57.412500px;}
.y1a9{bottom:57.420000px;}
.ye1{bottom:58.125000px;}
.yd8{bottom:58.155000px;}
.y142{bottom:58.162500px;}
.y103{bottom:58.170000px;}
.y77{bottom:58.530000px;}
.y109{bottom:58.545000px;}
.y93{bottom:58.875000px;}
.y86{bottom:58.920000px;}
.y2{bottom:62.287500px;}
.ydf{bottom:63.750000px;}
.ydd{bottom:63.780000px;}
.y145{bottom:63.787500px;}
.y107{bottom:63.795000px;}
.ycc{bottom:64.155000px;}
.y11b{bottom:64.170000px;}
.y206{bottom:65.280000px;}
.y1b7{bottom:65.287500px;}
.y1b0{bottom:65.295000px;}
.y1f9{bottom:66.000000px;}
.y1{bottom:66.037500px;}
.y1fe{bottom:67.875000px;}
.ye6{bottom:69.375000px;}
.yf0{bottom:69.390000px;}
.yd2{bottom:69.405000px;}
.y13f{bottom:69.412500px;}
.y102{bottom:69.420000px;}
.yc4{bottom:69.780000px;}
.y11e{bottom:69.795000px;}
.y1a5{bottom:72.795000px;}
.y1b5{bottom:73.162500px;}
.ye3{bottom:75.000000px;}
.ycb{bottom:75.030000px;}
.y140{bottom:75.037500px;}
.y13a{bottom:75.045000px;}
.y10f{bottom:75.405000px;}
.y11a{bottom:75.420000px;}
.y76{bottom:76.530000px;}
.y85{bottom:76.545000px;}
.y202{bottom:79.905000px;}
.yc9{bottom:80.655000px;}
.y13e{bottom:80.662500px;}
.yeb{bottom:80.670000px;}
.y10d{bottom:81.030000px;}
.y11d{bottom:81.045000px;}
.y1f8{bottom:81.780000px;}
.y1fd{bottom:83.655000px;}
.yd0{bottom:86.280000px;}
.y144{bottom:86.287500px;}
.ye2{bottom:86.295000px;}
.y119{bottom:86.670000px;}
.y1a4{bottom:88.545000px;}
.yd1{bottom:91.905000px;}
.y141{bottom:91.912500px;}
.yea{bottom:91.920000px;}
.y113{bottom:92.280000px;}
.y11c{bottom:92.295000px;}
.y99{bottom:94.155000px;}
.y75{bottom:94.530000px;}
.y84{bottom:94.545000px;}
.y201{bottom:95.280000px;}
.y1af{bottom:96.045000px;}
.y200{bottom:96.405000px;}
.y1bb{bottom:96.412500px;}
.y1f7{bottom:97.155000px;}
.ydc{bottom:97.530000px;}
.y106{bottom:97.545000px;}
.y124{bottom:97.575000px;}
.y143{bottom:97.582500px;}
.y120{bottom:97.920000px;}
.y1fc{bottom:99.030000px;}
.yd7{bottom:103.155000px;}
.ye9{bottom:103.170000px;}
.y112{bottom:103.185000px;}
.y128{bottom:103.200000px;}
.y14b{bottom:103.207500px;}
.y1a8{bottom:103.905000px;}
.yf6{bottom:108.780000px;}
.y136{bottom:108.795000px;}
.y123{bottom:108.825000px;}
.y56{bottom:109.912500px;}
.y1ba{bottom:111.787500px;}
.y1ae{bottom:111.795000px;}
.y74{bottom:112.155000px;}
.y98{bottom:112.200000px;}
.y83{bottom:112.530000px;}
.y1f6{bottom:113.655000px;}
.yd6{bottom:114.405000px;}
.ye8{bottom:114.420000px;}
.y111{bottom:114.435000px;}
.y12d{bottom:114.450000px;}
.y14a{bottom:114.457500px;}
.y1fb{bottom:114.780000px;}
.y1a7{bottom:119.295000px;}
.yfc{bottom:120.030000px;}
.y122{bottom:120.075000px;}
.y240{bottom:121.162500px;}
.y66{bottom:121.537500px;}
.y19d{bottom:124.912500px;}
.y1ef{bottom:125.287500px;}
.y149{bottom:125.332500px;}
.yd5{bottom:125.655000px;}
.y110{bottom:125.685000px;}
.y12c{bottom:125.700000px;}
.y1ad{bottom:127.170000px;}
.y1b9{bottom:127.537500px;}
.yb5{bottom:127.912500px;}
.y55{bottom:128.662500px;}
.y1f5{bottom:129.030000px;}
.y97{bottom:129.825000px;}
.y73{bottom:130.155000px;}
.y82{bottom:130.200000px;}
.yfb{bottom:131.325000px;}
.y1f1{bottom:134.662500px;}
.y1a6{bottom:135.045000px;}
.yd4{bottom:136.560000px;}
.y12b{bottom:136.575000px;}
.y148{bottom:136.582500px;}
.y132{bottom:136.905000px;}
.yf9{bottom:136.950000px;}
.y16f{bottom:138.412500px;}
.y172{bottom:138.787500px;}
.y13d{bottom:141.037500px;}
.y26d{bottom:142.162500px;}
.y1db{bottom:142.912500px;}
.y1ac{bottom:142.920000px;}
.y1b4{bottom:144.037500px;}
.y1f4{bottom:144.405000px;}
.y1f3{bottom:145.530000px;}
.y59{bottom:145.912500px;}
.y187{bottom:147.412500px;}
.y54{bottom:147.787500px;}
.y72{bottom:147.810000px;}
.y147{bottom:147.817500px;}
.y96{bottom:147.825000px;}
.y92{bottom:148.155000px;}
.y81{bottom:148.200000px;}
.y21c{bottom:154.905000px;}
.y23f{bottom:155.655000px;}
.y1ab{bottom:158.325000px;}
.yd3{bottom:159.060000px;}
.yf8{bottom:159.075000px;}
.y26c{bottom:159.420000px;}
.y131{bottom:159.450000px;}
.y65{bottom:163.170000px;}
.y71{bottom:165.810000px;}
.y80{bottom:165.825000px;}
.y19c{bottom:166.170000px;}
.y53{bottom:166.545000px;}
.yb4{bottom:169.155000px;}
.y134{bottom:170.325000px;}
.y171{bottom:172.200000px;}
.y52{bottom:172.530000px;}
.y23e{bottom:172.920000px;}
.y26b{bottom:176.700000px;}
.y16e{bottom:179.700000px;}
.y39{bottom:182.325000px;}
.y95{bottom:183.450000px;}
.y70{bottom:183.810000px;}
.y7f{bottom:183.825000px;}
.y1da{bottom:184.200000px;}
.y158{bottom:185.700000px;}
.y58{bottom:187.200000px;}
.y186{bottom:188.700000px;}
.y23d{bottom:190.200000px;}
.y26a{bottom:193.950000px;}
.y21b{bottom:196.575000px;}
.y105{bottom:196.950000px;}
.y7b{bottom:198.450000px;}
.y6f{bottom:201.435000px;}
.y91{bottom:201.810000px;}
.y7e{bottom:201.825000px;}
.y64{bottom:204.450000px;}
.y157{bottom:204.825000px;}
.y51{bottom:206.325000px;}
.y19b{bottom:207.450000px;}
.y1ee{bottom:208.200000px;}
.yb3{bottom:210.825000px;}
.y269{bottom:211.200000px;}
.yb7{bottom:211.950000px;}
.y9c{bottom:213.450000px;}
.y90{bottom:219.435000px;}
.y7d{bottom:219.495000px;}
.y16d{bottom:220.950000px;}
.y38{bottom:223.575000px;}
.y23c{bottom:224.700000px;}
.y1d9{bottom:225.825000px;}
.y94{bottom:226.950000px;}
.y268{bottom:228.450000px;}
.y57{bottom:228.825000px;}
.y156{bottom:229.575000px;}
.y185{bottom:229.950000px;}
.y121{bottom:230.700000px;}
.y8f{bottom:237.435000px;}
.y7c{bottom:237.495000px;}
.y21a{bottom:237.825000px;}
.y23b{bottom:241.950000px;}
.yb6{bottom:243.075000px;}
.y63{bottom:245.700000px;}
.y19a{bottom:249.075000px;}
.y1ed{bottom:249.450000px;}
.yb2{bottom:252.075000px;}
.yec{bottom:252.480000px;}
.y8e{bottom:255.105000px;}
.y23a{bottom:259.200000px;}
.y16c{bottom:262.575000px;}
.y267{bottom:262.950000px;}
.y155{bottom:263.325000px;}
.y37{bottom:265.200000px;}
.y1d8{bottom:267.075000px;}
.y50{bottom:270.075000px;}
.y184{bottom:271.575000px;}
.y8d{bottom:273.105000px;}
.y239{bottom:276.450000px;}
.y219{bottom:279.450000px;}
.y266{bottom:280.200000px;}
.y1a3{bottom:284.700000px;}
.y62{bottom:287.325000px;}
.y199{bottom:290.325000px;}
.y1ec{bottom:290.700000px;}
.yb1{bottom:293.700000px;}
.y265{bottom:297.450000px;}
.y138{bottom:298.605000px;}
.y16b{bottom:303.855000px;}
.y36{bottom:306.495000px;}
.y1d7{bottom:308.745000px;}
.y238{bottom:310.980000px;}
.y4f{bottom:311.745000px;}
.y183{bottom:312.870000px;}
.y264{bottom:314.730000px;}
.y218{bottom:320.730000px;}
.y237{bottom:328.230000px;}
.y61{bottom:328.620000px;}
.yde{bottom:331.650000px;}
.y198{bottom:331.995000px;}
.y1eb{bottom:332.370000px;}
.yb0{bottom:334.980000px;}
.y16a{bottom:345.495000px;}
.y35{bottom:347.730000px;}
.y263{bottom:349.245000px;}
.y1d6{bottom:349.995000px;}
.y4e{bottom:352.995000px;}
.y182{bottom:354.480000px;}
.y100{bottom:354.900000px;}
.y217{bottom:361.980000px;}
.y236{bottom:362.745000px;}
.y262{bottom:366.495000px;}
.y60{bottom:370.245000px;}
.y197{bottom:373.245000px;}
.y1ea{bottom:373.620000px;}
.yaf{bottom:376.245000px;}
.y117{bottom:377.025000px;}
.y235{bottom:379.995000px;}
.y261{bottom:383.745000px;}
.y1e{bottom:386.745000px;}
.y135{bottom:389.025000px;}
.y34{bottom:389.370000px;}
.y1d5{bottom:391.245000px;}
.y4d{bottom:394.245000px;}
.y181{bottom:395.730000px;}
.y234{bottom:397.245000px;}
.y260{bottom:400.995000px;}
.y216{bottom:403.620000px;}
.y5f{bottom:411.495000px;}
.y1d{bottom:412.245000px;}
.y196{bottom:414.495000px;}
.y1e9{bottom:415.245000px;}
.yae{bottom:417.870000px;}
.y25f{bottom:418.245000px;}
.y8c{bottom:423.945000px;}
.y169{bottom:427.995000px;}
.y33{bottom:430.620000px;}
.y233{bottom:431.775000px;}
.y1d4{bottom:432.900000px;}
.yfe{bottom:434.070000px;}
.y25e{bottom:435.525000px;}
.y4c{bottom:435.900000px;}
.y180{bottom:437.025000px;}
.y215{bottom:444.900000px;}
.y232{bottom:449.025000px;}
.y6e{bottom:449.445000px;}
.y5e{bottom:452.775000px;}
.ycf{bottom:455.820000px;}
.y195{bottom:456.150000px;}
.y1e8{bottom:456.525000px;}
.y1a0{bottom:456.900000px;}
.yad{bottom:459.150000px;}
.y1c{bottom:459.900000px;}
.y231{bottom:466.275000px;}
.y168{bottom:469.650000px;}
.y25d{bottom:470.025000px;}
.y1d3{bottom:474.150000px;}
.y4b{bottom:477.150000px;}
.y32{bottom:479.775000px;}
.y1b{bottom:480.525000px;}
.y230{bottom:483.525000px;}
.y214{bottom:486.525000px;}
.y17f{bottom:487.275000px;}
.y10c{bottom:489.945000px;}
.y5d{bottom:494.400000px;}
.y194{bottom:497.400000px;}
.y1e7{bottom:497.775000px;}
.yac{bottom:500.775000px;}
.y1a{bottom:501.150000px;}
.y25c{bottom:504.525000px;}
.y19f{bottom:507.150000px;}
.y167{bottom:510.900000px;}
.y1d2{bottom:515.775000px;}
.y22f{bottom:518.025000px;}
.y4a{bottom:518.775000px;}
.y17e{bottom:520.650000px;}
.y19{bottom:521.775000px;}
.y19e{bottom:523.275000px;}
.y154{bottom:524.775000px;}
.y1f0{bottom:533.025000px;}
.y22e{bottom:535.275000px;}
.y5c{bottom:535.650000px;}
.y130{bottom:535.725000px;}
.y31{bottom:536.775000px;}
.y193{bottom:539.025000px;}
.y1e6{bottom:539.400000px;}
.yab{bottom:542.025000px;}
.y18{bottom:542.775000px;}
.yf5{bottom:546.975000px;}
.y153{bottom:551.100000px;}
.y166{bottom:552.525000px;}
.y25b{bottom:556.275000px;}
.y1d1{bottom:557.025000px;}
.y49{bottom:560.070000px;}
.y17{bottom:563.445000px;}
.y30{bottom:565.320000px;}
.y150{bottom:569.475000px;}
.y22d{bottom:569.820000px;}
.y25a{bottom:573.570000px;}
.y192{bottom:580.320000px;}
.y1e5{bottom:580.695000px;}
.yaa{bottom:583.320000px;}
.y16{bottom:584.070000px;}
.y5b{bottom:584.820000px;}
.y22c{bottom:587.070000px;}
.y213{bottom:590.445000px;}
.y259{bottom:590.820000px;}
.y165{bottom:593.820000px;}
.y1d0{bottom:598.320000px;}
.y48{bottom:601.320000px;}
.y22b{bottom:604.320000px;}
.y258{bottom:608.070000px;}
.y15{bottom:613.695000px;}
.y5a{bottom:615.945000px;}
.y2f{bottom:616.320000px;}
.y191{bottom:621.570000px;}
.y1e4{bottom:622.320000px;}
.yc0{bottom:624.645000px;}
.ya9{bottom:624.945000px;}
.y257{bottom:625.320000px;}
.y10b{bottom:625.395000px;}
.y212{bottom:631.695000px;}
.y164{bottom:635.070000px;}
.y22a{bottom:638.820000px;}
.y1cf{bottom:639.945000px;}
.y256{bottom:642.570000px;}
.y47{bottom:642.945000px;}
.y2e{bottom:644.820000px;}
.y229{bottom:656.070000px;}
.y255{bottom:659.820000px;}
.y190{bottom:663.195000px;}
.y1e3{bottom:663.570000px;}
.y68{bottom:664.395000px;}
.ya8{bottom:666.195000px;}
.y2d{bottom:672.945000px;}
.y211{bottom:673.320000px;}
.y163{bottom:676.695000px;}
.y254{bottom:677.070000px;}
.y1ce{bottom:681.195000px;}
.y14{bottom:681.945000px;}
.y46{bottom:684.195000px;}
.y228{bottom:690.600000px;}
.y253{bottom:694.350000px;}
.y2c{bottom:701.475000px;}
.y13{bottom:702.975000px;}
.y18f{bottom:704.475000px;}
.y1e2{bottom:704.850000px;}
.ya7{bottom:707.475000px;}
.y227{bottom:707.850000px;}
.y89{bottom:710.550000px;}
.y252{bottom:711.600000px;}
.y210{bottom:714.600000px;}
.yba{bottom:715.800000px;}
.y162{bottom:717.975000px;}
.y1cd{bottom:722.475000px;}
.y226{bottom:725.100000px;}
.y45{bottom:725.475000px;}
.y251{bottom:728.475000px;}
.y2b{bottom:729.975000px;}
.y12{bottom:741.600000px;}
.y225{bottom:742.350000px;}
.y18e{bottom:745.725000px;}
.y1e1{bottom:746.475000px;}
.y17d{bottom:747.225000px;}
.ya6{bottom:749.100000px;}
.yb8{bottom:751.050000px;}
.y67{bottom:752.175000px;}
.y20f{bottom:755.850000px;}
.y2a{bottom:758.475000px;}
.y161{bottom:759.225000px;}
.y224{bottom:759.600000px;}
.y250{bottom:762.975000px;}
.y1cc{bottom:764.100000px;}
.y44{bottom:767.100000px;}
.y11{bottom:768.225000px;}
.y223{bottom:776.850000px;}
.y24f{bottom:780.225000px;}
.y29{bottom:786.975000px;}
.y18d{bottom:787.350000px;}
.y1e0{bottom:787.725000px;}
.y17c{bottom:788.850000px;}
.ya5{bottom:790.350000px;}
.y222{bottom:794.100000px;}
.y20e{bottom:797.475000px;}
.y160{bottom:800.850000px;}
.y1cb{bottom:805.350000px;}
.y10{bottom:806.850000px;}
.y43{bottom:808.350000px;}
.y221{bottom:811.350000px;}
.y24e{bottom:814.725000px;}
.y28{bottom:815.475000px;}
.y1df{bottom:816.600000px;}
.y170{bottom:822.330000px;}
.y18c{bottom:828.645000px;}
.y17b{bottom:830.130000px;}
.ya4{bottom:832.020000px;}
.y20d{bottom:838.770000px;}
.yf{bottom:840.630000px;}
.y15f{bottom:842.145000px;}
.y1de{bottom:842.505000px;}
.y27{bottom:844.005000px;}
.y220{bottom:845.880000px;}
.y1ca{bottom:847.005000px;}
.y24d{bottom:849.255000px;}
.y42{bottom:850.005000px;}
.y20b{bottom:856.380000px;}
.y21f{bottom:863.145000px;}
.y24c{bottom:866.520000px;}
.y1dd{bottom:868.380000px;}
.y18b{bottom:870.255000px;}
.y17a{bottom:871.755000px;}
.y26{bottom:872.520000px;}
.ya3{bottom:873.270000px;}
.y21e{bottom:880.380000px;}
.ye{bottom:882.630000px;}
.y15e{bottom:883.755000px;}
.y1c9{bottom:888.255000px;}
.y1ff{bottom:888.270000px;}
.y41{bottom:891.255000px;}
.y1dc{bottom:894.255000px;}
.y25{bottom:901.005000px;}
.y21d{bottom:905.505000px;}
.yd{bottom:906.630000px;}
.y18a{bottom:911.505000px;}
.y179{bottom:913.005000px;}
.ya2{bottom:914.505000px;}
.y24b{bottom:918.255000px;}
.y15d{bottom:925.005000px;}
.y24{bottom:929.505000px;}
.y40{bottom:932.505000px;}
.y24a{bottom:935.505000px;}
.yc{bottom:940.005000px;}
.y189{bottom:952.800000px;}
.y178{bottom:954.300000px;}
.ya1{bottom:956.175000px;}
.y23{bottom:957.675000px;}
.y15c{bottom:966.300000px;}
.y249{bottom:970.050000px;}
.y1c8{bottom:971.175000px;}
.y3f{bottom:974.175000px;}
.yb{bottom:974.550000px;}
.y22{bottom:986.175000px;}
.y248{bottom:987.300000px;}
.y188{bottom:988.425000px;}
.ya{bottom:995.175000px;}
.y177{bottom:995.925000px;}
.ya0{bottom:997.425000px;}
.y1f2{bottom:997.800000px;}
.y247{bottom:1004.550000px;}
.y15b{bottom:1007.925000px;}
.y1c7{bottom:1012.425000px;}
.y3e{bottom:1015.425000px;}
.y9{bottom:1015.800000px;}
.y246{bottom:1021.800000px;}
.y1c4{bottom:1030.800000px;}
.y176{bottom:1037.175000px;}
.y9f{bottom:1039.050000px;}
.y21{bottom:1041.675000px;}
.y8{bottom:1045.800000px;}
.y15a{bottom:1049.175000px;}
.y245{bottom:1056.300000px;}
.y3d{bottom:1057.050000px;}
.y244{bottom:1073.550000px;}
.y7{bottom:1075.455000px;}
.y175{bottom:1078.830000px;}
.y9e{bottom:1080.330000px;}
.y159{bottom:1090.830000px;}
.y1be{bottom:1093.830000px;}
.y6{bottom:1096.080000px;}
.y3c{bottom:1098.330000px;}
.y20{bottom:1100.580000px;}
.y243{bottom:1108.080000px;}
.y5{bottom:1116.705000px;}
.y9d{bottom:1121.580000px;}
.y242{bottom:1125.330000px;}
.y174{bottom:1127.580000px;}
.y1f{bottom:1136.580000px;}
.y4{bottom:1137.330000px;}
.y3a{bottom:1139.580000px;}
.y241{bottom:1142.580000px;}
.y3b{bottom:1145.580000px;}
.y173{bottom:1192.830000px;}
.h18{height:13.912500px;}
.h32{height:15.375000px;}
.h2{height:20.625000px;}
.h2a{height:31.125000px;}
.h1a{height:33.750000px;}
.h21{height:34.962891px;}
.h1d{height:38.276367px;}
.h1b{height:39.304688px;}
.hb{height:41.220703px;}
.h5{height:47.085938px;}
.ha{height:47.109375px;}
.h19{height:48.375000px;}
.h13{height:48.410156px;}
.h2c{height:52.971680px;}
.h11{height:52.998047px;}
.hf{height:53.647500px;}
.h14{height:53.662500px;}
.he{height:54.421875px;}
.h34{height:55.503491px;}
.h30{height:58.886719px;}
.h31{height:60.468750px;}
.h2e{height:61.875000px;}
.h2f{height:62.287500px;}
.hc{height:64.546875px;}
.h9{height:64.775391px;}
.h8{height:66.515625px;}
.h6{height:70.628906px;}
.h1{height:70.664062px;}
.h7{height:72.562500px;}
.h17{height:74.004654px;}
.h20{height:78.412500px;}
.h4{height:82.998047px;}
.h3{height:84.656250px;}
.h1c{height:89.647500px;}
.h28{height:89.662500px;}
.h35{height:108.772500px;}
.h22{height:112.162500px;}
.h1f{height:123.412500px;}
.h24{height:134.700000px;}
.h2d{height:139.912500px;}
.h25{height:145.575000px;}
.h27{height:145.950000px;}
.h29{height:156.825000px;}
.h23{height:157.200000px;}
.h33{height:157.905000px;}
.h1e{height:168.075000px;}
.h2b{height:170.700000px;}
.h26{height:179.325000px;}
.h16{height:196.245000px;}
.h10{height:214.200000px;}
.h12{height:250.245000px;}
.h15{height:285.855000px;}
.hd{height:892.500000px;}
.h0{height:1263.000000px;}
.w6{width:9.000000px;}
.w2{width:9.037500px;}
.we{width:18.000000px;}
.wd{width:18.037500px;}
.w16{width:70.162500px;}
.w10{width:70.875000px;}
.w20{width:73.162500px;}
.w1d{width:73.537500px;}
.w11{width:78.772500px;}
.w19{width:85.537500px;}
.w15{width:94.537500px;}
.w12{width:96.037500px;}
.w14{width:100.125000px;}
.w8{width:103.912500px;}
.w17{width:118.537500px;}
.wc{width:132.037500px;}
.w1c{width:142.200000px;}
.wa{width:168.780000px;}
.w1b{width:183.450000px;}
.w18{width:193.545000px;}
.w1a{width:226.620000px;}
.w13{width:228.450000px;}
.w1e{width:272.355000px;}
.w1f{width:289.650000px;}
.w9{width:294.450000px;}
.wb{width:351.120000px;}
.w3{width:892.499973px;}
.w1{width:892.499987px;}
.w0{width:892.500000px;}
.wf{width:1051.050000px;}
.w7{width:1262.999962px;}
.w5{width:1262.999981px;}
.w4{width:1263.000000px;}
.x0{left:0.000000px;}
.x39{left:6.750000px;}
.x23{left:7.875000px;}
.x24{left:9.375000px;}
.x42{left:12.420000px;}
.x21{left:13.500000px;}
.x2d{left:14.655000px;}
.x1f{left:18.030000px;}
.x17{left:19.500000px;}
.x16{left:21.000000px;}
.x2f{left:22.500000px;}
.x37{left:25.500000px;}
.x22{left:31.500000px;}
.x1b{left:33.000000px;}
.x33{left:35.250000px;}
.x1c{left:40.125000px;}
.x43{left:48.045000px;}
.x1d{left:49.875000px;}
.x3a{left:52.499962px;}
.x47{left:55.545000px;}
.x31{left:61.125000px;}
.x19{left:63.750000px;}
.x45{left:67.155000px;}
.x14{left:70.537462px;}
.x2b{left:73.537473px;}
.x49{left:77.280000px;}
.x15{left:79.537481px;}
.x28{left:82.537473px;}
.x26{left:91.537473px;}
.x27{left:100.537487px;}
.x12{left:106.537481px;}
.x1{left:127.537487px;}
.xf{left:132.824987px;}
.x7{left:135.074987px;}
.x3{left:145.949987px;}
.x10{left:148.949987px;}
.x11{left:154.574987px;}
.x4{left:156.824987px;}
.xd{left:169.949987px;}
.x29{left:175.949987px;}
.xa{left:181.574987px;}
.x9{left:202.574987px;}
.x18{left:210.450000px;}
.x41{left:213.075000px;}
.x2a{left:229.994987px;}
.x3e{left:247.949981px;}
.x2e{left:255.450000px;}
.x8{left:280.244987px;}
.x40{left:307.619987px;}
.x5{left:318.149987px;}
.xe{left:343.649987px;}
.x30{left:351.495000px;}
.x3b{left:368.774973px;}
.x3c{left:374.774987px;}
.x44{left:439.695000px;}
.x6{left:446.444987px;}
.x48{left:474.945000px;}
.x1a{left:504.900000px;}
.x32{left:579.945000px;}
.x3f{left:584.894987px;}
.x46{left:623.145000px;}
.x1e{left:673.695000px;}
.x34{left:680.070000px;}
.xb{left:714.674973px;}
.xc{left:720.674987px;}
.x25{left:747.300000px;}
.x2{left:756.300000px;}
.x35{left:774.600000px;}
.x36{left:844.755000px;}
.x38{left:963.300000px;}
.x20{left:1024.800000px;}
.x2c{left:1138.845000px;}
.x13{left:1147.845000px;}
.x3d{left:1156.829981px;}
@media print{
.v5{vertical-align:-61.280000pt;}
.v6{vertical-align:-60.000000pt;}
.v4{vertical-align:-57.333333pt;}
.v3{vertical-align:-40.000000pt;}
.v2{vertical-align:-21.333333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.666667pt;}
.ls33{letter-spacing:-1.493333pt;}
.ls25{letter-spacing:-0.874667pt;}
.lsb{letter-spacing:-0.458667pt;}
.ls24{letter-spacing:-0.456000pt;}
.ls29{letter-spacing:-0.416000pt;}
.lsa{letter-spacing:-0.309333pt;}
.ls26{letter-spacing:-0.304000pt;}
.ls17{letter-spacing:-0.021333pt;}
.ls15{letter-spacing:-0.016000pt;}
.ls16{letter-spacing:-0.010667pt;}
.ls18{letter-spacing:-0.005333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.005333pt;}
.ls11{letter-spacing:0.010667pt;}
.ls12{letter-spacing:0.016000pt;}
.ls3{letter-spacing:0.021333pt;}
.ls8{letter-spacing:0.053333pt;}
.ls14{letter-spacing:0.069333pt;}
.ls10{letter-spacing:0.074667pt;}
.ls2d{letter-spacing:0.106667pt;}
.ls19{letter-spacing:0.122667pt;}
.lsc{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.133333pt;}
.ls23{letter-spacing:0.152000pt;}
.ls6{letter-spacing:0.154667pt;}
.ls0{letter-spacing:0.160000pt;}
.ls2b{letter-spacing:0.176000pt;}
.ls1d{letter-spacing:0.181333pt;}
.ls1f{letter-spacing:0.266667pt;}
.ls22{letter-spacing:0.304000pt;}
.ls21{letter-spacing:0.456000pt;}
.ls28{letter-spacing:0.458667pt;}
.ls4{letter-spacing:0.464000pt;}
.ls2e{letter-spacing:0.586667pt;}
.ls27{letter-spacing:0.608000pt;}
.ls9{letter-spacing:0.618667pt;}
.lsd{letter-spacing:0.874667pt;}
.lse{letter-spacing:0.917333pt;}
.ls7{letter-spacing:1.333333pt;}
.lsf{letter-spacing:1.354667pt;}
.ls31{letter-spacing:4.053333pt;}
.ls30{letter-spacing:13.280000pt;}
.ls2c{letter-spacing:14.666667pt;}
.ls2f{letter-spacing:24.149333pt;}
.ls5{letter-spacing:30.208000pt;}
.ls20{letter-spacing:39.701333pt;}
.ls1e{letter-spacing:56.874667pt;}
.ls2a{letter-spacing:80.000000pt;}
.ls1c{letter-spacing:94.208000pt;}
.ls1b{letter-spacing:115.541333pt;}
.ls1a{letter-spacing:136.874667pt;}
.ls32{letter-spacing:272.133333pt;}
.ws1b{word-spacing:-53.333333pt;}
.ws6{word-spacing:-16.917333pt;}
.ws5{word-spacing:-16.874667pt;}
.ws2{word-spacing:-16.021333pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1a{word-spacing:-15.978667pt;}
.ws17{word-spacing:-15.584000pt;}
.wse{word-spacing:-15.541333pt;}
.ws4{word-spacing:-14.666667pt;}
.ws19{word-spacing:-13.333333pt;}
.wsb{word-spacing:-12.021333pt;}
.ws7{word-spacing:-12.016000pt;}
.wsa{word-spacing:-12.010667pt;}
.ws8{word-spacing:-12.005333pt;}
.ws1{word-spacing:-12.000000pt;}
.ws18{word-spacing:-11.994667pt;}
.wsc{word-spacing:-11.989333pt;}
.wsd{word-spacing:-11.984000pt;}
.ws9{word-spacing:-11.978667pt;}
.ws1c{word-spacing:-11.840000pt;}
.ws16{word-spacing:-9.274667pt;}
.ws11{word-spacing:-9.122667pt;}
.ws13{word-spacing:-8.970667pt;}
.wsf{word-spacing:-8.818667pt;}
.ws10{word-spacing:-8.666667pt;}
.ws15{word-spacing:-8.362667pt;}
.ws12{word-spacing:-8.210667pt;}
.ws14{word-spacing:-7.792000pt;}
.ws3{word-spacing:0.000000pt;}
._5{margin-left:-2.928000pt;}
._4{margin-left:-1.898667pt;}
._0{margin-left:-0.896000pt;}
._1{width:0.896000pt;}
._2{width:2.122667pt;}
._9{width:3.264000pt;}
._e{width:4.288000pt;}
._7{width:5.322667pt;}
._8{width:6.629333pt;}
._f{width:7.770667pt;}
._10{width:8.688000pt;}
._13{width:9.936000pt;}
._1a{width:11.008000pt;}
._b{width:12.746667pt;}
._a{width:13.770667pt;}
._11{width:14.720000pt;}
._12{width:15.669333pt;}
._16{width:16.992000pt;}
._18{width:17.920000pt;}
._d{width:19.328000pt;}
._c{width:20.352000pt;}
._17{width:22.512000pt;}
._14{width:30.672000pt;}
._15{width:46.656000pt;}
._19{width:58.592000pt;}
._6{width:171.896000pt;}
._3{width:752.400000pt;}
.fs6{font-size:34.666667pt;}
.fs5{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yca{bottom:1.986667pt;}
.ybf{bottom:2.000000pt;}
.yf1{bottom:2.013333pt;}
.yb9{bottom:2.333333pt;}
.y20a{bottom:2.653333pt;}
.y1a2{bottom:2.666667pt;}
.y1c6{bottom:3.000000pt;}
.y20c{bottom:3.013333pt;}
.y3{bottom:3.333333pt;}
.y9b{bottom:4.333333pt;}
.y6d{bottom:4.653333pt;}
.y7a{bottom:4.666667pt;}
.yce{bottom:6.986667pt;}
.ybd{bottom:7.000000pt;}
.y13b{bottom:7.013333pt;}
.y1c2{bottom:9.666667pt;}
.y104{bottom:11.666667pt;}
.yef{bottom:11.680000pt;}
.y14f{bottom:11.700000pt;}
.yc6{bottom:11.986667pt;}
.ybb{bottom:12.000000pt;}
.y13c{bottom:12.013333pt;}
.y116{bottom:12.026667pt;}
.y12f{bottom:12.040000pt;}
.y8b{bottom:12.333333pt;}
.y6a{bottom:12.693333pt;}
.y205{bottom:14.986667pt;}
.y1fa{bottom:16.333333pt;}
.y1b3{bottom:16.373333pt;}
.y209{bottom:16.653333pt;}
.y1a1{bottom:16.666667pt;}
.y1bd{bottom:16.673333pt;}
.yf4{bottom:16.680000pt;}
.ycd{bottom:16.986667pt;}
.ybc{bottom:17.000000pt;}
.y127{bottom:17.026667pt;}
.y79{bottom:20.333333pt;}
.y6b{bottom:20.360000pt;}
.y88{bottom:20.666667pt;}
.ydb{bottom:21.666667pt;}
.y152{bottom:21.693333pt;}
.y14e{bottom:21.700000pt;}
.yc5{bottom:21.986667pt;}
.ybe{bottom:22.000000pt;}
.y139{bottom:22.013333pt;}
.y115{bottom:22.026667pt;}
.y12e{bottom:22.040000pt;}
.y1c1{bottom:23.333333pt;}
.y1aa{bottom:23.360000pt;}
.y101{bottom:26.666667pt;}
.yf3{bottom:26.680000pt;}
.y126{bottom:26.706667pt;}
.yc8{bottom:26.986667pt;}
.ye5{bottom:27.000000pt;}
.y137{bottom:27.040000pt;}
.y8a{bottom:28.333333pt;}
.y69{bottom:28.360000pt;}
.y204{bottom:28.653333pt;}
.y208{bottom:30.320000pt;}
.y1bf{bottom:30.333333pt;}
.y1bc{bottom:30.366667pt;}
.y1b2{bottom:30.373333pt;}
.yda{bottom:31.666667pt;}
.yed{bottom:31.680000pt;}
.y151{bottom:31.693333pt;}
.y14d{bottom:31.700000pt;}
.y12a{bottom:31.706667pt;}
.yc2{bottom:31.986667pt;}
.yfa{bottom:32.000000pt;}
.y114{bottom:32.026667pt;}
.y11f{bottom:32.040000pt;}
.y9a{bottom:36.040000pt;}
.y78{bottom:36.333333pt;}
.y6c{bottom:36.360000pt;}
.y87{bottom:36.373333pt;}
.ye4{bottom:36.666667pt;}
.yfd{bottom:36.693333pt;}
.yc3{bottom:36.986667pt;}
.yff{bottom:37.000000pt;}
.y108{bottom:37.040000pt;}
.y1c0{bottom:37.333333pt;}
.ye7{bottom:41.666667pt;}
.yee{bottom:41.680000pt;}
.yd9{bottom:41.693333pt;}
.y14c{bottom:41.700000pt;}
.y129{bottom:41.706667pt;}
.yc1{bottom:41.986667pt;}
.y133{bottom:42.000000pt;}
.y10e{bottom:42.026667pt;}
.y10a{bottom:42.040000pt;}
.y203{bottom:42.320000pt;}
.y207{bottom:43.986667pt;}
.y1c3{bottom:44.000000pt;}
.y1b1{bottom:44.026667pt;}
.y1c5{bottom:44.360000pt;}
.y1b8{bottom:44.366667pt;}
.ye0{bottom:46.666667pt;}
.yf2{bottom:46.680000pt;}
.yf7{bottom:46.693333pt;}
.y146{bottom:46.700000pt;}
.y125{bottom:46.706667pt;}
.yc7{bottom:47.026667pt;}
.y118{bottom:47.040000pt;}
.y1b6{bottom:51.033333pt;}
.y1a9{bottom:51.040000pt;}
.ye1{bottom:51.666667pt;}
.yd8{bottom:51.693333pt;}
.y142{bottom:51.700000pt;}
.y103{bottom:51.706667pt;}
.y77{bottom:52.026667pt;}
.y109{bottom:52.040000pt;}
.y93{bottom:52.333333pt;}
.y86{bottom:52.373333pt;}
.y2{bottom:55.366667pt;}
.ydf{bottom:56.666667pt;}
.ydd{bottom:56.693333pt;}
.y145{bottom:56.700000pt;}
.y107{bottom:56.706667pt;}
.ycc{bottom:57.026667pt;}
.y11b{bottom:57.040000pt;}
.y206{bottom:58.026667pt;}
.y1b7{bottom:58.033333pt;}
.y1b0{bottom:58.040000pt;}
.y1f9{bottom:58.666667pt;}
.y1{bottom:58.700000pt;}
.y1fe{bottom:60.333333pt;}
.ye6{bottom:61.666667pt;}
.yf0{bottom:61.680000pt;}
.yd2{bottom:61.693333pt;}
.y13f{bottom:61.700000pt;}
.y102{bottom:61.706667pt;}
.yc4{bottom:62.026667pt;}
.y11e{bottom:62.040000pt;}
.y1a5{bottom:64.706667pt;}
.y1b5{bottom:65.033333pt;}
.ye3{bottom:66.666667pt;}
.ycb{bottom:66.693333pt;}
.y140{bottom:66.700000pt;}
.y13a{bottom:66.706667pt;}
.y10f{bottom:67.026667pt;}
.y11a{bottom:67.040000pt;}
.y76{bottom:68.026667pt;}
.y85{bottom:68.040000pt;}
.y202{bottom:71.026667pt;}
.yc9{bottom:71.693333pt;}
.y13e{bottom:71.700000pt;}
.yeb{bottom:71.706667pt;}
.y10d{bottom:72.026667pt;}
.y11d{bottom:72.040000pt;}
.y1f8{bottom:72.693333pt;}
.y1fd{bottom:74.360000pt;}
.yd0{bottom:76.693333pt;}
.y144{bottom:76.700000pt;}
.ye2{bottom:76.706667pt;}
.y119{bottom:77.040000pt;}
.y1a4{bottom:78.706667pt;}
.yd1{bottom:81.693333pt;}
.y141{bottom:81.700000pt;}
.yea{bottom:81.706667pt;}
.y113{bottom:82.026667pt;}
.y11c{bottom:82.040000pt;}
.y99{bottom:83.693333pt;}
.y75{bottom:84.026667pt;}
.y84{bottom:84.040000pt;}
.y201{bottom:84.693333pt;}
.y1af{bottom:85.373333pt;}
.y200{bottom:85.693333pt;}
.y1bb{bottom:85.700000pt;}
.y1f7{bottom:86.360000pt;}
.ydc{bottom:86.693333pt;}
.y106{bottom:86.706667pt;}
.y124{bottom:86.733333pt;}
.y143{bottom:86.740000pt;}
.y120{bottom:87.040000pt;}
.y1fc{bottom:88.026667pt;}
.yd7{bottom:91.693333pt;}
.ye9{bottom:91.706667pt;}
.y112{bottom:91.720000pt;}
.y128{bottom:91.733333pt;}
.y14b{bottom:91.740000pt;}
.y1a8{bottom:92.360000pt;}
.yf6{bottom:96.693333pt;}
.y136{bottom:96.706667pt;}
.y123{bottom:96.733333pt;}
.y56{bottom:97.700000pt;}
.y1ba{bottom:99.366667pt;}
.y1ae{bottom:99.373333pt;}
.y74{bottom:99.693333pt;}
.y98{bottom:99.733333pt;}
.y83{bottom:100.026667pt;}
.y1f6{bottom:101.026667pt;}
.yd6{bottom:101.693333pt;}
.ye8{bottom:101.706667pt;}
.y111{bottom:101.720000pt;}
.y12d{bottom:101.733333pt;}
.y14a{bottom:101.740000pt;}
.y1fb{bottom:102.026667pt;}
.y1a7{bottom:106.040000pt;}
.yfc{bottom:106.693333pt;}
.y122{bottom:106.733333pt;}
.y240{bottom:107.700000pt;}
.y66{bottom:108.033333pt;}
.y19d{bottom:111.033333pt;}
.y1ef{bottom:111.366667pt;}
.y149{bottom:111.406667pt;}
.yd5{bottom:111.693333pt;}
.y110{bottom:111.720000pt;}
.y12c{bottom:111.733333pt;}
.y1ad{bottom:113.040000pt;}
.y1b9{bottom:113.366667pt;}
.yb5{bottom:113.700000pt;}
.y55{bottom:114.366667pt;}
.y1f5{bottom:114.693333pt;}
.y97{bottom:115.400000pt;}
.y73{bottom:115.693333pt;}
.y82{bottom:115.733333pt;}
.yfb{bottom:116.733333pt;}
.y1f1{bottom:119.700000pt;}
.y1a6{bottom:120.040000pt;}
.yd4{bottom:121.386667pt;}
.y12b{bottom:121.400000pt;}
.y148{bottom:121.406667pt;}
.y132{bottom:121.693333pt;}
.yf9{bottom:121.733333pt;}
.y16f{bottom:123.033333pt;}
.y172{bottom:123.366667pt;}
.y13d{bottom:125.366667pt;}
.y26d{bottom:126.366667pt;}
.y1db{bottom:127.033333pt;}
.y1ac{bottom:127.040000pt;}
.y1b4{bottom:128.033333pt;}
.y1f4{bottom:128.360000pt;}
.y1f3{bottom:129.360000pt;}
.y59{bottom:129.700000pt;}
.y187{bottom:131.033333pt;}
.y54{bottom:131.366667pt;}
.y72{bottom:131.386667pt;}
.y147{bottom:131.393333pt;}
.y96{bottom:131.400000pt;}
.y92{bottom:131.693333pt;}
.y81{bottom:131.733333pt;}
.y21c{bottom:137.693333pt;}
.y23f{bottom:138.360000pt;}
.y1ab{bottom:140.733333pt;}
.yd3{bottom:141.386667pt;}
.yf8{bottom:141.400000pt;}
.y26c{bottom:141.706667pt;}
.y131{bottom:141.733333pt;}
.y65{bottom:145.040000pt;}
.y71{bottom:147.386667pt;}
.y80{bottom:147.400000pt;}
.y19c{bottom:147.706667pt;}
.y53{bottom:148.040000pt;}
.yb4{bottom:150.360000pt;}
.y134{bottom:151.400000pt;}
.y171{bottom:153.066667pt;}
.y52{bottom:153.360000pt;}
.y23e{bottom:153.706667pt;}
.y26b{bottom:157.066667pt;}
.y16e{bottom:159.733333pt;}
.y39{bottom:162.066667pt;}
.y95{bottom:163.066667pt;}
.y70{bottom:163.386667pt;}
.y7f{bottom:163.400000pt;}
.y1da{bottom:163.733333pt;}
.y158{bottom:165.066667pt;}
.y58{bottom:166.400000pt;}
.y186{bottom:167.733333pt;}
.y23d{bottom:169.066667pt;}
.y26a{bottom:172.400000pt;}
.y21b{bottom:174.733333pt;}
.y105{bottom:175.066667pt;}
.y7b{bottom:176.400000pt;}
.y6f{bottom:179.053333pt;}
.y91{bottom:179.386667pt;}
.y7e{bottom:179.400000pt;}
.y64{bottom:181.733333pt;}
.y157{bottom:182.066667pt;}
.y51{bottom:183.400000pt;}
.y19b{bottom:184.400000pt;}
.y1ee{bottom:185.066667pt;}
.yb3{bottom:187.400000pt;}
.y269{bottom:187.733333pt;}
.yb7{bottom:188.400000pt;}
.y9c{bottom:189.733333pt;}
.y90{bottom:195.053333pt;}
.y7d{bottom:195.106667pt;}
.y16d{bottom:196.400000pt;}
.y38{bottom:198.733333pt;}
.y23c{bottom:199.733333pt;}
.y1d9{bottom:200.733333pt;}
.y94{bottom:201.733333pt;}
.y268{bottom:203.066667pt;}
.y57{bottom:203.400000pt;}
.y156{bottom:204.066667pt;}
.y185{bottom:204.400000pt;}
.y121{bottom:205.066667pt;}
.y8f{bottom:211.053333pt;}
.y7c{bottom:211.106667pt;}
.y21a{bottom:211.400000pt;}
.y23b{bottom:215.066667pt;}
.yb6{bottom:216.066667pt;}
.y63{bottom:218.400000pt;}
.y19a{bottom:221.400000pt;}
.y1ed{bottom:221.733333pt;}
.yb2{bottom:224.066667pt;}
.yec{bottom:224.426667pt;}
.y8e{bottom:226.760000pt;}
.y23a{bottom:230.400000pt;}
.y16c{bottom:233.400000pt;}
.y267{bottom:233.733333pt;}
.y155{bottom:234.066667pt;}
.y37{bottom:235.733333pt;}
.y1d8{bottom:237.400000pt;}
.y50{bottom:240.066667pt;}
.y184{bottom:241.400000pt;}
.y8d{bottom:242.760000pt;}
.y239{bottom:245.733333pt;}
.y219{bottom:248.400000pt;}
.y266{bottom:249.066667pt;}
.y1a3{bottom:253.066667pt;}
.y62{bottom:255.400000pt;}
.y199{bottom:258.066667pt;}
.y1ec{bottom:258.400000pt;}
.yb1{bottom:261.066667pt;}
.y265{bottom:264.400000pt;}
.y138{bottom:265.426667pt;}
.y16b{bottom:270.093333pt;}
.y36{bottom:272.440000pt;}
.y1d7{bottom:274.440000pt;}
.y238{bottom:276.426667pt;}
.y4f{bottom:277.106667pt;}
.y183{bottom:278.106667pt;}
.y264{bottom:279.760000pt;}
.y218{bottom:285.093333pt;}
.y237{bottom:291.760000pt;}
.y61{bottom:292.106667pt;}
.yde{bottom:294.800000pt;}
.y198{bottom:295.106667pt;}
.y1eb{bottom:295.440000pt;}
.yb0{bottom:297.760000pt;}
.y16a{bottom:307.106667pt;}
.y35{bottom:309.093333pt;}
.y263{bottom:310.440000pt;}
.y1d6{bottom:311.106667pt;}
.y4e{bottom:313.773333pt;}
.y182{bottom:315.093333pt;}
.y100{bottom:315.466667pt;}
.y217{bottom:321.760000pt;}
.y236{bottom:322.440000pt;}
.y262{bottom:325.773333pt;}
.y60{bottom:329.106667pt;}
.y197{bottom:331.773333pt;}
.y1ea{bottom:332.106667pt;}
.yaf{bottom:334.440000pt;}
.y117{bottom:335.133333pt;}
.y235{bottom:337.773333pt;}
.y261{bottom:341.106667pt;}
.y1e{bottom:343.773333pt;}
.y135{bottom:345.800000pt;}
.y34{bottom:346.106667pt;}
.y1d5{bottom:347.773333pt;}
.y4d{bottom:350.440000pt;}
.y181{bottom:351.760000pt;}
.y234{bottom:353.106667pt;}
.y260{bottom:356.440000pt;}
.y216{bottom:358.773333pt;}
.y5f{bottom:365.773333pt;}
.y1d{bottom:366.440000pt;}
.y196{bottom:368.440000pt;}
.y1e9{bottom:369.106667pt;}
.yae{bottom:371.440000pt;}
.y25f{bottom:371.773333pt;}
.y8c{bottom:376.840000pt;}
.y169{bottom:380.440000pt;}
.y33{bottom:382.773333pt;}
.y233{bottom:383.800000pt;}
.y1d4{bottom:384.800000pt;}
.yfe{bottom:385.840000pt;}
.y25e{bottom:387.133333pt;}
.y4c{bottom:387.466667pt;}
.y180{bottom:388.466667pt;}
.y215{bottom:395.466667pt;}
.y232{bottom:399.133333pt;}
.y6e{bottom:399.506667pt;}
.y5e{bottom:402.466667pt;}
.ycf{bottom:405.173333pt;}
.y195{bottom:405.466667pt;}
.y1e8{bottom:405.800000pt;}
.y1a0{bottom:406.133333pt;}
.yad{bottom:408.133333pt;}
.y1c{bottom:408.800000pt;}
.y231{bottom:414.466667pt;}
.y168{bottom:417.466667pt;}
.y25d{bottom:417.800000pt;}
.y1d3{bottom:421.466667pt;}
.y4b{bottom:424.133333pt;}
.y32{bottom:426.466667pt;}
.y1b{bottom:427.133333pt;}
.y230{bottom:429.800000pt;}
.y214{bottom:432.466667pt;}
.y17f{bottom:433.133333pt;}
.y10c{bottom:435.506667pt;}
.y5d{bottom:439.466667pt;}
.y194{bottom:442.133333pt;}
.y1e7{bottom:442.466667pt;}
.yac{bottom:445.133333pt;}
.y1a{bottom:445.466667pt;}
.y25c{bottom:448.466667pt;}
.y19f{bottom:450.800000pt;}
.y167{bottom:454.133333pt;}
.y1d2{bottom:458.466667pt;}
.y22f{bottom:460.466667pt;}
.y4a{bottom:461.133333pt;}
.y17e{bottom:462.800000pt;}
.y19{bottom:463.800000pt;}
.y19e{bottom:465.133333pt;}
.y154{bottom:466.466667pt;}
.y1f0{bottom:473.800000pt;}
.y22e{bottom:475.800000pt;}
.y5c{bottom:476.133333pt;}
.y130{bottom:476.200000pt;}
.y31{bottom:477.133333pt;}
.y193{bottom:479.133333pt;}
.y1e6{bottom:479.466667pt;}
.yab{bottom:481.800000pt;}
.y18{bottom:482.466667pt;}
.yf5{bottom:486.200000pt;}
.y153{bottom:489.866667pt;}
.y166{bottom:491.133333pt;}
.y25b{bottom:494.466667pt;}
.y1d1{bottom:495.133333pt;}
.y49{bottom:497.840000pt;}
.y17{bottom:500.840000pt;}
.y30{bottom:502.506667pt;}
.y150{bottom:506.200000pt;}
.y22d{bottom:506.506667pt;}
.y25a{bottom:509.840000pt;}
.y192{bottom:515.840000pt;}
.y1e5{bottom:516.173333pt;}
.yaa{bottom:518.506667pt;}
.y16{bottom:519.173333pt;}
.y5b{bottom:519.840000pt;}
.y22c{bottom:521.840000pt;}
.y213{bottom:524.840000pt;}
.y259{bottom:525.173333pt;}
.y165{bottom:527.840000pt;}
.y1d0{bottom:531.840000pt;}
.y48{bottom:534.506667pt;}
.y22b{bottom:537.173333pt;}
.y258{bottom:540.506667pt;}
.y15{bottom:545.506667pt;}
.y5a{bottom:547.506667pt;}
.y2f{bottom:547.840000pt;}
.y191{bottom:552.506667pt;}
.y1e4{bottom:553.173333pt;}
.yc0{bottom:555.240000pt;}
.ya9{bottom:555.506667pt;}
.y257{bottom:555.840000pt;}
.y10b{bottom:555.906667pt;}
.y212{bottom:561.506667pt;}
.y164{bottom:564.506667pt;}
.y22a{bottom:567.840000pt;}
.y1cf{bottom:568.840000pt;}
.y256{bottom:571.173333pt;}
.y47{bottom:571.506667pt;}
.y2e{bottom:573.173333pt;}
.y229{bottom:583.173333pt;}
.y255{bottom:586.506667pt;}
.y190{bottom:589.506667pt;}
.y1e3{bottom:589.840000pt;}
.y68{bottom:590.573333pt;}
.ya8{bottom:592.173333pt;}
.y2d{bottom:598.173333pt;}
.y211{bottom:598.506667pt;}
.y163{bottom:601.506667pt;}
.y254{bottom:601.840000pt;}
.y1ce{bottom:605.506667pt;}
.y14{bottom:606.173333pt;}
.y46{bottom:608.173333pt;}
.y228{bottom:613.866667pt;}
.y253{bottom:617.200000pt;}
.y2c{bottom:623.533333pt;}
.y13{bottom:624.866667pt;}
.y18f{bottom:626.200000pt;}
.y1e2{bottom:626.533333pt;}
.ya7{bottom:628.866667pt;}
.y227{bottom:629.200000pt;}
.y89{bottom:631.600000pt;}
.y252{bottom:632.533333pt;}
.y210{bottom:635.200000pt;}
.yba{bottom:636.266667pt;}
.y162{bottom:638.200000pt;}
.y1cd{bottom:642.200000pt;}
.y226{bottom:644.533333pt;}
.y45{bottom:644.866667pt;}
.y251{bottom:647.533333pt;}
.y2b{bottom:648.866667pt;}
.y12{bottom:659.200000pt;}
.y225{bottom:659.866667pt;}
.y18e{bottom:662.866667pt;}
.y1e1{bottom:663.533333pt;}
.y17d{bottom:664.200000pt;}
.ya6{bottom:665.866667pt;}
.yb8{bottom:667.600000pt;}
.y67{bottom:668.600000pt;}
.y20f{bottom:671.866667pt;}
.y2a{bottom:674.200000pt;}
.y161{bottom:674.866667pt;}
.y224{bottom:675.200000pt;}
.y250{bottom:678.200000pt;}
.y1cc{bottom:679.200000pt;}
.y44{bottom:681.866667pt;}
.y11{bottom:682.866667pt;}
.y223{bottom:690.533333pt;}
.y24f{bottom:693.533333pt;}
.y29{bottom:699.533333pt;}
.y18d{bottom:699.866667pt;}
.y1e0{bottom:700.200000pt;}
.y17c{bottom:701.200000pt;}
.ya5{bottom:702.533333pt;}
.y222{bottom:705.866667pt;}
.y20e{bottom:708.866667pt;}
.y160{bottom:711.866667pt;}
.y1cb{bottom:715.866667pt;}
.y10{bottom:717.200000pt;}
.y43{bottom:718.533333pt;}
.y221{bottom:721.200000pt;}
.y24e{bottom:724.200000pt;}
.y28{bottom:724.866667pt;}
.y1df{bottom:725.866667pt;}
.y170{bottom:730.960000pt;}
.y18c{bottom:736.573333pt;}
.y17b{bottom:737.893333pt;}
.ya4{bottom:739.573333pt;}
.y20d{bottom:745.573333pt;}
.yf{bottom:747.226667pt;}
.y15f{bottom:748.573333pt;}
.y1de{bottom:748.893333pt;}
.y27{bottom:750.226667pt;}
.y220{bottom:751.893333pt;}
.y1ca{bottom:752.893333pt;}
.y24d{bottom:754.893333pt;}
.y42{bottom:755.560000pt;}
.y20b{bottom:761.226667pt;}
.y21f{bottom:767.240000pt;}
.y24c{bottom:770.240000pt;}
.y1dd{bottom:771.893333pt;}
.y18b{bottom:773.560000pt;}
.y17a{bottom:774.893333pt;}
.y26{bottom:775.573333pt;}
.ya3{bottom:776.240000pt;}
.y21e{bottom:782.560000pt;}
.ye{bottom:784.560000pt;}
.y15e{bottom:785.560000pt;}
.y1c9{bottom:789.560000pt;}
.y1ff{bottom:789.573333pt;}
.y41{bottom:792.226667pt;}
.y1dc{bottom:794.893333pt;}
.y25{bottom:800.893333pt;}
.y21d{bottom:804.893333pt;}
.yd{bottom:805.893333pt;}
.y18a{bottom:810.226667pt;}
.y179{bottom:811.560000pt;}
.ya2{bottom:812.893333pt;}
.y24b{bottom:816.226667pt;}
.y15d{bottom:822.226667pt;}
.y24{bottom:826.226667pt;}
.y40{bottom:828.893333pt;}
.y24a{bottom:831.560000pt;}
.yc{bottom:835.560000pt;}
.y189{bottom:846.933333pt;}
.y178{bottom:848.266667pt;}
.ya1{bottom:849.933333pt;}
.y23{bottom:851.266667pt;}
.y15c{bottom:858.933333pt;}
.y249{bottom:862.266667pt;}
.y1c8{bottom:863.266667pt;}
.y3f{bottom:865.933333pt;}
.yb{bottom:866.266667pt;}
.y22{bottom:876.600000pt;}
.y248{bottom:877.600000pt;}
.y188{bottom:878.600000pt;}
.ya{bottom:884.600000pt;}
.y177{bottom:885.266667pt;}
.ya0{bottom:886.600000pt;}
.y1f2{bottom:886.933333pt;}
.y247{bottom:892.933333pt;}
.y15b{bottom:895.933333pt;}
.y1c7{bottom:899.933333pt;}
.y3e{bottom:902.600000pt;}
.y9{bottom:902.933333pt;}
.y246{bottom:908.266667pt;}
.y1c4{bottom:916.266667pt;}
.y176{bottom:921.933333pt;}
.y9f{bottom:923.600000pt;}
.y21{bottom:925.933333pt;}
.y8{bottom:929.600000pt;}
.y15a{bottom:932.600000pt;}
.y245{bottom:938.933333pt;}
.y3d{bottom:939.600000pt;}
.y244{bottom:954.266667pt;}
.y7{bottom:955.960000pt;}
.y175{bottom:958.960000pt;}
.y9e{bottom:960.293333pt;}
.y159{bottom:969.626667pt;}
.y1be{bottom:972.293333pt;}
.y6{bottom:974.293333pt;}
.y3c{bottom:976.293333pt;}
.y20{bottom:978.293333pt;}
.y243{bottom:984.960000pt;}
.y5{bottom:992.626667pt;}
.y9d{bottom:996.960000pt;}
.y242{bottom:1000.293333pt;}
.y174{bottom:1002.293333pt;}
.y1f{bottom:1010.293333pt;}
.y4{bottom:1010.960000pt;}
.y3a{bottom:1012.960000pt;}
.y241{bottom:1015.626667pt;}
.y3b{bottom:1018.293333pt;}
.y173{bottom:1060.293333pt;}
.h18{height:12.366667pt;}
.h32{height:13.666667pt;}
.h2{height:18.333333pt;}
.h2a{height:27.666667pt;}
.h1a{height:30.000000pt;}
.h21{height:31.078125pt;}
.h1d{height:34.023438pt;}
.h1b{height:34.937500pt;}
.hb{height:36.640625pt;}
.h5{height:41.854167pt;}
.ha{height:41.875000pt;}
.h19{height:43.000000pt;}
.h13{height:43.031250pt;}
.h2c{height:47.085938pt;}
.h11{height:47.109375pt;}
.hf{height:47.686667pt;}
.h14{height:47.700000pt;}
.he{height:48.375000pt;}
.h34{height:49.336436pt;}
.h30{height:52.343750pt;}
.h31{height:53.750000pt;}
.h2e{height:55.000000pt;}
.h2f{height:55.366667pt;}
.hc{height:57.375000pt;}
.h9{height:57.578125pt;}
.h8{height:59.125000pt;}
.h6{height:62.781250pt;}
.h1{height:62.812500pt;}
.h7{height:64.500000pt;}
.h17{height:65.781915pt;}
.h20{height:69.700000pt;}
.h4{height:73.776042pt;}
.h3{height:75.250000pt;}
.h1c{height:79.686667pt;}
.h28{height:79.700000pt;}
.h35{height:96.686667pt;}
.h22{height:99.700000pt;}
.h1f{height:109.700000pt;}
.h24{height:119.733333pt;}
.h2d{height:124.366667pt;}
.h25{height:129.400000pt;}
.h27{height:129.733333pt;}
.h29{height:139.400000pt;}
.h23{height:139.733333pt;}
.h33{height:140.360000pt;}
.h1e{height:149.400000pt;}
.h2b{height:151.733333pt;}
.h26{height:159.400000pt;}
.h16{height:174.440000pt;}
.h10{height:190.400000pt;}
.h12{height:222.440000pt;}
.h15{height:254.093333pt;}
.hd{height:793.333333pt;}
.h0{height:1122.666667pt;}
.w6{width:8.000000pt;}
.w2{width:8.033333pt;}
.we{width:16.000000pt;}
.wd{width:16.033333pt;}
.w16{width:62.366667pt;}
.w10{width:63.000000pt;}
.w20{width:65.033333pt;}
.w1d{width:65.366667pt;}
.w11{width:70.020000pt;}
.w19{width:76.033333pt;}
.w15{width:84.033333pt;}
.w12{width:85.366667pt;}
.w14{width:89.000000pt;}
.w8{width:92.366667pt;}
.w17{width:105.366667pt;}
.wc{width:117.366667pt;}
.w1c{width:126.400000pt;}
.wa{width:150.026667pt;}
.w1b{width:163.066667pt;}
.w18{width:172.040000pt;}
.w1a{width:201.440000pt;}
.w13{width:203.066667pt;}
.w1e{width:242.093333pt;}
.w1f{width:257.466667pt;}
.w9{width:261.733333pt;}
.wb{width:312.106667pt;}
.w3{width:793.333310pt;}
.w1{width:793.333322pt;}
.w0{width:793.333333pt;}
.wf{width:934.266667pt;}
.w7{width:1122.666633pt;}
.w5{width:1122.666650pt;}
.w4{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x39{left:6.000000pt;}
.x23{left:7.000000pt;}
.x24{left:8.333333pt;}
.x42{left:11.040000pt;}
.x21{left:12.000000pt;}
.x2d{left:13.026667pt;}
.x1f{left:16.026667pt;}
.x17{left:17.333333pt;}
.x16{left:18.666667pt;}
.x2f{left:20.000000pt;}
.x37{left:22.666667pt;}
.x22{left:28.000000pt;}
.x1b{left:29.333333pt;}
.x33{left:31.333333pt;}
.x1c{left:35.666667pt;}
.x43{left:42.706667pt;}
.x1d{left:44.333333pt;}
.x3a{left:46.666633pt;}
.x47{left:49.373333pt;}
.x31{left:54.333333pt;}
.x19{left:56.666667pt;}
.x45{left:59.693333pt;}
.x14{left:62.699967pt;}
.x2b{left:65.366643pt;}
.x49{left:68.693333pt;}
.x15{left:70.699983pt;}
.x28{left:73.366643pt;}
.x26{left:81.366643pt;}
.x27{left:89.366655pt;}
.x12{left:94.699983pt;}
.x1{left:113.366655pt;}
.xf{left:118.066655pt;}
.x7{left:120.066655pt;}
.x3{left:129.733322pt;}
.x10{left:132.399988pt;}
.x11{left:137.399988pt;}
.x4{left:139.399988pt;}
.xd{left:151.066655pt;}
.x29{left:156.399988pt;}
.xa{left:161.399988pt;}
.x9{left:180.066655pt;}
.x18{left:187.066667pt;}
.x41{left:189.400000pt;}
.x2a{left:204.439988pt;}
.x3e{left:220.399983pt;}
.x2e{left:227.066667pt;}
.x8{left:249.106655pt;}
.x40{left:273.439988pt;}
.x5{left:282.799988pt;}
.xe{left:305.466655pt;}
.x30{left:312.440000pt;}
.x3b{left:327.799976pt;}
.x3c{left:333.133322pt;}
.x44{left:390.840000pt;}
.x6{left:396.839988pt;}
.x48{left:422.173333pt;}
.x1a{left:448.800000pt;}
.x32{left:515.506667pt;}
.x3f{left:519.906655pt;}
.x46{left:553.906667pt;}
.x1e{left:598.840000pt;}
.x34{left:604.506667pt;}
.xb{left:635.266643pt;}
.xc{left:640.599988pt;}
.x25{left:664.266667pt;}
.x2{left:672.266667pt;}
.x35{left:688.533333pt;}
.x36{left:750.893333pt;}
.x38{left:856.266667pt;}
.x20{left:910.933333pt;}
.x2c{left:1012.306667pt;}
.x13{left:1020.306667pt;}
.x3d{left:1028.293317pt;}
}




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