
    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_c1a62f596fa51bb1c16a0e88.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3c996c8d95a1b78b8987d484.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_fc3eeaf7a1fe4a6130a0c3bf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.130371;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_f6514d3374704f73e15efb47.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.766602;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_df88642854f20ad4b58d7883.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_411dee6852e0c39d3b5e5899.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_42dba84cab69c1adc2095663.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.983398;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_de7c5df8c0e1f66db3db5747.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5f10149e14c1ee5b8150cbb2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.946777;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_5f2681f4e42b573b48fbb8d4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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_1eb02bb9a23c3234e3440fa7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_93db9ffc61b0c32d79b01b17.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.854004;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_76ce6bf16541b0f568ca2077.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_09b44aff7d109da94835584f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_62df33ee7d97832d7a99345a.woff2')format("woff");}.fff{font-family:fff;line-height:0.854004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_32bbe72e40727d0f5389c7e1.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_bb47778225fdc4f737f50fa9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.914062;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;}
.m2{transform:matrix(0.249908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249908,0.000000,0.000000,0.250000,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);}
.m5{transform:matrix(0.250269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250269,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250814,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251593,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.144355px;}
.v5{vertical-align:4.288710px;}
.v4{vertical-align:15.010484px;}
.v1{vertical-align:21.000000px;}
.ls32{letter-spacing:-2.928402px;}
.ls31{letter-spacing:-2.285582px;}
.ls28{letter-spacing:-2.027440px;}
.ls27{letter-spacing:-1.477196px;}
.ls33{letter-spacing:-1.109346px;}
.ls24{letter-spacing:-0.690000px;}
.ls10{letter-spacing:-0.630000px;}
.ls4{letter-spacing:-0.462000px;}
.lsd{letter-spacing:-0.420000px;}
.ls1e{letter-spacing:-0.306000px;}
.ls23{letter-spacing:-0.300000px;}
.ls1f{letter-spacing:-0.294000px;}
.ls20{letter-spacing:-0.180000px;}
.ls16{letter-spacing:-0.150000px;}
.ls19{letter-spacing:-0.132000px;}
.ls7{letter-spacing:-0.114000px;}
.ls5{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.036000px;}
.ls3{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.007291px;}
.ls1b{letter-spacing:0.060000px;}
.ls26{letter-spacing:0.126000px;}
.lsc{letter-spacing:0.132000px;}
.ls18{letter-spacing:0.252000px;}
.ls6{letter-spacing:0.378000px;}
.ls2{letter-spacing:0.552000px;}
.ls17{letter-spacing:0.582000px;}
.ls8{letter-spacing:0.636000px;}
.lsb{letter-spacing:0.678000px;}
.ls1{letter-spacing:0.804000px;}
.ls0{letter-spacing:0.822000px;}
.ls25{letter-spacing:0.897322px;}
.ls29{letter-spacing:1.003139px;}
.ls34{letter-spacing:1.035009px;}
.ls22{letter-spacing:1.080000px;}
.ls11{letter-spacing:1.386000px;}
.ls1d{letter-spacing:4.584000px;}
.lse{letter-spacing:14.130000px;}
.ls2a{letter-spacing:35.802000px;}
.ls14{letter-spacing:38.652000px;}
.ls12{letter-spacing:40.302000px;}
.ls13{letter-spacing:41.652000px;}
.ls15{letter-spacing:44.652000px;}
.ls1a{letter-spacing:50.652000px;}
.ls21{letter-spacing:59.652000px;}
.ls1c{letter-spacing:67.302000px;}
.lsf{letter-spacing:70.302000px;}
.ls30{letter-spacing:166.280427px;}
.ls2f{letter-spacing:168.424782px;}
.ls2c{letter-spacing:185.579621px;}
.ls2e{letter-spacing:224.263784px;}
.ls2b{letter-spacing:228.552494px;}
.lsa{letter-spacing:1071.678000px;}
.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;}
}
.ws23{word-spacing:-66.000000px;}
.wsf{word-spacing:-19.710000px;}
.wsd{word-spacing:-17.628000px;}
.ws10{word-spacing:-16.302000px;}
.ws2{word-spacing:-15.738000px;}
.ws12{word-spacing:-15.498000px;}
.ws5{word-spacing:-15.294000px;}
.wse{word-spacing:-15.048000px;}
.ws27{word-spacing:-15.042000px;}
.ws1{word-spacing:-14.916000px;}
.ws3{word-spacing:-14.826000px;}
.ws6{word-spacing:-14.802000px;}
.ws26{word-spacing:-14.784000px;}
.ws11{word-spacing:-14.766000px;}
.ws16{word-spacing:-14.736000px;}
.ws22{word-spacing:-14.640000px;}
.ws15{word-spacing:-14.622000px;}
.ws24{word-spacing:-14.616000px;}
.ws13{word-spacing:-14.610000px;}
.ws0{word-spacing:-14.454000px;}
.ws25{word-spacing:-14.226000px;}
.wsa{word-spacing:-13.560000px;}
.wsb{word-spacing:-13.140000px;}
.wsc{word-spacing:-12.882000px;}
.ws7{word-spacing:-10.848000px;}
.ws8{word-spacing:-10.812000px;}
.ws4{word-spacing:-9.492000px;}
.ws36{word-spacing:-8.059201px;}
.ws14{word-spacing:-0.066000px;}
.ws9{word-spacing:0.000000px;}
.ws30{word-spacing:9.082002px;}
.ws1f{word-spacing:36.292088px;}
.ws1e{word-spacing:38.316334px;}
.ws2e{word-spacing:69.261850px;}
.ws1d{word-spacing:117.424283px;}
.ws1b{word-spacing:132.914632px;}
.ws3a{word-spacing:147.575219px;}
.ws39{word-spacing:149.719574px;}
.ws3b{word-spacing:166.874413px;}
.ws37{word-spacing:204.292477px;}
.ws29{word-spacing:205.363626px;}
.ws38{word-spacing:205.558576px;}
.ws3c{word-spacing:209.847286px;}
.ws3d{word-spacing:210.794876px;}
.ws17{word-spacing:242.916681px;}
.ws18{word-spacing:253.654925px;}
.ws33{word-spacing:254.300145px;}
.ws35{word-spacing:270.770470px;}
.ws28{word-spacing:271.024336px;}
.ws1c{word-spacing:273.074692px;}
.ws19{word-spacing:277.534527px;}
.ws34{word-spacing:285.546995px;}
.ws2f{word-spacing:306.825378px;}
.ws31{word-spacing:306.867704px;}
.ws2b{word-spacing:306.986642px;}
.ws1a{word-spacing:310.387924px;}
.ws2d{word-spacing:323.652710px;}
.ws32{word-spacing:355.185668px;}
.ws2c{word-spacing:385.390597px;}
.ws2a{word-spacing:495.854353px;}
.ws21{word-spacing:896.278913px;}
.ws20{word-spacing:1203.747738px;}
._f{margin-left:-10.632000px;}
._b{margin-left:-9.606000px;}
._c{margin-left:-7.500000px;}
._e{margin-left:-5.148000px;}
._a{margin-left:-4.062000px;}
._2{margin-left:-2.514000px;}
._0{margin-left:-1.386000px;}
._1{width:1.188000px;}
._5{width:2.304000px;}
._3{width:3.360000px;}
._10{width:4.812000px;}
._12{width:6.012000px;}
._13{width:7.902000px;}
._15{width:9.834000px;}
._d{width:11.148000px;}
._11{width:13.200000px;}
._1a{width:15.960000px;}
._14{width:17.268000px;}
._7{width:18.942000px;}
._6{width:20.532000px;}
._8{width:21.630000px;}
._16{width:23.694000px;}
._17{width:25.542000px;}
._18{width:26.928000px;}
._19{width:28.320000px;}
._54{width:33.913158px;}
._2c{width:43.947881px;}
._36{width:46.450249px;}
._42{width:51.780000px;}
._3c{width:53.562000px;}
._23{width:55.541811px;}
._40{width:57.918000px;}
._41{width:61.248000px;}
._3e{width:63.066000px;}
._9{width:66.414000px;}
._43{width:70.734000px;}
._44{width:78.510000px;}
._21{width:90.720448px;}
._48{width:93.857088px;}
._26{width:99.425887px;}
._30{width:104.895597px;}
._53{width:115.959528px;}
._76{width:117.183903px;}
._1e{width:125.746284px;}
._1d{width:127.345378px;}
._6b{width:131.721871px;}
._27{width:133.070173px;}
._1c{width:137.897213px;}
._32{width:141.810446px;}
._5b{width:145.093355px;}
._61{width:147.328608px;}
._2b{width:149.231987px;}
._78{width:155.427457px;}
._71{width:159.013941px;}
._3d{width:160.878000px;}
._4a{width:163.976767px;}
._6c{width:166.541688px;}
._51{width:173.150914px;}
._46{width:176.923537px;}
._74{width:181.943212px;}
._3f{width:186.120000px;}
._45{width:189.116440px;}
._29{width:190.138226px;}
._3b{width:195.858000px;}
._2e{width:197.501108px;}
._3a{width:201.300000px;}
._47{width:202.388897px;}
._5f{width:203.912382px;}
._4e{width:206.185095px;}
._20{width:207.768427px;}
._6e{width:209.102863px;}
._4d{width:214.340200px;}
._77{width:217.383443px;}
._72{width:219.563765px;}
._6f{width:222.077860px;}
._24{width:226.661245px;}
._2a{width:237.263487px;}
._25{width:242.263967px;}
._57{width:261.026723px;}
._58{width:262.770633px;}
._6d{width:264.564933px;}
._79{width:267.632957px;}
._50{width:272.626624px;}
._6a{width:275.134629px;}
._7a{width:278.369688px;}
._70{width:279.425628px;}
._75{width:280.885796px;}
._56{width:283.014275px;}
._73{width:284.267437px;}
._28{width:291.509409px;}
._62{width:299.607152px;}
._2d{width:308.669927px;}
._2f{width:312.264195px;}
._4b{width:313.516367px;}
._1b{width:318.748628px;}
._64{width:322.921611px;}
._65{width:324.341178px;}
._5d{width:330.569286px;}
._49{width:349.601316px;}
._31{width:353.070663px;}
._22{width:354.200930px;}
._59{width:360.966966px;}
._1f{width:372.739017px;}
._4c{width:374.304680px;}
._55{width:396.458784px;}
._5a{width:399.453838px;}
._52{width:472.664542px;}
._37{width:474.431625px;}
._68{width:480.080662px;}
._5e{width:482.641994px;}
._63{width:494.303745px;}
._66{width:510.793660px;}
._67{width:518.953907px;}
._4f{width:534.976924px;}
._35{width:578.184410px;}
._33{width:619.090650px;}
._5c{width:630.732081px;}
._34{width:737.680083px;}
._69{width:768.903040px;}
._4{width:849.414000px;}
._60{width:857.222721px;}
._38{width:904.412829px;}
._39{width:1166.632507px;}
.fc6{color:rgb(47,84,150);}
.fc5{color:rgb(5,99,193);}
.fc4{color:rgb(83,129,53);}
.fc3{color:transparent;}
.fc2{color:rgb(20,120,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(50,35,0);}
.fsf{font-size:21.515028px;}
.fse{font-size:32.236802px;}
.fsb{font-size:32.474527px;}
.fs1{font-size:36.000000px;}
.fs5{font-size:39.000000px;}
.fs3{font-size:42.000000px;}
.fsc{font-size:47.828969px;}
.fs7{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fsd{font-size:67.406808px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:78.000000px;}
.fsa{font-size:90.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1d9{bottom:1.072209px;}
.y1d0{bottom:1.093653px;}
.y1d4{bottom:1.608305px;}
.y134{bottom:2.165009px;}
.y13a{bottom:2.179442px;}
.y154{bottom:2.186659px;}
.y1e5{bottom:2.680370px;}
.y1e7{bottom:2.701899px;}
.y142{bottom:3.247493px;}
.y15a{bottom:3.247522px;}
.y14f{bottom:3.269143px;}
.y46{bottom:3.375000px;}
.y1ac{bottom:3.968183px;}
.y1c9{bottom:5.617312px;}
.y4{bottom:6.750000px;}
.yc{bottom:7.500000px;}
.y26{bottom:7.545000px;}
.y24{bottom:7.860000px;}
.y10{bottom:7.875000px;}
.ye{bottom:7.905000px;}
.y49{bottom:9.000000px;}
.y3e{bottom:9.750000px;}
.y40{bottom:9.765000px;}
.y1e4{bottom:13.437956px;}
.y1ab{bottom:19.919567px;}
.y1e3{bottom:24.177600px;}
.y1c8{bottom:28.048453px;}
.y1f{bottom:31.530000px;}
.y48{bottom:32.625000px;}
.y1e2{bottom:34.917244px;}
.y1aa{bottom:35.844921px;}
.y1e1{bottom:45.674758px;}
.y1c7{bottom:50.517389px;}
.y1a9{bottom:51.796729px;}
.y47{bottom:56.250000px;}
.y1e0{bottom:56.414402px;}
.y5{bottom:59.662500px;}
.y31{bottom:60.787500px;}
.y1df{bottom:67.154046px;}
.y1a8{bottom:67.722082px;}
.y1c6{bottom:72.986325px;}
.y3{bottom:75.412500px;}
.y1de{bottom:77.911560px;}
.y1a7{bottom:83.673890px;}
.y1dd{bottom:88.647630px;}
.y1c5{bottom:95.418061px;}
.y1dc{bottom:98.854759px;}
.y1a6{bottom:99.599244px;}
.y1db{bottom:109.054741px;}
.y2e{bottom:113.287500px;}
.y5f{bottom:113.662500px;}
.y1a5{bottom:115.523539px;}
.ya2{bottom:116.662500px;}
.y112{bottom:117.412500px;}
.y2d{bottom:117.787500px;}
.y1c4{bottom:117.886997px;}
.y1da{bottom:119.276166px;}
.y186{bottom:122.662500px;}
.y19f{bottom:123.787500px;}
.y1d7{bottom:129.483295px;}
.y1a4{bottom:131.480638px;}
.y2c{bottom:133.162500px;}
.ye7{bottom:134.287500px;}
.ycc{bottom:134.662500px;}
.y5e{bottom:137.287500px;}
.y2b{bottom:137.662500px;}
.ya1{bottom:138.412500px;}
.y111{bottom:139.162500px;}
.y1d6{bottom:140.219365px;}
.y1c3{bottom:140.318733px;}
.y204{bottom:142.162500px;}
.y185{bottom:144.412500px;}
.y19e{bottom:145.162500px;}
.y85{bottom:145.537500px;}
.y1a3{bottom:147.405992px;}
.y1d5{bottom:150.976879px;}
.y2a{bottom:151.905000px;}
.y1c0{bottom:152.670000px;}
.ycb{bottom:156.420000px;}
.ye6{bottom:157.170000px;}
.y110{bottom:160.920000px;}
.y1c2{bottom:162.793621px;}
.y1a2{bottom:163.352509px;}
.y203{bottom:163.920000px;}
.y184{bottom:166.170000px;}
.y5d{bottom:166.545000px;}
.y19d{bottom:166.920000px;}
.y1d2{bottom:170.847901px;}
.ya0{bottom:171.780000px;}
.y1bf{bottom:174.825000px;}
.yca{bottom:177.825000px;}
.y1a1{bottom:179.277862px;}
.y84{bottom:179.325000px;}
.ye5{bottom:180.450000px;}
.y1d1{bottom:181.055030px;}
.y10f{bottom:182.700000px;}
.y12f{bottom:183.075000px;}
.y183{bottom:187.950000px;}
.y19c{bottom:188.325000px;}
.y1ce{bottom:191.276455px;}
.y9f{bottom:193.575000px;}
.y5c{bottom:195.825000px;}
.y202{bottom:197.700000px;}
.yc9{bottom:199.575000px;}
.y83{bottom:201.075000px;}
.y1cd{bottom:201.476437px;}
.ye4{bottom:203.700000px;}
.y10e{bottom:204.450000px;}
.y12e{bottom:204.825000px;}
.y182{bottom:209.700000px;}
.y19b{bottom:210.075000px;}
.y1cc{bottom:211.683566px;}
.y9e{bottom:214.950000px;}
.yc8{bottom:220.950000px;}
.y1cb{bottom:222.419637px;}
.y82{bottom:222.825000px;}
.y201{bottom:224.325000px;}
.y5b{bottom:225.075000px;}
.y10d{bottom:226.200000px;}
.y12d{bottom:226.575000px;}
.ye3{bottom:226.950000px;}
.y181{bottom:231.450000px;}
.y29{bottom:234.075000px;}
.y1be{bottom:235.200000px;}
.y9d{bottom:236.700000px;}
.yc7{bottom:242.700000px;}
.y10c{bottom:247.950000px;}
.y12c{bottom:248.325000px;}
.ye2{bottom:249.825000px;}
.y28{bottom:250.575000px;}
.y180{bottom:253.200000px;}
.y5a{bottom:254.325000px;}
.y81{bottom:256.575000px;}
.y9c{bottom:258.075000px;}
.y200{bottom:263.700000px;}
.yc6{bottom:264.075000px;}
.y10b{bottom:269.700000px;}
.y12b{bottom:270.075000px;}
.y1bd{bottom:271.575000px;}
.ye1{bottom:273.075000px;}
.y19a{bottom:274.575000px;}
.y27{bottom:274.950000px;}
.y80{bottom:278.325000px;}
.y9b{bottom:279.825000px;}
.y59{bottom:283.575000px;}
.yc5{bottom:285.825000px;}
.y10a{bottom:291.450000px;}
.y12a{bottom:291.825000px;}
.ye0{bottom:296.325000px;}
.y17f{bottom:296.700000px;}
.y1ff{bottom:297.450000px;}
.y25{bottom:299.325000px;}
.y7f{bottom:300.075000px;}
.y9a{bottom:301.200000px;}
.y1bc{bottom:305.370000px;}
.yc4{bottom:307.605000px;}
.y58{bottom:312.870000px;}
.y129{bottom:313.620000px;}
.y125{bottom:317.730000px;}
.y17e{bottom:318.495000px;}
.ydf{bottom:319.620000px;}
.y7e{bottom:321.870000px;}
.y99{bottom:322.995000px;}
.y23{bottom:323.370000px;}
.y109{bottom:325.245000px;}
.yc3{bottom:328.995000px;}
.y1fe{bottom:331.230000px;}
.y1bb{bottom:332.370000px;}
.y124{bottom:339.495000px;}
.y17d{bottom:340.245000px;}
.y57{bottom:342.120000px;}
.y7d{bottom:343.620000px;}
.y98{bottom:344.355000px;}
.yde{bottom:346.245000px;}
.y108{bottom:346.995000px;}
.y128{bottom:347.370000px;}
.y22{bottom:347.745000px;}
.yc2{bottom:350.745000px;}
.y1fd{bottom:352.995000px;}
.y1ba{bottom:360.495000px;}
.y199{bottom:360.870000px;}
.y1ca{bottom:361.005000px;}
.y123{bottom:361.605000px;}
.y17c{bottom:361.980000px;}
.y97{bottom:366.120000px;}
.y107{bottom:368.730000px;}
.y127{bottom:369.120000px;}
.y56{bottom:370.995000px;}
.yc1{bottom:372.105000px;}
.ydd{bottom:375.870000px;}
.y7c{bottom:377.370000px;}
.y21{bottom:381.480000px;}
.y198{bottom:382.620000px;}
.y17b{bottom:383.745000px;}
.y1fc{bottom:386.745000px;}
.y96{bottom:387.495000px;}
.y106{bottom:390.495000px;}
.yc0{bottom:393.870000px;}
.y126{bottom:396.120000px;}
.y122{bottom:396.870000px;}
.y55{bottom:400.245000px;}
.y197{bottom:404.370000px;}
.y17a{bottom:405.495000px;}
.y20{bottom:407.745000px;}
.y1fb{bottom:408.495000px;}
.y95{bottom:409.245000px;}
.y7b{bottom:411.120000px;}
.y105{bottom:412.245000px;}
.ybf{bottom:415.245000px;}
.y121{bottom:423.870000px;}
.y1e{bottom:424.245000px;}
.y130{bottom:424.890000px;}
.y159{bottom:425.431028px;}
.y196{bottom:425.745000px;}
.y179{bottom:427.245000px;}
.y54{bottom:429.495000px;}
.y1fa{bottom:430.245000px;}
.y104{bottom:434.025000px;}
.ybe{bottom:437.025000px;}
.y7a{bottom:437.775000px;}
.y94{bottom:442.650000px;}
.y195{bottom:447.525000px;}
.y178{bottom:449.025000px;}
.ydc{bottom:451.650000px;}
.y120{bottom:452.025000px;}
.y103{bottom:455.775000px;}
.ybd{bottom:458.400000px;}
.y53{bottom:458.775000px;}
.y194{bottom:468.900000px;}
.y177{bottom:470.775000px;}
.y1f9{bottom:473.775000px;}
.ydb{bottom:474.900000px;}
.y93{bottom:476.400000px;}
.y79{bottom:476.775000px;}
.y102{bottom:477.525000px;}
.y1d{bottom:480.150000px;}
.y52{bottom:488.025000px;}
.y1d8{bottom:488.879990px;}
.y193{bottom:490.650000px;}
.y176{bottom:492.525000px;}
.y1f8{bottom:495.525000px;}
.y1c{bottom:496.650000px;}
.y92{bottom:497.775000px;}
.yda{bottom:498.150000px;}
.y101{bottom:499.275000px;}
.y158{bottom:499.631888px;}
.ybc{bottom:501.525000px;}
.y157{bottom:510.456731px;}
.y78{bottom:510.525000px;}
.y175{bottom:514.275000px;}
.y51{bottom:517.275000px;}
.y91{bottom:519.525000px;}
.y1d3{bottom:520.580703px;}
.y1b{bottom:521.025000px;}
.y156{bottom:521.303223px;}
.ybb{bottom:523.275000px;}
.y192{bottom:524.025000px;}
.y77{bottom:532.275000px;}
.y174{bottom:536.025000px;}
.y1f7{bottom:539.400000px;}
.y90{bottom:540.900000px;}
.y100{bottom:542.775000px;}
.yd9{bottom:544.275000px;}
.yba{bottom:544.650000px;}
.y191{bottom:545.775000px;}
.y50{bottom:546.525000px;}
.y1cf{bottom:550.651707px;}
.y1a{bottom:553.275000px;}
.y76{bottom:557.400000px;}
.y173{bottom:557.775000px;}
.y8f{bottom:562.695000px;}
.yff{bottom:564.570000px;}
.yd8{bottom:567.570000px;}
.y19{bottom:569.820000px;}
.y1f6{bottom:574.695000px;}
.y4f{bottom:575.820000px;}
.yb9{bottom:578.445000px;}
.y172{bottom:579.570000px;}
.y1e6{bottom:581.280243px;}
.yfe{bottom:586.320000px;}
.y18{bottom:594.195000px;}
.yd7{bottom:594.570000px;}
.y8e{bottom:596.070000px;}
.y1f5{bottom:596.445000px;}
.y155{bottom:598.751362px;}
.y171{bottom:601.320000px;}
.y4e{bottom:605.070000px;}
.yfd{bottom:608.070000px;}
.y153{bottom:609.576205px;}
.yb8{bottom:611.820000px;}
.y17{bottom:618.570000px;}
.y152{bottom:620.422697px;}
.y1b9{bottom:621.570000px;}
.y190{bottom:622.695000px;}
.y1a0{bottom:622.699027px;}
.y170{bottom:623.070000px;}
.yd6{bottom:623.820000px;}
.y75{bottom:627.945000px;}
.y8d{bottom:629.820000px;}
.y1f4{bottom:630.195000px;}
.yb7{bottom:633.570000px;}
.y4d{bottom:634.320000px;}
.yfc{bottom:641.820000px;}
.y16{bottom:642.570000px;}
.y1b8{bottom:643.320000px;}
.y16f{bottom:644.820000px;}
.y74{bottom:649.695000px;}
.y8c{bottom:651.195000px;}
.yb6{bottom:654.945000px;}
.y4c{bottom:659.070000px;}
.yfb{bottom:663.570000px;}
.y1f3{bottom:663.945000px;}
.y1b7{bottom:665.070000px;}
.y16e{bottom:666.570000px;}
.y8b{bottom:672.945000px;}
.y15{bottom:674.820000px;}
.yb5{bottom:676.695000px;}
.y4b{bottom:682.320000px;}
.y73{bottom:683.445000px;}
.yfa{bottom:685.320000px;}
.y1f2{bottom:685.695000px;}
.y1b6{bottom:686.820000px;}
.y151{bottom:687.045994px;}
.y16d{bottom:688.350000px;}
.y14{bottom:691.350000px;}
.y4a{bottom:695.100000px;}
.y150{bottom:697.870836px;}
.yb4{bottom:698.100000px;}
.y45{bottom:703.725000px;}
.y72{bottom:705.225000px;}
.y8a{bottom:706.725000px;}
.yf9{bottom:707.100000px;}
.y1b5{bottom:708.600000px;}
.y14e{bottom:708.695679px;}
.y16c{bottom:709.725000px;}
.y13{bottom:715.725000px;}
.y209{bottom:717.225000px;}
.y1f1{bottom:719.475000px;}
.y132{bottom:720.371615px;}
.y71{bottom:726.975000px;}
.yf8{bottom:728.475000px;}
.y1b4{bottom:730.725000px;}
.y131{bottom:731.218107px;}
.y16b{bottom:731.475000px;}
.yb3{bottom:731.850000px;}
.y89{bottom:733.725000px;}
.y12{bottom:740.100000px;}
.y1f0{bottom:741.225000px;}
.y70{bottom:748.350000px;}
.yf7{bottom:750.225000px;}
.y208{bottom:750.975000px;}
.y16a{bottom:753.225000px;}
.y1b3{bottom:759.225000px;}
.y88{bottom:761.850000px;}
.y1ef{bottom:762.975000px;}
.y11{bottom:764.475000px;}
.yb2{bottom:765.225000px;}
.y6f{bottom:770.100000px;}
.yf6{bottom:771.975000px;}
.y14d{bottom:774.784950px;}
.y169{bottom:774.975000px;}
.y44{bottom:781.350000px;}
.y207{bottom:784.725000px;}
.y14c{bottom:785.624226px;}
.yb1{bottom:786.975000px;}
.y1b2{bottom:787.350000px;}
.y1c1{bottom:787.463965px;}
.yf{bottom:788.850000px;}
.y6e{bottom:791.850000px;}
.yf5{bottom:793.725000px;}
.y43{bottom:794.100000px;}
.y14b{bottom:796.449068px;}
.y168{bottom:796.725000px;}
.y42{bottom:803.475000px;}
.yb0{bottom:808.350000px;}
.y11f{bottom:812.100000px;}
.yd{bottom:813.225000px;}
.y6d{bottom:813.600000px;}
.yf4{bottom:815.475000px;}
.y167{bottom:818.520000px;}
.y41{bottom:826.755000px;}
.yaf{bottom:830.130000px;}
.y18f{bottom:832.770000px;}
.yb{bottom:837.630000px;}
.yf3{bottom:840.255000px;}
.y11e{bottom:845.880000px;}
.y6c{bottom:847.380000px;}
.y3f{bottom:850.005000px;}
.y1ee{bottom:851.880000px;}
.y18e{bottom:854.505000px;}
.y14a{bottom:860.373371px;}
.y166{bottom:862.005000px;}
.yae{bottom:863.505000px;}
.y11d{bottom:867.630000px;}
.y6b{bottom:869.145000px;}
.ya{bottom:869.505000px;}
.y149{bottom:871.198214px;}
.y3d{bottom:873.255000px;}
.y1ed{bottom:873.630000px;}
.yf2{bottom:874.005000px;}
.y148{bottom:882.037489px;}
.y165{bottom:883.755000px;}
.y18d{bottom:887.880000px;}
.y11c{bottom:889.380000px;}
.y6a{bottom:890.880000px;}
.y147{bottom:893.403574px;}
.y1ec{bottom:895.380000px;}
.yf1{bottom:895.755000px;}
.yad{bottom:897.255000px;}
.y9{bottom:902.505000px;}
.y146{bottom:904.228416px;}
.y3c{bottom:905.505000px;}
.y18c{bottom:909.630000px;}
.y11b{bottom:911.130000px;}
.y69{bottom:912.630000px;}
.y145{bottom:915.074908px;}
.yf0{bottom:917.130000px;}
.yac{bottom:918.630000px;}
.y144{bottom:926.440993px;}
.y206{bottom:929.130000px;}
.y3b{bottom:931.005000px;}
.y18b{bottom:931.380000px;}
.yd5{bottom:932.505000px;}
.y68{bottom:934.380000px;}
.y11a{bottom:935.880000px;}
.y143{bottom:937.280268px;}
.yef{bottom:938.880000px;}
.y164{bottom:939.255000px;}
.yab{bottom:940.380000px;}
.y8{bottom:941.130000px;}
.y141{bottom:948.105111px;}
.y3a{bottom:950.175000px;}
.y205{bottom:950.925000px;}
.y7{bottom:953.175000px;}
.yd4{bottom:955.800000px;}
.y67{bottom:956.175000px;}
.y140{bottom:959.492845px;}
.yee{bottom:960.300000px;}
.y163{bottom:961.050000px;}
.yaa{bottom:961.800000px;}
.y39{bottom:969.675000px;}
.y13f{bottom:970.317688px;}
.y119{bottom:972.675000px;}
.y18a{bottom:974.925000px;}
.y66{bottom:977.925000px;}
.yd3{bottom:979.050000px;}
.y13e{bottom:981.156963px;}
.yed{bottom:982.050000px;}
.ya9{bottom:983.550000px;}
.y1b1{bottom:985.800000px;}
.y38{bottom:991.425000px;}
.y1eb{bottom:994.425000px;}
.y162{bottom:994.800000px;}
.y189{bottom:996.675000px;}
.yd2{bottom:1001.925000px;}
.yec{bottom:1003.800000px;}
.y118{bottom:1006.425000px;}
.y1b0{bottom:1007.550000px;}
.y37{bottom:1010.925000px;}
.y65{bottom:1011.675000px;}
.y161{bottom:1016.550000px;}
.ya8{bottom:1016.925000px;}
.y188{bottom:1018.425000px;}
.yd1{bottom:1025.175000px;}
.y117{bottom:1028.175000px;}
.yeb{bottom:1028.925000px;}
.y64{bottom:1033.425000px;}
.y36{bottom:1035.300000px;}
.y160{bottom:1038.300000px;}
.y187{bottom:1040.175000px;}
.y1af{bottom:1040.925000px;}
.y13d{bottom:1045.600859px;}
.yd0{bottom:1048.425000px;}
.y1ea{bottom:1049.925000px;}
.ya7{bottom:1050.675000px;}
.y63{bottom:1055.175000px;}
.y13c{bottom:1056.447351px;}
.y15f{bottom:1060.050000px;}
.y116{bottom:1061.925000px;}
.y1ae{bottom:1062.675000px;}
.yea{bottom:1064.175000px;}
.y13b{bottom:1067.272193px;}
.y35{bottom:1068.675000px;}
.ycf{bottom:1070.550000px;}
.y1e9{bottom:1071.675000px;}
.ya6{bottom:1072.050000px;}
.y87{bottom:1072.800000px;}
.y6{bottom:1078.080000px;}
.y139{bottom:1078.097036px;}
.y62{bottom:1079.955000px;}
.y15e{bottom:1081.830000px;}
.y115{bottom:1083.705000px;}
.y1ad{bottom:1084.080000px;}
.ye9{bottom:1085.955000px;}
.y34{bottom:1088.205000px;}
.y138{bottom:1088.936311px;}
.y1e8{bottom:1093.455000px;}
.ya5{bottom:1093.830000px;}
.y86{bottom:1094.205000px;}
.y2{bottom:1095.330000px;}
.y137{bottom:1099.761154px;}
.y15d{bottom:1103.580000px;}
.y114{bottom:1105.455000px;}
.yce{bottom:1105.830000px;}
.y136{bottom:1110.607646px;}
.ye8{bottom:1110.705000px;}
.y33{bottom:1112.580000px;}
.ya4{bottom:1115.580000px;}
.y61{bottom:1116.705000px;}
.y135{bottom:1121.432488px;}
.y15c{bottom:1125.330000px;}
.y113{bottom:1127.205000px;}
.ycd{bottom:1127.580000px;}
.y133{bottom:1132.271764px;}
.y60{bottom:1143.330000px;}
.y32{bottom:1145.955000px;}
.y15b{bottom:1147.455000px;}
.ya3{bottom:1148.955000px;}
.y30{bottom:1170.705000px;}
.y2f{bottom:1186.455000px;}
.y1{bottom:1193.205000px;}
.h2f{height:9.131419px;}
.h30{height:9.667507px;}
.h2d{height:9.685377px;}
.h1b{height:10.283641px;}
.h1c{height:10.301682px;}
.h32{height:10.757531px;}
.h1f{height:10.824883px;}
.h1e{height:10.842925px;}
.h2{height:22.500000px;}
.he{height:22.537500px;}
.h2b{height:22.745205px;}
.h5{height:23.250000px;}
.hb{height:23.287500px;}
.h7{height:23.625000px;}
.h6{height:23.662500px;}
.h2c{height:24.653450px;}
.h31{height:24.739224px;}
.h1a{height:33.251506px;}
.h11{height:35.806641px;}
.h2e{height:36.409953px;}
.h3{height:36.861328px;}
.hc{height:38.790527px;}
.h26{height:41.453330px;}
.h8{height:47.287500px;}
.h16{height:48.243164px;}
.h17{height:50.434570px;}
.h27{height:53.109375px;}
.h10{height:53.709961px;}
.h29{height:58.421428px;}
.hd{height:59.677734px;}
.h14{height:62.765625px;}
.h18{height:62.841797px;}
.h20{height:63.379493px;}
.h1d{height:63.902694px;}
.h21{height:65.544462px;}
.h1{height:65.645508px;}
.h22{height:66.085704px;}
.h9{height:67.579102px;}
.h15{height:68.554688px;}
.hf{height:71.613281px;}
.h12{height:73.125000px;}
.h24{height:73.666702px;}
.h23{height:76.914155px;}
.ha{height:79.866211px;}
.h13{height:92.153320px;}
.h4{height:147.445312px;}
.h28{height:179.632529px;}
.h25{height:191.241846px;}
.h2a{height:242.312060px;}
.h19{height:739.336563px;}
.h0{height:1263.000000px;}
.wb{width:79.912500px;}
.wf{width:89.287500px;}
.wc{width:100.537500px;}
.w7{width:160.950000px;}
.w5{width:221.700000px;}
.w4{width:243.450000px;}
.w3{width:243.495000px;}
.wd{width:256.995000px;}
.w8{width:273.105000px;}
.we{width:289.995000px;}
.w9{width:294.120000px;}
.w17{width:312.553982px;}
.w11{width:363.525000px;}
.w12{width:366.900000px;}
.w6{width:498.975000px;}
.w15{width:636.776717px;}
.w10{width:639.645000px;}
.w14{width:730.101269px;}
.w16{width:730.387423px;}
.w13{width:730.408868px;}
.wa{width:892.874973px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:1.082087px;}
.x24{left:2.246232px;}
.xb{left:7.875000px;}
.x25{left:25.777832px;}
.x28{left:32.217818px;}
.x26{left:34.364480px;}
.x3{left:81.037500px;}
.x23{left:82.123116px;}
.xa{left:83.662487px;}
.xf{left:85.912487px;}
.x16{left:97.537487px;}
.x2a{left:104.191816px;}
.x18{left:108.037487px;}
.x17{left:114.037487px;}
.x5{left:121.920000px;}
.x19{left:135.074987px;}
.x27{left:158.960319px;}
.x10{left:162.450000px;}
.x13{left:171.825000px;}
.x1d{left:189.074987px;}
.x21{left:216.074987px;}
.x7{left:244.230000px;}
.x11{left:263.745000px;}
.xe{left:297.119987px;}
.xc{left:304.245000px;}
.x14{left:320.782500px;}
.x4{left:324.525000px;}
.x1e{left:356.774987px;}
.x15{left:444.570000px;}
.x8{left:446.444987px;}
.x29{left:498.826285px;}
.xd{left:517.350000px;}
.x12{left:521.475000px;}
.x6{left:567.975000px;}
.x9{left:588.269987px;}
.x1{left:606.254987px;}
.x22{left:720.299987px;}
.x2{left:724.424987px;}
.x1b{left:779.969987px;}
.x1a{left:808.829987px;}
.x1c{left:811.079987px;}
.x1f{left:812.579987px;}
@media print{
.v2{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.906093pt;}
.v5{vertical-align:3.812186pt;}
.v4{vertical-align:13.342653pt;}
.v1{vertical-align:18.666667pt;}
.ls32{letter-spacing:-2.603024pt;}
.ls31{letter-spacing:-2.031628pt;}
.ls28{letter-spacing:-1.802169pt;}
.ls27{letter-spacing:-1.313063pt;}
.ls33{letter-spacing:-0.986086pt;}
.ls24{letter-spacing:-0.613333pt;}
.ls10{letter-spacing:-0.560000pt;}
.ls4{letter-spacing:-0.410667pt;}
.lsd{letter-spacing:-0.373333pt;}
.ls1e{letter-spacing:-0.272000pt;}
.ls23{letter-spacing:-0.266667pt;}
.ls1f{letter-spacing:-0.261333pt;}
.ls20{letter-spacing:-0.160000pt;}
.ls16{letter-spacing:-0.133333pt;}
.ls19{letter-spacing:-0.117333pt;}
.ls7{letter-spacing:-0.101333pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.032000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.006481pt;}
.ls1b{letter-spacing:0.053333pt;}
.ls26{letter-spacing:0.112000pt;}
.lsc{letter-spacing:0.117333pt;}
.ls18{letter-spacing:0.224000pt;}
.ls6{letter-spacing:0.336000pt;}
.ls2{letter-spacing:0.490667pt;}
.ls17{letter-spacing:0.517333pt;}
.ls8{letter-spacing:0.565333pt;}
.lsb{letter-spacing:0.602667pt;}
.ls1{letter-spacing:0.714667pt;}
.ls0{letter-spacing:0.730667pt;}
.ls25{letter-spacing:0.797620pt;}
.ls29{letter-spacing:0.891679pt;}
.ls34{letter-spacing:0.920008pt;}
.ls22{letter-spacing:0.960000pt;}
.ls11{letter-spacing:1.232000pt;}
.ls1d{letter-spacing:4.074667pt;}
.lse{letter-spacing:12.560000pt;}
.ls2a{letter-spacing:31.824000pt;}
.ls14{letter-spacing:34.357333pt;}
.ls12{letter-spacing:35.824000pt;}
.ls13{letter-spacing:37.024000pt;}
.ls15{letter-spacing:39.690667pt;}
.ls1a{letter-spacing:45.024000pt;}
.ls21{letter-spacing:53.024000pt;}
.ls1c{letter-spacing:59.824000pt;}
.lsf{letter-spacing:62.490667pt;}
.ls30{letter-spacing:147.804824pt;}
.ls2f{letter-spacing:149.710917pt;}
.ls2c{letter-spacing:164.959663pt;}
.ls2e{letter-spacing:199.345586pt;}
.ls2b{letter-spacing:203.157772pt;}
.lsa{letter-spacing:952.602667pt;}
.ws23{word-spacing:-58.666667pt;}
.wsf{word-spacing:-17.520000pt;}
.wsd{word-spacing:-15.669333pt;}
.ws10{word-spacing:-14.490667pt;}
.ws2{word-spacing:-13.989333pt;}
.ws12{word-spacing:-13.776000pt;}
.ws5{word-spacing:-13.594667pt;}
.wse{word-spacing:-13.376000pt;}
.ws27{word-spacing:-13.370667pt;}
.ws1{word-spacing:-13.258667pt;}
.ws3{word-spacing:-13.178667pt;}
.ws6{word-spacing:-13.157333pt;}
.ws26{word-spacing:-13.141333pt;}
.ws11{word-spacing:-13.125333pt;}
.ws16{word-spacing:-13.098667pt;}
.ws22{word-spacing:-13.013333pt;}
.ws15{word-spacing:-12.997333pt;}
.ws24{word-spacing:-12.992000pt;}
.ws13{word-spacing:-12.986667pt;}
.ws0{word-spacing:-12.848000pt;}
.ws25{word-spacing:-12.645333pt;}
.wsa{word-spacing:-12.053333pt;}
.wsb{word-spacing:-11.680000pt;}
.wsc{word-spacing:-11.450667pt;}
.ws7{word-spacing:-9.642667pt;}
.ws8{word-spacing:-9.610667pt;}
.ws4{word-spacing:-8.437333pt;}
.ws36{word-spacing:-7.163734pt;}
.ws14{word-spacing:-0.058667pt;}
.ws9{word-spacing:0.000000pt;}
.ws30{word-spacing:8.072890pt;}
.ws1f{word-spacing:32.259634pt;}
.ws1e{word-spacing:34.058964pt;}
.ws2e{word-spacing:61.566089pt;}
.ws1d{word-spacing:104.377140pt;}
.ws1b{word-spacing:118.146340pt;}
.ws3a{word-spacing:131.177973pt;}
.ws39{word-spacing:133.084066pt;}
.ws3b{word-spacing:148.332812pt;}
.ws37{word-spacing:181.593313pt;}
.ws29{word-spacing:182.545446pt;}
.ws38{word-spacing:182.718734pt;}
.ws3c{word-spacing:186.530921pt;}
.ws3d{word-spacing:187.373223pt;}
.ws17{word-spacing:215.925939pt;}
.ws18{word-spacing:225.471044pt;}
.ws33{word-spacing:226.044573pt;}
.ws35{word-spacing:240.684862pt;}
.ws28{word-spacing:240.910521pt;}
.ws1c{word-spacing:242.733060pt;}
.ws19{word-spacing:246.697358pt;}
.ws34{word-spacing:253.819551pt;}
.ws2f{word-spacing:272.733669pt;}
.ws31{word-spacing:272.771293pt;}
.ws2b{word-spacing:272.877015pt;}
.ws1a{word-spacing:275.900377pt;}
.ws2d{word-spacing:287.691297pt;}
.ws32{word-spacing:315.720593pt;}
.ws2c{word-spacing:342.569420pt;}
.ws2a{word-spacing:440.759425pt;}
.ws21{word-spacing:796.692368pt;}
.ws20{word-spacing:1069.997990pt;}
._f{margin-left:-9.450667pt;}
._b{margin-left:-8.538667pt;}
._c{margin-left:-6.666667pt;}
._e{margin-left:-4.576000pt;}
._a{margin-left:-3.610667pt;}
._2{margin-left:-2.234667pt;}
._0{margin-left:-1.232000pt;}
._1{width:1.056000pt;}
._5{width:2.048000pt;}
._3{width:2.986667pt;}
._10{width:4.277333pt;}
._12{width:5.344000pt;}
._13{width:7.024000pt;}
._15{width:8.741333pt;}
._d{width:9.909333pt;}
._11{width:11.733333pt;}
._1a{width:14.186667pt;}
._14{width:15.349333pt;}
._7{width:16.837333pt;}
._6{width:18.250667pt;}
._8{width:19.226667pt;}
._16{width:21.061333pt;}
._17{width:22.704000pt;}
._18{width:23.936000pt;}
._19{width:25.173333pt;}
._54{width:30.145029pt;}
._2c{width:39.064783pt;}
._36{width:41.289111pt;}
._42{width:46.026667pt;}
._3c{width:47.610667pt;}
._23{width:49.370499pt;}
._40{width:51.482667pt;}
._41{width:54.442667pt;}
._3e{width:56.058667pt;}
._9{width:59.034667pt;}
._43{width:62.874667pt;}
._44{width:69.786667pt;}
._21{width:80.640398pt;}
._48{width:83.428522pt;}
._26{width:88.378566pt;}
._30{width:93.240531pt;}
._53{width:103.075136pt;}
._76{width:104.163469pt;}
._1e{width:111.774474pt;}
._1d{width:113.195891pt;}
._6b{width:117.086108pt;}
._27{width:118.284598pt;}
._1c{width:122.575300pt;}
._32{width:126.053730pt;}
._5b{width:128.971871pt;}
._61{width:130.958762pt;}
._2b{width:132.650655pt;}
._78{width:138.157739pt;}
._71{width:141.345725pt;}
._3d{width:143.002667pt;}
._4a{width:145.757126pt;}
._6c{width:148.037056pt;}
._51{width:153.911924pt;}
._46{width:157.265366pt;}
._74{width:161.727300pt;}
._3f{width:165.440000pt;}
._45{width:168.103502pt;}
._29{width:169.011757pt;}
._3b{width:174.096000pt;}
._2e{width:175.556540pt;}
._3a{width:178.933333pt;}
._47{width:179.901242pt;}
._5f{width:181.255450pt;}
._4e{width:183.275640pt;}
._20{width:184.683047pt;}
._6e{width:185.869212pt;}
._4d{width:190.524622pt;}
._77{width:193.229728pt;}
._72{width:195.167791pt;}
._6f{width:197.402542pt;}
._24{width:201.476662pt;}
._2a{width:210.900877pt;}
._25{width:215.345749pt;}
._57{width:232.023754pt;}
._58{width:233.573896pt;}
._6d{width:235.168829pt;}
._79{width:237.895962pt;}
._50{width:242.334777pt;}
._6a{width:244.564115pt;}
._7a{width:247.439723pt;}
._70{width:248.378336pt;}
._75{width:249.676263pt;}
._56{width:251.568245pt;}
._73{width:252.682167pt;}
._28{width:259.119474pt;}
._62{width:266.317468pt;}
._2d{width:274.373268pt;}
._2f{width:277.568173pt;}
._4b{width:278.681215pt;}
._1b{width:283.332114pt;}
._64{width:287.041432pt;}
._65{width:288.303270pt;}
._5d{width:293.839366pt;}
._49{width:310.756725pt;}
._31{width:313.840589pt;}
._22{width:314.845271pt;}
._59{width:320.859526pt;}
._1f{width:331.323570pt;}
._4c{width:332.715271pt;}
._55{width:352.407808pt;}
._5a{width:355.070078pt;}
._52{width:420.146259pt;}
._37{width:421.717000pt;}
._68{width:426.738366pt;}
._5e{width:429.015106pt;}
._63{width:439.381106pt;}
._66{width:454.038809pt;}
._67{width:461.292362pt;}
._4f{width:475.535044pt;}
._35{width:513.941698pt;}
._33{width:550.302800pt;}
._5c{width:560.650738pt;}
._34{width:655.715629pt;}
._69{width:683.469369pt;}
._4{width:755.034667pt;}
._60{width:761.975752pt;}
._38{width:803.922515pt;}
._39{width:1037.006672pt;}
.fsf{font-size:19.124469pt;}
.fse{font-size:28.654935pt;}
.fsb{font-size:28.866247pt;}
.fs1{font-size:32.000000pt;}
.fs5{font-size:34.666667pt;}
.fs3{font-size:37.333333pt;}
.fsc{font-size:42.514639pt;}
.fs7{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fsd{font-size:59.917163pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:69.333333pt;}
.fsa{font-size:80.000000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1d9{bottom:0.953075pt;}
.y1d0{bottom:0.972136pt;}
.y1d4{bottom:1.429604pt;}
.y134{bottom:1.924453pt;}
.y13a{bottom:1.937282pt;}
.y154{bottom:1.943697pt;}
.y1e5{bottom:2.382551pt;}
.y1e7{bottom:2.401688pt;}
.y142{bottom:2.886661pt;}
.y15a{bottom:2.886686pt;}
.y14f{bottom:2.905905pt;}
.y46{bottom:3.000000pt;}
.y1ac{bottom:3.527273pt;}
.y1c9{bottom:4.993166pt;}
.y4{bottom:6.000000pt;}
.yc{bottom:6.666667pt;}
.y26{bottom:6.706667pt;}
.y24{bottom:6.986667pt;}
.y10{bottom:7.000000pt;}
.ye{bottom:7.026667pt;}
.y49{bottom:8.000000pt;}
.y3e{bottom:8.666667pt;}
.y40{bottom:8.680000pt;}
.y1e4{bottom:11.944849pt;}
.y1ab{bottom:17.706282pt;}
.y1e3{bottom:21.491200pt;}
.y1c8{bottom:24.931958pt;}
.y1f{bottom:28.026667pt;}
.y48{bottom:29.000000pt;}
.y1e2{bottom:31.037550pt;}
.y1aa{bottom:31.862152pt;}
.y1e1{bottom:40.599785pt;}
.y1c7{bottom:44.904346pt;}
.y1a9{bottom:46.041537pt;}
.y47{bottom:50.000000pt;}
.y1e0{bottom:50.146135pt;}
.y5{bottom:53.033333pt;}
.y31{bottom:54.033333pt;}
.y1df{bottom:59.692485pt;}
.y1a8{bottom:60.197407pt;}
.y1c6{bottom:64.876733pt;}
.y3{bottom:67.033333pt;}
.y1de{bottom:69.254720pt;}
.y1a7{bottom:74.376791pt;}
.y1dd{bottom:78.797893pt;}
.y1c5{bottom:84.816054pt;}
.y1dc{bottom:87.870897pt;}
.y1a6{bottom:88.532661pt;}
.y1db{bottom:96.937547pt;}
.y2e{bottom:100.700000pt;}
.y5f{bottom:101.033333pt;}
.y1a5{bottom:102.687591pt;}
.ya2{bottom:103.700000pt;}
.y112{bottom:104.366667pt;}
.y2d{bottom:104.700000pt;}
.y1c4{bottom:104.788441pt;}
.y1da{bottom:106.023258pt;}
.y186{bottom:109.033333pt;}
.y19f{bottom:110.033333pt;}
.y1d7{bottom:115.096262pt;}
.y1a4{bottom:116.871678pt;}
.y2c{bottom:118.366667pt;}
.ye7{bottom:119.366667pt;}
.ycc{bottom:119.700000pt;}
.y5e{bottom:122.033333pt;}
.y2b{bottom:122.366667pt;}
.ya1{bottom:123.033333pt;}
.y111{bottom:123.700000pt;}
.y1d6{bottom:124.639436pt;}
.y1c3{bottom:124.727762pt;}
.y204{bottom:126.366667pt;}
.y185{bottom:128.366667pt;}
.y19e{bottom:129.033333pt;}
.y85{bottom:129.366667pt;}
.y1a3{bottom:131.027548pt;}
.y1d5{bottom:134.201670pt;}
.y2a{bottom:135.026667pt;}
.y1c0{bottom:135.706667pt;}
.ycb{bottom:139.040000pt;}
.ye6{bottom:139.706667pt;}
.y110{bottom:143.040000pt;}
.y1c2{bottom:144.705441pt;}
.y1a2{bottom:145.202230pt;}
.y203{bottom:145.706667pt;}
.y184{bottom:147.706667pt;}
.y5d{bottom:148.040000pt;}
.y19d{bottom:148.373333pt;}
.y1d2{bottom:151.864801pt;}
.ya0{bottom:152.693333pt;}
.y1bf{bottom:155.400000pt;}
.yca{bottom:158.066667pt;}
.y1a1{bottom:159.358100pt;}
.y84{bottom:159.400000pt;}
.ye5{bottom:160.400000pt;}
.y1d1{bottom:160.937805pt;}
.y10f{bottom:162.400000pt;}
.y12f{bottom:162.733333pt;}
.y183{bottom:167.066667pt;}
.y19c{bottom:167.400000pt;}
.y1ce{bottom:170.023516pt;}
.y9f{bottom:172.066667pt;}
.y5c{bottom:174.066667pt;}
.y202{bottom:175.733333pt;}
.yc9{bottom:177.400000pt;}
.y83{bottom:178.733333pt;}
.y1cd{bottom:179.090166pt;}
.ye4{bottom:181.066667pt;}
.y10e{bottom:181.733333pt;}
.y12e{bottom:182.066667pt;}
.y182{bottom:186.400000pt;}
.y19b{bottom:186.733333pt;}
.y1cc{bottom:188.163170pt;}
.y9e{bottom:191.066667pt;}
.yc8{bottom:196.400000pt;}
.y1cb{bottom:197.706344pt;}
.y82{bottom:198.066667pt;}
.y201{bottom:199.400000pt;}
.y5b{bottom:200.066667pt;}
.y10d{bottom:201.066667pt;}
.y12d{bottom:201.400000pt;}
.ye3{bottom:201.733333pt;}
.y181{bottom:205.733333pt;}
.y29{bottom:208.066667pt;}
.y1be{bottom:209.066667pt;}
.y9d{bottom:210.400000pt;}
.yc7{bottom:215.733333pt;}
.y10c{bottom:220.400000pt;}
.y12c{bottom:220.733333pt;}
.ye2{bottom:222.066667pt;}
.y28{bottom:222.733333pt;}
.y180{bottom:225.066667pt;}
.y5a{bottom:226.066667pt;}
.y81{bottom:228.066667pt;}
.y9c{bottom:229.400000pt;}
.y200{bottom:234.400000pt;}
.yc6{bottom:234.733333pt;}
.y10b{bottom:239.733333pt;}
.y12b{bottom:240.066667pt;}
.y1bd{bottom:241.400000pt;}
.ye1{bottom:242.733333pt;}
.y19a{bottom:244.066667pt;}
.y27{bottom:244.400000pt;}
.y80{bottom:247.400000pt;}
.y9b{bottom:248.733333pt;}
.y59{bottom:252.066667pt;}
.yc5{bottom:254.066667pt;}
.y10a{bottom:259.066667pt;}
.y12a{bottom:259.400000pt;}
.ye0{bottom:263.400000pt;}
.y17f{bottom:263.733333pt;}
.y1ff{bottom:264.400000pt;}
.y25{bottom:266.066667pt;}
.y7f{bottom:266.733333pt;}
.y9a{bottom:267.733333pt;}
.y1bc{bottom:271.440000pt;}
.yc4{bottom:273.426667pt;}
.y58{bottom:278.106667pt;}
.y129{bottom:278.773333pt;}
.y125{bottom:282.426667pt;}
.y17e{bottom:283.106667pt;}
.ydf{bottom:284.106667pt;}
.y7e{bottom:286.106667pt;}
.y99{bottom:287.106667pt;}
.y23{bottom:287.440000pt;}
.y109{bottom:289.106667pt;}
.yc3{bottom:292.440000pt;}
.y1fe{bottom:294.426667pt;}
.y1bb{bottom:295.440000pt;}
.y124{bottom:301.773333pt;}
.y17d{bottom:302.440000pt;}
.y57{bottom:304.106667pt;}
.y7d{bottom:305.440000pt;}
.y98{bottom:306.093333pt;}
.yde{bottom:307.773333pt;}
.y108{bottom:308.440000pt;}
.y128{bottom:308.773333pt;}
.y22{bottom:309.106667pt;}
.yc2{bottom:311.773333pt;}
.y1fd{bottom:313.773333pt;}
.y1ba{bottom:320.440000pt;}
.y199{bottom:320.773333pt;}
.y1ca{bottom:320.893333pt;}
.y123{bottom:321.426667pt;}
.y17c{bottom:321.760000pt;}
.y97{bottom:325.440000pt;}
.y107{bottom:327.760000pt;}
.y127{bottom:328.106667pt;}
.y56{bottom:329.773333pt;}
.yc1{bottom:330.760000pt;}
.ydd{bottom:334.106667pt;}
.y7c{bottom:335.440000pt;}
.y21{bottom:339.093333pt;}
.y198{bottom:340.106667pt;}
.y17b{bottom:341.106667pt;}
.y1fc{bottom:343.773333pt;}
.y96{bottom:344.440000pt;}
.y106{bottom:347.106667pt;}
.yc0{bottom:350.106667pt;}
.y126{bottom:352.106667pt;}
.y122{bottom:352.773333pt;}
.y55{bottom:355.773333pt;}
.y197{bottom:359.440000pt;}
.y17a{bottom:360.440000pt;}
.y20{bottom:362.440000pt;}
.y1fb{bottom:363.106667pt;}
.y95{bottom:363.773333pt;}
.y7b{bottom:365.440000pt;}
.y105{bottom:366.440000pt;}
.ybf{bottom:369.106667pt;}
.y121{bottom:376.773333pt;}
.y1e{bottom:377.106667pt;}
.y130{bottom:377.680000pt;}
.y159{bottom:378.160914pt;}
.y196{bottom:378.440000pt;}
.y179{bottom:379.773333pt;}
.y54{bottom:381.773333pt;}
.y1fa{bottom:382.440000pt;}
.y104{bottom:385.800000pt;}
.ybe{bottom:388.466667pt;}
.y7a{bottom:389.133333pt;}
.y94{bottom:393.466667pt;}
.y195{bottom:397.800000pt;}
.y178{bottom:399.133333pt;}
.ydc{bottom:401.466667pt;}
.y120{bottom:401.800000pt;}
.y103{bottom:405.133333pt;}
.ybd{bottom:407.466667pt;}
.y53{bottom:407.800000pt;}
.y194{bottom:416.800000pt;}
.y177{bottom:418.466667pt;}
.y1f9{bottom:421.133333pt;}
.ydb{bottom:422.133333pt;}
.y93{bottom:423.466667pt;}
.y79{bottom:423.800000pt;}
.y102{bottom:424.466667pt;}
.y1d{bottom:426.800000pt;}
.y52{bottom:433.800000pt;}
.y1d8{bottom:434.559991pt;}
.y193{bottom:436.133333pt;}
.y176{bottom:437.800000pt;}
.y1f8{bottom:440.466667pt;}
.y1c{bottom:441.466667pt;}
.y92{bottom:442.466667pt;}
.yda{bottom:442.800000pt;}
.y101{bottom:443.800000pt;}
.y158{bottom:444.117234pt;}
.ybc{bottom:445.800000pt;}
.y157{bottom:453.739316pt;}
.y78{bottom:453.800000pt;}
.y175{bottom:457.133333pt;}
.y51{bottom:459.800000pt;}
.y91{bottom:461.800000pt;}
.y1d3{bottom:462.738403pt;}
.y1b{bottom:463.133333pt;}
.y156{bottom:463.380642pt;}
.ybb{bottom:465.133333pt;}
.y192{bottom:465.800000pt;}
.y77{bottom:473.133333pt;}
.y174{bottom:476.466667pt;}
.y1f7{bottom:479.466667pt;}
.y90{bottom:480.800000pt;}
.y100{bottom:482.466667pt;}
.yd9{bottom:483.800000pt;}
.yba{bottom:484.133333pt;}
.y191{bottom:485.133333pt;}
.y50{bottom:485.800000pt;}
.y1cf{bottom:489.468184pt;}
.y1a{bottom:491.800000pt;}
.y76{bottom:495.466667pt;}
.y173{bottom:495.800000pt;}
.y8f{bottom:500.173333pt;}
.yff{bottom:501.840000pt;}
.yd8{bottom:504.506667pt;}
.y19{bottom:506.506667pt;}
.y1f6{bottom:510.840000pt;}
.y4f{bottom:511.840000pt;}
.yb9{bottom:514.173333pt;}
.y172{bottom:515.173333pt;}
.y1e6{bottom:516.693549pt;}
.yfe{bottom:521.173333pt;}
.y18{bottom:528.173333pt;}
.yd7{bottom:528.506667pt;}
.y8e{bottom:529.840000pt;}
.y1f5{bottom:530.173333pt;}
.y155{bottom:532.223433pt;}
.y171{bottom:534.506667pt;}
.y4e{bottom:537.840000pt;}
.yfd{bottom:540.506667pt;}
.y153{bottom:541.845515pt;}
.yb8{bottom:543.840000pt;}
.y17{bottom:549.840000pt;}
.y152{bottom:551.486842pt;}
.y1b9{bottom:552.506667pt;}
.y190{bottom:553.506667pt;}
.y1a0{bottom:553.510247pt;}
.y170{bottom:553.840000pt;}
.yd6{bottom:554.506667pt;}
.y75{bottom:558.173333pt;}
.y8d{bottom:559.840000pt;}
.y1f4{bottom:560.173333pt;}
.yb7{bottom:563.173333pt;}
.y4d{bottom:563.840000pt;}
.yfc{bottom:570.506667pt;}
.y16{bottom:571.173333pt;}
.y1b8{bottom:571.840000pt;}
.y16f{bottom:573.173333pt;}
.y74{bottom:577.506667pt;}
.y8c{bottom:578.840000pt;}
.yb6{bottom:582.173333pt;}
.y4c{bottom:585.840000pt;}
.yfb{bottom:589.840000pt;}
.y1f3{bottom:590.173333pt;}
.y1b7{bottom:591.173333pt;}
.y16e{bottom:592.506667pt;}
.y8b{bottom:598.173333pt;}
.y15{bottom:599.840000pt;}
.yb5{bottom:601.506667pt;}
.y4b{bottom:606.506667pt;}
.y73{bottom:607.506667pt;}
.yfa{bottom:609.173333pt;}
.y1f2{bottom:609.506667pt;}
.y1b6{bottom:610.506667pt;}
.y151{bottom:610.707550pt;}
.y16d{bottom:611.866667pt;}
.y14{bottom:614.533333pt;}
.y4a{bottom:617.866667pt;}
.y150{bottom:620.329632pt;}
.yb4{bottom:620.533333pt;}
.y45{bottom:625.533333pt;}
.y72{bottom:626.866667pt;}
.y8a{bottom:628.200000pt;}
.yf9{bottom:628.533333pt;}
.y1b5{bottom:629.866667pt;}
.y14e{bottom:629.951714pt;}
.y16c{bottom:630.866667pt;}
.y13{bottom:636.200000pt;}
.y209{bottom:637.533333pt;}
.y1f1{bottom:639.533333pt;}
.y132{bottom:640.330325pt;}
.y71{bottom:646.200000pt;}
.yf8{bottom:647.533333pt;}
.y1b4{bottom:649.533333pt;}
.y131{bottom:649.971651pt;}
.y16b{bottom:650.200000pt;}
.yb3{bottom:650.533333pt;}
.y89{bottom:652.200000pt;}
.y12{bottom:657.866667pt;}
.y1f0{bottom:658.866667pt;}
.y70{bottom:665.200000pt;}
.yf7{bottom:666.866667pt;}
.y208{bottom:667.533333pt;}
.y16a{bottom:669.533333pt;}
.y1b3{bottom:674.866667pt;}
.y88{bottom:677.200000pt;}
.y1ef{bottom:678.200000pt;}
.y11{bottom:679.533333pt;}
.yb2{bottom:680.200000pt;}
.y6f{bottom:684.533333pt;}
.yf6{bottom:686.200000pt;}
.y14d{bottom:688.697733pt;}
.y169{bottom:688.866667pt;}
.y44{bottom:694.533333pt;}
.y207{bottom:697.533333pt;}
.y14c{bottom:698.332645pt;}
.yb1{bottom:699.533333pt;}
.y1b2{bottom:699.866667pt;}
.y1c1{bottom:699.967969pt;}
.yf{bottom:701.200000pt;}
.y6e{bottom:703.866667pt;}
.yf5{bottom:705.533333pt;}
.y43{bottom:705.866667pt;}
.y14b{bottom:707.954727pt;}
.y168{bottom:708.200000pt;}
.y42{bottom:714.200000pt;}
.yb0{bottom:718.533333pt;}
.y11f{bottom:721.866667pt;}
.yd{bottom:722.866667pt;}
.y6d{bottom:723.200000pt;}
.yf4{bottom:724.866667pt;}
.y167{bottom:727.573333pt;}
.y41{bottom:734.893333pt;}
.yaf{bottom:737.893333pt;}
.y18f{bottom:740.240000pt;}
.yb{bottom:744.560000pt;}
.yf3{bottom:746.893333pt;}
.y11e{bottom:751.893333pt;}
.y6c{bottom:753.226667pt;}
.y3f{bottom:755.560000pt;}
.y1ee{bottom:757.226667pt;}
.y18e{bottom:759.560000pt;}
.y14a{bottom:764.776330pt;}
.y166{bottom:766.226667pt;}
.yae{bottom:767.560000pt;}
.y11d{bottom:771.226667pt;}
.y6b{bottom:772.573333pt;}
.ya{bottom:772.893333pt;}
.y149{bottom:774.398412pt;}
.y3d{bottom:776.226667pt;}
.y1ed{bottom:776.560000pt;}
.yf2{bottom:776.893333pt;}
.y148{bottom:784.033324pt;}
.y165{bottom:785.560000pt;}
.y18d{bottom:789.226667pt;}
.y11c{bottom:790.560000pt;}
.y6a{bottom:791.893333pt;}
.y147{bottom:794.136510pt;}
.y1ec{bottom:795.893333pt;}
.yf1{bottom:796.226667pt;}
.yad{bottom:797.560000pt;}
.y9{bottom:802.226667pt;}
.y146{bottom:803.758592pt;}
.y3c{bottom:804.893333pt;}
.y18c{bottom:808.560000pt;}
.y11b{bottom:809.893333pt;}
.y69{bottom:811.226667pt;}
.y145{bottom:813.399918pt;}
.yf0{bottom:815.226667pt;}
.yac{bottom:816.560000pt;}
.y144{bottom:823.503105pt;}
.y206{bottom:825.893333pt;}
.y3b{bottom:827.560000pt;}
.y18b{bottom:827.893333pt;}
.yd5{bottom:828.893333pt;}
.y68{bottom:830.560000pt;}
.y11a{bottom:831.893333pt;}
.y143{bottom:833.138016pt;}
.yef{bottom:834.560000pt;}
.y164{bottom:834.893333pt;}
.yab{bottom:835.893333pt;}
.y8{bottom:836.560000pt;}
.y141{bottom:842.760099pt;}
.y3a{bottom:844.600000pt;}
.y205{bottom:845.266667pt;}
.y7{bottom:847.266667pt;}
.yd4{bottom:849.600000pt;}
.y67{bottom:849.933333pt;}
.y140{bottom:852.882529pt;}
.yee{bottom:853.600000pt;}
.y163{bottom:854.266667pt;}
.yaa{bottom:854.933333pt;}
.y39{bottom:861.933333pt;}
.y13f{bottom:862.504611pt;}
.y119{bottom:864.600000pt;}
.y18a{bottom:866.600000pt;}
.y66{bottom:869.266667pt;}
.yd3{bottom:870.266667pt;}
.y13e{bottom:872.139523pt;}
.yed{bottom:872.933333pt;}
.ya9{bottom:874.266667pt;}
.y1b1{bottom:876.266667pt;}
.y38{bottom:881.266667pt;}
.y1eb{bottom:883.933333pt;}
.y162{bottom:884.266667pt;}
.y189{bottom:885.933333pt;}
.yd2{bottom:890.600000pt;}
.yec{bottom:892.266667pt;}
.y118{bottom:894.600000pt;}
.y1b0{bottom:895.600000pt;}
.y37{bottom:898.600000pt;}
.y65{bottom:899.266667pt;}
.y161{bottom:903.600000pt;}
.ya8{bottom:903.933333pt;}
.y188{bottom:905.266667pt;}
.yd1{bottom:911.266667pt;}
.y117{bottom:913.933333pt;}
.yeb{bottom:914.600000pt;}
.y64{bottom:918.600000pt;}
.y36{bottom:920.266667pt;}
.y160{bottom:922.933333pt;}
.y187{bottom:924.600000pt;}
.y1af{bottom:925.266667pt;}
.y13d{bottom:929.422985pt;}
.yd0{bottom:931.933333pt;}
.y1ea{bottom:933.266667pt;}
.ya7{bottom:933.933333pt;}
.y63{bottom:937.933333pt;}
.y13c{bottom:939.064312pt;}
.y15f{bottom:942.266667pt;}
.y116{bottom:943.933333pt;}
.y1ae{bottom:944.600000pt;}
.yea{bottom:945.933333pt;}
.y13b{bottom:948.686394pt;}
.y35{bottom:949.933333pt;}
.ycf{bottom:951.600000pt;}
.y1e9{bottom:952.600000pt;}
.ya6{bottom:952.933333pt;}
.y87{bottom:953.600000pt;}
.y6{bottom:958.293333pt;}
.y139{bottom:958.308476pt;}
.y62{bottom:959.960000pt;}
.y15e{bottom:961.626667pt;}
.y115{bottom:963.293333pt;}
.y1ad{bottom:963.626667pt;}
.ye9{bottom:965.293333pt;}
.y34{bottom:967.293333pt;}
.y138{bottom:967.943388pt;}
.y1e8{bottom:971.960000pt;}
.ya5{bottom:972.293333pt;}
.y86{bottom:972.626667pt;}
.y2{bottom:973.626667pt;}
.y137{bottom:977.565470pt;}
.y15d{bottom:980.960000pt;}
.y114{bottom:982.626667pt;}
.yce{bottom:982.960000pt;}
.y136{bottom:987.206796pt;}
.ye8{bottom:987.293333pt;}
.y33{bottom:988.960000pt;}
.ya4{bottom:991.626667pt;}
.y61{bottom:992.626667pt;}
.y135{bottom:996.828878pt;}
.y15c{bottom:1000.293333pt;}
.y113{bottom:1001.960000pt;}
.ycd{bottom:1002.293333pt;}
.y133{bottom:1006.463790pt;}
.y60{bottom:1016.293333pt;}
.y32{bottom:1018.626667pt;}
.y15b{bottom:1019.960000pt;}
.ya3{bottom:1021.293333pt;}
.y30{bottom:1040.626667pt;}
.y2f{bottom:1054.626667pt;}
.y1{bottom:1060.626667pt;}
.h2f{height:8.116817pt;}
.h30{height:8.593340pt;}
.h2d{height:8.609224pt;}
.h1b{height:9.141014pt;}
.h1c{height:9.157051pt;}
.h32{height:9.562250pt;}
.h1f{height:9.622118pt;}
.h1e{height:9.638155pt;}
.h2{height:20.000000pt;}
.he{height:20.033333pt;}
.h2b{height:20.217960pt;}
.h5{height:20.666667pt;}
.hb{height:20.700000pt;}
.h7{height:21.000000pt;}
.h6{height:21.033333pt;}
.h2c{height:21.914178pt;}
.h31{height:21.990422pt;}
.h1a{height:29.556894pt;}
.h11{height:31.828125pt;}
.h2e{height:32.364402pt;}
.h3{height:32.765625pt;}
.hc{height:34.480469pt;}
.h26{height:36.847405pt;}
.h8{height:42.033333pt;}
.h16{height:42.882812pt;}
.h17{height:44.830729pt;}
.h27{height:47.208333pt;}
.h10{height:47.742188pt;}
.h29{height:51.930158pt;}
.hd{height:53.046875pt;}
.h14{height:55.791667pt;}
.h18{height:55.859375pt;}
.h20{height:56.337327pt;}
.h1d{height:56.802395pt;}
.h21{height:58.261744pt;}
.h1{height:58.351562pt;}
.h22{height:58.742848pt;}
.h9{height:60.070312pt;}
.h15{height:60.937500pt;}
.hf{height:63.656250pt;}
.h12{height:65.000000pt;}
.h24{height:65.481513pt;}
.h23{height:68.368137pt;}
.ha{height:70.992188pt;}
.h13{height:81.914062pt;}
.h4{height:131.062500pt;}
.h28{height:159.673359pt;}
.h25{height:169.992752pt;}
.h2a{height:215.388498pt;}
.h19{height:657.188056pt;}
.h0{height:1122.666667pt;}
.wb{width:71.033333pt;}
.wf{width:79.366667pt;}
.wc{width:89.366667pt;}
.w7{width:143.066667pt;}
.w5{width:197.066667pt;}
.w4{width:216.400000pt;}
.w3{width:216.440000pt;}
.wd{width:228.440000pt;}
.w8{width:242.760000pt;}
.we{width:257.773333pt;}
.w9{width:261.440000pt;}
.w17{width:277.825762pt;}
.w11{width:323.133333pt;}
.w12{width:326.133333pt;}
.w6{width:443.533333pt;}
.w15{width:566.023749pt;}
.w10{width:568.573333pt;}
.w14{width:648.978906pt;}
.w16{width:649.233265pt;}
.w13{width:649.252327pt;}
.wa{width:793.666643pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:0.961855pt;}
.x24{left:1.996650pt;}
.xb{left:7.000000pt;}
.x25{left:22.913629pt;}
.x28{left:28.638061pt;}
.x26{left:30.546205pt;}
.x3{left:72.033333pt;}
.x23{left:72.998325pt;}
.xa{left:74.366655pt;}
.xf{left:76.366655pt;}
.x16{left:86.699988pt;}
.x2a{left:92.614948pt;}
.x18{left:96.033322pt;}
.x17{left:101.366655pt;}
.x5{left:108.373333pt;}
.x19{left:120.066655pt;}
.x27{left:141.298061pt;}
.x10{left:144.400000pt;}
.x13{left:152.733333pt;}
.x1d{left:168.066655pt;}
.x21{left:192.066655pt;}
.x7{left:217.093333pt;}
.x11{left:234.440000pt;}
.xe{left:264.106655pt;}
.xc{left:270.440000pt;}
.x14{left:285.140000pt;}
.x4{left:288.466667pt;}
.x1e{left:317.133322pt;}
.x15{left:395.173333pt;}
.x8{left:396.839988pt;}
.x29{left:443.401142pt;}
.xd{left:459.866667pt;}
.x12{left:463.533333pt;}
.x6{left:504.866667pt;}
.x9{left:522.906655pt;}
.x1{left:538.893322pt;}
.x22{left:640.266655pt;}
.x2{left:643.933322pt;}
.x1b{left:693.306655pt;}
.x1a{left:718.959988pt;}
.x1c{left:720.959988pt;}
.x1f{left:722.293322pt;}
}




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