
    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_a9650a952776cfe651e7d1da.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958000;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_61cd8ee9cf7a7372ea46136a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922439;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_291793d8bb0734c0f95e9bdb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.922000;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_7db8503e14535ca2e1648908.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.050000;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_18fa2fc3b21d63a0522ced39.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.878906;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_0a23a63607c7183fc84462bb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.878000;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_ea4c667729116b7acc10251c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910023;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_1cbef2d5a835d04bb93ca34c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.693000;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_7435be8974a901902f202ad1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.700000;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_7d921115bf20e8c3cc13650f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.882324;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_f85d9d01ecdb47565b013c90.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v4{vertical-align:-18.900000px;}
.v1{vertical-align:-16.800000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.930000px;}
.v2{vertical-align:25.200000px;}
.ls2{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.054000px;}
.ls13{letter-spacing:0.067200px;}
.ls14{letter-spacing:0.081600px;}
.ls1a{letter-spacing:0.162000px;}
.ls17{letter-spacing:0.300000px;}
.ls9{letter-spacing:0.420000px;}
.lsb{letter-spacing:0.540000px;}
.ls6{letter-spacing:0.600000px;}
.ls7{letter-spacing:0.660000px;}
.lsc{letter-spacing:0.720000px;}
.lse{letter-spacing:0.900000px;}
.lsd{letter-spacing:1.200000px;}
.ls0{letter-spacing:1.425000px;}
.ls19{letter-spacing:1.512000px;}
.ls5{letter-spacing:3.180000px;}
.ls8{letter-spacing:4.080000px;}
.lsa{letter-spacing:4.620000px;}
.ls18{letter-spacing:4.752000px;}
.ls4{letter-spacing:7.980000px;}
.ls1{letter-spacing:71.999400px;}
.lsf{letter-spacing:183.330000px;}
.ls12{letter-spacing:207.306000px;}
.ls10{letter-spacing:213.300000px;}
.ls11{letter-spacing:225.288000px;}
.ls16{letter-spacing:376.713600px;}
.ls3{letter-spacing:2113.440000px;}
.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;}
}
.ws5{word-spacing:-60.000000px;}
.ws16{word-spacing:-54.000000px;}
.ws15{word-spacing:-18.252000px;}
.ws7{word-spacing:-16.200000px;}
.ws6{word-spacing:-15.600000px;}
.ws13{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.012000px;}
.ws17{word-spacing:-14.040000px;}
.ws18{word-spacing:-13.662000px;}
.ws14{word-spacing:-13.500000px;}
.ws9{word-spacing:-9.757800px;}
.ws2{word-spacing:-8.673600px;}
.ws0{word-spacing:-1.668000px;}
.ws1{word-spacing:-1.500000px;}
.ws4{word-spacing:0.000000px;}
.ws3{word-spacing:58.987800px;}
.wsf{word-spacing:69.552000px;}
.wse{word-spacing:80.568000px;}
.wsd{word-spacing:164.052000px;}
.ws8{word-spacing:187.434000px;}
.wsc{word-spacing:289.548000px;}
.wsa{word-spacing:352.242000px;}
.ws10{word-spacing:813.996000px;}
.ws11{word-spacing:1029.996000px;}
.ws12{word-spacing:2066.760000px;}
._41{margin-left:-2896.020000px;}
._21{margin-left:-1517.778000px;}
._0{margin-left:-11.676000px;}
._1a{margin-left:-7.320000px;}
._15{margin-left:-5.760000px;}
._e{margin-left:-4.440000px;}
._17{margin-left:-3.420000px;}
._4{margin-left:-2.400000px;}
._1{margin-left:-1.380000px;}
._2{width:1.200000px;}
._12{width:2.460000px;}
._7{width:3.780000px;}
._6{width:5.040000px;}
._a{width:6.240000px;}
._d{width:7.680000px;}
._b{width:8.700000px;}
._9{width:9.780000px;}
._8{width:10.860000px;}
._3{width:12.480000px;}
._c{width:13.620000px;}
._1b{width:15.240000px;}
._14{width:16.380000px;}
._5a{width:17.460000px;}
._f{width:18.540000px;}
._10{width:20.520000px;}
._11{width:22.200000px;}
._13{width:23.280000px;}
._18{width:24.540000px;}
._5{width:25.620000px;}
._16{width:27.660000px;}
._1f{width:29.820000px;}
._1d{width:30.900000px;}
._1e{width:32.640000px;}
._5b{width:33.780000px;}
._66{width:35.772000px;}
._67{width:37.530000px;}
._2d{width:38.988000px;}
._1c{width:42.180000px;}
._52{width:64.098000px;}
._51{width:67.446000px;}
._64{width:71.997000px;}
._65{width:80.396400px;}
._4f{width:81.594000px;}
._4c{width:86.616000px;}
._53{width:89.046000px;}
._50{width:100.062000px;}
._4a{width:104.112000px;}
._56{width:106.326000px;}
._58{width:113.616000px;}
._25{width:116.694000px;}
._54{width:121.716000px;}
._44{width:126.090000px;}
._2b{width:128.304000px;}
._5f{width:134.514000px;}
._27{width:136.566000px;}
._57{width:138.510000px;}
._46{width:145.098000px;}
._29{width:146.340000px;}
._3b{width:155.304000px;}
._28{width:161.136000px;}
._37{width:163.566000px;}
._23{width:164.754000px;}
._4b{width:166.482000px;}
._55{width:167.994000px;}
._24{width:169.614000px;}
._59{width:171.234000px;}
._39{width:173.340000px;}
._38{width:188.136000px;}
._4e{width:190.620000px;}
._2a{width:194.130000px;}
._4d{width:198.234000px;}
._47{width:213.354000px;}
._20{width:215.958600px;}
._2f{width:221.130000px;}
._42{width:228.474000px;}
._49{width:230.310000px;}
._62{width:234.306000px;}
._2c{width:235.440000px;}
._61{width:238.032000px;}
._43{width:244.620000px;}
._3a{width:248.130000px;}
._45{width:256.446000px;}
._60{width:287.442000px;}
._5d{width:313.740000px;}
._5c{width:372.816000px;}
._48{width:376.758000px;}
._5e{width:596.862000px;}
._40{width:809.442000px;}
._22{width:1052.622000px;}
._26{width:1088.100000px;}
._2e{width:1147.554000px;}
._35{width:1221.858000px;}
._33{width:1229.148000px;}
._32{width:1248.858000px;}
._36{width:1256.148000px;}
._3f{width:1492.074000px;}
._31{width:1623.996000px;}
._3d{width:1723.194000px;}
._34{width:1781.406000px;}
._3e{width:2112.696000px;}
._3c{width:2367.090000px;}
._30{width:2432.160000px;}
._63{width:2657.760000px;}
._19{width:2687.760000px;}
.fc2{color:transparent;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:6.000000px;}
.fs6{font-size:31.200000px;}
.fsb{font-size:35.100000px;}
.fs0{font-size:36.000000px;}
.fs1{font-size:42.000000px;}
.fs9{font-size:46.800000px;}
.fs7{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs8{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y13b{bottom:64.020150px;}
.yb7{bottom:68.820150px;}
.yb4{bottom:68.835150px;}
.yb6{bottom:86.820150px;}
.yb3{bottom:86.835150px;}
.y17b{bottom:91.125150px;}
.y10f{bottom:94.500150px;}
.y114{bottom:94.507500px;}
.y80{bottom:97.605150px;}
.y145{bottom:98.979150px;}
.y14f{bottom:98.988750px;}
.y149{bottom:98.992650px;}
.y15a{bottom:98.995050px;}
.y13c{bottom:99.000000px;}
.y15f{bottom:99.000300px;}
.y14b{bottom:99.006150px;}
.y97{bottom:99.105150px;}
.y1d{bottom:104.724150px;}
.y34{bottom:104.751900px;}
.yb5{bottom:104.820150px;}
.yb2{bottom:104.835150px;}
.y146{bottom:107.983650px;}
.y153{bottom:107.993250px;}
.y17a{bottom:109.125150px;}
.y10e{bottom:112.500150px;}
.y113{bottom:112.507500px;}
.y204{bottom:113.817150px;}
.y23f{bottom:113.818650px;}
.y27a{bottom:113.994150px;}
.y1c9{bottom:114.114150px;}
.y7f{bottom:115.605150px;}
.y96{bottom:117.105150px;}
.yaf{bottom:119.085150px;}
.y33{bottom:119.751900px;}
.y1c{bottom:122.724150px;}
.y179{bottom:127.125150px;}
.y203{bottom:130.314150px;}
.y23e{bottom:130.315650px;}
.y279{bottom:130.491150px;}
.y10d{bottom:130.500150px;}
.y112{bottom:130.507500px;}
.y1c8{bottom:130.611150px;}
.y7e{bottom:133.605150px;}
.y32{bottom:134.751900px;}
.y95{bottom:135.105150px;}
.yae{bottom:137.085150px;}
.y1b{bottom:140.724150px;}
.y178{bottom:145.125150px;}
.y202{bottom:146.811150px;}
.y23d{bottom:146.812650px;}
.y278{bottom:146.988150px;}
.y1c7{bottom:147.108150px;}
.y10c{bottom:148.500150px;}
.yb8{bottom:149.250000px;}
.yf9{bottom:149.724150px;}
.y31{bottom:149.751900px;}
.y7d{bottom:151.605150px;}
.y94{bottom:153.105150px;}
.yad{bottom:155.085150px;}
.y111{bottom:157.507500px;}
.y1a{bottom:158.724150px;}
.y177{bottom:163.125150px;}
.y201{bottom:163.308150px;}
.y23c{bottom:163.309650px;}
.y277{bottom:163.485150px;}
.y1c6{bottom:163.605150px;}
.y30{bottom:164.751900px;}
.y7c{bottom:169.605150px;}
.y93{bottom:171.105150px;}
.yac{bottom:173.085150px;}
.y19{bottom:176.724150px;}
.y2f{bottom:179.751900px;}
.y200{bottom:179.805150px;}
.y23b{bottom:179.806650px;}
.y276{bottom:179.982150px;}
.y176{bottom:181.125150px;}
.y10b{bottom:184.500150px;}
.y1c5{bottom:186.105150px;}
.y7b{bottom:187.605150px;}
.yf8{bottom:188.724150px;}
.yab{bottom:191.085150px;}
.y18{bottom:194.724150px;}
.y1ff{bottom:196.302150px;}
.y23a{bottom:196.303650px;}
.y275{bottom:196.479150px;}
.y147{bottom:196.921650px;}
.y154{bottom:196.931250px;}
.y156{bottom:196.937550px;}
.y175{bottom:199.125150px;}
.y10a{bottom:202.500150px;}
.y7a{bottom:205.605150px;}
.y14c{bottom:205.935750px;}
.y157{bottom:205.942050px;}
.y2e{bottom:206.451900px;}
.yf7{bottom:206.724150px;}
.y92{bottom:207.105150px;}
.yaa{bottom:209.085150px;}
.y17{bottom:212.724150px;}
.y1fe{bottom:212.799150px;}
.y239{bottom:212.800650px;}
.y274{bottom:212.976150px;}
.y174{bottom:217.125150px;}
.y1c4{bottom:219.108150px;}
.y109{bottom:220.500150px;}
.y2d{bottom:221.451900px;}
.y79{bottom:223.605150px;}
.yf6{bottom:224.724150px;}
.y91{bottom:225.105150px;}
.ya9{bottom:227.085150px;}
.y1fd{bottom:229.296150px;}
.y238{bottom:229.297650px;}
.y273{bottom:229.473150px;}
.y16{bottom:230.724150px;}
.y1a7{bottom:232.605150px;}
.y173{bottom:235.125150px;}
.y1c3{bottom:235.608150px;}
.y2c{bottom:236.451900px;}
.y108{bottom:238.500150px;}
.y78{bottom:241.605150px;}
.yf5{bottom:242.724150px;}
.y90{bottom:243.105150px;}
.ya8{bottom:245.085150px;}
.y1fc{bottom:245.793150px;}
.y237{bottom:245.794650px;}
.y272{bottom:245.970150px;}
.y15{bottom:248.724150px;}
.y1c2{bottom:252.105150px;}
.y172{bottom:253.125150px;}
.y107{bottom:256.500150px;}
.y77{bottom:259.605150px;}
.yf4{bottom:260.724150px;}
.y8f{bottom:261.105150px;}
.y1fb{bottom:262.290150px;}
.y236{bottom:262.291650px;}
.y271{bottom:262.467150px;}
.ya7{bottom:263.085150px;}
.y14{bottom:266.724150px;}
.y29{bottom:268.599150px;}
.y171{bottom:271.125150px;}
.y106{bottom:274.500150px;}
.y1c1{bottom:274.605150px;}
.y76{bottom:277.605150px;}
.yf3{bottom:278.724150px;}
.y1fa{bottom:278.787150px;}
.y235{bottom:278.788650px;}
.y270{bottom:278.964150px;}
.y8e{bottom:279.105150px;}
.ya6{bottom:281.085150px;}
.y13{bottom:285.474150px;}
.y28{bottom:286.599150px;}
.y170{bottom:289.125150px;}
.y105{bottom:292.500150px;}
.ye0{bottom:293.724150px;}
.y1f9{bottom:295.284150px;}
.y234{bottom:295.285650px;}
.y26f{bottom:295.461150px;}
.y75{bottom:295.605150px;}
.yf2{bottom:296.724150px;}
.y8d{bottom:297.105150px;}
.ya5{bottom:299.085150px;}
.y12{bottom:303.474150px;}
.y27{bottom:304.599150px;}
.y16f{bottom:307.125150px;}
.y104{bottom:310.500150px;}
.y1c0{bottom:310.608150px;}
.y1f8{bottom:311.781150px;}
.y233{bottom:311.782650px;}
.y26e{bottom:311.958150px;}
.y74{bottom:313.605150px;}
.yf1{bottom:314.724150px;}
.y8c{bottom:315.105150px;}
.ya4{bottom:317.085150px;}
.y11{bottom:322.224150px;}
.y26{bottom:322.599150px;}
.y9a{bottom:322.605150px;}
.y16e{bottom:325.125150px;}
.y1bf{bottom:327.105150px;}
.y1f7{bottom:328.278150px;}
.y232{bottom:328.279650px;}
.y26d{bottom:328.455150px;}
.y103{bottom:328.500150px;}
.y150{bottom:330.743250px;}
.y73{bottom:331.605150px;}
.yf0{bottom:332.724150px;}
.y8b{bottom:333.105150px;}
.ya3{bottom:335.085150px;}
.ydf{bottom:335.724150px;}
.y14d{bottom:340.166250px;}
.y25{bottom:340.599150px;}
.y10{bottom:340.974150px;}
.y16d{bottom:343.125150px;}
.y1f6{bottom:344.775150px;}
.y231{bottom:344.776650px;}
.y26c{bottom:344.952150px;}
.y102{bottom:346.500150px;}
.y158{bottom:348.043050px;}
.y72{bottom:349.605150px;}
.yef{bottom:350.724150px;}
.y8a{bottom:351.105150px;}
.ya2{bottom:353.085150px;}
.yde{bottom:353.724150px;}
.y24{bottom:358.599150px;}
.yf{bottom:359.724150px;}
.y16c{bottom:361.125150px;}
.y1f5{bottom:361.272150px;}
.y230{bottom:361.273650px;}
.y26b{bottom:361.449150px;}
.y101{bottom:364.500150px;}
.y71{bottom:367.605150px;}
.yee{bottom:368.724150px;}
.y89{bottom:369.105150px;}
.ya1{bottom:371.085150px;}
.ydd{bottom:371.724150px;}
.y23{bottom:376.599150px;}
.y1f4{bottom:377.769150px;}
.y22f{bottom:377.770650px;}
.y26a{bottom:377.946150px;}
.ye{bottom:378.474150px;}
.y16b{bottom:379.125150px;}
.y100{bottom:382.500150px;}
.y1be{bottom:382.608150px;}
.y70{bottom:385.605150px;}
.yed{bottom:386.724150px;}
.y88{bottom:387.105150px;}
.ya0{bottom:389.085150px;}
.ydc{bottom:389.724150px;}
.y1f3{bottom:394.266150px;}
.y22e{bottom:394.267650px;}
.y269{bottom:394.443150px;}
.y22{bottom:394.599150px;}
.y16a{bottom:397.125150px;}
.yd{bottom:397.224150px;}
.y1bd{bottom:399.105150px;}
.yff{bottom:400.500150px;}
.y6f{bottom:403.605150px;}
.yec{bottom:404.724150px;}
.y87{bottom:405.105150px;}
.y15b{bottom:406.484550px;}
.y9f{bottom:407.085150px;}
.ydb{bottom:407.724150px;}
.y1f2{bottom:410.763150px;}
.y22d{bottom:410.764650px;}
.y268{bottom:410.940150px;}
.y21{bottom:412.599150px;}
.y169{bottom:415.125150px;}
.yc{bottom:415.224150px;}
.y13d{bottom:416.085150px;}
.yfe{bottom:418.500150px;}
.y6e{bottom:421.605150px;}
.yeb{bottom:422.724150px;}
.y86{bottom:423.105150px;}
.yb0{bottom:425.085150px;}
.yda{bottom:425.724150px;}
.y1f1{bottom:427.260150px;}
.y22c{bottom:427.261650px;}
.y267{bottom:427.437150px;}
.y20{bottom:430.599150px;}
.y168{bottom:433.125150px;}
.yb{bottom:433.224150px;}
.y110{bottom:436.500150px;}
.y6d{bottom:439.605150px;}
.yea{bottom:440.724150px;}
.y85{bottom:441.105150px;}
.y9e{bottom:443.085150px;}
.yd9{bottom:443.724150px;}
.y1f0{bottom:443.757150px;}
.y22b{bottom:443.758650px;}
.y266{bottom:443.934150px;}
.y1f{bottom:448.599150px;}
.y167{bottom:451.125150px;}
.yfd{bottom:454.500150px;}
.y1bc{bottom:454.620150px;}
.y6c{bottom:457.605150px;}
.ye9{bottom:458.724150px;}
.y84{bottom:459.105150px;}
.y1ef{bottom:460.254150px;}
.y22a{bottom:460.255650px;}
.y265{bottom:460.431150px;}
.y9d{bottom:461.085150px;}
.yd8{bottom:461.724150px;}
.ya{bottom:464.724150px;}
.y1e{bottom:466.599150px;}
.y166{bottom:469.125150px;}
.y1bb{bottom:471.117150px;}
.yfc{bottom:472.500150px;}
.y6b{bottom:475.605150px;}
.ye8{bottom:476.724150px;}
.y1ee{bottom:476.751150px;}
.y229{bottom:476.752650px;}
.y264{bottom:476.928150px;}
.y83{bottom:477.105150px;}
.y9c{bottom:479.085150px;}
.yd7{bottom:479.724150px;}
.y165{bottom:487.125150px;}
.y1ba{bottom:487.614150px;}
.yfb{bottom:490.500150px;}
.y1ed{bottom:493.248150px;}
.y228{bottom:493.249650px;}
.y263{bottom:493.425150px;}
.y6a{bottom:493.605150px;}
.ye7{bottom:494.724150px;}
.y9b{bottom:497.085150px;}
.yd6{bottom:497.724150px;}
.y82{bottom:504.099150px;}
.y1b9{bottom:504.111150px;}
.y164{bottom:505.125150px;}
.yfa{bottom:508.500150px;}
.y1ec{bottom:509.745150px;}
.y227{bottom:509.746650px;}
.y262{bottom:509.922150px;}
.y69{bottom:511.605150px;}
.yd5{bottom:515.724150px;}
.y1b8{bottom:520.608150px;}
.ye6{bottom:521.718150px;}
.y163{bottom:523.125150px;}
.y1eb{bottom:526.242150px;}
.y226{bottom:526.243650px;}
.y261{bottom:526.419150px;}
.y68{bottom:529.605150px;}
.yd4{bottom:533.724150px;}
.y81{bottom:534.105150px;}
.y48{bottom:535.071150px;}
.y1b7{bottom:537.105150px;}
.y162{bottom:541.125150px;}
.yb1{bottom:541.500000px;}
.y1ea{bottom:542.739150px;}
.y225{bottom:542.740650px;}
.y260{bottom:542.916150px;}
.y67{bottom:547.605150px;}
.yd3{bottom:551.724150px;}
.y13a{bottom:552.924150px;}
.y47{bottom:553.071150px;}
.y13f{bottom:553.969650px;}
.y161{bottom:559.125150px;}
.y1e9{bottom:559.236150px;}
.y224{bottom:559.237650px;}
.y25f{bottom:559.413150px;}
.y1b6{bottom:559.605150px;}
.y140{bottom:560.949150px;}
.y141{bottom:563.055150px;}
.y66{bottom:565.605150px;}
.y139{bottom:567.168150px;}
.yd2{bottom:569.724150px;}
.y1e8{bottom:575.733150px;}
.y223{bottom:575.734650px;}
.y25e{bottom:575.910150px;}
.y160{bottom:577.125150px;}
.y65{bottom:583.605150px;}
.yd1{bottom:587.724150px;}
.ye5{bottom:590.724150px;}
.y1e7{bottom:592.230150px;}
.y222{bottom:592.231650px;}
.y25d{bottom:592.407150px;}
.y138{bottom:595.287150px;}
.y1b5{bottom:595.608150px;}
.y46{bottom:596.586150px;}
.y64{bottom:601.605150px;}
.yd0{bottom:605.724150px;}
.ye4{bottom:608.724150px;}
.y1e6{bottom:608.727150px;}
.y221{bottom:608.728650px;}
.y25c{bottom:608.904150px;}
.y1b4{bottom:612.105150px;}
.y137{bottom:612.540150px;}
.y136{bottom:614.038650px;}
.y45{bottom:614.586150px;}
.y63{bottom:619.605150px;}
.ycf{bottom:623.724150px;}
.y1e5{bottom:625.224150px;}
.y220{bottom:625.225650px;}
.y25b{bottom:625.401150px;}
.ye3{bottom:626.724150px;}
.y135{bottom:629.784150px;}
.y1a6{bottom:630.739650px;}
.y44{bottom:632.586150px;}
.y1b3{bottom:634.605150px;}
.y62{bottom:637.605150px;}
.y1e4{bottom:641.721150px;}
.y21f{bottom:641.722650px;}
.y25a{bottom:641.898150px;}
.ye2{bottom:644.724150px;}
.y1a5{bottom:646.494150px;}
.y99{bottom:646.605150px;}
.y134{bottom:647.037150px;}
.y43{bottom:650.586150px;}
.y61{bottom:655.605150px;}
.y1e3{bottom:658.218150px;}
.y21e{bottom:658.219650px;}
.y259{bottom:658.395150px;}
.y1a4{bottom:662.248650px;}
.y1a1{bottom:662.262150px;}
.y19e{bottom:662.275650px;}
.yce{bottom:662.724150px;}
.y133{bottom:664.290150px;}
.y132{bottom:665.788650px;}
.y42{bottom:668.586150px;}
.y151{bottom:669.930750px;}
.y1b2{bottom:670.608150px;}
.y60{bottom:673.605150px;}
.y1e2{bottom:674.715150px;}
.y21d{bottom:674.716650px;}
.y258{bottom:674.892150px;}
.y1a3{bottom:678.003150px;}
.y1a0{bottom:678.016650px;}
.y19d{bottom:678.030150px;}
.ycd{bottom:680.724150px;}
.y131{bottom:681.534150px;}
.y41{bottom:686.586150px;}
.y1b1{bottom:687.105150px;}
.y1e1{bottom:691.212150px;}
.y21c{bottom:691.213650px;}
.y257{bottom:691.389150px;}
.y5f{bottom:691.605150px;}
.y1a2{bottom:693.757650px;}
.y19f{bottom:693.771150px;}
.y19c{bottom:693.784650px;}
.ycc{bottom:698.724150px;}
.y130{bottom:698.787150px;}
.y40{bottom:704.586150px;}
.y1e0{bottom:707.709150px;}
.y21b{bottom:707.710650px;}
.y256{bottom:707.886150px;}
.y5e{bottom:709.605150px;}
.y19b{bottom:711.037650px;}
.y12f{bottom:716.040150px;}
.ycb{bottom:716.724150px;}
.y12e{bottom:717.538650px;}
.y3f{bottom:722.586150px;}
.y1df{bottom:724.206150px;}
.y21a{bottom:724.207650px;}
.y255{bottom:724.383150px;}
.y15c{bottom:726.191550px;}
.y19a{bottom:726.792150px;}
.y197{bottom:726.805650px;}
.y5d{bottom:727.605150px;}
.y12d{bottom:733.284150px;}
.yca{bottom:734.724150px;}
.y3e{bottom:740.586150px;}
.y15d{bottom:740.609550px;}
.y1de{bottom:740.703150px;}
.y219{bottom:740.704650px;}
.y254{bottom:740.880150px;}
.y199{bottom:742.546650px;}
.y196{bottom:742.560150px;}
.y5c{bottom:745.605150px;}
.y1b0{bottom:745.617150px;}
.y12c{bottom:750.537150px;}
.yc9{bottom:752.724150px;}
.y1dd{bottom:757.200150px;}
.y218{bottom:757.201650px;}
.y253{bottom:757.377150px;}
.y198{bottom:758.301150px;}
.y195{bottom:758.314650px;}
.y3d{bottom:758.586150px;}
.y1af{bottom:762.114150px;}
.y5b{bottom:763.605150px;}
.y12b{bottom:767.790150px;}
.y12a{bottom:769.288650px;}
.yc8{bottom:770.724150px;}
.y1dc{bottom:773.697150px;}
.y217{bottom:773.698650px;}
.y252{bottom:773.874150px;}
.y194{bottom:775.567650px;}
.y3c{bottom:776.586150px;}
.y1ae{bottom:778.611150px;}
.y5a{bottom:781.605150px;}
.y129{bottom:785.034150px;}
.yc7{bottom:788.724150px;}
.y1db{bottom:790.194150px;}
.y216{bottom:790.195650px;}
.y251{bottom:790.371150px;}
.y193{bottom:791.322150px;}
.y1ad{bottom:795.108150px;}
.y59{bottom:799.605150px;}
.y128{bottom:802.287150px;}
.y1da{bottom:806.691150px;}
.y215{bottom:806.692650px;}
.yc6{bottom:806.724150px;}
.y250{bottom:806.868150px;}
.y192{bottom:807.076650px;}
.y1ac{bottom:811.605150px;}
.y58{bottom:817.605150px;}
.y127{bottom:819.540150px;}
.y126{bottom:821.038650px;}
.y191{bottom:822.831150px;}
.y1d9{bottom:823.188150px;}
.y214{bottom:823.189650px;}
.y24f{bottom:823.365150px;}
.yc5{bottom:824.724150px;}
.y98{bottom:826.605150px;}
.y1ab{bottom:834.105150px;}
.y57{bottom:835.605150px;}
.y125{bottom:836.784150px;}
.y1d8{bottom:839.685150px;}
.y213{bottom:839.686650px;}
.y24e{bottom:839.862150px;}
.y190{bottom:840.084150px;}
.yc4{bottom:842.724150px;}
.y3b{bottom:848.580150px;}
.y56{bottom:853.605150px;}
.y124{bottom:854.037150px;}
.y18f{bottom:855.838650px;}
.y18c{bottom:855.852150px;}
.y1d7{bottom:856.182150px;}
.y212{bottom:856.183650px;}
.y24d{bottom:856.359150px;}
.yc3{bottom:860.724150px;}
.y3a{bottom:869.586150px;}
.y1aa{bottom:870.108150px;}
.y123{bottom:871.290150px;}
.y18e{bottom:871.593150px;}
.y55{bottom:871.605150px;}
.y18b{bottom:871.606650px;}
.y1d6{bottom:872.679150px;}
.y211{bottom:872.680650px;}
.y122{bottom:872.788650px;}
.y24c{bottom:872.856150px;}
.yc2{bottom:878.724150px;}
.y142{bottom:885.273150px;}
.y1a9{bottom:886.605150px;}
.y18d{bottom:887.347650px;}
.y18a{bottom:887.361150px;}
.y121{bottom:888.534150px;}
.y1d5{bottom:889.176150px;}
.y210{bottom:889.177650px;}
.y24b{bottom:889.353150px;}
.y54{bottom:889.605150px;}
.y143{bottom:889.998150px;}
.y144{bottom:892.954650px;}
.yc1{bottom:896.724150px;}
.y189{bottom:904.614150px;}
.y1d4{bottom:905.673150px;}
.y20f{bottom:905.674650px;}
.y120{bottom:905.787150px;}
.y24a{bottom:905.850150px;}
.y53{bottom:907.605150px;}
.y11e{bottom:908.784150px;}
.y1a8{bottom:909.105150px;}
.ye1{bottom:914.724150px;}
.y188{bottom:920.368650px;}
.y185{bottom:920.382150px;}
.y1d3{bottom:922.170150px;}
.y20e{bottom:922.171650px;}
.y249{bottom:922.347150px;}
.y11f{bottom:923.040150px;}
.y11d{bottom:924.538650px;}
.y52{bottom:925.605150px;}
.yc0{bottom:932.724150px;}
.y187{bottom:936.123150px;}
.y184{bottom:936.136650px;}
.y1d2{bottom:938.667150px;}
.y20d{bottom:938.668650px;}
.y283{bottom:938.682150px;}
.y248{bottom:938.844150px;}
.y11c{bottom:940.285650px;}
.y51{bottom:943.605150px;}
.y39{bottom:944.598150px;}
.ybf{bottom:950.724150px;}
.y186{bottom:951.877650px;}
.y183{bottom:951.891150px;}
.y1d1{bottom:955.164150px;}
.y20c{bottom:955.165650px;}
.y282{bottom:955.179150px;}
.y247{bottom:955.341150px;}
.y11b{bottom:957.538650px;}
.y50{bottom:961.605150px;}
.ybe{bottom:968.724150px;}
.y182{bottom:969.144150px;}
.y1d0{bottom:971.661150px;}
.y20b{bottom:971.662650px;}
.y281{bottom:971.676150px;}
.y246{bottom:971.838150px;}
.y11a{bottom:973.293150px;}
.y38{bottom:974.595150px;}
.y4f{bottom:979.605150px;}
.y181{bottom:984.898650px;}
.y17e{bottom:984.912150px;}
.ybd{bottom:986.724150px;}
.y1cf{bottom:988.158150px;}
.y20a{bottom:988.159650px;}
.y280{bottom:988.173150px;}
.y245{bottom:988.335150px;}
.y4e{bottom:997.605150px;}
.y119{bottom:999.537150px;}
.y116{bottom:999.543150px;}
.y180{bottom:1000.653150px;}
.y17d{bottom:1000.666650px;}
.y37{bottom:1004.592150px;}
.y1ce{bottom:1004.655150px;}
.y209{bottom:1004.656650px;}
.y27f{bottom:1004.670150px;}
.ybc{bottom:1004.724150px;}
.y244{bottom:1004.832150px;}
.y8{bottom:1014.357150px;}
.y4d{bottom:1015.605150px;}
.y17f{bottom:1016.407650px;}
.y17c{bottom:1016.421150px;}
.y14e{bottom:1018.203750px;}
.y159{bottom:1018.210050px;}
.y155{bottom:1018.217250px;}
.y14a{bottom:1018.221150px;}
.y1cd{bottom:1021.152150px;}
.y208{bottom:1021.153650px;}
.y27e{bottom:1021.167150px;}
.y243{bottom:1021.329150px;}
.y148{bottom:1021.771650px;}
.ybb{bottom:1022.724150px;}
.y7{bottom:1027.104150px;}
.y118{bottom:1027.288650px;}
.y1{bottom:1027.581150px;}
.y13e{bottom:1030.249650px;}
.y4c{bottom:1033.605150px;}
.y36{bottom:1034.589150px;}
.y15e{bottom:1037.231550px;}
.y152{bottom:1037.238750px;}
.y1cc{bottom:1037.649150px;}
.y207{bottom:1037.650650px;}
.y27d{bottom:1037.664150px;}
.y242{bottom:1037.826150px;}
.y6{bottom:1039.851150px;}
.yba{bottom:1040.724150px;}
.y117{bottom:1043.043150px;}
.y4b{bottom:1051.605150px;}
.y5{bottom:1052.598150px;}
.y1cb{bottom:1054.146150px;}
.y206{bottom:1054.147650px;}
.y27c{bottom:1054.161150px;}
.y241{bottom:1054.323150px;}
.y35{bottom:1064.586150px;}
.y4{bottom:1065.345150px;}
.yb9{bottom:1067.724150px;}
.y4a{bottom:1069.605150px;}
.y1ca{bottom:1070.643150px;}
.y205{bottom:1070.644650px;}
.y27b{bottom:1070.658150px;}
.y115{bottom:1070.793150px;}
.y240{bottom:1070.820150px;}
.y3{bottom:1078.092150px;}
.y2{bottom:1090.839150px;}
.y49{bottom:1114.770150px;}
.y9{bottom:1121.520150px;}
.y2b{bottom:1165.419000px;}
.y2a{bottom:1166.919750px;}
.h8{height:5.004000px;}
.h9{height:22.651200px;}
.h17{height:25.482600px;}
.h1{height:26.136000px;}
.h2{height:30.492000px;}
.ha{height:33.216000px;}
.hb{height:34.848000px;}
.h19{height:37.476000px;}
.h7{height:38.646000px;}
.h12{height:39.204000px;}
.h13{height:39.222000px;}
.h3{height:41.486316px;}
.hf{height:41.520000px;}
.h10{height:43.560000px;}
.h14{height:44.412600px;}
.h15{height:44.418600px;}
.h16{height:44.520600px;}
.h18{height:45.036000px;}
.h1a{height:47.460938px;}
.h11{height:49.783579px;}
.h4{height:49.824000px;}
.h5{height:50.040000px;}
.h6{height:52.734375px;}
.hd{height:57.585600px;}
.he{height:57.609600px;}
.hc{height:74.736000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:12.600000px;}
.x5{left:72.000000px;}
.x6{left:90.000000px;}
.x2{left:94.500000px;}
.x33{left:96.003000px;}
.x2a{left:103.504500px;}
.x9{left:112.500000px;}
.x31{left:118.503000px;}
.x2b{left:220.509000px;}
.x2c{left:229.513500px;}
.x11{left:247.978350px;}
.x13{left:275.728350px;}
.x14{left:309.478350px;}
.x15{left:325.232850px;}
.x12{left:340.978350px;}
.x2d{left:366.012000px;}
.x16{left:367.622850px;}
.x2f{left:375.030000px;}
.x17{left:383.377350px;}
.x18{left:400.630350px;}
.x19{left:416.384850px;}
.xb{left:430.947900px;}
.x1a{left:433.637850px;}
.xa{left:436.361400px;}
.x1b{left:449.357850px;}
.x7{left:461.250000px;}
.x1c{left:466.610850px;}
.x8{left:479.250000px;}
.x1d{left:482.365350px;}
.x3{left:483.750000px;}
.x34{left:485.262000px;}
.x1e{left:499.604850px;}
.x29{left:501.750000px;}
.x32{left:507.762000px;}
.x1f{left:515.359350px;}
.x30{left:528.025500px;}
.x20{left:532.612350px;}
.x2e{left:537.016500px;}
.x21{left:548.366850px;}
.xc{left:552.441000px;}
.x22{left:560.878350px;}
.x24{left:565.603350px;}
.xd{left:568.641000px;}
.x23{left:581.357850px;}
.x25{left:598.610850px;}
.x26{left:614.365350px;}
.x27{left:638.278350px;}
.x28{left:656.722350px;}
.x1{left:684.000000px;}
.xf{left:789.747150px;}
.x10{left:793.422300px;}
.xe{left:810.726150px;}
@media print{
.v4{vertical-align:-16.800000pt;}
.v1{vertical-align:-14.933333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.826667pt;}
.v2{vertical-align:22.400000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.048000pt;}
.ls13{letter-spacing:0.059733pt;}
.ls14{letter-spacing:0.072533pt;}
.ls1a{letter-spacing:0.144000pt;}
.ls17{letter-spacing:0.266667pt;}
.ls9{letter-spacing:0.373333pt;}
.lsb{letter-spacing:0.480000pt;}
.ls6{letter-spacing:0.533333pt;}
.ls7{letter-spacing:0.586667pt;}
.lsc{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.800000pt;}
.lsd{letter-spacing:1.066667pt;}
.ls0{letter-spacing:1.266667pt;}
.ls19{letter-spacing:1.344000pt;}
.ls5{letter-spacing:2.826667pt;}
.ls8{letter-spacing:3.626667pt;}
.lsa{letter-spacing:4.106667pt;}
.ls18{letter-spacing:4.224000pt;}
.ls4{letter-spacing:7.093333pt;}
.ls1{letter-spacing:63.999467pt;}
.lsf{letter-spacing:162.960000pt;}
.ls12{letter-spacing:184.272000pt;}
.ls10{letter-spacing:189.600000pt;}
.ls11{letter-spacing:200.256000pt;}
.ls16{letter-spacing:334.856533pt;}
.ls3{letter-spacing:1878.613333pt;}
.ws5{word-spacing:-53.333333pt;}
.ws16{word-spacing:-48.000000pt;}
.ws15{word-spacing:-16.224000pt;}
.ws7{word-spacing:-14.400000pt;}
.ws6{word-spacing:-13.866667pt;}
.ws13{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.344000pt;}
.ws17{word-spacing:-12.480000pt;}
.ws18{word-spacing:-12.144000pt;}
.ws14{word-spacing:-12.000000pt;}
.ws9{word-spacing:-8.673600pt;}
.ws2{word-spacing:-7.709867pt;}
.ws0{word-spacing:-1.482667pt;}
.ws1{word-spacing:-1.333333pt;}
.ws4{word-spacing:0.000000pt;}
.ws3{word-spacing:52.433600pt;}
.wsf{word-spacing:61.824000pt;}
.wse{word-spacing:71.616000pt;}
.wsd{word-spacing:145.824000pt;}
.ws8{word-spacing:166.608000pt;}
.wsc{word-spacing:257.376000pt;}
.wsa{word-spacing:313.104000pt;}
.ws10{word-spacing:723.552000pt;}
.ws11{word-spacing:915.552000pt;}
.ws12{word-spacing:1837.120000pt;}
._41{margin-left:-2574.240000pt;}
._21{margin-left:-1349.136000pt;}
._0{margin-left:-10.378667pt;}
._1a{margin-left:-6.506667pt;}
._15{margin-left:-5.120000pt;}
._e{margin-left:-3.946667pt;}
._17{margin-left:-3.040000pt;}
._4{margin-left:-2.133333pt;}
._1{margin-left:-1.226667pt;}
._2{width:1.066667pt;}
._12{width:2.186667pt;}
._7{width:3.360000pt;}
._6{width:4.480000pt;}
._a{width:5.546667pt;}
._d{width:6.826667pt;}
._b{width:7.733333pt;}
._9{width:8.693333pt;}
._8{width:9.653333pt;}
._3{width:11.093333pt;}
._c{width:12.106667pt;}
._1b{width:13.546667pt;}
._14{width:14.560000pt;}
._5a{width:15.520000pt;}
._f{width:16.480000pt;}
._10{width:18.240000pt;}
._11{width:19.733333pt;}
._13{width:20.693333pt;}
._18{width:21.813333pt;}
._5{width:22.773333pt;}
._16{width:24.586667pt;}
._1f{width:26.506667pt;}
._1d{width:27.466667pt;}
._1e{width:29.013333pt;}
._5b{width:30.026667pt;}
._66{width:31.797333pt;}
._67{width:33.360000pt;}
._2d{width:34.656000pt;}
._1c{width:37.493333pt;}
._52{width:56.976000pt;}
._51{width:59.952000pt;}
._64{width:63.997333pt;}
._65{width:71.463467pt;}
._4f{width:72.528000pt;}
._4c{width:76.992000pt;}
._53{width:79.152000pt;}
._50{width:88.944000pt;}
._4a{width:92.544000pt;}
._56{width:94.512000pt;}
._58{width:100.992000pt;}
._25{width:103.728000pt;}
._54{width:108.192000pt;}
._44{width:112.080000pt;}
._2b{width:114.048000pt;}
._5f{width:119.568000pt;}
._27{width:121.392000pt;}
._57{width:123.120000pt;}
._46{width:128.976000pt;}
._29{width:130.080000pt;}
._3b{width:138.048000pt;}
._28{width:143.232000pt;}
._37{width:145.392000pt;}
._23{width:146.448000pt;}
._4b{width:147.984000pt;}
._55{width:149.328000pt;}
._24{width:150.768000pt;}
._59{width:152.208000pt;}
._39{width:154.080000pt;}
._38{width:167.232000pt;}
._4e{width:169.440000pt;}
._2a{width:172.560000pt;}
._4d{width:176.208000pt;}
._47{width:189.648000pt;}
._20{width:191.963200pt;}
._2f{width:196.560000pt;}
._42{width:203.088000pt;}
._49{width:204.720000pt;}
._62{width:208.272000pt;}
._2c{width:209.280000pt;}
._61{width:211.584000pt;}
._43{width:217.440000pt;}
._3a{width:220.560000pt;}
._45{width:227.952000pt;}
._60{width:255.504000pt;}
._5d{width:278.880000pt;}
._5c{width:331.392000pt;}
._48{width:334.896000pt;}
._5e{width:530.544000pt;}
._40{width:719.504000pt;}
._22{width:935.664000pt;}
._26{width:967.200000pt;}
._2e{width:1020.048000pt;}
._35{width:1086.096000pt;}
._33{width:1092.576000pt;}
._32{width:1110.096000pt;}
._36{width:1116.576000pt;}
._3f{width:1326.288000pt;}
._31{width:1443.552000pt;}
._3d{width:1531.728000pt;}
._34{width:1583.472000pt;}
._3e{width:1877.952000pt;}
._3c{width:2104.080000pt;}
._30{width:2161.920000pt;}
._63{width:2362.453333pt;}
._19{width:2389.120000pt;}
.fs5{font-size:5.333333pt;}
.fs6{font-size:27.733333pt;}
.fsb{font-size:31.200000pt;}
.fs0{font-size:32.000000pt;}
.fs1{font-size:37.333333pt;}
.fs9{font-size:41.600000pt;}
.fs7{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs8{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y13b{bottom:56.906800pt;}
.yb7{bottom:61.173467pt;}
.yb4{bottom:61.186800pt;}
.yb6{bottom:77.173467pt;}
.yb3{bottom:77.186800pt;}
.y17b{bottom:81.000133pt;}
.y10f{bottom:84.000133pt;}
.y114{bottom:84.006667pt;}
.y80{bottom:86.760133pt;}
.y145{bottom:87.981467pt;}
.y14f{bottom:87.990000pt;}
.y149{bottom:87.993467pt;}
.y15a{bottom:87.995600pt;}
.y13c{bottom:88.000000pt;}
.y15f{bottom:88.000267pt;}
.y14b{bottom:88.005467pt;}
.y97{bottom:88.093467pt;}
.y1d{bottom:93.088133pt;}
.y34{bottom:93.112800pt;}
.yb5{bottom:93.173467pt;}
.yb2{bottom:93.186800pt;}
.y146{bottom:95.985467pt;}
.y153{bottom:95.994000pt;}
.y17a{bottom:97.000133pt;}
.y10e{bottom:100.000133pt;}
.y113{bottom:100.006667pt;}
.y204{bottom:101.170800pt;}
.y23f{bottom:101.172133pt;}
.y27a{bottom:101.328133pt;}
.y1c9{bottom:101.434800pt;}
.y7f{bottom:102.760133pt;}
.y96{bottom:104.093467pt;}
.yaf{bottom:105.853467pt;}
.y33{bottom:106.446133pt;}
.y1c{bottom:109.088133pt;}
.y179{bottom:113.000133pt;}
.y203{bottom:115.834800pt;}
.y23e{bottom:115.836133pt;}
.y279{bottom:115.992133pt;}
.y10d{bottom:116.000133pt;}
.y112{bottom:116.006667pt;}
.y1c8{bottom:116.098800pt;}
.y7e{bottom:118.760133pt;}
.y32{bottom:119.779467pt;}
.y95{bottom:120.093467pt;}
.yae{bottom:121.853467pt;}
.y1b{bottom:125.088133pt;}
.y178{bottom:129.000133pt;}
.y202{bottom:130.498800pt;}
.y23d{bottom:130.500133pt;}
.y278{bottom:130.656133pt;}
.y1c7{bottom:130.762800pt;}
.y10c{bottom:132.000133pt;}
.yb8{bottom:132.666667pt;}
.yf9{bottom:133.088133pt;}
.y31{bottom:133.112800pt;}
.y7d{bottom:134.760133pt;}
.y94{bottom:136.093467pt;}
.yad{bottom:137.853467pt;}
.y111{bottom:140.006667pt;}
.y1a{bottom:141.088133pt;}
.y177{bottom:145.000133pt;}
.y201{bottom:145.162800pt;}
.y23c{bottom:145.164133pt;}
.y277{bottom:145.320133pt;}
.y1c6{bottom:145.426800pt;}
.y30{bottom:146.446133pt;}
.y7c{bottom:150.760133pt;}
.y93{bottom:152.093467pt;}
.yac{bottom:153.853467pt;}
.y19{bottom:157.088133pt;}
.y2f{bottom:159.779467pt;}
.y200{bottom:159.826800pt;}
.y23b{bottom:159.828133pt;}
.y276{bottom:159.984133pt;}
.y176{bottom:161.000133pt;}
.y10b{bottom:164.000133pt;}
.y1c5{bottom:165.426800pt;}
.y7b{bottom:166.760133pt;}
.yf8{bottom:167.754800pt;}
.yab{bottom:169.853467pt;}
.y18{bottom:173.088133pt;}
.y1ff{bottom:174.490800pt;}
.y23a{bottom:174.492133pt;}
.y275{bottom:174.648133pt;}
.y147{bottom:175.041467pt;}
.y154{bottom:175.050000pt;}
.y156{bottom:175.055600pt;}
.y175{bottom:177.000133pt;}
.y10a{bottom:180.000133pt;}
.y7a{bottom:182.760133pt;}
.y14c{bottom:183.054000pt;}
.y157{bottom:183.059600pt;}
.y2e{bottom:183.512800pt;}
.yf7{bottom:183.754800pt;}
.y92{bottom:184.093467pt;}
.yaa{bottom:185.853467pt;}
.y17{bottom:189.088133pt;}
.y1fe{bottom:189.154800pt;}
.y239{bottom:189.156133pt;}
.y274{bottom:189.312133pt;}
.y174{bottom:193.000133pt;}
.y1c4{bottom:194.762800pt;}
.y109{bottom:196.000133pt;}
.y2d{bottom:196.846133pt;}
.y79{bottom:198.760133pt;}
.yf6{bottom:199.754800pt;}
.y91{bottom:200.093467pt;}
.ya9{bottom:201.853467pt;}
.y1fd{bottom:203.818800pt;}
.y238{bottom:203.820133pt;}
.y273{bottom:203.976133pt;}
.y16{bottom:205.088133pt;}
.y1a7{bottom:206.760133pt;}
.y173{bottom:209.000133pt;}
.y1c3{bottom:209.429467pt;}
.y2c{bottom:210.179467pt;}
.y108{bottom:212.000133pt;}
.y78{bottom:214.760133pt;}
.yf5{bottom:215.754800pt;}
.y90{bottom:216.093467pt;}
.ya8{bottom:217.853467pt;}
.y1fc{bottom:218.482800pt;}
.y237{bottom:218.484133pt;}
.y272{bottom:218.640133pt;}
.y15{bottom:221.088133pt;}
.y1c2{bottom:224.093467pt;}
.y172{bottom:225.000133pt;}
.y107{bottom:228.000133pt;}
.y77{bottom:230.760133pt;}
.yf4{bottom:231.754800pt;}
.y8f{bottom:232.093467pt;}
.y1fb{bottom:233.146800pt;}
.y236{bottom:233.148133pt;}
.y271{bottom:233.304133pt;}
.ya7{bottom:233.853467pt;}
.y14{bottom:237.088133pt;}
.y29{bottom:238.754800pt;}
.y171{bottom:241.000133pt;}
.y106{bottom:244.000133pt;}
.y1c1{bottom:244.093467pt;}
.y76{bottom:246.760133pt;}
.yf3{bottom:247.754800pt;}
.y1fa{bottom:247.810800pt;}
.y235{bottom:247.812133pt;}
.y270{bottom:247.968133pt;}
.y8e{bottom:248.093467pt;}
.ya6{bottom:249.853467pt;}
.y13{bottom:253.754800pt;}
.y28{bottom:254.754800pt;}
.y170{bottom:257.000133pt;}
.y105{bottom:260.000133pt;}
.ye0{bottom:261.088133pt;}
.y1f9{bottom:262.474800pt;}
.y234{bottom:262.476133pt;}
.y26f{bottom:262.632133pt;}
.y75{bottom:262.760133pt;}
.yf2{bottom:263.754800pt;}
.y8d{bottom:264.093467pt;}
.ya5{bottom:265.853467pt;}
.y12{bottom:269.754800pt;}
.y27{bottom:270.754800pt;}
.y16f{bottom:273.000133pt;}
.y104{bottom:276.000133pt;}
.y1c0{bottom:276.096133pt;}
.y1f8{bottom:277.138800pt;}
.y233{bottom:277.140133pt;}
.y26e{bottom:277.296133pt;}
.y74{bottom:278.760133pt;}
.yf1{bottom:279.754800pt;}
.y8c{bottom:280.093467pt;}
.ya4{bottom:281.853467pt;}
.y11{bottom:286.421467pt;}
.y26{bottom:286.754800pt;}
.y9a{bottom:286.760133pt;}
.y16e{bottom:289.000133pt;}
.y1bf{bottom:290.760133pt;}
.y1f7{bottom:291.802800pt;}
.y232{bottom:291.804133pt;}
.y26d{bottom:291.960133pt;}
.y103{bottom:292.000133pt;}
.y150{bottom:293.994000pt;}
.y73{bottom:294.760133pt;}
.yf0{bottom:295.754800pt;}
.y8b{bottom:296.093467pt;}
.ya3{bottom:297.853467pt;}
.ydf{bottom:298.421467pt;}
.y14d{bottom:302.370000pt;}
.y25{bottom:302.754800pt;}
.y10{bottom:303.088133pt;}
.y16d{bottom:305.000133pt;}
.y1f6{bottom:306.466800pt;}
.y231{bottom:306.468133pt;}
.y26c{bottom:306.624133pt;}
.y102{bottom:308.000133pt;}
.y158{bottom:309.371600pt;}
.y72{bottom:310.760133pt;}
.yef{bottom:311.754800pt;}
.y8a{bottom:312.093467pt;}
.ya2{bottom:313.853467pt;}
.yde{bottom:314.421467pt;}
.y24{bottom:318.754800pt;}
.yf{bottom:319.754800pt;}
.y16c{bottom:321.000133pt;}
.y1f5{bottom:321.130800pt;}
.y230{bottom:321.132133pt;}
.y26b{bottom:321.288133pt;}
.y101{bottom:324.000133pt;}
.y71{bottom:326.760133pt;}
.yee{bottom:327.754800pt;}
.y89{bottom:328.093467pt;}
.ya1{bottom:329.853467pt;}
.ydd{bottom:330.421467pt;}
.y23{bottom:334.754800pt;}
.y1f4{bottom:335.794800pt;}
.y22f{bottom:335.796133pt;}
.y26a{bottom:335.952133pt;}
.ye{bottom:336.421467pt;}
.y16b{bottom:337.000133pt;}
.y100{bottom:340.000133pt;}
.y1be{bottom:340.096133pt;}
.y70{bottom:342.760133pt;}
.yed{bottom:343.754800pt;}
.y88{bottom:344.093467pt;}
.ya0{bottom:345.853467pt;}
.ydc{bottom:346.421467pt;}
.y1f3{bottom:350.458800pt;}
.y22e{bottom:350.460133pt;}
.y269{bottom:350.616133pt;}
.y22{bottom:350.754800pt;}
.y16a{bottom:353.000133pt;}
.yd{bottom:353.088133pt;}
.y1bd{bottom:354.760133pt;}
.yff{bottom:356.000133pt;}
.y6f{bottom:358.760133pt;}
.yec{bottom:359.754800pt;}
.y87{bottom:360.093467pt;}
.y15b{bottom:361.319600pt;}
.y9f{bottom:361.853467pt;}
.ydb{bottom:362.421467pt;}
.y1f2{bottom:365.122800pt;}
.y22d{bottom:365.124133pt;}
.y268{bottom:365.280133pt;}
.y21{bottom:366.754800pt;}
.y169{bottom:369.000133pt;}
.yc{bottom:369.088133pt;}
.y13d{bottom:369.853467pt;}
.yfe{bottom:372.000133pt;}
.y6e{bottom:374.760133pt;}
.yeb{bottom:375.754800pt;}
.y86{bottom:376.093467pt;}
.yb0{bottom:377.853467pt;}
.yda{bottom:378.421467pt;}
.y1f1{bottom:379.786800pt;}
.y22c{bottom:379.788133pt;}
.y267{bottom:379.944133pt;}
.y20{bottom:382.754800pt;}
.y168{bottom:385.000133pt;}
.yb{bottom:385.088133pt;}
.y110{bottom:388.000133pt;}
.y6d{bottom:390.760133pt;}
.yea{bottom:391.754800pt;}
.y85{bottom:392.093467pt;}
.y9e{bottom:393.853467pt;}
.yd9{bottom:394.421467pt;}
.y1f0{bottom:394.450800pt;}
.y22b{bottom:394.452133pt;}
.y266{bottom:394.608133pt;}
.y1f{bottom:398.754800pt;}
.y167{bottom:401.000133pt;}
.yfd{bottom:404.000133pt;}
.y1bc{bottom:404.106800pt;}
.y6c{bottom:406.760133pt;}
.ye9{bottom:407.754800pt;}
.y84{bottom:408.093467pt;}
.y1ef{bottom:409.114800pt;}
.y22a{bottom:409.116133pt;}
.y265{bottom:409.272133pt;}
.y9d{bottom:409.853467pt;}
.yd8{bottom:410.421467pt;}
.ya{bottom:413.088133pt;}
.y1e{bottom:414.754800pt;}
.y166{bottom:417.000133pt;}
.y1bb{bottom:418.770800pt;}
.yfc{bottom:420.000133pt;}
.y6b{bottom:422.760133pt;}
.ye8{bottom:423.754800pt;}
.y1ee{bottom:423.778800pt;}
.y229{bottom:423.780133pt;}
.y264{bottom:423.936133pt;}
.y83{bottom:424.093467pt;}
.y9c{bottom:425.853467pt;}
.yd7{bottom:426.421467pt;}
.y165{bottom:433.000133pt;}
.y1ba{bottom:433.434800pt;}
.yfb{bottom:436.000133pt;}
.y1ed{bottom:438.442800pt;}
.y228{bottom:438.444133pt;}
.y263{bottom:438.600133pt;}
.y6a{bottom:438.760133pt;}
.ye7{bottom:439.754800pt;}
.y9b{bottom:441.853467pt;}
.yd6{bottom:442.421467pt;}
.y82{bottom:448.088133pt;}
.y1b9{bottom:448.098800pt;}
.y164{bottom:449.000133pt;}
.yfa{bottom:452.000133pt;}
.y1ec{bottom:453.106800pt;}
.y227{bottom:453.108133pt;}
.y262{bottom:453.264133pt;}
.y69{bottom:454.760133pt;}
.yd5{bottom:458.421467pt;}
.y1b8{bottom:462.762800pt;}
.ye6{bottom:463.749467pt;}
.y163{bottom:465.000133pt;}
.y1eb{bottom:467.770800pt;}
.y226{bottom:467.772133pt;}
.y261{bottom:467.928133pt;}
.y68{bottom:470.760133pt;}
.yd4{bottom:474.421467pt;}
.y81{bottom:474.760133pt;}
.y48{bottom:475.618800pt;}
.y1b7{bottom:477.426800pt;}
.y162{bottom:481.000133pt;}
.yb1{bottom:481.333333pt;}
.y1ea{bottom:482.434800pt;}
.y225{bottom:482.436133pt;}
.y260{bottom:482.592133pt;}
.y67{bottom:486.760133pt;}
.yd3{bottom:490.421467pt;}
.y13a{bottom:491.488133pt;}
.y47{bottom:491.618800pt;}
.y13f{bottom:492.417467pt;}
.y161{bottom:497.000133pt;}
.y1e9{bottom:497.098800pt;}
.y224{bottom:497.100133pt;}
.y25f{bottom:497.256133pt;}
.y1b6{bottom:497.426800pt;}
.y140{bottom:498.621467pt;}
.y141{bottom:500.493467pt;}
.y66{bottom:502.760133pt;}
.y139{bottom:504.149467pt;}
.yd2{bottom:506.421467pt;}
.y1e8{bottom:511.762800pt;}
.y223{bottom:511.764133pt;}
.y25e{bottom:511.920133pt;}
.y160{bottom:513.000133pt;}
.y65{bottom:518.760133pt;}
.yd1{bottom:522.421467pt;}
.ye5{bottom:525.088133pt;}
.y1e7{bottom:526.426800pt;}
.y222{bottom:526.428133pt;}
.y25d{bottom:526.584133pt;}
.y138{bottom:529.144133pt;}
.y1b5{bottom:529.429467pt;}
.y46{bottom:530.298800pt;}
.y64{bottom:534.760133pt;}
.yd0{bottom:538.421467pt;}
.ye4{bottom:541.088133pt;}
.y1e6{bottom:541.090800pt;}
.y221{bottom:541.092133pt;}
.y25c{bottom:541.248133pt;}
.y1b4{bottom:544.093467pt;}
.y137{bottom:544.480133pt;}
.y136{bottom:545.812133pt;}
.y45{bottom:546.298800pt;}
.y63{bottom:550.760133pt;}
.ycf{bottom:554.421467pt;}
.y1e5{bottom:555.754800pt;}
.y220{bottom:555.756133pt;}
.y25b{bottom:555.912133pt;}
.ye3{bottom:557.088133pt;}
.y135{bottom:559.808133pt;}
.y1a6{bottom:560.657467pt;}
.y44{bottom:562.298800pt;}
.y1b3{bottom:564.093467pt;}
.y62{bottom:566.760133pt;}
.y1e4{bottom:570.418800pt;}
.y21f{bottom:570.420133pt;}
.y25a{bottom:570.576133pt;}
.ye2{bottom:573.088133pt;}
.y1a5{bottom:574.661467pt;}
.y99{bottom:574.760133pt;}
.y134{bottom:575.144133pt;}
.y43{bottom:578.298800pt;}
.y61{bottom:582.760133pt;}
.y1e3{bottom:585.082800pt;}
.y21e{bottom:585.084133pt;}
.y259{bottom:585.240133pt;}
.y1a4{bottom:588.665467pt;}
.y1a1{bottom:588.677467pt;}
.y19e{bottom:588.689467pt;}
.yce{bottom:589.088133pt;}
.y133{bottom:590.480133pt;}
.y132{bottom:591.812133pt;}
.y42{bottom:594.298800pt;}
.y151{bottom:595.494000pt;}
.y1b2{bottom:596.096133pt;}
.y60{bottom:598.760133pt;}
.y1e2{bottom:599.746800pt;}
.y21d{bottom:599.748133pt;}
.y258{bottom:599.904133pt;}
.y1a3{bottom:602.669467pt;}
.y1a0{bottom:602.681467pt;}
.y19d{bottom:602.693467pt;}
.ycd{bottom:605.088133pt;}
.y131{bottom:605.808133pt;}
.y41{bottom:610.298800pt;}
.y1b1{bottom:610.760133pt;}
.y1e1{bottom:614.410800pt;}
.y21c{bottom:614.412133pt;}
.y257{bottom:614.568133pt;}
.y5f{bottom:614.760133pt;}
.y1a2{bottom:616.673467pt;}
.y19f{bottom:616.685467pt;}
.y19c{bottom:616.697467pt;}
.ycc{bottom:621.088133pt;}
.y130{bottom:621.144133pt;}
.y40{bottom:626.298800pt;}
.y1e0{bottom:629.074800pt;}
.y21b{bottom:629.076133pt;}
.y256{bottom:629.232133pt;}
.y5e{bottom:630.760133pt;}
.y19b{bottom:632.033467pt;}
.y12f{bottom:636.480133pt;}
.ycb{bottom:637.088133pt;}
.y12e{bottom:637.812133pt;}
.y3f{bottom:642.298800pt;}
.y1df{bottom:643.738800pt;}
.y21a{bottom:643.740133pt;}
.y255{bottom:643.896133pt;}
.y15c{bottom:645.503600pt;}
.y19a{bottom:646.037467pt;}
.y197{bottom:646.049467pt;}
.y5d{bottom:646.760133pt;}
.y12d{bottom:651.808133pt;}
.yca{bottom:653.088133pt;}
.y3e{bottom:658.298800pt;}
.y15d{bottom:658.319600pt;}
.y1de{bottom:658.402800pt;}
.y219{bottom:658.404133pt;}
.y254{bottom:658.560133pt;}
.y199{bottom:660.041467pt;}
.y196{bottom:660.053467pt;}
.y5c{bottom:662.760133pt;}
.y1b0{bottom:662.770800pt;}
.y12c{bottom:667.144133pt;}
.yc9{bottom:669.088133pt;}
.y1dd{bottom:673.066800pt;}
.y218{bottom:673.068133pt;}
.y253{bottom:673.224133pt;}
.y198{bottom:674.045467pt;}
.y195{bottom:674.057467pt;}
.y3d{bottom:674.298800pt;}
.y1af{bottom:677.434800pt;}
.y5b{bottom:678.760133pt;}
.y12b{bottom:682.480133pt;}
.y12a{bottom:683.812133pt;}
.yc8{bottom:685.088133pt;}
.y1dc{bottom:687.730800pt;}
.y217{bottom:687.732133pt;}
.y252{bottom:687.888133pt;}
.y194{bottom:689.393467pt;}
.y3c{bottom:690.298800pt;}
.y1ae{bottom:692.098800pt;}
.y5a{bottom:694.760133pt;}
.y129{bottom:697.808133pt;}
.yc7{bottom:701.088133pt;}
.y1db{bottom:702.394800pt;}
.y216{bottom:702.396133pt;}
.y251{bottom:702.552133pt;}
.y193{bottom:703.397467pt;}
.y1ad{bottom:706.762800pt;}
.y59{bottom:710.760133pt;}
.y128{bottom:713.144133pt;}
.y1da{bottom:717.058800pt;}
.y215{bottom:717.060133pt;}
.yc6{bottom:717.088133pt;}
.y250{bottom:717.216133pt;}
.y192{bottom:717.401467pt;}
.y1ac{bottom:721.426800pt;}
.y58{bottom:726.760133pt;}
.y127{bottom:728.480133pt;}
.y126{bottom:729.812133pt;}
.y191{bottom:731.405467pt;}
.y1d9{bottom:731.722800pt;}
.y214{bottom:731.724133pt;}
.y24f{bottom:731.880133pt;}
.yc5{bottom:733.088133pt;}
.y98{bottom:734.760133pt;}
.y1ab{bottom:741.426800pt;}
.y57{bottom:742.760133pt;}
.y125{bottom:743.808133pt;}
.y1d8{bottom:746.386800pt;}
.y213{bottom:746.388133pt;}
.y24e{bottom:746.544133pt;}
.y190{bottom:746.741467pt;}
.yc4{bottom:749.088133pt;}
.y3b{bottom:754.293467pt;}
.y56{bottom:758.760133pt;}
.y124{bottom:759.144133pt;}
.y18f{bottom:760.745467pt;}
.y18c{bottom:760.757467pt;}
.y1d7{bottom:761.050800pt;}
.y212{bottom:761.052133pt;}
.y24d{bottom:761.208133pt;}
.yc3{bottom:765.088133pt;}
.y3a{bottom:772.965467pt;}
.y1aa{bottom:773.429467pt;}
.y123{bottom:774.480133pt;}
.y18e{bottom:774.749467pt;}
.y55{bottom:774.760133pt;}
.y18b{bottom:774.761467pt;}
.y1d6{bottom:775.714800pt;}
.y211{bottom:775.716133pt;}
.y122{bottom:775.812133pt;}
.y24c{bottom:775.872133pt;}
.yc2{bottom:781.088133pt;}
.y142{bottom:786.909467pt;}
.y1a9{bottom:788.093467pt;}
.y18d{bottom:788.753467pt;}
.y18a{bottom:788.765467pt;}
.y121{bottom:789.808133pt;}
.y1d5{bottom:790.378800pt;}
.y210{bottom:790.380133pt;}
.y24b{bottom:790.536133pt;}
.y54{bottom:790.760133pt;}
.y143{bottom:791.109467pt;}
.y144{bottom:793.737467pt;}
.yc1{bottom:797.088133pt;}
.y189{bottom:804.101467pt;}
.y1d4{bottom:805.042800pt;}
.y20f{bottom:805.044133pt;}
.y120{bottom:805.144133pt;}
.y24a{bottom:805.200133pt;}
.y53{bottom:806.760133pt;}
.y11e{bottom:807.808133pt;}
.y1a8{bottom:808.093467pt;}
.ye1{bottom:813.088133pt;}
.y188{bottom:818.105467pt;}
.y185{bottom:818.117467pt;}
.y1d3{bottom:819.706800pt;}
.y20e{bottom:819.708133pt;}
.y249{bottom:819.864133pt;}
.y11f{bottom:820.480133pt;}
.y11d{bottom:821.812133pt;}
.y52{bottom:822.760133pt;}
.yc0{bottom:829.088133pt;}
.y187{bottom:832.109467pt;}
.y184{bottom:832.121467pt;}
.y1d2{bottom:834.370800pt;}
.y20d{bottom:834.372133pt;}
.y283{bottom:834.384133pt;}
.y248{bottom:834.528133pt;}
.y11c{bottom:835.809467pt;}
.y51{bottom:838.760133pt;}
.y39{bottom:839.642800pt;}
.ybf{bottom:845.088133pt;}
.y186{bottom:846.113467pt;}
.y183{bottom:846.125467pt;}
.y1d1{bottom:849.034800pt;}
.y20c{bottom:849.036133pt;}
.y282{bottom:849.048133pt;}
.y247{bottom:849.192133pt;}
.y11b{bottom:851.145467pt;}
.y50{bottom:854.760133pt;}
.ybe{bottom:861.088133pt;}
.y182{bottom:861.461467pt;}
.y1d0{bottom:863.698800pt;}
.y20b{bottom:863.700133pt;}
.y281{bottom:863.712133pt;}
.y246{bottom:863.856133pt;}
.y11a{bottom:865.149467pt;}
.y38{bottom:866.306800pt;}
.y4f{bottom:870.760133pt;}
.y181{bottom:875.465467pt;}
.y17e{bottom:875.477467pt;}
.ybd{bottom:877.088133pt;}
.y1cf{bottom:878.362800pt;}
.y20a{bottom:878.364133pt;}
.y280{bottom:878.376133pt;}
.y245{bottom:878.520133pt;}
.y4e{bottom:886.760133pt;}
.y119{bottom:888.477467pt;}
.y116{bottom:888.482800pt;}
.y180{bottom:889.469467pt;}
.y17d{bottom:889.481467pt;}
.y37{bottom:892.970800pt;}
.y1ce{bottom:893.026800pt;}
.y209{bottom:893.028133pt;}
.y27f{bottom:893.040133pt;}
.ybc{bottom:893.088133pt;}
.y244{bottom:893.184133pt;}
.y8{bottom:901.650800pt;}
.y4d{bottom:902.760133pt;}
.y17f{bottom:903.473467pt;}
.y17c{bottom:903.485467pt;}
.y14e{bottom:905.070000pt;}
.y159{bottom:905.075600pt;}
.y155{bottom:905.082000pt;}
.y14a{bottom:905.085467pt;}
.y1cd{bottom:907.690800pt;}
.y208{bottom:907.692133pt;}
.y27e{bottom:907.704133pt;}
.y243{bottom:907.848133pt;}
.y148{bottom:908.241467pt;}
.ybb{bottom:909.088133pt;}
.y7{bottom:912.981467pt;}
.y118{bottom:913.145467pt;}
.y1{bottom:913.405467pt;}
.y13e{bottom:915.777467pt;}
.y4c{bottom:918.760133pt;}
.y36{bottom:919.634800pt;}
.y15e{bottom:921.983600pt;}
.y152{bottom:921.990000pt;}
.y1cc{bottom:922.354800pt;}
.y207{bottom:922.356133pt;}
.y27d{bottom:922.368133pt;}
.y242{bottom:922.512133pt;}
.y6{bottom:924.312133pt;}
.yba{bottom:925.088133pt;}
.y117{bottom:927.149467pt;}
.y4b{bottom:934.760133pt;}
.y5{bottom:935.642800pt;}
.y1cb{bottom:937.018800pt;}
.y206{bottom:937.020133pt;}
.y27c{bottom:937.032133pt;}
.y241{bottom:937.176133pt;}
.y35{bottom:946.298800pt;}
.y4{bottom:946.973467pt;}
.yb9{bottom:949.088133pt;}
.y4a{bottom:950.760133pt;}
.y1ca{bottom:951.682800pt;}
.y205{bottom:951.684133pt;}
.y27b{bottom:951.696133pt;}
.y115{bottom:951.816133pt;}
.y240{bottom:951.840133pt;}
.y3{bottom:958.304133pt;}
.y2{bottom:969.634800pt;}
.y49{bottom:990.906800pt;}
.y9{bottom:996.906800pt;}
.y2b{bottom:1035.928000pt;}
.y2a{bottom:1037.262000pt;}
.h8{height:4.448000pt;}
.h9{height:20.134400pt;}
.h17{height:22.651200pt;}
.h1{height:23.232000pt;}
.h2{height:27.104000pt;}
.ha{height:29.525333pt;}
.hb{height:30.976000pt;}
.h19{height:33.312000pt;}
.h7{height:34.352000pt;}
.h12{height:34.848000pt;}
.h13{height:34.864000pt;}
.h3{height:36.876725pt;}
.hf{height:36.906667pt;}
.h10{height:38.720000pt;}
.h14{height:39.477867pt;}
.h15{height:39.483200pt;}
.h16{height:39.573867pt;}
.h18{height:40.032000pt;}
.h1a{height:42.187500pt;}
.h11{height:44.252070pt;}
.h4{height:44.288000pt;}
.h5{height:44.480000pt;}
.h6{height:46.875000pt;}
.hd{height:51.187200pt;}
.he{height:51.208533pt;}
.hc{height:66.432000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:11.200000pt;}
.x5{left:64.000000pt;}
.x6{left:80.000000pt;}
.x2{left:84.000000pt;}
.x33{left:85.336000pt;}
.x2a{left:92.004000pt;}
.x9{left:100.000000pt;}
.x31{left:105.336000pt;}
.x2b{left:196.008000pt;}
.x2c{left:204.012000pt;}
.x11{left:220.425200pt;}
.x13{left:245.091867pt;}
.x14{left:275.091867pt;}
.x15{left:289.095867pt;}
.x12{left:303.091867pt;}
.x2d{left:325.344000pt;}
.x16{left:326.775867pt;}
.x2f{left:333.360000pt;}
.x17{left:340.779867pt;}
.x18{left:356.115867pt;}
.x19{left:370.119867pt;}
.xb{left:383.064800pt;}
.x1a{left:385.455867pt;}
.xa{left:387.876800pt;}
.x1b{left:399.429200pt;}
.x7{left:410.000000pt;}
.x1c{left:414.765200pt;}
.x8{left:426.000000pt;}
.x1d{left:428.769200pt;}
.x3{left:430.000000pt;}
.x34{left:431.344000pt;}
.x1e{left:444.093200pt;}
.x29{left:446.000000pt;}
.x32{left:451.344000pt;}
.x1f{left:458.097200pt;}
.x30{left:469.356000pt;}
.x20{left:473.433200pt;}
.x2e{left:477.348000pt;}
.x21{left:487.437200pt;}
.xc{left:491.058667pt;}
.x22{left:498.558533pt;}
.x24{left:502.758533pt;}
.xd{left:505.458667pt;}
.x23{left:516.762533pt;}
.x25{left:532.098533pt;}
.x26{left:546.102533pt;}
.x27{left:567.358533pt;}
.x28{left:583.753200pt;}
.x1{left:608.000000pt;}
.xf{left:701.997467pt;}
.x10{left:705.264267pt;}
.xe{left:720.645467pt;}
}




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