
    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_ebfd3c96b5fe5f168ba54131.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.992188;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_0eee2d27cd8ab99fb2b2c861.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3985cd98e4c2a1346ce2a3e4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a088d3258b1626743257e7b1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_e62a3dd409aa1d2eb83c0ecc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.754395;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_9c12f57e48215bebe03dd650.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.992188;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_4055b1d0d0f57ed13ae6b6b7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5cc91e98af2e818deabd2f5f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a48c19239d9c908950168a91.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e00bfc47165f8e26b94fbc67.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.992188;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_d1940a7c580ec445d10fe950.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_44a45f2426f2a0d2a6e059db.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.920410;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_90ebb9752106d628f286ec65.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.926758;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a5fd483cca023f7b7da9d364.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{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);}
.m3{transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249390,0.000000,-0.079805,0.236920,0,0);-ms-transform:matrix(0.249390,0.000000,-0.079805,0.236920,0,0);-webkit-transform:matrix(0.249390,0.000000,-0.079805,0.236920,0,0);}
.m1{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);}
.m4{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v1{vertical-align:-19.200000px;}
.v3{vertical-align:-13.200000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.000000px;}
.v5{vertical-align:8.400000px;}
.v4{vertical-align:36.000000px;}
.ls8{letter-spacing:-6.014682px;}
.lsf{letter-spacing:-6.000000px;}
.lsc{letter-spacing:-3.000000px;}
.ls9{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.012000px;}
.ls17{letter-spacing:1.416000px;}
.ls1e{letter-spacing:1.794000px;}
.ls22{letter-spacing:2.394000px;}
.ls4{letter-spacing:2.994000px;}
.lsa{letter-spacing:3.000000px;}
.lse{letter-spacing:6.000000px;}
.lsd{letter-spacing:6.014682px;}
.ls2b{letter-spacing:6.600000px;}
.ls26{letter-spacing:7.194000px;}
.ls12{letter-spacing:8.406000px;}
.ls1d{letter-spacing:9.000000px;}
.ls16{letter-spacing:10.800000px;}
.ls14{letter-spacing:11.544000px;}
.ls19{letter-spacing:11.628000px;}
.ls20{letter-spacing:12.000000px;}
.ls23{letter-spacing:12.300000px;}
.ls24{letter-spacing:12.900000px;}
.ls0{letter-spacing:13.194000px;}
.ls5{letter-spacing:14.203200px;}
.ls11{letter-spacing:15.000000px;}
.ls15{letter-spacing:15.816000px;}
.ls1f{letter-spacing:15.830400px;}
.ls25{letter-spacing:17.700000px;}
.lsb{letter-spacing:18.000000px;}
.ls2a{letter-spacing:19.788000px;}
.ls1{letter-spacing:20.790000px;}
.ls13{letter-spacing:22.512000px;}
.ls1c{letter-spacing:22.737000px;}
.ls21{letter-spacing:23.820000px;}
.ls10{letter-spacing:25.020000px;}
.ls18{letter-spacing:27.240000px;}
.ls2{letter-spacing:27.594000px;}
.ls3{letter-spacing:32.400000px;}
.ls6{letter-spacing:34.830000px;}
.ls29{letter-spacing:42.828000px;}
.ls1b{letter-spacing:43.080000px;}
.ls7{letter-spacing:51.120000px;}
.ls27{letter-spacing:150.900000px;}
.ls1a{letter-spacing:375.120000px;}
.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;}
}
.ws16{word-spacing:-43.500000px;}
.ws5{word-spacing:-40.500000px;}
.ws32{word-spacing:-39.292800px;}
.ws6{word-spacing:-37.962000px;}
.ws29{word-spacing:-36.660000px;}
.ws36{word-spacing:-34.055130px;}
.ws2e{word-spacing:-33.972000px;}
.ws31{word-spacing:-31.500000px;}
.ws21{word-spacing:-30.750000px;}
.ws2a{word-spacing:-25.860000px;}
.ws10{word-spacing:-24.606000px;}
.ws2d{word-spacing:-22.500000px;}
.ws4{word-spacing:-21.420000px;}
.ws2b{word-spacing:-21.000000px;}
.ws33{word-spacing:-18.015000px;}
.ws1{word-spacing:-18.000000px;}
.ws1b{word-spacing:-16.980000px;}
.wsf{word-spacing:-16.494000px;}
.wsa{word-spacing:-15.000000px;}
.ws24{word-spacing:-14.784000px;}
.ws34{word-spacing:-13.800000px;}
.wse{word-spacing:-13.500000px;}
.ws20{word-spacing:-12.987000px;}
.ws1c{word-spacing:-12.984000px;}
.ws3b{word-spacing:-12.000000px;}
.ws2c{word-spacing:-11.988000px;}
.ws27{word-spacing:-10.800000px;}
.ws1e{word-spacing:-9.000000px;}
.ws18{word-spacing:-7.500000px;}
.ws35{word-spacing:-6.585600px;}
.ws15{word-spacing:-6.396000px;}
.ws30{word-spacing:-6.360000px;}
.ws3a{word-spacing:-6.300000px;}
.ws22{word-spacing:-6.000000px;}
.ws7{word-spacing:-5.904000px;}
.ws17{word-spacing:-5.400000px;}
.ws2f{word-spacing:-5.340000px;}
.wsd{word-spacing:-4.608000px;}
.ws13{word-spacing:-4.500000px;}
.ws1d{word-spacing:-3.660000px;}
.ws3c{word-spacing:-3.270000px;}
.ws9{word-spacing:-3.198000px;}
.ws38{word-spacing:-3.024000px;}
.ws39{word-spacing:-3.021000px;}
.ws0{word-spacing:-1.996874px;}
.ws26{word-spacing:-1.248000px;}
.ws12{word-spacing:-1.080000px;}
.ws1f{word-spacing:0.000000px;}
.ws28{word-spacing:0.360000px;}
.wsc{word-spacing:0.792000px;}
.ws37{word-spacing:2.073600px;}
.ws8{word-spacing:5.520000px;}
.ws2{word-spacing:6.300000px;}
.ws19{word-spacing:6.570000px;}
.ws14{word-spacing:8.100000px;}
.ws1a{word-spacing:12.060000px;}
.wsb{word-spacing:25.200000px;}
.ws3{word-spacing:55.605000px;}
.ws25{word-spacing:93.210000px;}
.ws11{word-spacing:165.900000px;}
.ws23{word-spacing:333.450000px;}
._1b{margin-left:-59.532000px;}
._5e{margin-left:-47.724000px;}
._5a{margin-left:-44.157000px;}
._5d{margin-left:-41.205000px;}
._5c{margin-left:-39.852000px;}
._38{margin-left:-34.830000px;}
._5b{margin-left:-31.923000px;}
._3a{margin-left:-30.483000px;}
._41{margin-left:-28.704000px;}
._42{margin-left:-27.027000px;}
._17{margin-left:-25.980000px;}
._3e{margin-left:-24.379095px;}
._33{margin-left:-22.710000px;}
._11{margin-left:-20.520000px;}
._18{margin-left:-18.300000px;}
._1a{margin-left:-17.262000px;}
._13{margin-left:-15.600000px;}
._2f{margin-left:-14.542444px;}
._a{margin-left:-13.500000px;}
._19{margin-left:-12.480000px;}
._c{margin-left:-11.280000px;}
._34{margin-left:-10.221112px;}
._b{margin-left:-9.180000px;}
._31{margin-left:-7.980000px;}
._12{margin-left:-6.600000px;}
._32{margin-left:-5.575556px;}
._10{margin-left:-4.349541px;}
._9{margin-left:-3.051000px;}
._8{margin-left:-1.359459px;}
._3b{width:1.163378px;}
._4{width:2.187000px;}
._0{width:3.199811px;}
._7{width:4.522189px;}
._6{width:5.697000px;}
._1{width:6.736444px;}
._5{width:8.694000px;}
._2{width:10.080607px;}
._26{width:11.690378px;}
._e{width:12.780000px;}
._f{width:14.400000px;}
._3{width:16.038000px;}
._1d{width:17.892000px;}
._15{width:19.440000px;}
._16{width:20.787000px;}
._52{width:21.844865px;}
._2d{width:22.933189px;}
._2c{width:24.067135px;}
._35{width:25.140000px;}
._48{width:26.328622px;}
._14{width:27.960000px;}
._22{width:29.400000px;}
._37{width:31.935000px;}
._36{width:33.005393px;}
._27{width:34.633189px;}
._d{width:36.420000px;}
._3f{width:38.368097px;}
._1c{width:40.770000px;}
._43{width:42.008505px;}
._2b{width:44.355000px;}
._4f{width:46.714811px;}
._20{width:48.408000px;}
._1f{width:49.422000px;}
._4a{width:51.513000px;}
._44{width:52.768811px;}
._1e{width:54.720000px;}
._2a{width:56.901000px;}
._28{width:58.809000px;}
._2e{width:60.378000px;}
._50{width:61.467000px;}
._25{width:63.913352px;}
._56{width:64.951556px;}
._54{width:66.004063px;}
._51{width:67.215567px;}
._29{width:71.433000px;}
._24{width:79.632000px;}
._4e{width:82.503000px;}
._46{width:84.880847px;}
._21{width:87.930000px;}
._53{width:91.501243px;}
._23{width:93.240000px;}
._49{width:100.191000px;}
._45{width:119.853750px;}
._4d{width:129.852000px;}
._3d{width:147.543918px;}
._3c{width:159.969567px;}
._40{width:164.917498px;}
._47{width:171.516622px;}
._55{width:252.328953px;}
._4c{width:365.616661px;}
._57{width:375.805760px;}
._30{width:481.500000px;}
._39{width:643.020000px;}
._4b{width:729.573000px;}
._59{width:1603.752000px;}
._58{width:1605.429622px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:24.000000px;}
.fs0{font-size:24.058728px;}
.fs1{font-size:27.000000px;}
.fsf{font-size:28.800000px;}
.fs13{font-size:30.000000px;}
.fs11{font-size:33.600000px;}
.fse{font-size:36.000000px;}
.fs16{font-size:36.088092px;}
.fs18{font-size:38.400000px;}
.fs5{font-size:39.000000px;}
.fsa{font-size:42.000000px;}
.fs15{font-size:43.200000px;}
.fs4{font-size:45.000000px;}
.fs12{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs9{font-size:72.000000px;}
.fs17{font-size:78.000000px;}
.fs19{font-size:81.000000px;}
.fsd{font-size:84.000000px;}
.fsc{font-size:84.205549px;}
.fs3{font-size:90.000000px;}
.fs14{font-size:96.000000px;}
.fs6{font-size:114.000000px;}
.fs1a{font-size:114.278959px;}
.fs7{font-size:123.000000px;}
.fs10{font-size:198.000000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:62.280000px;}
.ycf{bottom:115.980000px;}
.y1c3{bottom:116.280000px;}
.y140{bottom:117.330000px;}
.yb1{bottom:118.830000px;}
.y7b{bottom:119.880000px;}
.y60{bottom:120.330000px;}
.y40{bottom:122.100000px;}
.y106{bottom:122.130000px;}
.y45{bottom:122.400000px;}
.yeb{bottom:124.230000px;}
.y56{bottom:126.030000px;}
.y123{bottom:126.330000px;}
.y15b{bottom:127.080000px;}
.y1c4{bottom:128.130000px;}
.y171{bottom:129.630000px;}
.y1c2{bottom:133.980000px;}
.yce{bottom:135.030000px;}
.y44{bottom:137.850000px;}
.yb0{bottom:137.880000px;}
.y97{bottom:138.930000px;}
.y7a{bottom:139.380000px;}
.y105{bottom:141.480000px;}
.y1bc{bottom:141.930000px;}
.y27{bottom:145.050000px;}
.y122{bottom:145.080000px;}
.y188{bottom:146.130000px;}
.y15a{bottom:146.280000px;}
.y170{bottom:148.380000px;}
.y13f{bottom:151.980000px;}
.y43{bottom:155.250000px;}
.y1e{bottom:156.600000px;}
.y1bb{bottom:156.930000px;}
.y79{bottom:157.380000px;}
.ye9{bottom:158.730000px;}
.y104{bottom:160.230000px;}
.y121{bottom:163.530000px;}
.y159{bottom:164.580000px;}
.y16f{bottom:167.130000px;}
.y1ba{bottom:167.730000px;}
.ycd{bottom:169.530000px;}
.y13e{bottom:170.730000px;}
.y1c1{bottom:171.330000px;}
.y78{bottom:176.130000px;}
.ye8{bottom:177.180000px;}
.y96{bottom:178.980000px;}
.y187{bottom:180.030000px;}
.y42{bottom:180.450000px;}
.y26{bottom:180.750000px;}
.y120{bottom:182.130000px;}
.y158{bottom:182.880000px;}
.y16e{bottom:185.730000px;}
.ycc{bottom:188.280000px;}
.y1d{bottom:188.700000px;}
.y13d{bottom:189.330000px;}
.y41{bottom:190.050000px;}
.y1c0{bottom:191.580000px;}
.yaf{bottom:194.730000px;}
.y1b9{bottom:195.180000px;}
.y95{bottom:197.730000px;}
.y5f{bottom:199.080000px;}
.y11f{bottom:200.580000px;}
.y157{bottom:201.330000px;}
.y13c{bottom:208.080000px;}
.y1c{bottom:209.250000px;}
.y77{bottom:209.880000px;}
.ye7{bottom:210.930000px;}
.yae{bottom:213.180000px;}
.y186{bottom:213.930000px;}
.y16d{bottom:214.530000px;}
.y94{bottom:216.030000px;}
.y103{bottom:216.330000px;}
.y11e{bottom:219.330000px;}
.y156{bottom:219.930000px;}
.ycb{bottom:222.180000px;}
.y1bf{bottom:223.230000px;}
.y1b8{bottom:224.280000px;}
.y13b{bottom:226.530000px;}
.y76{bottom:228.930000px;}
.ye6{bottom:229.680000px;}
.yad{bottom:231.480000px;}
.y1b{bottom:231.900000px;}
.y185{bottom:232.230000px;}
.y93{bottom:234.330000px;}
.y102{bottom:235.080000px;}
.y155{bottom:238.380000px;}
.yca{bottom:240.930000px;}
.y3f{bottom:244.800000px;}
.y13a{bottom:245.130000px;}
.ye5{bottom:248.430000px;}
.y16c{bottom:248.730000px;}
.yac{bottom:250.530000px;}
.y184{bottom:250.980000px;}
.y92{bottom:253.080000px;}
.y11d{bottom:254.580000px;}
.y154{bottom:256.380000px;}
.y1a{bottom:257.850000px;}
.y25{bottom:258.750000px;}
.yc9{bottom:259.530000px;}
.y75{bottom:262.830000px;}
.y19{bottom:265.050000px;}
.ye4{bottom:267.180000px;}
.y101{bottom:268.230000px;}
.y183{bottom:269.280000px;}
.y1b7{bottom:270.030000px;}
.y91{bottom:271.830000px;}
.y11c{bottom:273.330000px;}
.y153{bottom:275.430000px;}
.y1b6{bottom:276.930000px;}
.y3e{bottom:277.950000px;}
.yc8{bottom:277.980000px;}
.y139{bottom:279.030000px;}
.y74{bottom:281.880000px;}
.ye3{bottom:285.930000px;}
.yab{bottom:286.530000px;}
.y182{bottom:287.730000px;}
.y90{bottom:290.130000px;}
.y1be{bottom:290.580000px;}
.y152{bottom:293.430000px;}
.y1b5{bottom:293.730000px;}
.yc7{bottom:296.730000px;}
.y138{bottom:297.330000px;}
.y3d{bottom:298.050000px;}
.y73{bottom:300.330000px;}
.y18{bottom:302.400000px;}
.y100{bottom:302.730000px;}
.y16b{bottom:304.230000px;}
.y11b{bottom:306.780000px;}
.y1b4{bottom:309.930000px;}
.y151{bottom:311.730000px;}
.yc6{bottom:315.330000px;}
.y72{bottom:318.930000px;}
.ye2{bottom:319.680000px;}
.y3c{bottom:321.450000px;}
.yff{bottom:321.480000px;}
.y16a{bottom:322.230000px;}
.y8f{bottom:324.030000px;}
.yaa{bottom:324.780000px;}
.y11a{bottom:325.830000px;}
.y137{bottom:331.980000px;}
.y3b{bottom:333.750000px;}
.y3a{bottom:337.650000px;}
.yfe{bottom:340.230000px;}
.ya9{bottom:343.530000px;}
.y119{bottom:344.130000px;}
.y1b3{bottom:347.430000px;}
.yc5{bottom:349.530000px;}
.y136{bottom:350.730000px;}
.y150{bottom:351.330000px;}
.y39{bottom:352.050000px;}
.y71{bottom:352.080000px;}
.ye1{bottom:353.880000px;}
.y181{bottom:355.380000px;}
.y169{bottom:355.680000px;}
.y8e{bottom:358.530000px;}
.y17{bottom:359.700000px;}
.ya8{bottom:361.830000px;}
.y118{bottom:362.580000px;}
.y16{bottom:367.650000px;}
.yc4{bottom:368.280000px;}
.y135{bottom:369.030000px;}
.y70{bottom:370.830000px;}
.ye0{bottom:372.630000px;}
.y1b2{bottom:374.130000px;}
.y180{bottom:374.430000px;}
.y8d{bottom:377.280000px;}
.y38{bottom:379.350000px;}
.ya7{bottom:379.830000px;}
.y1b1{bottom:386.280000px;}
.y134{bottom:387.780000px;}
.y14f{bottom:389.880000px;}
.y168{bottom:390.330000px;}
.y50{bottom:390.930000px;}
.ydf{bottom:391.380000px;}
.y17f{bottom:392.430000px;}
.yfd{bottom:393.180000px;}
.y198{bottom:393.480000px;}
.y8c{bottom:396.030000px;}
.y117{bottom:396.330000px;}
.y15{bottom:398.850000px;}
.y1b0{bottom:400.680000px;}
.yc3{bottom:402.180000px;}
.y6f{bottom:405.030000px;}
.y37{bottom:406.050000px;}
.y1af{bottom:406.080000px;}
.y14e{bottom:408.630000px;}
.y167{bottom:409.680000px;}
.yfc{bottom:411.480000px;}
.y197{bottom:412.980000px;}
.y8b{bottom:414.330000px;}
.y116{bottom:415.080000px;}
.ya6{bottom:417.330000px;}
.yc2{bottom:420.930000px;}
.y133{bottom:421.530000px;}
.y6e{bottom:423.330000px;}
.yde{bottom:424.830000px;}
.y17e{bottom:426.330000px;}
.y14d{bottom:426.930000px;}
.y166{bottom:427.680000px;}
.y1ae{bottom:428.130000px;}
.y14{bottom:430.650000px;}
.y36{bottom:432.750000px;}
.ya5{bottom:435.330000px;}
.y1bd{bottom:438.480000px;}
.yc1{bottom:439.530000px;}
.y132{bottom:440.730000px;}
.y6d{bottom:442.530000px;}
.yfb{bottom:445.380000px;}
.y165{bottom:446.130000px;}
.y4f{bottom:446.430000px;}
.y115{bottom:448.530000px;}
.y8a{bottom:452.130000px;}
.y1ad{bottom:454.380000px;}
.yc0{bottom:458.280000px;}
.y35{bottom:460.050000px;}
.y17d{bottom:460.830000px;}
.y5e{bottom:462.630000px;}
.y13{bottom:463.050000px;}
.y14c{bottom:463.380000px;}
.ydd{bottom:464.130000px;}
.y164{bottom:464.430000px;}
.y196{bottom:464.730000px;}
.y55{bottom:465.930000px;}
.y114{bottom:467.280000px;}
.y6c{bottom:467.730000px;}
.y1ac{bottom:468.780000px;}
.y89{bottom:470.580000px;}
.ya4{bottom:473.430000px;}
.y131{bottom:474.180000px;}
.ybf{bottom:476.730000px;}
.y17c{bottom:479.130000px;}
.y14b{bottom:482.130000px;}
.y12{bottom:482.400000px;}
.yfa{bottom:482.430000px;}
.ydc{bottom:482.730000px;}
.y113{bottom:486.030000px;}
.y1ab{bottom:487.530000px;}
.ya3{bottom:491.730000px;}
.y130{bottom:492.930000px;}
.ybe{bottom:495.330000px;}
.y6b{bottom:495.780000px;}
.y34{bottom:496.800000px;}
.y163{bottom:497.580000px;}
.y17b{bottom:497.880000px;}
.y195{bottom:498.930000px;}
.y11{bottom:499.650000px;}
.y51{bottom:499.680000px;}
.y4e{bottom:500.430000px;}
.yf9{bottom:501.180000px;}
.ydb{bottom:501.480000px;}
.y112{bottom:504.330000px;}
.y88{bottom:509.730000px;}
.y12f{bottom:511.230000px;}
.ybd{bottom:513.780000px;}
.y6a{bottom:514.080000px;}
.y4d{bottom:515.580000px;}
.y17a{bottom:515.880000px;}
.y24{bottom:516.150000px;}
.y194{bottom:516.930000px;}
.yda{bottom:519.930000px;}
.y10{bottom:520.200000px;}
.y5d{bottom:521.280000px;}
.y14a{bottom:522.030000px;}
.y54{bottom:522.780000px;}
.yf{bottom:524.850000px;}
.y87{bottom:528.930000px;}
.y33{bottom:529.200000px;}
.y12e{bottom:529.980000px;}
.y162{bottom:532.080000px;}
.y69{bottom:532.530000px;}
.y179{bottom:534.630000px;}
.y193{bottom:535.680000px;}
.yd9{bottom:538.230000px;}
.y149{bottom:540.780000px;}
.y111{bottom:541.530000px;}
.ya2{bottom:543.330000px;}
.yf8{bottom:543.630000px;}
.y86{bottom:547.530000px;}
.ybc{bottom:548.280000px;}
.y12d{bottom:548.730000px;}
.ye{bottom:550.800000px;}
.y68{bottom:551.130000px;}
.y178{bottom:552.930000px;}
.y192{bottom:554.730000px;}
.y32{bottom:557.250000px;}
.yd{bottom:560.100000px;}
.y31{bottom:563.100000px;}
.y85{bottom:566.280000px;}
.y53{bottom:568.080000px;}
.y5c{bottom:568.530000px;}
.y61{bottom:568.830000px;}
.y161{bottom:569.580000px;}
.yf7{bottom:570.330000px;}
.y191{bottom:573.180000px;}
.y23{bottom:573.450000px;}
.y110{bottom:575.280000px;}
.yd8{bottom:577.530000px;}
.ybb{bottom:582.480000px;}
.ya1{bottom:582.930000px;}
.y12c{bottom:583.230000px;}
.yc{bottom:584.250000px;}
.y67{bottom:584.730000px;}
.y177{bottom:586.830000px;}
.y160{bottom:587.880000px;}
.yf6{bottom:589.380000px;}
.y190{bottom:591.930000px;}
.y10f{bottom:594.030000px;}
.y1a5{bottom:595.530000px;}
.yb{bottom:598.350000px;}
.y1aa{bottom:598.380000px;}
.yba{bottom:600.930000px;}
.ya0{bottom:601.980000px;}
.y84{bottom:603.330000px;}
.y66{bottom:603.780000px;}
.y22{bottom:605.250000px;}
.y176{bottom:605.580000px;}
.yf5{bottom:608.130000px;}
.y18f{bottom:610.530000px;}
.y1a9{bottom:612.780000px;}
.yd7{bottom:617.130000px;}
.y12b{bottom:617.730000px;}
.yb9{bottom:619.530000px;}
.y9f{bottom:620.280000px;}
.y15f{bottom:621.330000px;}
.y83{bottom:622.530000px;}
.ya{bottom:623.550000px;}
.y1a4{bottom:624.630000px;}
.y5b{bottom:626.430000px;}
.yf4{bottom:626.730000px;}
.y52{bottom:627.180000px;}
.y18e{bottom:628.980000px;}
.y30{bottom:632.100000px;}
.yd6{bottom:635.430000px;}
.y10e{bottom:636.930000px;}
.y1a8{bottom:637.980000px;}
.yb8{bottom:638.280000px;}
.y148{bottom:638.730000px;}
.y9e{bottom:639.030000px;}
.y15e{bottom:640.530000px;}
.y19f{bottom:644.430000px;}
.yf3{bottom:645.480000px;}
.y21{bottom:647.250000px;}
.y18d{bottom:648.030000px;}
.y1a3{bottom:652.380000px;}
.yd5{bottom:654.480000px;}
.y12a{bottom:655.230000px;}
.y9{bottom:655.650000px;}
.y10d{bottom:655.980000px;}
.y2f{bottom:656.700000px;}
.yb7{bottom:657.030000px;}
.y9d{bottom:657.330000px;}
.y147{bottom:657.780000px;}
.y8{bottom:661.050000px;}
.y82{bottom:661.380000px;}
.y4c{bottom:662.130000px;}
.y1a2{bottom:662.430000px;}
.yf2{bottom:664.230000px;}
.y1a7{bottom:666.330000px;}
.y2e{bottom:669.600000px;}
.yd4{bottom:672.930000px;}
.y129{bottom:674.280000px;}
.y10c{bottom:674.730000px;}
.y15d{bottom:675.330000px;}
.y146{bottom:676.080000px;}
.y5a{bottom:676.530000px;}
.y65{bottom:678.330000px;}
.y81{bottom:680.730000px;}
.y18c{bottom:681.480000px;}
.yf1{bottom:682.980000px;}
.y59{bottom:683.730000px;}
.y7{bottom:685.800000px;}
.y1a1{bottom:686.130000px;}
.yb6{bottom:689.130000px;}
.y20{bottom:690.150000px;}
.y9c{bottom:691.230000px;}
.yd3{bottom:691.530000px;}
.y128{bottom:693.030000px;}
.y10b{bottom:693.330000px;}
.y15c{bottom:693.780000px;}
.y145{bottom:694.080000px;}
.y6{bottom:694.800000px;}
.y175{bottom:695.130000px;}
.y1a0{bottom:695.580000px;}
.y4b{bottom:698.130000px;}
.y2d{bottom:699.150000px;}
.y80{bottom:699.480000px;}
.yf0{bottom:711.030000px;}
.y10a{bottom:712.080000px;}
.y5{bottom:712.500000px;}
.y144{bottom:712.830000px;}
.y4a{bottom:713.580000px;}
.y64{bottom:714.930000px;}
.y18b{bottom:716.130000px;}
.y7f{bottom:718.230000px;}
.y1a6{bottom:719.280000px;}
.yb5{bottom:722.580000px;}
.y9b{bottom:725.430000px;}
.yd2{bottom:725.730000px;}
.y19b{bottom:726.480000px;}
.y127{bottom:726.930000px;}
.y109{bottom:730.830000px;}
.y143{bottom:731.130000px;}
.y4{bottom:731.250000px;}
.y1f{bottom:733.050000px;}
.y58{bottom:734.730000px;}
.y2c{bottom:735.750000px;}
.y7e{bottom:736.980000px;}
.y19a{bottom:737.730000px;}
.y2b{bottom:740.850000px;}
.yb4{bottom:741.330000px;}
.y2a{bottom:742.650000px;}
.y9a{bottom:744.480000px;}
.yef{bottom:745.530000px;}
.y174{bottom:747.330000px;}
.y57{bottom:747.780000px;}
.y19e{bottom:749.130000px;}
.y3{bottom:749.550000px;}
.y49{bottom:749.580000px;}
.y142{bottom:749.880000px;}
.y63{bottom:750.330000px;}
.y48{bottom:751.380000px;}
.y18a{bottom:753.480000px;}
.y2{bottom:759.600000px;}
.yb3{bottom:759.630000px;}
.y126{bottom:761.730000px;}
.y199{bottom:762.930000px;}
.y99{bottom:763.230000px;}
.yee{bottom:764.280000px;}
.yd1{bottom:765.030000px;}
.y108{bottom:765.780000px;}
.y189{bottom:771.480000px;}
.y19d{bottom:774.030000px;}
.y29{bottom:774.300000px;}
.yb2{bottom:777.930000px;}
.y7d{bottom:778.380000px;}
.y125{bottom:780.930000px;}
.y98{bottom:781.980000px;}
.y47{bottom:782.280000px;}
.yed{bottom:782.730000px;}
.yd0{bottom:784.080000px;}
.y107{bottom:784.530000px;}
.y28{bottom:785.250000px;}
.y19c{bottom:790.230000px;}
.y173{bottom:790.980000px;}
.y62{bottom:792.030000px;}
.yea{bottom:793.830000px;}
.y46{bottom:794.880000px;}
.y172{bottom:797.430000px;}
.y124{bottom:798.180000px;}
.yec{bottom:799.530000px;}
.y1{bottom:802.050000px;}
.y141{bottom:802.080000px;}
.h2{height:20.487511px;}
.h9{height:21.058594px;}
.h3{height:23.690918px;}
.h18{height:30.656250px;}
.h17{height:30.731266px;}
.h7{height:31.970215px;}
.hf{height:31.974609px;}
.h14{height:33.210938px;}
.h1f{height:36.852539px;}
.h11{height:36.955078px;}
.hd{height:37.303711px;}
.h1e{height:42.117188px;}
.ha{height:47.961914px;}
.h12{height:51.093750px;}
.h4{height:52.646484px;}
.h6{height:52.792969px;}
.hc{height:55.646484px;}
.h1b{height:58.500000px;}
.h19{height:61.192969px;}
.h1a{height:67.500000px;}
.h15{height:69.210938px;}
.he{height:71.531250px;}
.hb{height:71.706287px;}
.h1c{height:71.942871px;}
.h16{height:72.000000px;}
.h5{height:78.969727px;}
.h1d{height:97.315676px;}
.h8{height:107.925293px;}
.h10{height:173.733398px;}
.h13{height:882.750000px;}
.h0{height:907.200000px;}
.h1{height:907.500000px;}
.w2{width:650.175000px;}
.w3{width:650.250000px;}
.w1{width:660.000000px;}
.w0{width:660.225000px;}
.x0{left:0.000000px;}
.x26{left:72.750000px;}
.x1e{left:79.500000px;}
.x22{left:81.450000px;}
.x1a{left:86.100000px;}
.x5{left:87.450000px;}
.x6{left:88.650000px;}
.x7{left:90.450000px;}
.x4f{left:92.850000px;}
.x51{left:93.900000px;}
.x4e{left:94.950000px;}
.x4b{left:96.450000px;}
.x4d{left:97.950000px;}
.x58{left:99.000000px;}
.x1{left:105.150000px;}
.x62{left:106.200000px;}
.x63{left:107.550000px;}
.x64{left:108.750000px;}
.x8{left:110.550000px;}
.x9{left:111.600000px;}
.x3f{left:113.400000px;}
.x3d{left:115.200000px;}
.x3b{left:116.550000px;}
.x2{left:117.750000px;}
.x53{left:119.550000px;}
.x50{left:120.900000px;}
.x52{left:121.950000px;}
.x25{left:123.150000px;}
.x29{left:124.950000px;}
.x4c{left:126.000000px;}
.x1d{left:130.950000px;}
.x61{left:133.500000px;}
.x69{left:134.550000px;}
.x71{left:136.500000px;}
.x46{left:138.600000px;}
.x47{left:139.650000px;}
.x3e{left:141.450000px;}
.x45{left:142.950000px;}
.x3c{left:144.000000px;}
.x2d{left:145.800000px;}
.x3a{left:147.600000px;}
.x43{left:148.950000px;}
.x2a{left:150.900000px;}
.xa{left:152.700000px;}
.x5f{left:160.950000px;}
.x5d{left:162.300000px;}
.x5c{left:163.800000px;}
.x57{left:164.850000px;}
.x12{left:165.900000px;}
.x48{left:167.850000px;}
.x5a{left:168.900000px;}
.x49{left:170.700000px;}
.x41{left:171.750000px;}
.x40{left:172.800000px;}
.x4a{left:173.850000px;}
.x42{left:175.650000px;}
.x39{left:176.850000px;}
.xd{left:177.900000px;}
.x44{left:179.250000px;}
.x65{left:181.050000px;}
.x60{left:186.150000px;}
.x5e{left:190.500000px;}
.x5b{left:191.550000px;}
.x56{left:193.350000px;}
.x38{left:203.400000px;}
.x2e{left:206.700000px;}
.x2c{left:211.650000px;}
.x11{left:215.700000px;}
.x23{left:219.900000px;}
.x1f{left:228.150000px;}
.x20{left:229.650000px;}
.xf{left:234.450000px;}
.x24{left:239.400000px;}
.xb{left:244.050000px;}
.x10{left:254.550000px;}
.x37{left:255.900000px;}
.x54{left:257.100000px;}
.x35{left:264.600000px;}
.x28{left:267.750000px;}
.x27{left:269.250000px;}
.x34{left:281.850000px;}
.x2b{left:285.900000px;}
.xc{left:291.600000px;}
.x67{left:293.400000px;}
.xe{left:308.250000px;}
.x66{left:332.250000px;}
.x32{left:336.150000px;}
.x2f{left:338.850000px;}
.x68{left:345.150000px;}
.x59{left:351.000000px;}
.x33{left:352.050000px;}
.x55{left:363.600000px;}
.x31{left:401.700000px;}
.x30{left:451.800000px;}
.x21{left:506.550000px;}
.x36{left:509.100000px;}
.x1c{left:515.550000px;}
.x1b{left:518.400000px;}
.x19{left:523.800000px;}
.x18{left:525.300000px;}
.x16{left:527.400000px;}
.x15{left:529.650000px;}
.x13{left:530.700000px;}
.x3{left:531.750000px;}
.x4{left:542.250000px;}
.x17{left:543.300000px;}
.x14{left:544.650000px;}
.x6a{left:548.250000px;}
.x6c{left:549.750000px;}
.x6d{left:550.800000px;}
.x6b{left:564.150000px;}
.x70{left:567.000000px;}
.x6e{left:568.050000px;}
.x6f{left:569.250000px;}
@media print{
.v1{vertical-align:-17.066667pt;}
.v3{vertical-align:-11.733333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.666667pt;}
.v5{vertical-align:7.466667pt;}
.v4{vertical-align:32.000000pt;}
.ls8{letter-spacing:-5.346384pt;}
.lsf{letter-spacing:-5.333333pt;}
.lsc{letter-spacing:-2.666667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.010667pt;}
.ls17{letter-spacing:1.258667pt;}
.ls1e{letter-spacing:1.594667pt;}
.ls22{letter-spacing:2.128000pt;}
.ls4{letter-spacing:2.661333pt;}
.lsa{letter-spacing:2.666667pt;}
.lse{letter-spacing:5.333333pt;}
.lsd{letter-spacing:5.346384pt;}
.ls2b{letter-spacing:5.866667pt;}
.ls26{letter-spacing:6.394667pt;}
.ls12{letter-spacing:7.472000pt;}
.ls1d{letter-spacing:8.000000pt;}
.ls16{letter-spacing:9.600000pt;}
.ls14{letter-spacing:10.261333pt;}
.ls19{letter-spacing:10.336000pt;}
.ls20{letter-spacing:10.666667pt;}
.ls23{letter-spacing:10.933333pt;}
.ls24{letter-spacing:11.466667pt;}
.ls0{letter-spacing:11.728000pt;}
.ls5{letter-spacing:12.625067pt;}
.ls11{letter-spacing:13.333333pt;}
.ls15{letter-spacing:14.058667pt;}
.ls1f{letter-spacing:14.071467pt;}
.ls25{letter-spacing:15.733333pt;}
.lsb{letter-spacing:16.000000pt;}
.ls2a{letter-spacing:17.589333pt;}
.ls1{letter-spacing:18.480000pt;}
.ls13{letter-spacing:20.010667pt;}
.ls1c{letter-spacing:20.210667pt;}
.ls21{letter-spacing:21.173333pt;}
.ls10{letter-spacing:22.240000pt;}
.ls18{letter-spacing:24.213333pt;}
.ls2{letter-spacing:24.528000pt;}
.ls3{letter-spacing:28.800000pt;}
.ls6{letter-spacing:30.960000pt;}
.ls29{letter-spacing:38.069333pt;}
.ls1b{letter-spacing:38.293333pt;}
.ls7{letter-spacing:45.440000pt;}
.ls27{letter-spacing:134.133333pt;}
.ls1a{letter-spacing:333.440000pt;}
.ws16{word-spacing:-38.666667pt;}
.ws5{word-spacing:-36.000000pt;}
.ws32{word-spacing:-34.926933pt;}
.ws6{word-spacing:-33.744000pt;}
.ws29{word-spacing:-32.586667pt;}
.ws36{word-spacing:-30.271226pt;}
.ws2e{word-spacing:-30.197333pt;}
.ws31{word-spacing:-28.000000pt;}
.ws21{word-spacing:-27.333333pt;}
.ws2a{word-spacing:-22.986667pt;}
.ws10{word-spacing:-21.872000pt;}
.ws2d{word-spacing:-20.000000pt;}
.ws4{word-spacing:-19.040000pt;}
.ws2b{word-spacing:-18.666667pt;}
.ws33{word-spacing:-16.013333pt;}
.ws1{word-spacing:-16.000000pt;}
.ws1b{word-spacing:-15.093333pt;}
.wsf{word-spacing:-14.661333pt;}
.wsa{word-spacing:-13.333333pt;}
.ws24{word-spacing:-13.141333pt;}
.ws34{word-spacing:-12.266667pt;}
.wse{word-spacing:-12.000000pt;}
.ws20{word-spacing:-11.544000pt;}
.ws1c{word-spacing:-11.541333pt;}
.ws3b{word-spacing:-10.666667pt;}
.ws2c{word-spacing:-10.656000pt;}
.ws27{word-spacing:-9.600000pt;}
.ws1e{word-spacing:-8.000000pt;}
.ws18{word-spacing:-6.666667pt;}
.ws35{word-spacing:-5.853867pt;}
.ws15{word-spacing:-5.685333pt;}
.ws30{word-spacing:-5.653333pt;}
.ws3a{word-spacing:-5.600000pt;}
.ws22{word-spacing:-5.333333pt;}
.ws7{word-spacing:-5.248000pt;}
.ws17{word-spacing:-4.800000pt;}
.ws2f{word-spacing:-4.746667pt;}
.wsd{word-spacing:-4.096000pt;}
.ws13{word-spacing:-4.000000pt;}
.ws1d{word-spacing:-3.253333pt;}
.ws3c{word-spacing:-2.906667pt;}
.ws9{word-spacing:-2.842667pt;}
.ws38{word-spacing:-2.688000pt;}
.ws39{word-spacing:-2.685333pt;}
.ws0{word-spacing:-1.774999pt;}
.ws26{word-spacing:-1.109333pt;}
.ws12{word-spacing:-0.960000pt;}
.ws1f{word-spacing:0.000000pt;}
.ws28{word-spacing:0.320000pt;}
.wsc{word-spacing:0.704000pt;}
.ws37{word-spacing:1.843200pt;}
.ws8{word-spacing:4.906667pt;}
.ws2{word-spacing:5.600000pt;}
.ws19{word-spacing:5.840000pt;}
.ws14{word-spacing:7.200000pt;}
.ws1a{word-spacing:10.720000pt;}
.wsb{word-spacing:22.400000pt;}
.ws3{word-spacing:49.426667pt;}
.ws25{word-spacing:82.853333pt;}
.ws11{word-spacing:147.466667pt;}
.ws23{word-spacing:296.400000pt;}
._1b{margin-left:-52.917333pt;}
._5e{margin-left:-42.421333pt;}
._5a{margin-left:-39.250667pt;}
._5d{margin-left:-36.626667pt;}
._5c{margin-left:-35.424000pt;}
._38{margin-left:-30.960000pt;}
._5b{margin-left:-28.376000pt;}
._3a{margin-left:-27.096000pt;}
._41{margin-left:-25.514667pt;}
._42{margin-left:-24.024000pt;}
._17{margin-left:-23.093333pt;}
._3e{margin-left:-21.670307pt;}
._33{margin-left:-20.186667pt;}
._11{margin-left:-18.240000pt;}
._18{margin-left:-16.266667pt;}
._1a{margin-left:-15.344000pt;}
._13{margin-left:-13.866667pt;}
._2f{margin-left:-12.926617pt;}
._a{margin-left:-12.000000pt;}
._19{margin-left:-11.093333pt;}
._c{margin-left:-10.026667pt;}
._34{margin-left:-9.085433pt;}
._b{margin-left:-8.160000pt;}
._31{margin-left:-7.093333pt;}
._12{margin-left:-5.866667pt;}
._32{margin-left:-4.956050pt;}
._10{margin-left:-3.866259pt;}
._9{margin-left:-2.712000pt;}
._8{margin-left:-1.208408pt;}
._3b{width:1.034114pt;}
._4{width:1.944000pt;}
._0{width:2.844276pt;}
._7{width:4.019724pt;}
._6{width:5.064000pt;}
._1{width:5.987950pt;}
._5{width:7.728000pt;}
._2{width:8.960540pt;}
._26{width:10.391447pt;}
._e{width:11.360000pt;}
._f{width:12.800000pt;}
._3{width:14.256000pt;}
._1d{width:15.904000pt;}
._15{width:17.280000pt;}
._16{width:18.477333pt;}
._52{width:19.417658pt;}
._2d{width:20.385057pt;}
._2c{width:21.393009pt;}
._35{width:22.346667pt;}
._48{width:23.403219pt;}
._14{width:24.853333pt;}
._22{width:26.133333pt;}
._37{width:28.386667pt;}
._36{width:29.338127pt;}
._27{width:30.785057pt;}
._d{width:32.373333pt;}
._3f{width:34.104975pt;}
._1c{width:36.240000pt;}
._43{width:37.340893pt;}
._2b{width:39.426667pt;}
._4f{width:41.524276pt;}
._20{width:43.029333pt;}
._1f{width:43.930667pt;}
._4a{width:45.789333pt;}
._44{width:46.905610pt;}
._1e{width:48.640000pt;}
._2a{width:50.578667pt;}
._28{width:52.274667pt;}
._2e{width:53.669333pt;}
._50{width:54.637333pt;}
._25{width:56.811868pt;}
._56{width:57.734717pt;}
._54{width:58.670279pt;}
._51{width:59.747171pt;}
._29{width:63.496000pt;}
._24{width:70.784000pt;}
._4e{width:73.336000pt;}
._46{width:75.449642pt;}
._21{width:78.160000pt;}
._53{width:81.334439pt;}
._23{width:82.880000pt;}
._49{width:89.058667pt;}
._45{width:106.536667pt;}
._4d{width:115.424000pt;}
._3d{width:131.150149pt;}
._3c{width:142.195171pt;}
._40{width:146.593332pt;}
._47{width:152.459219pt;}
._55{width:224.292403pt;}
._4c{width:324.992588pt;}
._57{width:334.049565pt;}
._30{width:428.000000pt;}
._39{width:571.573333pt;}
._4b{width:648.509333pt;}
._59{width:1425.557333pt;}
._58{width:1427.048553pt;}
.fs8{font-size:21.333333pt;}
.fs0{font-size:21.385536pt;}
.fs1{font-size:24.000000pt;}
.fsf{font-size:25.600000pt;}
.fs13{font-size:26.666667pt;}
.fs11{font-size:29.866667pt;}
.fse{font-size:32.000000pt;}
.fs16{font-size:32.078304pt;}
.fs18{font-size:34.133333pt;}
.fs5{font-size:34.666667pt;}
.fsa{font-size:37.333333pt;}
.fs15{font-size:38.400000pt;}
.fs4{font-size:40.000000pt;}
.fs12{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs9{font-size:64.000000pt;}
.fs17{font-size:69.333333pt;}
.fs19{font-size:72.000000pt;}
.fsd{font-size:74.666667pt;}
.fsc{font-size:74.849376pt;}
.fs3{font-size:80.000000pt;}
.fs14{font-size:85.333333pt;}
.fs6{font-size:101.333333pt;}
.fs1a{font-size:101.581297pt;}
.fs7{font-size:109.333333pt;}
.fs10{font-size:176.000000pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:55.360000pt;}
.ycf{bottom:103.093333pt;}
.y1c3{bottom:103.360000pt;}
.y140{bottom:104.293333pt;}
.yb1{bottom:105.626667pt;}
.y7b{bottom:106.560000pt;}
.y60{bottom:106.960000pt;}
.y40{bottom:108.533333pt;}
.y106{bottom:108.560000pt;}
.y45{bottom:108.800000pt;}
.yeb{bottom:110.426667pt;}
.y56{bottom:112.026667pt;}
.y123{bottom:112.293333pt;}
.y15b{bottom:112.960000pt;}
.y1c4{bottom:113.893333pt;}
.y171{bottom:115.226667pt;}
.y1c2{bottom:119.093333pt;}
.yce{bottom:120.026667pt;}
.y44{bottom:122.533333pt;}
.yb0{bottom:122.560000pt;}
.y97{bottom:123.493333pt;}
.y7a{bottom:123.893333pt;}
.y105{bottom:125.760000pt;}
.y1bc{bottom:126.160000pt;}
.y27{bottom:128.933333pt;}
.y122{bottom:128.960000pt;}
.y188{bottom:129.893333pt;}
.y15a{bottom:130.026667pt;}
.y170{bottom:131.893333pt;}
.y13f{bottom:135.093333pt;}
.y43{bottom:138.000000pt;}
.y1e{bottom:139.200000pt;}
.y1bb{bottom:139.493333pt;}
.y79{bottom:139.893333pt;}
.ye9{bottom:141.093333pt;}
.y104{bottom:142.426667pt;}
.y121{bottom:145.360000pt;}
.y159{bottom:146.293333pt;}
.y16f{bottom:148.560000pt;}
.y1ba{bottom:149.093333pt;}
.ycd{bottom:150.693333pt;}
.y13e{bottom:151.760000pt;}
.y1c1{bottom:152.293333pt;}
.y78{bottom:156.560000pt;}
.ye8{bottom:157.493333pt;}
.y96{bottom:159.093333pt;}
.y187{bottom:160.026667pt;}
.y42{bottom:160.400000pt;}
.y26{bottom:160.666667pt;}
.y120{bottom:161.893333pt;}
.y158{bottom:162.560000pt;}
.y16e{bottom:165.093333pt;}
.ycc{bottom:167.360000pt;}
.y1d{bottom:167.733333pt;}
.y13d{bottom:168.293333pt;}
.y41{bottom:168.933333pt;}
.y1c0{bottom:170.293333pt;}
.yaf{bottom:173.093333pt;}
.y1b9{bottom:173.493333pt;}
.y95{bottom:175.760000pt;}
.y5f{bottom:176.960000pt;}
.y11f{bottom:178.293333pt;}
.y157{bottom:178.960000pt;}
.y13c{bottom:184.960000pt;}
.y1c{bottom:186.000000pt;}
.y77{bottom:186.560000pt;}
.ye7{bottom:187.493333pt;}
.yae{bottom:189.493333pt;}
.y186{bottom:190.160000pt;}
.y16d{bottom:190.693333pt;}
.y94{bottom:192.026667pt;}
.y103{bottom:192.293333pt;}
.y11e{bottom:194.960000pt;}
.y156{bottom:195.493333pt;}
.ycb{bottom:197.493333pt;}
.y1bf{bottom:198.426667pt;}
.y1b8{bottom:199.360000pt;}
.y13b{bottom:201.360000pt;}
.y76{bottom:203.493333pt;}
.ye6{bottom:204.160000pt;}
.yad{bottom:205.760000pt;}
.y1b{bottom:206.133333pt;}
.y185{bottom:206.426667pt;}
.y93{bottom:208.293333pt;}
.y102{bottom:208.960000pt;}
.y155{bottom:211.893333pt;}
.yca{bottom:214.160000pt;}
.y3f{bottom:217.600000pt;}
.y13a{bottom:217.893333pt;}
.ye5{bottom:220.826667pt;}
.y16c{bottom:221.093333pt;}
.yac{bottom:222.693333pt;}
.y184{bottom:223.093333pt;}
.y92{bottom:224.960000pt;}
.y11d{bottom:226.293333pt;}
.y154{bottom:227.893333pt;}
.y1a{bottom:229.200000pt;}
.y25{bottom:230.000000pt;}
.yc9{bottom:230.693333pt;}
.y75{bottom:233.626667pt;}
.y19{bottom:235.600000pt;}
.ye4{bottom:237.493333pt;}
.y101{bottom:238.426667pt;}
.y183{bottom:239.360000pt;}
.y1b7{bottom:240.026667pt;}
.y91{bottom:241.626667pt;}
.y11c{bottom:242.960000pt;}
.y153{bottom:244.826667pt;}
.y1b6{bottom:246.160000pt;}
.y3e{bottom:247.066667pt;}
.yc8{bottom:247.093333pt;}
.y139{bottom:248.026667pt;}
.y74{bottom:250.560000pt;}
.ye3{bottom:254.160000pt;}
.yab{bottom:254.693333pt;}
.y182{bottom:255.760000pt;}
.y90{bottom:257.893333pt;}
.y1be{bottom:258.293333pt;}
.y152{bottom:260.826667pt;}
.y1b5{bottom:261.093333pt;}
.yc7{bottom:263.760000pt;}
.y138{bottom:264.293333pt;}
.y3d{bottom:264.933333pt;}
.y73{bottom:266.960000pt;}
.y18{bottom:268.800000pt;}
.y100{bottom:269.093333pt;}
.y16b{bottom:270.426667pt;}
.y11b{bottom:272.693333pt;}
.y1b4{bottom:275.493333pt;}
.y151{bottom:277.093333pt;}
.yc6{bottom:280.293333pt;}
.y72{bottom:283.493333pt;}
.ye2{bottom:284.160000pt;}
.y3c{bottom:285.733333pt;}
.yff{bottom:285.760000pt;}
.y16a{bottom:286.426667pt;}
.y8f{bottom:288.026667pt;}
.yaa{bottom:288.693333pt;}
.y11a{bottom:289.626667pt;}
.y137{bottom:295.093333pt;}
.y3b{bottom:296.666667pt;}
.y3a{bottom:300.133333pt;}
.yfe{bottom:302.426667pt;}
.ya9{bottom:305.360000pt;}
.y119{bottom:305.893333pt;}
.y1b3{bottom:308.826667pt;}
.yc5{bottom:310.693333pt;}
.y136{bottom:311.760000pt;}
.y150{bottom:312.293333pt;}
.y39{bottom:312.933333pt;}
.y71{bottom:312.960000pt;}
.ye1{bottom:314.560000pt;}
.y181{bottom:315.893333pt;}
.y169{bottom:316.160000pt;}
.y8e{bottom:318.693333pt;}
.y17{bottom:319.733333pt;}
.ya8{bottom:321.626667pt;}
.y118{bottom:322.293333pt;}
.y16{bottom:326.800000pt;}
.yc4{bottom:327.360000pt;}
.y135{bottom:328.026667pt;}
.y70{bottom:329.626667pt;}
.ye0{bottom:331.226667pt;}
.y1b2{bottom:332.560000pt;}
.y180{bottom:332.826667pt;}
.y8d{bottom:335.360000pt;}
.y38{bottom:337.200000pt;}
.ya7{bottom:337.626667pt;}
.y1b1{bottom:343.360000pt;}
.y134{bottom:344.693333pt;}
.y14f{bottom:346.560000pt;}
.y168{bottom:346.960000pt;}
.y50{bottom:347.493333pt;}
.ydf{bottom:347.893333pt;}
.y17f{bottom:348.826667pt;}
.yfd{bottom:349.493333pt;}
.y198{bottom:349.760000pt;}
.y8c{bottom:352.026667pt;}
.y117{bottom:352.293333pt;}
.y15{bottom:354.533333pt;}
.y1b0{bottom:356.160000pt;}
.yc3{bottom:357.493333pt;}
.y6f{bottom:360.026667pt;}
.y37{bottom:360.933333pt;}
.y1af{bottom:360.960000pt;}
.y14e{bottom:363.226667pt;}
.y167{bottom:364.160000pt;}
.yfc{bottom:365.760000pt;}
.y197{bottom:367.093333pt;}
.y8b{bottom:368.293333pt;}
.y116{bottom:368.960000pt;}
.ya6{bottom:370.960000pt;}
.yc2{bottom:374.160000pt;}
.y133{bottom:374.693333pt;}
.y6e{bottom:376.293333pt;}
.yde{bottom:377.626667pt;}
.y17e{bottom:378.960000pt;}
.y14d{bottom:379.493333pt;}
.y166{bottom:380.160000pt;}
.y1ae{bottom:380.560000pt;}
.y14{bottom:382.800000pt;}
.y36{bottom:384.666667pt;}
.ya5{bottom:386.960000pt;}
.y1bd{bottom:389.760000pt;}
.yc1{bottom:390.693333pt;}
.y132{bottom:391.760000pt;}
.y6d{bottom:393.360000pt;}
.yfb{bottom:395.893333pt;}
.y165{bottom:396.560000pt;}
.y4f{bottom:396.826667pt;}
.y115{bottom:398.693333pt;}
.y8a{bottom:401.893333pt;}
.y1ad{bottom:403.893333pt;}
.yc0{bottom:407.360000pt;}
.y35{bottom:408.933333pt;}
.y17d{bottom:409.626667pt;}
.y5e{bottom:411.226667pt;}
.y13{bottom:411.600000pt;}
.y14c{bottom:411.893333pt;}
.ydd{bottom:412.560000pt;}
.y164{bottom:412.826667pt;}
.y196{bottom:413.093333pt;}
.y55{bottom:414.160000pt;}
.y114{bottom:415.360000pt;}
.y6c{bottom:415.760000pt;}
.y1ac{bottom:416.693333pt;}
.y89{bottom:418.293333pt;}
.ya4{bottom:420.826667pt;}
.y131{bottom:421.493333pt;}
.ybf{bottom:423.760000pt;}
.y17c{bottom:425.893333pt;}
.y14b{bottom:428.560000pt;}
.y12{bottom:428.800000pt;}
.yfa{bottom:428.826667pt;}
.ydc{bottom:429.093333pt;}
.y113{bottom:432.026667pt;}
.y1ab{bottom:433.360000pt;}
.ya3{bottom:437.093333pt;}
.y130{bottom:438.160000pt;}
.ybe{bottom:440.293333pt;}
.y6b{bottom:440.693333pt;}
.y34{bottom:441.600000pt;}
.y163{bottom:442.293333pt;}
.y17b{bottom:442.560000pt;}
.y195{bottom:443.493333pt;}
.y11{bottom:444.133333pt;}
.y51{bottom:444.160000pt;}
.y4e{bottom:444.826667pt;}
.yf9{bottom:445.493333pt;}
.ydb{bottom:445.760000pt;}
.y112{bottom:448.293333pt;}
.y88{bottom:453.093333pt;}
.y12f{bottom:454.426667pt;}
.ybd{bottom:456.693333pt;}
.y6a{bottom:456.960000pt;}
.y4d{bottom:458.293333pt;}
.y17a{bottom:458.560000pt;}
.y24{bottom:458.800000pt;}
.y194{bottom:459.493333pt;}
.yda{bottom:462.160000pt;}
.y10{bottom:462.400000pt;}
.y5d{bottom:463.360000pt;}
.y14a{bottom:464.026667pt;}
.y54{bottom:464.693333pt;}
.yf{bottom:466.533333pt;}
.y87{bottom:470.160000pt;}
.y33{bottom:470.400000pt;}
.y12e{bottom:471.093333pt;}
.y162{bottom:472.960000pt;}
.y69{bottom:473.360000pt;}
.y179{bottom:475.226667pt;}
.y193{bottom:476.160000pt;}
.yd9{bottom:478.426667pt;}
.y149{bottom:480.693333pt;}
.y111{bottom:481.360000pt;}
.ya2{bottom:482.960000pt;}
.yf8{bottom:483.226667pt;}
.y86{bottom:486.693333pt;}
.ybc{bottom:487.360000pt;}
.y12d{bottom:487.760000pt;}
.ye{bottom:489.600000pt;}
.y68{bottom:489.893333pt;}
.y178{bottom:491.493333pt;}
.y192{bottom:493.093333pt;}
.y32{bottom:495.333333pt;}
.yd{bottom:497.866667pt;}
.y31{bottom:500.533333pt;}
.y85{bottom:503.360000pt;}
.y53{bottom:504.960000pt;}
.y5c{bottom:505.360000pt;}
.y61{bottom:505.626667pt;}
.y161{bottom:506.293333pt;}
.yf7{bottom:506.960000pt;}
.y191{bottom:509.493333pt;}
.y23{bottom:509.733333pt;}
.y110{bottom:511.360000pt;}
.yd8{bottom:513.360000pt;}
.ybb{bottom:517.760000pt;}
.ya1{bottom:518.160000pt;}
.y12c{bottom:518.426667pt;}
.yc{bottom:519.333333pt;}
.y67{bottom:519.760000pt;}
.y177{bottom:521.626667pt;}
.y160{bottom:522.560000pt;}
.yf6{bottom:523.893333pt;}
.y190{bottom:526.160000pt;}
.y10f{bottom:528.026667pt;}
.y1a5{bottom:529.360000pt;}
.yb{bottom:531.866667pt;}
.y1aa{bottom:531.893333pt;}
.yba{bottom:534.160000pt;}
.ya0{bottom:535.093333pt;}
.y84{bottom:536.293333pt;}
.y66{bottom:536.693333pt;}
.y22{bottom:538.000000pt;}
.y176{bottom:538.293333pt;}
.yf5{bottom:540.560000pt;}
.y18f{bottom:542.693333pt;}
.y1a9{bottom:544.693333pt;}
.yd7{bottom:548.560000pt;}
.y12b{bottom:549.093333pt;}
.yb9{bottom:550.693333pt;}
.y9f{bottom:551.360000pt;}
.y15f{bottom:552.293333pt;}
.y83{bottom:553.360000pt;}
.ya{bottom:554.266667pt;}
.y1a4{bottom:555.226667pt;}
.y5b{bottom:556.826667pt;}
.yf4{bottom:557.093333pt;}
.y52{bottom:557.493333pt;}
.y18e{bottom:559.093333pt;}
.y30{bottom:561.866667pt;}
.yd6{bottom:564.826667pt;}
.y10e{bottom:566.160000pt;}
.y1a8{bottom:567.093333pt;}
.yb8{bottom:567.360000pt;}
.y148{bottom:567.760000pt;}
.y9e{bottom:568.026667pt;}
.y15e{bottom:569.360000pt;}
.y19f{bottom:572.826667pt;}
.yf3{bottom:573.760000pt;}
.y21{bottom:575.333333pt;}
.y18d{bottom:576.026667pt;}
.y1a3{bottom:579.893333pt;}
.yd5{bottom:581.760000pt;}
.y12a{bottom:582.426667pt;}
.y9{bottom:582.800000pt;}
.y10d{bottom:583.093333pt;}
.y2f{bottom:583.733333pt;}
.yb7{bottom:584.026667pt;}
.y9d{bottom:584.293333pt;}
.y147{bottom:584.693333pt;}
.y8{bottom:587.600000pt;}
.y82{bottom:587.893333pt;}
.y4c{bottom:588.560000pt;}
.y1a2{bottom:588.826667pt;}
.yf2{bottom:590.426667pt;}
.y1a7{bottom:592.293333pt;}
.y2e{bottom:595.200000pt;}
.yd4{bottom:598.160000pt;}
.y129{bottom:599.360000pt;}
.y10c{bottom:599.760000pt;}
.y15d{bottom:600.293333pt;}
.y146{bottom:600.960000pt;}
.y5a{bottom:601.360000pt;}
.y65{bottom:602.960000pt;}
.y81{bottom:605.093333pt;}
.y18c{bottom:605.760000pt;}
.yf1{bottom:607.093333pt;}
.y59{bottom:607.760000pt;}
.y7{bottom:609.600000pt;}
.y1a1{bottom:609.893333pt;}
.yb6{bottom:612.560000pt;}
.y20{bottom:613.466667pt;}
.y9c{bottom:614.426667pt;}
.yd3{bottom:614.693333pt;}
.y128{bottom:616.026667pt;}
.y10b{bottom:616.293333pt;}
.y15c{bottom:616.693333pt;}
.y145{bottom:616.960000pt;}
.y6{bottom:617.600000pt;}
.y175{bottom:617.893333pt;}
.y1a0{bottom:618.293333pt;}
.y4b{bottom:620.560000pt;}
.y2d{bottom:621.466667pt;}
.y80{bottom:621.760000pt;}
.yf0{bottom:632.026667pt;}
.y10a{bottom:632.960000pt;}
.y5{bottom:633.333333pt;}
.y144{bottom:633.626667pt;}
.y4a{bottom:634.293333pt;}
.y64{bottom:635.493333pt;}
.y18b{bottom:636.560000pt;}
.y7f{bottom:638.426667pt;}
.y1a6{bottom:639.360000pt;}
.yb5{bottom:642.293333pt;}
.y9b{bottom:644.826667pt;}
.yd2{bottom:645.093333pt;}
.y19b{bottom:645.760000pt;}
.y127{bottom:646.160000pt;}
.y109{bottom:649.626667pt;}
.y143{bottom:649.893333pt;}
.y4{bottom:650.000000pt;}
.y1f{bottom:651.600000pt;}
.y58{bottom:653.093333pt;}
.y2c{bottom:654.000000pt;}
.y7e{bottom:655.093333pt;}
.y19a{bottom:655.760000pt;}
.y2b{bottom:658.533333pt;}
.yb4{bottom:658.960000pt;}
.y2a{bottom:660.133333pt;}
.y9a{bottom:661.760000pt;}
.yef{bottom:662.693333pt;}
.y174{bottom:664.293333pt;}
.y57{bottom:664.693333pt;}
.y19e{bottom:665.893333pt;}
.y3{bottom:666.266667pt;}
.y49{bottom:666.293333pt;}
.y142{bottom:666.560000pt;}
.y63{bottom:666.960000pt;}
.y48{bottom:667.893333pt;}
.y18a{bottom:669.760000pt;}
.y2{bottom:675.200000pt;}
.yb3{bottom:675.226667pt;}
.y126{bottom:677.093333pt;}
.y199{bottom:678.160000pt;}
.y99{bottom:678.426667pt;}
.yee{bottom:679.360000pt;}
.yd1{bottom:680.026667pt;}
.y108{bottom:680.693333pt;}
.y189{bottom:685.760000pt;}
.y19d{bottom:688.026667pt;}
.y29{bottom:688.266667pt;}
.yb2{bottom:691.493333pt;}
.y7d{bottom:691.893333pt;}
.y125{bottom:694.160000pt;}
.y98{bottom:695.093333pt;}
.y47{bottom:695.360000pt;}
.yed{bottom:695.760000pt;}
.yd0{bottom:696.960000pt;}
.y107{bottom:697.360000pt;}
.y28{bottom:698.000000pt;}
.y19c{bottom:702.426667pt;}
.y173{bottom:703.093333pt;}
.y62{bottom:704.026667pt;}
.yea{bottom:705.626667pt;}
.y46{bottom:706.560000pt;}
.y172{bottom:708.826667pt;}
.y124{bottom:709.493333pt;}
.yec{bottom:710.693333pt;}
.y1{bottom:712.933333pt;}
.y141{bottom:712.960000pt;}
.h2{height:18.211121pt;}
.h9{height:18.718750pt;}
.h3{height:21.058594pt;}
.h18{height:27.250000pt;}
.h17{height:27.316681pt;}
.h7{height:28.417969pt;}
.hf{height:28.421875pt;}
.h14{height:29.520833pt;}
.h1f{height:32.757812pt;}
.h11{height:32.848958pt;}
.hd{height:33.158854pt;}
.h1e{height:37.437500pt;}
.ha{height:42.632812pt;}
.h12{height:45.416667pt;}
.h4{height:46.796875pt;}
.h6{height:46.927083pt;}
.hc{height:49.463542pt;}
.h1b{height:52.000000pt;}
.h19{height:54.393750pt;}
.h1a{height:60.000000pt;}
.h15{height:61.520833pt;}
.he{height:63.583333pt;}
.hb{height:63.738922pt;}
.h1c{height:63.949219pt;}
.h16{height:64.000000pt;}
.h5{height:70.195312pt;}
.h1d{height:86.502823pt;}
.h8{height:95.933594pt;}
.h10{height:154.429688pt;}
.h13{height:784.666667pt;}
.h0{height:806.400000pt;}
.h1{height:806.666667pt;}
.w2{width:577.933333pt;}
.w3{width:578.000000pt;}
.w1{width:586.666667pt;}
.w0{width:586.866667pt;}
.x0{left:0.000000pt;}
.x26{left:64.666667pt;}
.x1e{left:70.666667pt;}
.x22{left:72.400000pt;}
.x1a{left:76.533333pt;}
.x5{left:77.733333pt;}
.x6{left:78.800000pt;}
.x7{left:80.400000pt;}
.x4f{left:82.533333pt;}
.x51{left:83.466667pt;}
.x4e{left:84.400000pt;}
.x4b{left:85.733333pt;}
.x4d{left:87.066667pt;}
.x58{left:88.000000pt;}
.x1{left:93.466667pt;}
.x62{left:94.400000pt;}
.x63{left:95.600000pt;}
.x64{left:96.666667pt;}
.x8{left:98.266667pt;}
.x9{left:99.200000pt;}
.x3f{left:100.800000pt;}
.x3d{left:102.400000pt;}
.x3b{left:103.600000pt;}
.x2{left:104.666667pt;}
.x53{left:106.266667pt;}
.x50{left:107.466667pt;}
.x52{left:108.400000pt;}
.x25{left:109.466667pt;}
.x29{left:111.066667pt;}
.x4c{left:112.000000pt;}
.x1d{left:116.400000pt;}
.x61{left:118.666667pt;}
.x69{left:119.600000pt;}
.x71{left:121.333333pt;}
.x46{left:123.200000pt;}
.x47{left:124.133333pt;}
.x3e{left:125.733333pt;}
.x45{left:127.066667pt;}
.x3c{left:128.000000pt;}
.x2d{left:129.600000pt;}
.x3a{left:131.200000pt;}
.x43{left:132.400000pt;}
.x2a{left:134.133333pt;}
.xa{left:135.733333pt;}
.x5f{left:143.066667pt;}
.x5d{left:144.266667pt;}
.x5c{left:145.600000pt;}
.x57{left:146.533333pt;}
.x12{left:147.466667pt;}
.x48{left:149.200000pt;}
.x5a{left:150.133333pt;}
.x49{left:151.733333pt;}
.x41{left:152.666667pt;}
.x40{left:153.600000pt;}
.x4a{left:154.533333pt;}
.x42{left:156.133333pt;}
.x39{left:157.200000pt;}
.xd{left:158.133333pt;}
.x44{left:159.333333pt;}
.x65{left:160.933333pt;}
.x60{left:165.466667pt;}
.x5e{left:169.333333pt;}
.x5b{left:170.266667pt;}
.x56{left:171.866667pt;}
.x38{left:180.800000pt;}
.x2e{left:183.733333pt;}
.x2c{left:188.133333pt;}
.x11{left:191.733333pt;}
.x23{left:195.466667pt;}
.x1f{left:202.800000pt;}
.x20{left:204.133333pt;}
.xf{left:208.400000pt;}
.x24{left:212.800000pt;}
.xb{left:216.933333pt;}
.x10{left:226.266667pt;}
.x37{left:227.466667pt;}
.x54{left:228.533333pt;}
.x35{left:235.200000pt;}
.x28{left:238.000000pt;}
.x27{left:239.333333pt;}
.x34{left:250.533333pt;}
.x2b{left:254.133333pt;}
.xc{left:259.200000pt;}
.x67{left:260.800000pt;}
.xe{left:274.000000pt;}
.x66{left:295.333333pt;}
.x32{left:298.800000pt;}
.x2f{left:301.200000pt;}
.x68{left:306.800000pt;}
.x59{left:312.000000pt;}
.x33{left:312.933333pt;}
.x55{left:323.200000pt;}
.x31{left:357.066667pt;}
.x30{left:401.600000pt;}
.x21{left:450.266667pt;}
.x36{left:452.533333pt;}
.x1c{left:458.266667pt;}
.x1b{left:460.800000pt;}
.x19{left:465.600000pt;}
.x18{left:466.933333pt;}
.x16{left:468.800000pt;}
.x15{left:470.800000pt;}
.x13{left:471.733333pt;}
.x3{left:472.666667pt;}
.x4{left:482.000000pt;}
.x17{left:482.933333pt;}
.x14{left:484.133333pt;}
.x6a{left:487.333333pt;}
.x6c{left:488.666667pt;}
.x6d{left:489.600000pt;}
.x6b{left:501.466667pt;}
.x70{left:504.000000pt;}
.x6e{left:504.933333pt;}
.x6f{left:506.000000pt;}
}




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