
    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_4e1f38727db225f565f227c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_c2e748ad4e22c5fb7762962f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.068000;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_2953411aed92de6e6848ac7d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.962000;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_d0a27a7de120579ea4c4d35a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.943000;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_b4137c62efce1ff31c391b8a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.995000;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_dfc709c8e463fc1e219bd5e0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.871094;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_3cef5ed31d69557f66b9b83d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.780762;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_c538f03e80c95738d7d70954.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.987305;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_f62c6e4fd467975c0f742bce.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.681641;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_78b7485d2332abcf0f524962.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.978027;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_547166eaa67b251880c235cc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.681641;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_0afa9108150dc1e296006709.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.980469;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_c8b7c49a87998d4cd02af953.woff2')format("woff");}.fff{font-family:fff;line-height:0.692383;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_382c865756270c51e625e1c0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938000;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_1a7f9c00441a09677ba14e41.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.995000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.656426px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:17.458353px;}
.ls2{letter-spacing:36.682879px;}
.ls3{letter-spacing:110.954698px;}
.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;}
}
.ws1{word-spacing:-427.176183px;}
.ws98{word-spacing:-143.681998px;}
.ws5{word-spacing:-95.641200px;}
.ws21{word-spacing:-53.764830px;}
.ws3{word-spacing:-48.011882px;}
.ws4{word-spacing:-47.820600px;}
.ws7c{word-spacing:-38.029123px;}
.ws12{word-spacing:-37.180650px;}
.wsd{word-spacing:-32.727300px;}
.ws96{word-spacing:-31.256870px;}
.ws5b{word-spacing:-29.887800px;}
.ws36{word-spacing:-26.901841px;}
.ws8d{word-spacing:-26.836386px;}
.ws7a{word-spacing:-26.378204px;}
.ws94{word-spacing:-24.152747px;}
.ws8a{word-spacing:-23.040019px;}
.ws2{word-spacing:-22.416000px;}
.ws37{word-spacing:-22.385473px;}
.ws64{word-spacing:-22.123655px;}
.ws45{word-spacing:-21.730927px;}
.ws39{word-spacing:-21.665473px;}
.ws3d{word-spacing:-21.272745px;}
.ws3a{word-spacing:-20.945472px;}
.ws4c{word-spacing:-20.814563px;}
.ws40{word-spacing:-20.749108px;}
.ws66{word-spacing:-20.683654px;}
.ws95{word-spacing:-20.421835px;}
.ws3e{word-spacing:-20.290926px;}
.ws9d{word-spacing:-20.225471px;}
.ws41{word-spacing:-20.160017px;}
.ws3c{word-spacing:-19.701835px;}
.ws8{word-spacing:-19.440016px;}
.wsf{word-spacing:-19.243652px;}
.ws13{word-spacing:-19.047289px;}
.ws49{word-spacing:-18.981834px;}
.ws67{word-spacing:-18.785470px;}
.ws44{word-spacing:-18.523652px;}
.ws42{word-spacing:-18.458197px;}
.ws34{word-spacing:-18.392743px;}
.ws2c{word-spacing:-18.196379px;}
.ws3f{word-spacing:-18.130924px;}
.ws38{word-spacing:-18.065470px;}
.wse{word-spacing:-17.672742px;}
.ws3b{word-spacing:-17.280014px;}
.wsb{word-spacing:-17.214560px;}
.ws10{word-spacing:-17.083651px;}
.wsa{word-spacing:-17.018196px;}
.ws93{word-spacing:-16.756378px;}
.ws27{word-spacing:-16.625468px;}
.ws29{word-spacing:-16.578225px;}
.ws28{word-spacing:-16.574460px;}
.ws2a{word-spacing:-16.568278px;}
.ws2b{word-spacing:-16.560014px;}
.ws6{word-spacing:-16.504103px;}
.ws9{word-spacing:-16.429105px;}
.wsc{word-spacing:-16.363650px;}
.ws62{word-spacing:-15.905468px;}
.ws26{word-spacing:-15.512740px;}
.ws24{word-spacing:-15.489381px;}
.ws25{word-spacing:-15.488560px;}
.ws22{word-spacing:-15.487801px;}
.ws23{word-spacing:-15.485384px;}
.ws43{word-spacing:-15.381831px;}
.ws32{word-spacing:-15.120013px;}
.ws47{word-spacing:-15.003676px;}
.ws7{word-spacing:-14.989103px;}
.ws48{word-spacing:-14.943900px;}
.ws2e{word-spacing:-14.351748px;}
.ws2d{word-spacing:-14.349371px;}
.ws2f{word-spacing:-14.334557px;}
.ws30{word-spacing:-13.941830px;}
.ws14{word-spacing:-12.150852px;}
.ws84{word-spacing:-11.781828px;}
.ws11{word-spacing:-10.996373px;}
.ws20{word-spacing:-10.808834px;}
.ws6e{word-spacing:-9.922750px;}
.ws33{word-spacing:-9.556372px;}
.ws31{word-spacing:-9.098189px;}
.ws35{word-spacing:-1.255223px;}
.ws8c{word-spacing:-1.201776px;}
.ws79{word-spacing:-0.772501px;}
.ws0{word-spacing:0.000000px;}
.ws89{word-spacing:2.594042px;}
.ws63{word-spacing:3.507158px;}
.ws9e{word-spacing:3.956065px;}
.ws6c{word-spacing:3.957132px;}
.ws5d{word-spacing:3.957158px;}
.ws4b{word-spacing:4.797158px;}
.ws59{word-spacing:4.809158px;}
.ws65{word-spacing:4.953158px;}
.ws9c{word-spacing:5.397158px;}
.ws9a{word-spacing:5.496406px;}
.ws16{word-spacing:8.274129px;}
.ws81{word-spacing:8.616952px;}
.ws92{word-spacing:8.894587px;}
.ws61{word-spacing:9.699158px;}
.ws19{word-spacing:12.201722px;}
.ws17{word-spacing:12.463562px;}
.ws1f{word-spacing:12.515930px;}
.ws1c{word-spacing:13.039609px;}
.ws83{word-spacing:13.853315px;}
.ws18{word-spacing:13.982231px;}
.ws15{word-spacing:25.037240px;}
.ws1e{word-spacing:29.453555px;}
.ws8e{word-spacing:41.783435px;}
.ws52{word-spacing:41.783947px;}
.ws5a{word-spacing:41.784128px;}
.ws99{word-spacing:41.784498px;}
.ws8b{word-spacing:41.785006px;}
.ws4a{word-spacing:41.785291px;}
.ws50{word-spacing:41.785459px;}
.ws78{word-spacing:41.785535px;}
.ws6a{word-spacing:41.785614px;}
.ws5c{word-spacing:41.786176px;}
.ws69{word-spacing:41.786629px;}
.ws7d{word-spacing:41.786908px;}
.ws9b{word-spacing:41.787132px;}
.wsa1{word-spacing:41.787180px;}
.ws76{word-spacing:41.787923px;}
.ws82{word-spacing:41.788088px;}
.ws58{word-spacing:41.788127px;}
.ws4d{word-spacing:41.788232px;}
.ws88{word-spacing:41.789152px;}
.ws80{word-spacing:41.841821px;}
.ws4e{word-spacing:41.843941px;}
.wsa0{word-spacing:41.844096px;}
.ws7e{word-spacing:41.844377px;}
.ws54{word-spacing:41.844455px;}
.ws9f{word-spacing:41.846484px;}
.ws46{word-spacing:41.847107px;}
.ws7f{word-spacing:42.982420px;}
.ws8f{word-spacing:43.576703px;}
.ws77{word-spacing:45.972215px;}
.ws1d{word-spacing:46.583205px;}
.ws90{word-spacing:48.358751px;}
.ws74{word-spacing:49.618526px;}
.ws75{word-spacing:49.738078px;}
.ws72{word-spacing:49.977180px;}
.ws70{word-spacing:50.036956px;}
.ws71{word-spacing:50.455385px;}
.ws6d{word-spacing:50.814038px;}
.ws73{word-spacing:50.873814px;}
.ws6f{word-spacing:50.993365px;}
.ws4f{word-spacing:51.567704px;}
.ws51{word-spacing:51.570911px;}
.ws5e{word-spacing:51.572032px;}
.ws53{word-spacing:51.572602px;}
.ws91{word-spacing:67.427167px;}
.ws97{word-spacing:87.691392px;}
.ws6b{word-spacing:101.022221px;}
.ws7b{word-spacing:114.257398px;}
.ws1b{word-spacing:283.846101px;}
.ws1a{word-spacing:351.976716px;}
.ws86{word-spacing:600.618650px;}
.ws55{word-spacing:827.157020px;}
.ws56{word-spacing:851.113404px;}
.ws85{word-spacing:857.266136px;}
.ws68{word-spacing:866.298871px;}
.ws57{word-spacing:913.688002px;}
.ws60{word-spacing:958.458948px;}
.ws87{word-spacing:988.175336px;}
.ws5f{word-spacing:1041.717199px;}
._70{margin-left:-115.143793px;}
._72{margin-left:-110.692880px;}
._0{margin-left:-28.674477px;}
._71{margin-left:-19.148207px;}
._6f{margin-left:-15.354000px;}
._6d{margin-left:-10.329293px;}
._6{margin-left:-8.798990px;}
._11{margin-left:-7.122744px;}
._3{margin-left:-5.929754px;}
._5a{margin-left:-4.841785px;}
._7{margin-left:-3.825648px;}
._1{margin-left:-2.779584px;}
._b{margin-left:-1.047274px;}
._e{width:1.057429px;}
._4{width:2.295389px;}
._9{width:3.660985px;}
._5{width:5.457538px;}
._15{width:10.761007px;}
._13{width:12.934789px;}
._c{width:15.054558px;}
._a{width:16.831988px;}
._24{width:18.322815px;}
._f{width:19.640257px;}
._8{width:20.804407px;}
._d{width:22.415964px;}
._1a{width:23.760020px;}
._19{width:25.839938px;}
._16{width:27.928803px;}
._17{width:29.323661px;}
._1e{width:30.727489px;}
._1c{width:33.405445px;}
._1d{width:35.275556px;}
._1f{width:40.320034px;}
._18{width:44.081437px;}
._10{width:49.187251px;}
._2{width:64.282865px;}
._14{width:70.023445px;}
._21{width:71.732177px;}
._6b{width:72.922874px;}
._59{width:73.972278px;}
._6a{width:75.300746px;}
._57{width:76.345366px;}
._25{width:79.265099px;}
._20{width:89.158908px;}
._5e{width:90.291175px;}
._28{width:93.938958px;}
._23{width:97.730958px;}
._6e{width:120.366504px;}
._30{width:121.403506px;}
._37{width:125.079733px;}
._46{width:129.293923px;}
._22{width:130.910021px;}
._29{width:132.997402px;}
._33{width:143.937196px;}
._75{width:145.184159px;}
._62{width:148.491232px;}
._77{width:150.411046px;}
._2b{width:204.618320px;}
._2f{width:211.367506px;}
._27{width:215.015506px;}
._26{width:217.108871px;}
._44{width:219.908082px;}
._61{width:239.469402px;}
._5b{width:243.107291px;}
._73{width:244.725710px;}
._5c{width:247.590432px;}
._6c{width:249.153352px;}
._58{width:251.487874px;}
._7b{width:252.504011px;}
._5f{width:254.744698px;}
._35{width:298.676580px;}
._45{width:313.696174px;}
._38{width:315.529864px;}
._2c{width:366.385918px;}
._2a{width:389.465987px;}
._74{width:394.958913px;}
._76{width:445.166958px;}
._43{width:476.218736px;}
._7a{width:477.234874px;}
._67{width:483.062659px;}
._4d{width:532.286958px;}
._34{width:540.495154px;}
._32{width:638.589428px;}
._2e{width:647.186046px;}
._65{width:695.346604px;}
._60{width:700.358698px;}
._2d{width:735.812890px;}
._49{width:756.791869px;}
._63{width:793.159469px;}
._36{width:828.308589px;}
._3c{width:869.768926px;}
._64{width:895.818896px;}
._3d{width:904.130958px;}
._48{width:929.788377px;}
._4b{width:943.861116px;}
._52{width:989.970641px;}
._66{width:991.057664px;}
._4f{width:1082.459201px;}
._4a{width:1099.773973px;}
._3a{width:1128.641869px;}
._39{width:1178.256456px;}
._53{width:1227.505385px;}
._69{width:1234.286958px;}
._4c{width:1266.656589px;}
._42{width:1272.740958px;}
._47{width:1294.990081px;}
._12{width:1336.869566px;}
._50{width:1352.756208px;}
._3b{width:1448.060317px;}
._40{width:1454.417947px;}
._55{width:1495.119963px;}
._51{width:1528.370900px;}
._4e{width:1540.610910px;}
._56{width:1674.242589px;}
._54{width:1689.912853px;}
._3f{width:1730.073881px;}
._7e{width:1752.292831px;}
._7f{width:1755.700831px;}
._80{width:1757.074831px;}
._78{width:1758.448831px;}
._7c{width:1761.850831px;}
._7d{width:1763.224831px;}
._79{width:1764.598831px;}
._1b{width:1785.022831px;}
._31{width:1788.424831px;}
._5d{width:1789.798831px;}
._68{width:1907.356610px;}
._3e{width:1924.212225px;}
._41{width:1983.937311px;}
.fc8{color:rgb(10,146,141);}
.fc6{color:rgb(10,146,141);}
.fc4{color:rgb(79,117,144);}
.fc3{color:rgb(161,49,87);}
.fc2{color:rgb(77,198,244);}
.fc7{color:rgb(16,106,175);}
.fc1{color:rgb(16,106,175);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fsf{font-size:47.826699px;}
.fse{font-size:52.367907px;}
.fsd{font-size:53.764830px;}
.fs11{font-size:53.798400px;}
.fs10{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:65.454600px;}
.fs9{font-size:65.753400px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:86.077200px;}
.fs7{font-size:89.664000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:125.529000px;}
.fsb{font-size:148.722600px;}
.fs8{font-size:191.282400px;}
.fs5{font-size:735.243000px;}
.y0{bottom:0.000000px;}
.y70{bottom:21.945969px;}
.y61{bottom:35.107844px;}
.y60{bottom:35.170252px;}
.y6f{bottom:35.387176px;}
.y6e{bottom:48.828384px;}
.y84{bottom:61.507500px;}
.y6d{bottom:62.269591px;}
.y5f{bottom:63.864834px;}
.y5{bottom:66.525004px;}
.y48{bottom:67.196167px;}
.y69{bottom:77.906008px;}
.y5e{bottom:80.126316px;}
.y76{bottom:81.923056px;}
.y68{bottom:91.347216px;}
.y75{bottom:95.364264px;}
.y4{bottom:97.125005px;}
.y73{bottom:97.155058px;}
.y67{bottom:104.788423px;}
.y47{bottom:107.843167px;}
.y74{bottom:108.805471px;}
.y66{bottom:118.229631px;}
.y6c{bottom:125.635627px;}
.yac{bottom:127.717500px;}
.y46{bottom:128.166667px;}
.y72{bottom:138.130535px;}
.y5d{bottom:138.247530px;}
.y6b{bottom:139.076835px;}
.y20{bottom:139.264499px;}
.y4f{bottom:147.883522px;}
.y45{bottom:148.490167px;}
.yab{bottom:150.967500px;}
.y6a{bottom:152.518042px;}
.y5c{bottom:154.424995px;}
.y27{bottom:154.584000px;}
.y20a{bottom:166.210500px;}
.y298{bottom:167.910000px;}
.y17d{bottom:167.916000px;}
.y4e{bottom:168.207022px;}
.y44{bottom:168.813667px;}
.y5b{bottom:170.002372px;}
.y65{bottom:175.560252px;}
.y297{bottom:185.844000px;}
.y17c{bottom:185.848500px;}
.y209{bottom:186.354000px;}
.y5a{bottom:188.183998px;}
.y64{bottom:189.001459px;}
.y43{bottom:189.138667px;}
.yaa{bottom:191.434500px;}
.y17{bottom:196.933500px;}
.y271{bottom:198.423000px;}
.y233{bottom:198.439500px;}
.y296{bottom:203.776500px;}
.y17b{bottom:203.781000px;}
.y59{bottom:204.313453px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.ya9{bottom:211.579500px;}
.y270{bottom:216.355500px;}
.y232{bottom:216.372000px;}
.yf4{bottom:219.798000px;}
.y58{bottom:220.574932px;}
.y295{bottom:221.709000px;}
.y17a{bottom:221.715000px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y63{bottom:225.484927px;}
.y208{bottom:226.558500px;}
.y42{bottom:229.160167px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.ya8{bottom:234.831000px;}
.y26f{bottom:236.500500px;}
.y231{bottom:236.517000px;}
.y57{bottom:236.836383px;}
.yf3{bottom:237.730500px;}
.y62{bottom:238.926135px;}
.y294{bottom:241.854000px;}
.y179{bottom:241.858500px;}
.y207{bottom:244.491000px;}
.y156{bottom:245.692500px;}
.y56{bottom:253.097862px;}
.yf2{bottom:257.875500px;}
.y26e{bottom:258.256500px;}
.y230{bottom:258.273000px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y293{bottom:262.177500px;}
.y178{bottom:262.182000px;}
.y206{bottom:262.425000px;}
.y155{bottom:263.625000px;}
.y26{bottom:264.627000px;}
.y41{bottom:269.826067px;}
.y55{bottom:271.157606px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.ya7{bottom:273.864000px;}
.y24e{bottom:275.319000px;}
.y19f{bottom:275.335500px;}
.y2b3{bottom:275.352000px;}
.y25f{bottom:279.571500px;}
.y1be{bottom:279.588000px;}
.yf1{bottom:279.631500px;}
.y2c4{bottom:279.865500px;}
.y26d{bottom:280.014000px;}
.y22f{bottom:280.030500px;}
.y205{bottom:280.357500px;}
.y71{bottom:280.371020px;}
.y154{bottom:283.770000px;}
.y292{bottom:283.950000px;}
.y177{bottom:283.956000px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y40{bottom:290.149567px;}
.ya6{bottom:291.796500px;}
.y24d{bottom:293.251500px;}
.y19e{bottom:293.268000px;}
.y2b2{bottom:293.284500px;}
.y25e{bottom:297.504000px;}
.y1bd{bottom:297.520500px;}
.y2c3{bottom:297.798000px;}
.y204{bottom:298.290000px;}
.yf0{bottom:301.126500px;}
.y26c{bottom:301.770000px;}
.y22e{bottom:301.786500px;}
.y291{bottom:304.273500px;}
.y176{bottom:304.279500px;}
.y153{bottom:305.527500px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.ya5{bottom:311.941500px;}
.y25{bottom:312.448500px;}
.y24c{bottom:313.396500px;}
.y19d{bottom:313.413000px;}
.y2b1{bottom:313.429500px;}
.y203{bottom:316.222500px;}
.y25d{bottom:317.649000px;}
.y1bc{bottom:317.664000px;}
.y2c2{bottom:317.943000px;}
.yef{bottom:322.621500px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.ycd{bottom:323.329500px;}
.y26b{bottom:323.527500px;}
.y22d{bottom:323.544000px;}
.y28f{bottom:326.047500px;}
.y174{bottom:326.052000px;}
.y152{bottom:327.283500px;}
.y202{bottom:334.155000px;}
.y24b{bottom:335.152500px;}
.y19c{bottom:335.169000px;}
.y2b0{bottom:335.185500px;}
.y25c{bottom:339.405000px;}
.y1bb{bottom:339.421500px;}
.y2c1{bottom:339.699000px;}
.y28e{bottom:342.486000px;}
.y173{bottom:342.490500px;}
.yee{bottom:344.379000px;}
.y26a{bottom:345.022500px;}
.y22c{bottom:345.039000px;}
.ye{bottom:348.133500px;}
.y151{bottom:349.041000px;}
.y201{bottom:352.087500px;}
.ya4{bottom:352.146000px;}
.y1df{bottom:354.936000px;}
.y24a{bottom:356.910000px;}
.y19b{bottom:356.926500px;}
.y2af{bottom:356.943000px;}
.y28d{bottom:358.924500px;}
.y172{bottom:358.929000px;}
.y24{bottom:360.268500px;}
.y25b{bottom:361.162500px;}
.y1ba{bottom:361.177500px;}
.y2c0{bottom:361.456500px;}
.ycc{bottom:363.795000px;}
.yed{bottom:366.135000px;}
.y269{bottom:368.011500px;}
.y22b{bottom:368.028000px;}
.y200{bottom:370.021500px;}
.y150{bottom:370.797000px;}
.y1de{bottom:372.870000px;}
.y28c{bottom:375.361500px;}
.y171{bottom:375.367500px;}
.y249{bottom:378.666000px;}
.y19a{bottom:378.682500px;}
.y2ae{bottom:378.699000px;}
.ycb{bottom:381.727500px;}
.y25a{bottom:382.918500px;}
.y1b9{bottom:382.935000px;}
.y2bf{bottom:383.212500px;}
.yd{bottom:386.785499px;}
.y1ff{bottom:387.954000px;}
.yec{bottom:390.792000px;}
.ya3{bottom:391.000500px;}
.y268{bottom:391.234500px;}
.y22a{bottom:391.251000px;}
.y28b{bottom:391.800000px;}
.y170{bottom:391.806000px;}
.y14f{bottom:392.292000px;}
.y1dd{bottom:393.013500px;}
.yca{bottom:401.872500px;}
.y248{bottom:401.917500px;}
.y199{bottom:401.934000px;}
.y12d{bottom:401.940000px;}
.y2ad{bottom:401.950500px;}
.y1fe{bottom:405.886500px;}
.y259{bottom:406.170000px;}
.y1b8{bottom:406.186500px;}
.y2be{bottom:406.464000px;}
.yc{bottom:408.044999px;}
.y28a{bottom:408.238500px;}
.y16f{bottom:408.244500px;}
.yeb{bottom:411.115500px;}
.ya2{bottom:411.324000px;}
.y1dc{bottom:414.771000px;}
.y14e{bottom:415.281000px;}
.y247{bottom:423.736500px;}
.y198{bottom:423.751500px;}
.y2ac{bottom:423.768000px;}
.y1fd{bottom:423.819000px;}
.y290{bottom:424.677000px;}
.y175{bottom:424.683000px;}
.y12c{bottom:425.163000px;}
.yc9{bottom:426.529500px;}
.y258{bottom:429.393000px;}
.y1b7{bottom:429.409500px;}
.y2bd{bottom:429.688500px;}
.ya1{bottom:431.647500px;}
.y1db{bottom:436.266000px;}
.y14d{bottom:438.505500px;}
.y1fc{bottom:441.751500px;}
.y289{bottom:446.496000px;}
.y16e{bottom:446.500500px;}
.y257{bottom:449.716500px;}
.y1b6{bottom:449.733000px;}
.y2bc{bottom:450.012000px;}
.y267{bottom:450.265500px;}
.y229{bottom:450.280500px;}
.ya0{bottom:454.872000px;}
.y1da{bottom:458.022000px;}
.y1fb{bottom:459.685500px;}
.y246{bottom:464.202000px;}
.y197{bottom:464.218500px;}
.y2ab{bottom:464.235000px;}
.yea{bottom:464.554500px;}
.y288{bottom:466.819500px;}
.y16d{bottom:466.824000px;}
.y266{bottom:468.198000px;}
.y228{bottom:468.214500px;}
.yc8{bottom:468.343500px;}
.y3f{bottom:469.707022px;}
.y1fa{bottom:477.618000px;}
.y1d9{bottom:479.517000px;}
.y245{bottom:482.134500px;}
.y196{bottom:482.151000px;}
.y2aa{bottom:482.167500px;}
.ye9{bottom:482.488500px;}
.y12b{bottom:484.159500px;}
.y287{bottom:487.143000px;}
.y16c{bottom:487.149000px;}
.y265{bottom:488.341500px;}
.y227{bottom:488.358000px;}
.y3e{bottom:490.030522px;}
.y1f9{bottom:495.550500px;}
.y14c{bottom:497.535000px;}
.y83{bottom:501.048000px;}
.y1d8{bottom:501.274500px;}
.y244{bottom:502.279500px;}
.y195{bottom:502.296000px;}
.y2a9{bottom:502.312500px;}
.ye8{bottom:502.632000px;}
.y256{bottom:503.157000px;}
.y1b5{bottom:503.173500px;}
.y2bb{bottom:503.451000px;}
.y12a{bottom:504.304500px;}
.y286{bottom:507.466500px;}
.y16b{bottom:507.472500px;}
.yc7{bottom:508.810500px;}
.y264{bottom:510.099000px;}
.y226{bottom:510.115500px;}
.y3d{bottom:510.355522px;}
.y1f8{bottom:513.483000px;}
.y9f{bottom:513.868500px;}
.y14b{bottom:515.467500px;}
.yb{bottom:520.864502px;}
.y255{bottom:521.089500px;}
.y1b4{bottom:521.106000px;}
.y82{bottom:521.371500px;}
.y2ba{bottom:521.383500px;}
.ye7{bottom:524.389500px;}
.y1d7{bottom:524.524500px;}
.y243{bottom:525.547500px;}
.y194{bottom:525.564000px;}
.y2a8{bottom:525.580500px;}
.y285{bottom:527.790000px;}
.y16a{bottom:527.796000px;}
.yc6{bottom:528.954000px;}
.y1f7{bottom:531.415500px;}
.y9e{bottom:531.801000px;}
.y263{bottom:531.855000px;}
.y225{bottom:531.871500px;}
.y14a{bottom:535.612500px;}
.ya{bottom:538.864499px;}
.y254{bottom:539.022000px;}
.y1b3{bottom:539.038500px;}
.y2b9{bottom:539.317500px;}
.y81{bottom:541.695000px;}
.y129{bottom:544.509000px;}
.y1d6{bottom:544.849500px;}
.ye6{bottom:546.162000px;}
.y1f6{bottom:549.348000px;}
.y9d{bottom:551.946000px;}
.y262{bottom:553.612500px;}
.y224{bottom:553.629000px;}
.y109{bottom:554.025000px;}
.y9{bottom:556.864499px;}
.y253{bottom:556.954500px;}
.y1b2{bottom:556.971000px;}
.y2b8{bottom:557.250000px;}
.y149{bottom:557.368500px;}
.y80{bottom:562.018500px;}
.y128{bottom:562.441500px;}
.y1d5{bottom:565.173000px;}
.y242{bottom:566.013000px;}
.y193{bottom:566.029500px;}
.y2a7{bottom:566.046000px;}
.y1f5{bottom:567.282000px;}
.ye5{bottom:567.657000px;}
.yc5{bottom:569.160000px;}
.y9c{bottom:575.214000px;}
.y261{bottom:576.864000px;}
.y223{bottom:576.880500px;}
.y252{bottom:577.099500px;}
.y1b1{bottom:577.116000px;}
.y108{bottom:577.249500px;}
.y2b7{bottom:577.393500px;}
.y148{bottom:579.126000px;}
.y127{bottom:580.375500px;}
.y7f{bottom:582.342000px;}
.y241{bottom:583.947000px;}
.y192{bottom:583.963500px;}
.y2a6{bottom:583.978500px;}
.y3c{bottom:584.826022px;}
.y1f4{bottom:585.214500px;}
.y1d4{bottom:585.496500px;}
.y169{bottom:585.921000px;}
.y284{bottom:585.927000px;}
.yc4{bottom:587.092500px;}
.ye4{bottom:589.152000px;}
.y126{bottom:598.308000px;}
.y251{bottom:598.857000px;}
.y1b0{bottom:598.872000px;}
.y2b6{bottom:599.151000px;}
.y260{bottom:600.087000px;}
.y222{bottom:600.103500px;}
.y147{bottom:600.882000px;}
.y7e{bottom:602.667000px;}
.y168{bottom:603.853500px;}
.y283{bottom:603.859500px;}
.y240{bottom:604.090500px;}
.y191{bottom:604.107000px;}
.y2a5{bottom:604.123500px;}
.yc3{bottom:605.025000px;}
.y3b{bottom:605.149522px;}
.y1f3{bottom:605.358000px;}
.ye3{bottom:610.909500px;}
.y9b{bottom:615.679500px;}
.y125{bottom:616.240500px;}
.y250{bottom:620.613000px;}
.y1af{bottom:620.629500px;}
.y2b5{bottom:620.907000px;}
.y167{bottom:621.786000px;}
.y282{bottom:621.792000px;}
.yc2{bottom:622.957500px;}
.y7d{bottom:622.990500px;}
.y146{bottom:624.133500px;}
.y3a{bottom:625.474522px;}
.y1f2{bottom:627.115500px;}
.y23f{bottom:627.342000px;}
.y190{bottom:627.358500px;}
.y2a4{bottom:627.375000px;}
.ye2{bottom:632.665500px;}
.y124{bottom:634.173000px;}
.y107{bottom:636.279000px;}
.y1d3{bottom:638.935500px;}
.y166{bottom:639.718500px;}
.y281{bottom:639.724500px;}
.yc1{bottom:643.102500px;}
.y7c{bottom:643.314000px;}
.y24f{bottom:645.270000px;}
.y1ae{bottom:645.286500px;}
.y8{bottom:645.510000px;}
.y2b4{bottom:645.564000px;}
.y39{bottom:645.798022px;}
.y145{bottom:647.356500px;}
.y1f1{bottom:648.871500px;}
.y123{bottom:652.105500px;}
.y106{bottom:654.211500px;}
.ye1{bottom:654.423000px;}
.y9a{bottom:654.534000px;}
.y1d2{bottom:656.869500px;}
.y165{bottom:657.652500px;}
.y280{bottom:657.657000px;}
.y221{bottom:659.116500px;}
.y7b{bottom:663.637500px;}
.yc0{bottom:664.858500px;}
.y38{bottom:666.121522px;}
.y7{bottom:666.771000px;}
.y23e{bottom:667.809000px;}
.y18f{bottom:667.825500px;}
.y2a3{bottom:667.842000px;}
.y122{bottom:670.038000px;}
.y1f0{bottom:670.629000px;}
.y105{bottom:674.356500px;}
.y99{bottom:674.857500px;}
.y164{bottom:675.585000px;}
.y27f{bottom:675.589500px;}
.y1d1{bottom:677.013000px;}
.y220{bottom:677.049000px;}
.ye0{bottom:677.412000px;}
.y2cd{bottom:678.270000px;}
.y7a{bottom:683.961000px;}
.ybf{bottom:686.353500px;}
.y37{bottom:686.445022px;}
.y1ad{bottom:687.084000px;}
.y23d{bottom:687.952500px;}
.y18e{bottom:687.969000px;}
.y121{bottom:687.972000px;}
.y2a2{bottom:687.985500px;}
.y1ef{bottom:692.385000px;}
.y163{bottom:693.517500px;}
.y27e{bottom:693.523500px;}
.y21f{bottom:694.983000px;}
.y104{bottom:696.112500px;}
.y1d0{bottom:698.770500px;}
.ydf{bottom:700.635000px;}
.y79{bottom:704.284500px;}
.y120{bottom:705.904500px;}
.y144{bottom:706.371000px;}
.y36{bottom:706.768522px;}
.ybe{bottom:708.111000px;}
.y23c{bottom:711.204000px;}
.y18d{bottom:711.220500px;}
.y2a1{bottom:711.237000px;}
.y162{bottom:711.450000px;}
.y27d{bottom:711.456000px;}
.y98{bottom:711.757500px;}
.y21e{bottom:712.915500px;}
.y1ee{bottom:714.142500px;}
.y4d{bottom:716.395522px;}
.y103{bottom:717.607500px;}
.y2cc{bottom:718.735500px;}
.y1cf{bottom:720.265500px;}
.yde{bottom:720.958500px;}
.y11f{bottom:723.837000px;}
.y143{bottom:724.303500px;}
.y78{bottom:724.609500px;}
.y6{bottom:726.298500px;}
.y35{bottom:727.093522px;}
.y1ac{bottom:727.551000px;}
.y161{bottom:729.382500px;}
.y27c{bottom:729.388500px;}
.y97{bottom:729.690000px;}
.ybd{bottom:729.867000px;}
.y21d{bottom:730.848000px;}
.y1ed{bottom:735.898500px;}
.y2cb{bottom:738.880500px;}
.y102{bottom:739.380000px;}
.y1ce{bottom:741.760500px;}
.y11e{bottom:741.769500px;}
.y142{bottom:742.236000px;}
.y77{bottom:744.933000px;}
.y1ab{bottom:745.483500px;}
.y21c{bottom:748.780500px;}
.y160{bottom:749.527500px;}
.y27b{bottom:749.533500px;}
.y96{bottom:749.835000px;}
.y23b{bottom:750.238500px;}
.y18c{bottom:750.253500px;}
.y2a0{bottom:750.270000px;}
.y3{bottom:752.599495px;}
.ybc{bottom:753.118500px;}
.y4c{bottom:757.042522px;}
.y1ec{bottom:757.656000px;}
.y11d{bottom:759.702000px;}
.y141{bottom:760.168500px;}
.y101{bottom:760.875000px;}
.y2ca{bottom:762.148500px;}
.y1cd{bottom:763.516500px;}
.y54{bottom:765.256812px;}
.y1aa{bottom:765.628500px;}
.y21b{bottom:766.713000px;}
.y23a{bottom:768.171000px;}
.y18b{bottom:768.187500px;}
.y29f{bottom:768.204000px;}
.y15f{bottom:771.283500px;}
.y27a{bottom:771.289500px;}
.y95{bottom:773.103000px;}
.ydd{bottom:774.399000px;}
.ybb{bottom:776.341500px;}
.y11c{bottom:777.634500px;}
.y140{bottom:778.101000px;}
.y1eb{bottom:779.412000px;}
.y100{bottom:782.370000px;}
.y21a{bottom:784.645500px;}
.y1cc{bottom:785.274000px;}
.y239{bottom:788.314500px;}
.y18a{bottom:788.331000px;}
.y29e{bottom:788.347500px;}
.y1a9{bottom:790.284000px;}
.ydc{bottom:792.331500px;}
.y15e{bottom:793.041000px;}
.y279{bottom:793.047000px;}
.y11b{bottom:795.568500px;}
.y13f{bottom:796.035000px;}
.y1ea{bottom:801.169500px;}
.y2c9{bottom:802.615500px;}
.yff{bottom:804.127500px;}
.y219{bottom:804.790500px;}
.y1cb{bottom:809.929500px;}
.ydb{bottom:812.476500px;}
.y11a{bottom:813.501000px;}
.y13e{bottom:813.967500px;}
.y15d{bottom:814.797000px;}
.y278{bottom:814.803000px;}
.y34{bottom:814.896646px;}
.y94{bottom:814.917000px;}
.y4b{bottom:818.014522px;}
.y2c8{bottom:822.759000px;}
.y1e9{bottom:822.925500px;}
.y218{bottom:825.114000px;}
.yfe{bottom:825.883500px;}
.y238{bottom:828.520500px;}
.y189{bottom:828.535500px;}
.y29d{bottom:828.552000px;}
.y1ca{bottom:830.254500px;}
.y119{bottom:831.433500px;}
.y13d{bottom:831.900000px;}
.y1a8{bottom:832.099500px;}
.yda{bottom:834.232500px;}
.y15c{bottom:835.122000px;}
.y277{bottom:835.126500px;}
.y93{bottom:835.240500px;}
.yba{bottom:835.356000px;}
.y217{bottom:845.437500px;}
.y2c7{bottom:846.010500px;}
.y1e8{bottom:846.177000px;}
.y118{bottom:849.366000px;}
.yfd{bottom:850.540500px;}
.y13c{bottom:852.045000px;}
.yb9{bottom:853.288500px;}
.y33{bottom:855.545146px;}
.y92{bottom:855.564000px;}
.yd9{bottom:855.990000px;}
.y15b{bottom:856.878000px;}
.y276{bottom:856.884000px;}
.y4a{bottom:862.845022px;}
.y216{bottom:867.195000px;}
.y117{bottom:867.298500px;}
.y237{bottom:867.373500px;}
.y188{bottom:867.390000px;}
.y29c{bottom:867.406500px;}
.y23{bottom:867.889500px;}
.y1e7{bottom:869.400000px;}
.y13b{bottom:872.368500px;}
.y1a7{bottom:872.565000px;}
.yb8{bottom:873.433500px;}
.y32{bottom:875.870146px;}
.y91{bottom:875.887500px;}
.yd8{bottom:877.746000px;}
.y15a{bottom:878.635500px;}
.y275{bottom:878.640000px;}
.y2{bottom:879.369000px;}
.y1c9{bottom:883.693500px;}
.y116{bottom:885.231000px;}
.y2c6{bottom:886.477500px;}
.y215{bottom:887.518500px;}
.y236{bottom:887.698500px;}
.y187{bottom:887.713500px;}
.y29b{bottom:887.730000px;}
.y13a{bottom:892.692000px;}
.y1a6{bottom:892.710000px;}
.yb7{bottom:895.189500px;}
.y31{bottom:896.193646px;}
.y90{bottom:896.212500px;}
.yd7{bottom:900.997500px;}
.y1c8{bottom:901.626000px;}
.y159{bottom:901.885500px;}
.y274{bottom:901.891500px;}
.y115{bottom:903.165000px;}
.y2c5{bottom:906.621000px;}
.y214{bottom:907.842000px;}
.y235{bottom:908.022000px;}
.y186{bottom:908.038500px;}
.y29a{bottom:908.055000px;}
.yfc{bottom:909.537000px;}
.y139{bottom:914.448000px;}
.y30{bottom:916.517146px;}
.y8f{bottom:916.536000px;}
.yb6{bottom:916.947000px;}
.y1c7{bottom:921.771000px;}
.y114{bottom:923.308500px;}
.yd6{bottom:924.220500px;}
.y158{bottom:925.110000px;}
.y273{bottom:925.114500px;}
.y1e6{bottom:925.836000px;}
.yfb{bottom:927.471000px;}
.y213{bottom:928.167000px;}
.y234{bottom:931.245000px;}
.y185{bottom:931.261500px;}
.y299{bottom:931.278000px;}
.y1a5{bottom:932.914500px;}
.y138{bottom:934.773000px;}
.y2f{bottom:936.840646px;}
.y8e{bottom:936.859500px;}
.yb5{bottom:938.703000px;}
.y1c6{bottom:943.527000px;}
.y1e5{bottom:943.768500px;}
.yd5{bottom:944.545500px;}
.y113{bottom:945.066000px;}
.y157{bottom:945.433500px;}
.y272{bottom:945.439500px;}
.yfa{bottom:947.614500px;}
.y212{bottom:948.490500px;}
.y1a4{bottom:950.847000px;}
.y137{bottom:955.096500px;}
.y2e{bottom:957.164146px;}
.y8d{bottom:957.183000px;}
.yb4{bottom:961.954500px;}
.y1e4{bottom:963.912000px;}
.y1c5{bottom:965.301000px;}
.y1{bottom:966.726000px;}
.y112{bottom:966.822000px;}
.y1a3{bottom:968.779500px;}
.yf9{bottom:969.372000px;}
.y211{bottom:970.246500px;}
.y136{bottom:975.420000px;}
.y2d{bottom:977.489146px;}
.y8c{bottom:977.506500px;}
.yb3{bottom:983.772000px;}
.y1e3{bottom:985.669500px;}
.y1a2{bottom:986.713500px;}
.y1c4{bottom:986.796000px;}
.y111{bottom:988.579500px;}
.y184{bottom:990.274500px;}
.y210{bottom:990.570000px;}
.yf8{bottom:990.867000px;}
.y135{bottom:995.743500px;}
.y8b{bottom:997.831500px;}
.yd4{bottom:997.984500px;}
.y21{bottom:999.439500px;}
.y1a1{bottom:1006.857000px;}
.y1e2{bottom:1007.164500px;}
.y22{bottom:1007.944500px;}
.y183{bottom:1008.208500px;}
.y1c3{bottom:1008.291000px;}
.y110{bottom:1010.335500px;}
.y20f{bottom:1010.895000px;}
.yf7{bottom:1012.623000px;}
.yd3{bottom:1015.917000px;}
.y134{bottom:1017.501000px;}
.y8a{bottom:1018.155000px;}
.y2c{bottom:1018.155046px;}
.yb2{bottom:1024.239000px;}
.y182{bottom:1028.352000px;}
.y1a0{bottom:1028.614500px;}
.y1e1{bottom:1028.937000px;}
.y1c2{bottom:1030.047000px;}
.y20e{bottom:1031.218500px;}
.y10f{bottom:1032.093000px;}
.yd2{bottom:1033.849500px;}
.yf6{bottom:1034.118000px;}
.y133{bottom:1037.824500px;}
.y89{bottom:1038.478500px;}
.y2b{bottom:1038.478546px;}
.yb1{bottom:1042.171500px;}
.y181{bottom:1050.109500px;}
.y1e0{bottom:1050.432000px;}
.yd1{bottom:1051.783500px;}
.y1c1{bottom:1051.804500px;}
.y20d{bottom:1052.974500px;}
.y10e{bottom:1053.849000px;}
.yf5{bottom:1055.875500px;}
.y132{bottom:1058.148000px;}
.y88{bottom:1058.802000px;}
.yb0{bottom:1062.316500px;}
.y180{bottom:1071.865500px;}
.yd0{bottom:1071.927000px;}
.y20c{bottom:1073.299500px;}
.y1c0{bottom:1073.560500px;}
.y10d{bottom:1075.606500px;}
.y131{bottom:1078.471500px;}
.y87{bottom:1079.125500px;}
.y53{bottom:1081.083000px;}
.yaf{bottom:1085.583000px;}
.y17f{bottom:1093.623000px;}
.ycf{bottom:1093.684500px;}
.y20b{bottom:1095.055500px;}
.y1bf{bottom:1096.549500px;}
.y10c{bottom:1097.362500px;}
.y2a{bottom:1099.431604px;}
.y86{bottom:1099.450500px;}
.y130{bottom:1100.229000px;}
.y52{bottom:1101.406500px;}
.yce{bottom:1115.440500px;}
.y17e{bottom:1116.873000px;}
.y10b{bottom:1119.120000px;}
.y85{bottom:1119.774000px;}
.y29{bottom:1119.774004px;}
.y49{bottom:1120.276519px;}
.y12f{bottom:1120.552500px;}
.yae{bottom:1126.050000px;}
.y51{bottom:1140.097500px;}
.y28{bottom:1140.097504px;}
.y10a{bottom:1140.876000px;}
.y12e{bottom:1142.308500px;}
.yad{bottom:1143.982500px;}
.y50{bottom:1193.145000px;}
.h7{height:32.130000px;}
.h17{height:33.137737px;}
.h13{height:37.252097px;}
.h15{height:38.508822px;}
.h14{height:38.534393px;}
.h1a{height:39.757018px;}
.h16{height:40.940635px;}
.h19{height:43.576412px;}
.h6{height:45.900000px;}
.he{height:47.716403px;}
.hd{height:47.934229px;}
.h3{height:48.195000px;}
.h10{height:48.370949px;}
.h18{height:53.149135px;}
.h2{height:55.080000px;}
.h11{height:63.438896px;}
.hb{height:66.082368px;}
.h5{height:78.030000px;}
.ha{height:92.514873px;}
.hf{height:109.608556px;}
.h4{height:119.055004px;}
.hc{height:140.975129px;}
.h12{height:310.831674px;}
.h9{height:597.017316px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:625.057754px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:5.104377px;}
.x7{left:85.039500px;}
.x8{left:87.165000px;}
.xc{left:98.435954px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x9{left:133.938000px;}
.xf{left:139.020000px;}
.x15{left:155.197500px;}
.xd{left:159.077396px;}
.x4{left:203.484001px;}
.x14{left:312.078000px;}
.x16{left:313.984500px;}
.x1e{left:321.451500px;}
.x1b{left:324.691500px;}
.x1c{left:328.363500px;}
.x1d{left:330.663000px;}
.x1a{left:336.319500px;}
.x18{left:356.692500px;}
.x11{left:365.554500px;}
.x13{left:380.484000px;}
.xe{left:384.750140px;}
.xa{left:417.351013px;}
.x5{left:451.548000px;}
.x3{left:454.959000px;}
.x12{left:612.967500px;}
.x10{left:677.493000px;}
.x23{left:686.055000px;}
.x20{left:689.295000px;}
.x21{left:692.967000px;}
.x22{left:695.266500px;}
.x1f{left:698.191500px;}
.x19{left:700.564500px;}
.x17{left:704.512500px;}
.x26{left:722.514000px;}
.x24{left:725.466000px;}
.x27{left:732.136500px;}
.x25{left:737.994000px;}
.x6{left:832.947000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.139046pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:15.518536pt;}
.ls2{letter-spacing:32.607004pt;}
.ls3{letter-spacing:98.626398pt;}
.ws1{word-spacing:-379.712163pt;}
.ws98{word-spacing:-127.717332pt;}
.ws5{word-spacing:-85.014400pt;}
.ws21{word-spacing:-47.790960pt;}
.ws3{word-spacing:-42.677229pt;}
.ws4{word-spacing:-42.507200pt;}
.ws7c{word-spacing:-33.803665pt;}
.ws12{word-spacing:-33.049467pt;}
.wsd{word-spacing:-29.090933pt;}
.ws96{word-spacing:-27.783885pt;}
.ws5b{word-spacing:-26.566933pt;}
.ws36{word-spacing:-23.912747pt;}
.ws8d{word-spacing:-23.854565pt;}
.ws7a{word-spacing:-23.447292pt;}
.ws94{word-spacing:-21.469109pt;}
.ws8a{word-spacing:-20.480017pt;}
.ws2{word-spacing:-19.925333pt;}
.ws37{word-spacing:-19.898198pt;}
.ws64{word-spacing:-19.665471pt;}
.ws45{word-spacing:-19.316380pt;}
.ws39{word-spacing:-19.258198pt;}
.ws3d{word-spacing:-18.909107pt;}
.ws3a{word-spacing:-18.618197pt;}
.ws4c{word-spacing:-18.501834pt;}
.ws40{word-spacing:-18.443652pt;}
.ws66{word-spacing:-18.385470pt;}
.ws95{word-spacing:-18.152742pt;}
.ws3e{word-spacing:-18.036379pt;}
.ws9d{word-spacing:-17.978197pt;}
.ws41{word-spacing:-17.920015pt;}
.ws3c{word-spacing:-17.512742pt;}
.ws8{word-spacing:-17.280014pt;}
.wsf{word-spacing:-17.105469pt;}
.ws13{word-spacing:-16.930923pt;}
.ws49{word-spacing:-16.872741pt;}
.ws67{word-spacing:-16.698196pt;}
.ws44{word-spacing:-16.465468pt;}
.ws42{word-spacing:-16.407286pt;}
.ws34{word-spacing:-16.349105pt;}
.ws2c{word-spacing:-16.174559pt;}
.ws3f{word-spacing:-16.116377pt;}
.ws38{word-spacing:-16.058195pt;}
.wse{word-spacing:-15.709104pt;}
.ws3b{word-spacing:-15.360013pt;}
.wsb{word-spacing:-15.301831pt;}
.ws10{word-spacing:-15.185467pt;}
.wsa{word-spacing:-15.127285pt;}
.ws93{word-spacing:-14.894558pt;}
.ws27{word-spacing:-14.778194pt;}
.ws29{word-spacing:-14.736200pt;}
.ws28{word-spacing:-14.732853pt;}
.ws2a{word-spacing:-14.727358pt;}
.ws2b{word-spacing:-14.720012pt;}
.ws6{word-spacing:-14.670314pt;}
.ws9{word-spacing:-14.603649pt;}
.wsc{word-spacing:-14.545467pt;}
.ws62{word-spacing:-14.138194pt;}
.ws26{word-spacing:-13.789102pt;}
.ws24{word-spacing:-13.768339pt;}
.ws25{word-spacing:-13.767609pt;}
.ws22{word-spacing:-13.766934pt;}
.ws23{word-spacing:-13.764786pt;}
.ws43{word-spacing:-13.672739pt;}
.ws32{word-spacing:-13.440011pt;}
.ws47{word-spacing:-13.336601pt;}
.ws7{word-spacing:-13.323647pt;}
.ws48{word-spacing:-13.283467pt;}
.ws2e{word-spacing:-12.757109pt;}
.ws2d{word-spacing:-12.754997pt;}
.ws2f{word-spacing:-12.741829pt;}
.ws30{word-spacing:-12.392738pt;}
.ws14{word-spacing:-10.800757pt;}
.ws84{word-spacing:-10.472736pt;}
.ws11{word-spacing:-9.774554pt;}
.ws20{word-spacing:-9.607852pt;}
.ws6e{word-spacing:-8.820222pt;}
.ws33{word-spacing:-8.494553pt;}
.ws31{word-spacing:-8.087279pt;}
.ws35{word-spacing:-1.115754pt;}
.ws8c{word-spacing:-1.068245pt;}
.ws79{word-spacing:-0.686668pt;}
.ws0{word-spacing:0.000000pt;}
.ws89{word-spacing:2.305815pt;}
.ws63{word-spacing:3.117474pt;}
.ws9e{word-spacing:3.516502pt;}
.ws6c{word-spacing:3.517451pt;}
.ws5d{word-spacing:3.517474pt;}
.ws4b{word-spacing:4.264141pt;}
.ws59{word-spacing:4.274807pt;}
.ws65{word-spacing:4.402807pt;}
.ws9c{word-spacing:4.797474pt;}
.ws9a{word-spacing:4.885694pt;}
.ws16{word-spacing:7.354782pt;}
.ws81{word-spacing:7.659513pt;}
.ws92{word-spacing:7.906300pt;}
.ws61{word-spacing:8.621474pt;}
.ws19{word-spacing:10.845975pt;}
.ws17{word-spacing:11.078722pt;}
.ws1f{word-spacing:11.125271pt;}
.ws1c{word-spacing:11.590763pt;}
.ws83{word-spacing:12.314058pt;}
.ws18{word-spacing:12.428650pt;}
.ws15{word-spacing:22.255324pt;}
.ws1e{word-spacing:26.180937pt;}
.ws8e{word-spacing:37.140831pt;}
.ws52{word-spacing:37.141286pt;}
.ws5a{word-spacing:37.141447pt;}
.ws99{word-spacing:37.141776pt;}
.ws8b{word-spacing:37.142227pt;}
.ws4a{word-spacing:37.142481pt;}
.ws50{word-spacing:37.142630pt;}
.ws78{word-spacing:37.142698pt;}
.ws6a{word-spacing:37.142768pt;}
.ws5c{word-spacing:37.143267pt;}
.ws69{word-spacing:37.143670pt;}
.ws7d{word-spacing:37.143918pt;}
.ws9b{word-spacing:37.144117pt;}
.wsa1{word-spacing:37.144160pt;}
.ws76{word-spacing:37.144820pt;}
.ws82{word-spacing:37.144967pt;}
.ws58{word-spacing:37.145002pt;}
.ws4d{word-spacing:37.145095pt;}
.ws88{word-spacing:37.145913pt;}
.ws80{word-spacing:37.192730pt;}
.ws4e{word-spacing:37.194614pt;}
.wsa0{word-spacing:37.194752pt;}
.ws7e{word-spacing:37.195002pt;}
.ws54{word-spacing:37.195071pt;}
.ws9f{word-spacing:37.196875pt;}
.ws46{word-spacing:37.197428pt;}
.ws7f{word-spacing:38.206595pt;}
.ws8f{word-spacing:38.734847pt;}
.ws77{word-spacing:40.864191pt;}
.ws1d{word-spacing:41.407293pt;}
.ws90{word-spacing:42.985556pt;}
.ws74{word-spacing:44.105357pt;}
.ws75{word-spacing:44.211625pt;}
.ws72{word-spacing:44.424160pt;}
.ws70{word-spacing:44.477294pt;}
.ws71{word-spacing:44.849231pt;}
.ws6d{word-spacing:45.168034pt;}
.ws73{word-spacing:45.221168pt;}
.ws6f{word-spacing:45.327436pt;}
.ws4f{word-spacing:45.837959pt;}
.ws51{word-spacing:45.840810pt;}
.ws5e{word-spacing:45.841806pt;}
.ws53{word-spacing:45.842313pt;}
.ws91{word-spacing:59.935260pt;}
.ws97{word-spacing:77.947904pt;}
.ws6b{word-spacing:89.797530pt;}
.ws7b{word-spacing:101.562132pt;}
.ws1b{word-spacing:252.307645pt;}
.ws1a{word-spacing:312.868192pt;}
.ws86{word-spacing:533.883244pt;}
.ws55{word-spacing:735.250685pt;}
.ws56{word-spacing:756.545248pt;}
.ws85{word-spacing:762.014343pt;}
.ws68{word-spacing:770.043441pt;}
.ws57{word-spacing:812.167113pt;}
.ws60{word-spacing:851.963509pt;}
.ws87{word-spacing:878.378077pt;}
.ws5f{word-spacing:925.970844pt;}
._70{margin-left:-102.350038pt;}
._72{margin-left:-98.393671pt;}
._0{margin-left:-25.488424pt;}
._71{margin-left:-17.020629pt;}
._6f{margin-left:-13.648000pt;}
._6d{margin-left:-9.181594pt;}
._6{margin-left:-7.821325pt;}
._11{margin-left:-6.331328pt;}
._3{margin-left:-5.270893pt;}
._5a{margin-left:-4.303809pt;}
._7{margin-left:-3.400576pt;}
._1{margin-left:-2.470741pt;}
._b{margin-left:-0.930910pt;}
._e{width:0.939937pt;}
._4{width:2.040346pt;}
._9{width:3.254209pt;}
._5{width:4.851145pt;}
._15{width:9.565340pt;}
._13{width:11.497590pt;}
._c{width:13.381829pt;}
._a{width:14.961767pt;}
._24{width:16.286947pt;}
._f{width:17.458006pt;}
._8{width:18.492806pt;}
._d{width:19.925301pt;}
._1a{width:21.120018pt;}
._19{width:22.968834pt;}
._16{width:24.825603pt;}
._17{width:26.065476pt;}
._1e{width:27.313323pt;}
._1c{width:29.693729pt;}
._1d{width:31.356050pt;}
._1f{width:35.840030pt;}
._18{width:39.183499pt;}
._10{width:43.722001pt;}
._2{width:57.140324pt;}
._14{width:62.243062pt;}
._21{width:63.761935pt;}
._6b{width:64.820333pt;}
._59{width:65.753136pt;}
._6a{width:66.933997pt;}
._57{width:67.862547pt;}
._25{width:70.457866pt;}
._20{width:79.252363pt;}
._5e{width:80.258822pt;}
._28{width:83.501296pt;}
._23{width:86.871963pt;}
._6e{width:106.992448pt;}
._30{width:107.914227pt;}
._37{width:111.181985pt;}
._46{width:114.927932pt;}
._22{width:116.364463pt;}
._29{width:118.219913pt;}
._33{width:127.944174pt;}
._75{width:129.052586pt;}
._62{width:131.992206pt;}
._77{width:133.698707pt;}
._2b{width:181.882951pt;}
._2f{width:187.882227pt;}
._27{width:191.124894pt;}
._26{width:192.985663pt;}
._44{width:195.473851pt;}
._61{width:212.861691pt;}
._5b{width:216.095370pt;}
._73{width:217.533965pt;}
._5c{width:220.080384pt;}
._6c{width:221.469646pt;}
._58{width:223.544777pt;}
._7b{width:224.448010pt;}
._5f{width:226.439732pt;}
._35{width:265.490293pt;}
._45{width:278.841044pt;}
._38{width:280.470990pt;}
._2c{width:325.676371pt;}
._2a{width:346.191988pt;}
._74{width:351.074589pt;}
._76{width:395.703963pt;}
._43{width:423.305543pt;}
._7a{width:424.208777pt;}
._67{width:429.389030pt;}
._4d{width:473.143963pt;}
._34{width:480.440137pt;}
._32{width:567.635047pt;}
._2e{width:575.276485pt;}
._65{width:618.085870pt;}
._60{width:622.541065pt;}
._2d{width:654.055902pt;}
._49{width:672.703884pt;}
._63{width:705.030639pt;}
._36{width:736.274301pt;}
._3c{width:773.127934pt;}
._64{width:796.283463pt;}
._3d{width:803.671963pt;}
._48{width:826.478557pt;}
._4b{width:838.987659pt;}
._52{width:879.973903pt;}
._66{width:880.940146pt;}
._4f{width:962.185956pt;}
._4a{width:977.576865pt;}
._3a{width:1003.237217pt;}
._39{width:1047.339072pt;}
._53{width:1091.115898pt;}
._69{width:1097.143963pt;}
._4c{width:1125.916968pt;}
._42{width:1131.325296pt;}
._47{width:1151.102294pt;}
._12{width:1188.328503pt;}
._50{width:1202.449963pt;}
._3b{width:1287.164726pt;}
._40{width:1292.815953pt;}
._55{width:1328.995523pt;}
._51{width:1358.551911pt;}
._4e{width:1369.431920pt;}
._56{width:1488.215635pt;}
._54{width:1502.144758pt;}
._3f{width:1537.843450pt;}
._7e{width:1557.593628pt;}
._7f{width:1560.622961pt;}
._80{width:1561.844294pt;}
._78{width:1563.065628pt;}
._7c{width:1566.089628pt;}
._7d{width:1567.310961pt;}
._79{width:1568.532294pt;}
._1b{width:1586.686961pt;}
._31{width:1589.710961pt;}
._5d{width:1590.932294pt;}
._68{width:1695.428098pt;}
._3e{width:1710.410867pt;}
._41{width:1763.499832pt;}
.fs4{font-size:37.333333pt;}
.fsf{font-size:42.512621pt;}
.fse{font-size:46.549251pt;}
.fsd{font-size:47.790960pt;}
.fs11{font-size:47.820800pt;}
.fs10{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.181867pt;}
.fs9{font-size:58.447467pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:76.513067pt;}
.fs7{font-size:79.701333pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:111.581333pt;}
.fsb{font-size:132.197867pt;}
.fs8{font-size:170.028800pt;}
.fs5{font-size:653.549333pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:19.507528pt;}
.y61{bottom:31.206972pt;}
.y60{bottom:31.262446pt;}
.y6f{bottom:31.455268pt;}
.y6e{bottom:43.403008pt;}
.y84{bottom:54.673333pt;}
.y6d{bottom:55.350748pt;}
.y5f{bottom:56.768741pt;}
.y5{bottom:59.133337pt;}
.y48{bottom:59.729926pt;}
.y69{bottom:69.249785pt;}
.y5e{bottom:71.223392pt;}
.y76{bottom:72.820494pt;}
.y68{bottom:81.197525pt;}
.y75{bottom:84.768234pt;}
.y4{bottom:86.333337pt;}
.y73{bottom:86.360052pt;}
.y67{bottom:93.145265pt;}
.y47{bottom:95.860593pt;}
.y74{bottom:96.715974pt;}
.y66{bottom:105.093005pt;}
.y6c{bottom:111.676113pt;}
.yac{bottom:113.526667pt;}
.y46{bottom:113.925926pt;}
.y72{bottom:122.782698pt;}
.y5d{bottom:122.886693pt;}
.y6b{bottom:123.623853pt;}
.y20{bottom:123.790666pt;}
.y4f{bottom:131.452019pt;}
.y45{bottom:131.991259pt;}
.yab{bottom:134.193333pt;}
.y6a{bottom:135.571593pt;}
.y5c{bottom:137.266662pt;}
.y27{bottom:137.408000pt;}
.y20a{bottom:147.742667pt;}
.y298{bottom:149.253333pt;}
.y17d{bottom:149.258667pt;}
.y4e{bottom:149.517353pt;}
.y44{bottom:150.056593pt;}
.y5b{bottom:151.113219pt;}
.y65{bottom:156.053557pt;}
.y297{bottom:165.194667pt;}
.y17c{bottom:165.198667pt;}
.y209{bottom:165.648000pt;}
.y5a{bottom:167.274665pt;}
.y64{bottom:168.001297pt;}
.y43{bottom:168.123259pt;}
.yaa{bottom:170.164000pt;}
.y17{bottom:175.052000pt;}
.y271{bottom:176.376000pt;}
.y233{bottom:176.390667pt;}
.y296{bottom:181.134667pt;}
.y17b{bottom:181.138667pt;}
.y59{bottom:181.611959pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.ya9{bottom:188.070667pt;}
.y270{bottom:192.316000pt;}
.y232{bottom:192.330667pt;}
.yf4{bottom:195.376000pt;}
.y58{bottom:196.066606pt;}
.y295{bottom:197.074667pt;}
.y17a{bottom:197.080000pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y63{bottom:200.431046pt;}
.y208{bottom:201.385333pt;}
.y42{bottom:203.697926pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.ya8{bottom:208.738667pt;}
.y26f{bottom:210.222667pt;}
.y231{bottom:210.237333pt;}
.y57{bottom:210.521229pt;}
.yf3{bottom:211.316000pt;}
.y62{bottom:212.378786pt;}
.y294{bottom:214.981333pt;}
.y179{bottom:214.985333pt;}
.y207{bottom:217.325333pt;}
.y156{bottom:218.393333pt;}
.y56{bottom:224.975877pt;}
.yf2{bottom:229.222667pt;}
.y26e{bottom:229.561333pt;}
.y230{bottom:229.576000pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y293{bottom:233.046667pt;}
.y178{bottom:233.050667pt;}
.y206{bottom:233.266667pt;}
.y155{bottom:234.333333pt;}
.y26{bottom:235.224000pt;}
.y41{bottom:239.845393pt;}
.y55{bottom:241.028983pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.ya7{bottom:243.434667pt;}
.y24e{bottom:244.728000pt;}
.y19f{bottom:244.742667pt;}
.y2b3{bottom:244.757333pt;}
.y25f{bottom:248.508000pt;}
.y1be{bottom:248.522667pt;}
.yf1{bottom:248.561333pt;}
.y2c4{bottom:248.769333pt;}
.y26d{bottom:248.901333pt;}
.y22f{bottom:248.916000pt;}
.y205{bottom:249.206667pt;}
.y71{bottom:249.218685pt;}
.y154{bottom:252.240000pt;}
.y292{bottom:252.400000pt;}
.y177{bottom:252.405333pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y40{bottom:257.910726pt;}
.ya6{bottom:259.374667pt;}
.y24d{bottom:260.668000pt;}
.y19e{bottom:260.682667pt;}
.y2b2{bottom:260.697333pt;}
.y25e{bottom:264.448000pt;}
.y1bd{bottom:264.462667pt;}
.y2c3{bottom:264.709333pt;}
.y204{bottom:265.146667pt;}
.yf0{bottom:267.668000pt;}
.y26c{bottom:268.240000pt;}
.y22e{bottom:268.254667pt;}
.y291{bottom:270.465333pt;}
.y176{bottom:270.470667pt;}
.y153{bottom:271.580000pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.ya5{bottom:277.281333pt;}
.y25{bottom:277.732000pt;}
.y24c{bottom:278.574667pt;}
.y19d{bottom:278.589333pt;}
.y2b1{bottom:278.604000pt;}
.y203{bottom:281.086667pt;}
.y25d{bottom:282.354667pt;}
.y1bc{bottom:282.368000pt;}
.y2c2{bottom:282.616000pt;}
.yef{bottom:286.774667pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.ycd{bottom:287.404000pt;}
.y26b{bottom:287.580000pt;}
.y22d{bottom:287.594667pt;}
.y28f{bottom:289.820000pt;}
.y174{bottom:289.824000pt;}
.y152{bottom:290.918667pt;}
.y202{bottom:297.026667pt;}
.y24b{bottom:297.913333pt;}
.y19c{bottom:297.928000pt;}
.y2b0{bottom:297.942667pt;}
.y25c{bottom:301.693333pt;}
.y1bb{bottom:301.708000pt;}
.y2c1{bottom:301.954667pt;}
.y28e{bottom:304.432000pt;}
.y173{bottom:304.436000pt;}
.yee{bottom:306.114667pt;}
.y26a{bottom:306.686667pt;}
.y22c{bottom:306.701333pt;}
.ye{bottom:309.452000pt;}
.y151{bottom:310.258667pt;}
.y201{bottom:312.966667pt;}
.ya4{bottom:313.018667pt;}
.y1df{bottom:315.498667pt;}
.y24a{bottom:317.253333pt;}
.y19b{bottom:317.268000pt;}
.y2af{bottom:317.282667pt;}
.y28d{bottom:319.044000pt;}
.y172{bottom:319.048000pt;}
.y24{bottom:320.238667pt;}
.y25b{bottom:321.033333pt;}
.y1ba{bottom:321.046667pt;}
.y2c0{bottom:321.294667pt;}
.ycc{bottom:323.373333pt;}
.yed{bottom:325.453333pt;}
.y269{bottom:327.121333pt;}
.y22b{bottom:327.136000pt;}
.y200{bottom:328.908000pt;}
.y150{bottom:329.597333pt;}
.y1de{bottom:331.440000pt;}
.y28c{bottom:333.654667pt;}
.y171{bottom:333.660000pt;}
.y249{bottom:336.592000pt;}
.y19a{bottom:336.606667pt;}
.y2ae{bottom:336.621333pt;}
.ycb{bottom:339.313333pt;}
.y25a{bottom:340.372000pt;}
.y1b9{bottom:340.386667pt;}
.y2bf{bottom:340.633333pt;}
.yd{bottom:343.809333pt;}
.y1ff{bottom:344.848000pt;}
.yec{bottom:347.370667pt;}
.ya3{bottom:347.556000pt;}
.y268{bottom:347.764000pt;}
.y22a{bottom:347.778667pt;}
.y28b{bottom:348.266667pt;}
.y170{bottom:348.272000pt;}
.y14f{bottom:348.704000pt;}
.y1dd{bottom:349.345333pt;}
.yca{bottom:357.220000pt;}
.y248{bottom:357.260000pt;}
.y199{bottom:357.274667pt;}
.y12d{bottom:357.280000pt;}
.y2ad{bottom:357.289333pt;}
.y1fe{bottom:360.788000pt;}
.y259{bottom:361.040000pt;}
.y1b8{bottom:361.054667pt;}
.y2be{bottom:361.301333pt;}
.yc{bottom:362.706666pt;}
.y28a{bottom:362.878667pt;}
.y16f{bottom:362.884000pt;}
.yeb{bottom:365.436000pt;}
.ya2{bottom:365.621333pt;}
.y1dc{bottom:368.685333pt;}
.y14e{bottom:369.138667pt;}
.y247{bottom:376.654667pt;}
.y198{bottom:376.668000pt;}
.y2ac{bottom:376.682667pt;}
.y1fd{bottom:376.728000pt;}
.y290{bottom:377.490667pt;}
.y175{bottom:377.496000pt;}
.y12c{bottom:377.922667pt;}
.yc9{bottom:379.137333pt;}
.y258{bottom:381.682667pt;}
.y1b7{bottom:381.697333pt;}
.y2bd{bottom:381.945333pt;}
.ya1{bottom:383.686667pt;}
.y1db{bottom:387.792000pt;}
.y14d{bottom:389.782667pt;}
.y1fc{bottom:392.668000pt;}
.y289{bottom:396.885333pt;}
.y16e{bottom:396.889333pt;}
.y257{bottom:399.748000pt;}
.y1b6{bottom:399.762667pt;}
.y2bc{bottom:400.010667pt;}
.y267{bottom:400.236000pt;}
.y229{bottom:400.249333pt;}
.ya0{bottom:404.330667pt;}
.y1da{bottom:407.130667pt;}
.y1fb{bottom:408.609333pt;}
.y246{bottom:412.624000pt;}
.y197{bottom:412.638667pt;}
.y2ab{bottom:412.653333pt;}
.yea{bottom:412.937333pt;}
.y288{bottom:414.950667pt;}
.y16d{bottom:414.954667pt;}
.y266{bottom:416.176000pt;}
.y228{bottom:416.190667pt;}
.yc8{bottom:416.305333pt;}
.y3f{bottom:417.517353pt;}
.y1fa{bottom:424.549333pt;}
.y1d9{bottom:426.237333pt;}
.y245{bottom:428.564000pt;}
.y196{bottom:428.578667pt;}
.y2aa{bottom:428.593333pt;}
.ye9{bottom:428.878667pt;}
.y12b{bottom:430.364000pt;}
.y287{bottom:433.016000pt;}
.y16c{bottom:433.021333pt;}
.y265{bottom:434.081333pt;}
.y227{bottom:434.096000pt;}
.y3e{bottom:435.582686pt;}
.y1f9{bottom:440.489333pt;}
.y14c{bottom:442.253333pt;}
.y83{bottom:445.376000pt;}
.y1d8{bottom:445.577333pt;}
.y244{bottom:446.470667pt;}
.y195{bottom:446.485333pt;}
.y2a9{bottom:446.500000pt;}
.ye8{bottom:446.784000pt;}
.y256{bottom:447.250667pt;}
.y1b5{bottom:447.265333pt;}
.y2bb{bottom:447.512000pt;}
.y12a{bottom:448.270667pt;}
.y286{bottom:451.081333pt;}
.y16b{bottom:451.086667pt;}
.yc7{bottom:452.276000pt;}
.y264{bottom:453.421333pt;}
.y226{bottom:453.436000pt;}
.y3d{bottom:453.649353pt;}
.y1f8{bottom:456.429333pt;}
.y9f{bottom:456.772000pt;}
.y14b{bottom:458.193333pt;}
.yb{bottom:462.990669pt;}
.y255{bottom:463.190667pt;}
.y1b4{bottom:463.205333pt;}
.y82{bottom:463.441333pt;}
.y2ba{bottom:463.452000pt;}
.ye7{bottom:466.124000pt;}
.y1d7{bottom:466.244000pt;}
.y243{bottom:467.153333pt;}
.y194{bottom:467.168000pt;}
.y2a8{bottom:467.182667pt;}
.y285{bottom:469.146667pt;}
.y16a{bottom:469.152000pt;}
.yc6{bottom:470.181333pt;}
.y1f7{bottom:472.369333pt;}
.y9e{bottom:472.712000pt;}
.y263{bottom:472.760000pt;}
.y225{bottom:472.774667pt;}
.y14a{bottom:476.100000pt;}
.ya{bottom:478.990666pt;}
.y254{bottom:479.130667pt;}
.y1b3{bottom:479.145333pt;}
.y2b9{bottom:479.393333pt;}
.y81{bottom:481.506667pt;}
.y129{bottom:484.008000pt;}
.y1d6{bottom:484.310667pt;}
.ye6{bottom:485.477333pt;}
.y1f6{bottom:488.309333pt;}
.y9d{bottom:490.618667pt;}
.y262{bottom:492.100000pt;}
.y224{bottom:492.114667pt;}
.y109{bottom:492.466667pt;}
.y9{bottom:494.990666pt;}
.y253{bottom:495.070667pt;}
.y1b2{bottom:495.085333pt;}
.y2b8{bottom:495.333333pt;}
.y149{bottom:495.438667pt;}
.y80{bottom:499.572000pt;}
.y128{bottom:499.948000pt;}
.y1d5{bottom:502.376000pt;}
.y242{bottom:503.122667pt;}
.y193{bottom:503.137333pt;}
.y2a7{bottom:503.152000pt;}
.y1f5{bottom:504.250667pt;}
.ye5{bottom:504.584000pt;}
.yc5{bottom:505.920000pt;}
.y9c{bottom:511.301333pt;}
.y261{bottom:512.768000pt;}
.y223{bottom:512.782667pt;}
.y252{bottom:512.977333pt;}
.y1b1{bottom:512.992000pt;}
.y108{bottom:513.110667pt;}
.y2b7{bottom:513.238667pt;}
.y148{bottom:514.778667pt;}
.y127{bottom:515.889333pt;}
.y7f{bottom:517.637333pt;}
.y241{bottom:519.064000pt;}
.y192{bottom:519.078667pt;}
.y2a6{bottom:519.092000pt;}
.y3c{bottom:519.845353pt;}
.y1f4{bottom:520.190667pt;}
.y1d4{bottom:520.441333pt;}
.y169{bottom:520.818667pt;}
.y284{bottom:520.824000pt;}
.yc4{bottom:521.860000pt;}
.ye4{bottom:523.690667pt;}
.y126{bottom:531.829333pt;}
.y251{bottom:532.317333pt;}
.y1b0{bottom:532.330667pt;}
.y2b6{bottom:532.578667pt;}
.y260{bottom:533.410667pt;}
.y222{bottom:533.425333pt;}
.y147{bottom:534.117333pt;}
.y7e{bottom:535.704000pt;}
.y168{bottom:536.758667pt;}
.y283{bottom:536.764000pt;}
.y240{bottom:536.969333pt;}
.y191{bottom:536.984000pt;}
.y2a5{bottom:536.998667pt;}
.yc3{bottom:537.800000pt;}
.y3b{bottom:537.910686pt;}
.y1f3{bottom:538.096000pt;}
.ye3{bottom:543.030667pt;}
.y9b{bottom:547.270667pt;}
.y125{bottom:547.769333pt;}
.y250{bottom:551.656000pt;}
.y1af{bottom:551.670667pt;}
.y2b5{bottom:551.917333pt;}
.y167{bottom:552.698667pt;}
.y282{bottom:552.704000pt;}
.yc2{bottom:553.740000pt;}
.y7d{bottom:553.769333pt;}
.y146{bottom:554.785333pt;}
.y3a{bottom:555.977353pt;}
.y1f2{bottom:557.436000pt;}
.y23f{bottom:557.637333pt;}
.y190{bottom:557.652000pt;}
.y2a4{bottom:557.666667pt;}
.ye2{bottom:562.369333pt;}
.y124{bottom:563.709333pt;}
.y107{bottom:565.581333pt;}
.y1d3{bottom:567.942667pt;}
.y166{bottom:568.638667pt;}
.y281{bottom:568.644000pt;}
.yc1{bottom:571.646667pt;}
.y7c{bottom:571.834667pt;}
.y24f{bottom:573.573333pt;}
.y1ae{bottom:573.588000pt;}
.y8{bottom:573.786667pt;}
.y2b4{bottom:573.834667pt;}
.y39{bottom:574.042686pt;}
.y145{bottom:575.428000pt;}
.y1f1{bottom:576.774667pt;}
.y123{bottom:579.649333pt;}
.y106{bottom:581.521333pt;}
.ye1{bottom:581.709333pt;}
.y9a{bottom:581.808000pt;}
.y1d2{bottom:583.884000pt;}
.y165{bottom:584.580000pt;}
.y280{bottom:584.584000pt;}
.y221{bottom:585.881333pt;}
.y7b{bottom:589.900000pt;}
.yc0{bottom:590.985333pt;}
.y38{bottom:592.108019pt;}
.y7{bottom:592.685334pt;}
.y23e{bottom:593.608000pt;}
.y18f{bottom:593.622667pt;}
.y2a3{bottom:593.637333pt;}
.y122{bottom:595.589333pt;}
.y1f0{bottom:596.114667pt;}
.y105{bottom:599.428000pt;}
.y99{bottom:599.873333pt;}
.y164{bottom:600.520000pt;}
.y27f{bottom:600.524000pt;}
.y1d1{bottom:601.789333pt;}
.y220{bottom:601.821333pt;}
.ye0{bottom:602.144000pt;}
.y2cd{bottom:602.906667pt;}
.y7a{bottom:607.965333pt;}
.ybf{bottom:610.092000pt;}
.y37{bottom:610.173353pt;}
.y1ad{bottom:610.741333pt;}
.y23d{bottom:611.513333pt;}
.y18e{bottom:611.528000pt;}
.y121{bottom:611.530667pt;}
.y2a2{bottom:611.542667pt;}
.y1ef{bottom:615.453333pt;}
.y163{bottom:616.460000pt;}
.y27e{bottom:616.465333pt;}
.y21f{bottom:617.762667pt;}
.y104{bottom:618.766667pt;}
.y1d0{bottom:621.129333pt;}
.ydf{bottom:622.786667pt;}
.y79{bottom:626.030667pt;}
.y120{bottom:627.470667pt;}
.y144{bottom:627.885333pt;}
.y36{bottom:628.238686pt;}
.ybe{bottom:629.432000pt;}
.y23c{bottom:632.181333pt;}
.y18d{bottom:632.196000pt;}
.y2a1{bottom:632.210667pt;}
.y162{bottom:632.400000pt;}
.y27d{bottom:632.405333pt;}
.y98{bottom:632.673333pt;}
.y21e{bottom:633.702667pt;}
.y1ee{bottom:634.793333pt;}
.y4d{bottom:636.796019pt;}
.y103{bottom:637.873333pt;}
.y2cc{bottom:638.876000pt;}
.y1cf{bottom:640.236000pt;}
.yde{bottom:640.852000pt;}
.y11f{bottom:643.410667pt;}
.y143{bottom:643.825333pt;}
.y78{bottom:644.097333pt;}
.y6{bottom:645.598667pt;}
.y35{bottom:646.305353pt;}
.y1ac{bottom:646.712000pt;}
.y161{bottom:648.340000pt;}
.y27c{bottom:648.345333pt;}
.y97{bottom:648.613333pt;}
.ybd{bottom:648.770667pt;}
.y21d{bottom:649.642667pt;}
.y1ed{bottom:654.132000pt;}
.y2cb{bottom:656.782667pt;}
.y102{bottom:657.226667pt;}
.y1ce{bottom:659.342667pt;}
.y11e{bottom:659.350667pt;}
.y142{bottom:659.765333pt;}
.y77{bottom:662.162667pt;}
.y1ab{bottom:662.652000pt;}
.y21c{bottom:665.582667pt;}
.y160{bottom:666.246667pt;}
.y27b{bottom:666.252000pt;}
.y96{bottom:666.520000pt;}
.y23b{bottom:666.878667pt;}
.y18c{bottom:666.892000pt;}
.y2a0{bottom:666.906667pt;}
.y3{bottom:668.977329pt;}
.ybc{bottom:669.438667pt;}
.y4c{bottom:672.926686pt;}
.y1ec{bottom:673.472000pt;}
.y11d{bottom:675.290667pt;}
.y141{bottom:675.705333pt;}
.y101{bottom:676.333333pt;}
.y2ca{bottom:677.465333pt;}
.y1cd{bottom:678.681333pt;}
.y54{bottom:680.228278pt;}
.y1aa{bottom:680.558667pt;}
.y21b{bottom:681.522667pt;}
.y23a{bottom:682.818667pt;}
.y18b{bottom:682.833333pt;}
.y29f{bottom:682.848000pt;}
.y15f{bottom:685.585333pt;}
.y27a{bottom:685.590667pt;}
.y95{bottom:687.202667pt;}
.ydd{bottom:688.354667pt;}
.ybb{bottom:690.081333pt;}
.y11c{bottom:691.230667pt;}
.y140{bottom:691.645333pt;}
.y1eb{bottom:692.810667pt;}
.y100{bottom:695.440000pt;}
.y21a{bottom:697.462667pt;}
.y1cc{bottom:698.021333pt;}
.y239{bottom:700.724000pt;}
.y18a{bottom:700.738667pt;}
.y29e{bottom:700.753333pt;}
.y1a9{bottom:702.474667pt;}
.ydc{bottom:704.294667pt;}
.y15e{bottom:704.925333pt;}
.y279{bottom:704.930667pt;}
.y11b{bottom:707.172000pt;}
.y13f{bottom:707.586667pt;}
.y1ea{bottom:712.150667pt;}
.y2c9{bottom:713.436000pt;}
.yff{bottom:714.780000pt;}
.y219{bottom:715.369333pt;}
.y1cb{bottom:719.937333pt;}
.ydb{bottom:722.201333pt;}
.y11a{bottom:723.112000pt;}
.y13e{bottom:723.526667pt;}
.y15d{bottom:724.264000pt;}
.y278{bottom:724.269333pt;}
.y34{bottom:724.352574pt;}
.y94{bottom:724.370667pt;}
.y4b{bottom:727.124019pt;}
.y2c8{bottom:731.341333pt;}
.y1e9{bottom:731.489333pt;}
.y218{bottom:733.434667pt;}
.yfe{bottom:734.118667pt;}
.y238{bottom:736.462667pt;}
.y189{bottom:736.476000pt;}
.y29d{bottom:736.490667pt;}
.y1ca{bottom:738.004000pt;}
.y119{bottom:739.052000pt;}
.y13d{bottom:739.466667pt;}
.y1a8{bottom:739.644000pt;}
.yda{bottom:741.540000pt;}
.y15c{bottom:742.330667pt;}
.y277{bottom:742.334667pt;}
.y93{bottom:742.436000pt;}
.yba{bottom:742.538667pt;}
.y217{bottom:751.500000pt;}
.y2c7{bottom:752.009333pt;}
.y1e8{bottom:752.157333pt;}
.y118{bottom:754.992000pt;}
.yfd{bottom:756.036000pt;}
.y13c{bottom:757.373333pt;}
.yb9{bottom:758.478667pt;}
.y33{bottom:760.484574pt;}
.y92{bottom:760.501333pt;}
.yd9{bottom:760.880000pt;}
.y15b{bottom:761.669333pt;}
.y276{bottom:761.674667pt;}
.y4a{bottom:766.973353pt;}
.y216{bottom:770.840000pt;}
.y117{bottom:770.932000pt;}
.y237{bottom:770.998667pt;}
.y188{bottom:771.013333pt;}
.y29c{bottom:771.028000pt;}
.y23{bottom:771.457333pt;}
.y1e7{bottom:772.800000pt;}
.y13b{bottom:775.438667pt;}
.y1a7{bottom:775.613333pt;}
.yb8{bottom:776.385333pt;}
.y32{bottom:778.551241pt;}
.y91{bottom:778.566667pt;}
.yd8{bottom:780.218667pt;}
.y15a{bottom:781.009333pt;}
.y275{bottom:781.013333pt;}
.y2{bottom:781.661334pt;}
.y1c9{bottom:785.505333pt;}
.y116{bottom:786.872000pt;}
.y2c6{bottom:787.980000pt;}
.y215{bottom:788.905333pt;}
.y236{bottom:789.065333pt;}
.y187{bottom:789.078667pt;}
.y29b{bottom:789.093333pt;}
.y13a{bottom:793.504000pt;}
.y1a6{bottom:793.520000pt;}
.yb7{bottom:795.724000pt;}
.y31{bottom:796.616574pt;}
.y90{bottom:796.633333pt;}
.yd7{bottom:800.886667pt;}
.y1c8{bottom:801.445333pt;}
.y159{bottom:801.676000pt;}
.y274{bottom:801.681333pt;}
.y115{bottom:802.813333pt;}
.y2c5{bottom:805.885333pt;}
.y214{bottom:806.970667pt;}
.y235{bottom:807.130667pt;}
.y186{bottom:807.145333pt;}
.y29a{bottom:807.160000pt;}
.yfc{bottom:808.477333pt;}
.y139{bottom:812.842667pt;}
.y30{bottom:814.681907pt;}
.y8f{bottom:814.698667pt;}
.yb6{bottom:815.064000pt;}
.y1c7{bottom:819.352000pt;}
.y114{bottom:820.718667pt;}
.yd6{bottom:821.529333pt;}
.y158{bottom:822.320000pt;}
.y273{bottom:822.324000pt;}
.y1e6{bottom:822.965333pt;}
.yfb{bottom:824.418667pt;}
.y213{bottom:825.037333pt;}
.y234{bottom:827.773333pt;}
.y185{bottom:827.788000pt;}
.y299{bottom:827.802667pt;}
.y1a5{bottom:829.257333pt;}
.y138{bottom:830.909333pt;}
.y2f{bottom:832.747241pt;}
.y8e{bottom:832.764000pt;}
.yb5{bottom:834.402667pt;}
.y1c6{bottom:838.690667pt;}
.y1e5{bottom:838.905333pt;}
.yd5{bottom:839.596000pt;}
.y113{bottom:840.058667pt;}
.y157{bottom:840.385333pt;}
.y272{bottom:840.390667pt;}
.yfa{bottom:842.324000pt;}
.y212{bottom:843.102667pt;}
.y1a4{bottom:845.197333pt;}
.y137{bottom:848.974667pt;}
.y2e{bottom:850.812574pt;}
.y8d{bottom:850.829333pt;}
.yb4{bottom:855.070667pt;}
.y1e4{bottom:856.810667pt;}
.y1c5{bottom:858.045333pt;}
.y1{bottom:859.312000pt;}
.y112{bottom:859.397333pt;}
.y1a3{bottom:861.137333pt;}
.yf9{bottom:861.664000pt;}
.y211{bottom:862.441333pt;}
.y136{bottom:867.040000pt;}
.y2d{bottom:868.879241pt;}
.y8c{bottom:868.894667pt;}
.yb3{bottom:874.464000pt;}
.y1e3{bottom:876.150667pt;}
.y1a2{bottom:877.078667pt;}
.y1c4{bottom:877.152000pt;}
.y111{bottom:878.737333pt;}
.y184{bottom:880.244000pt;}
.y210{bottom:880.506667pt;}
.yf8{bottom:880.770667pt;}
.y135{bottom:885.105333pt;}
.y8b{bottom:886.961333pt;}
.yd4{bottom:887.097333pt;}
.y21{bottom:888.390667pt;}
.y1a1{bottom:894.984000pt;}
.y1e2{bottom:895.257333pt;}
.y22{bottom:895.950667pt;}
.y183{bottom:896.185333pt;}
.y1c3{bottom:896.258667pt;}
.y110{bottom:898.076000pt;}
.y20f{bottom:898.573333pt;}
.yf7{bottom:900.109333pt;}
.yd3{bottom:903.037333pt;}
.y134{bottom:904.445333pt;}
.y8a{bottom:905.026667pt;}
.y2c{bottom:905.026707pt;}
.yb2{bottom:910.434667pt;}
.y182{bottom:914.090667pt;}
.y1a0{bottom:914.324000pt;}
.y1e1{bottom:914.610667pt;}
.y1c2{bottom:915.597333pt;}
.y20e{bottom:916.638667pt;}
.y10f{bottom:917.416000pt;}
.yd2{bottom:918.977333pt;}
.yf6{bottom:919.216000pt;}
.y133{bottom:922.510667pt;}
.y89{bottom:923.092000pt;}
.y2b{bottom:923.092041pt;}
.yb1{bottom:926.374667pt;}
.y181{bottom:933.430667pt;}
.y1e0{bottom:933.717333pt;}
.yd1{bottom:934.918667pt;}
.y1c1{bottom:934.937333pt;}
.y20d{bottom:935.977333pt;}
.y10e{bottom:936.754667pt;}
.yf5{bottom:938.556000pt;}
.y132{bottom:940.576000pt;}
.y88{bottom:941.157333pt;}
.yb0{bottom:944.281333pt;}
.y180{bottom:952.769333pt;}
.yd0{bottom:952.824000pt;}
.y20c{bottom:954.044000pt;}
.y1c0{bottom:954.276000pt;}
.y10d{bottom:956.094667pt;}
.y131{bottom:958.641333pt;}
.y87{bottom:959.222667pt;}
.y53{bottom:960.962667pt;}
.yaf{bottom:964.962667pt;}
.y17f{bottom:972.109333pt;}
.ycf{bottom:972.164000pt;}
.y20b{bottom:973.382667pt;}
.y1bf{bottom:974.710667pt;}
.y10c{bottom:975.433333pt;}
.y2a{bottom:977.272537pt;}
.y86{bottom:977.289333pt;}
.y130{bottom:977.981333pt;}
.y52{bottom:979.028000pt;}
.yce{bottom:991.502667pt;}
.y17e{bottom:992.776000pt;}
.y10b{bottom:994.773333pt;}
.y85{bottom:995.354667pt;}
.y29{bottom:995.354670pt;}
.y49{bottom:995.801351pt;}
.y12f{bottom:996.046667pt;}
.yae{bottom:1000.933333pt;}
.y51{bottom:1013.420000pt;}
.y28{bottom:1013.420003pt;}
.y10a{bottom:1014.112000pt;}
.y12e{bottom:1015.385333pt;}
.yad{bottom:1016.873333pt;}
.y50{bottom:1060.573333pt;}
.h7{height:28.560000pt;}
.h17{height:29.455767pt;}
.h13{height:33.112975pt;}
.h15{height:34.230064pt;}
.h14{height:34.252793pt;}
.h1a{height:35.339571pt;}
.h16{height:36.391676pt;}
.h19{height:38.734589pt;}
.h6{height:40.800000pt;}
.he{height:42.414581pt;}
.hd{height:42.608203pt;}
.h3{height:42.840000pt;}
.h10{height:42.996399pt;}
.h18{height:47.243676pt;}
.h2{height:48.960000pt;}
.h11{height:56.390130pt;}
.hb{height:58.739883pt;}
.h5{height:69.360000pt;}
.ha{height:82.235443pt;}
.hf{height:97.429828pt;}
.h4{height:105.826671pt;}
.hc{height:125.311226pt;}
.h12{height:276.294821pt;}
.h9{height:530.682059pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:555.606892pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:4.537224pt;}
.x7{left:75.590667pt;}
.x8{left:77.480000pt;}
.xc{left:87.498626pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x9{left:119.056000pt;}
.xf{left:123.573333pt;}
.x15{left:137.953333pt;}
.xd{left:141.402130pt;}
.x4{left:180.874667pt;}
.x14{left:277.402667pt;}
.x16{left:279.097333pt;}
.x1e{left:285.734667pt;}
.x1b{left:288.614667pt;}
.x1c{left:291.878667pt;}
.x1d{left:293.922667pt;}
.x1a{left:298.950667pt;}
.x18{left:317.060000pt;}
.x11{left:324.937333pt;}
.x13{left:338.208000pt;}
.xe{left:342.000124pt;}
.xa{left:370.978679pt;}
.x5{left:401.376000pt;}
.x3{left:404.408000pt;}
.x12{left:544.860000pt;}
.x10{left:602.216000pt;}
.x23{left:609.826667pt;}
.x20{left:612.706667pt;}
.x21{left:615.970667pt;}
.x22{left:618.014667pt;}
.x1f{left:620.614667pt;}
.x19{left:622.724000pt;}
.x17{left:626.233333pt;}
.x26{left:642.234667pt;}
.x24{left:644.858667pt;}
.x27{left:650.788000pt;}
.x25{left:655.994667pt;}
.x6{left:740.397333pt;}
}




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