
    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_0077893f6b0c8238f3e7b33b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_14efc13b31ad9c071a66486c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_394303bd71273a5137dbf0c4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.713000;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_06b6bbf2b3b9d7955032cfd7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_c8e33b0c96a48c240fc2e974.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.895000;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_dc4b9a46b9ecc64111370a63.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_2cbf28044ba50effc84d6e5d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_751b8d2577959e21f4ce425b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_d8b8737bad8d2f2ddf600496.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.427000;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_74a152e7c891e014cc0a0fe2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.580000;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_52f32727daba25b5d5fa7870.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_92c25fa273b2775d03b06344.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_6c3ff50c67a5ef8f3f3f3f5c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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_6ac83cdb20c9b7820c089873.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;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_b602474aea47a3f2286f2e59.woff2')format("woff");}.fff{font-family:fff;line-height:0.234000;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_b7ada700396aac2933d52e34.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;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_899834aef4cde0586ff4def0.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;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:ff12;src:url('chunks/assets/font_c08a686051e59281fab2c979.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.432129;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);}
.v2{vertical-align:-21.696000px;}
.v4{vertical-align:-16.878000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.690000px;}
.v1{vertical-align:23.754000px;}
.v5{vertical-align:26.244096px;}
.ls7{letter-spacing:0.000000px;}
.ls5{letter-spacing:2.449834px;}
.ls16{letter-spacing:2.651660px;}
.ls3{letter-spacing:2.964877px;}
.ls0{letter-spacing:2.984915px;}
.lsd{letter-spacing:2.987675px;}
.ls4{letter-spacing:2.988600px;}
.ls8{letter-spacing:2.988780px;}
.ls6{letter-spacing:2.989200px;}
.ls1{letter-spacing:2.990915px;}
.ls2{letter-spacing:2.991113px;}
.ls9{letter-spacing:2.992766px;}
.ls10{letter-spacing:14.814538px;}
.lse{letter-spacing:17.148538px;}
.ls11{letter-spacing:20.922538px;}
.lsa{letter-spacing:21.972600px;}
.ls12{letter-spacing:22.296538px;}
.ls14{letter-spacing:22.614538px;}
.ls13{letter-spacing:24.786538px;}
.lsc{letter-spacing:28.260538px;}
.ls15{letter-spacing:28.746538px;}
.lsb{letter-spacing:29.766600px;}
.lsf{letter-spacing:30.108538px;}
.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;}
}
.ws2{word-spacing:-50.809387px;}
.ws94{word-spacing:-14.943900px;}
.ws1a{word-spacing:-14.920027px;}
.ws50{word-spacing:-11.955150px;}
.wscc{word-spacing:-10.469035px;}
.ws24{word-spacing:-1.075961px;}
.ws131{word-spacing:-0.956412px;}
.wse0{word-spacing:-0.956410px;}
.wsd5{word-spacing:-0.836858px;}
.ws109{word-spacing:-0.777083px;}
.ws107{word-spacing:-0.717307px;}
.ws9{word-spacing:-0.699379px;}
.ws7c{word-spacing:-0.657532px;}
.ws63{word-spacing:-0.597756px;}
.ws71{word-spacing:-0.537980px;}
.ws80{word-spacing:-0.478205px;}
.ws48{word-spacing:-0.239102px;}
.ws167{word-spacing:-0.143462px;}
.wse2{word-spacing:-0.119551px;}
.ws4{word-spacing:-0.053798px;}
.ws13d{word-spacing:-0.047821px;}
.ws52{word-spacing:0.000000px;}
.wsd1{word-spacing:0.119551px;}
.ws7d{word-spacing:0.179327px;}
.ws20{word-spacing:0.358654px;}
.wsd{word-spacing:0.430387px;}
.ws8c{word-spacing:0.478205px;}
.ws42{word-spacing:0.537980px;}
.ws34{word-spacing:0.597756px;}
.wseb{word-spacing:0.657532px;}
.wse9{word-spacing:0.717307px;}
.wsc7{word-spacing:0.777083px;}
.wsc6{word-spacing:0.836858px;}
.ws155{word-spacing:0.908591px;}
.wsdc{word-spacing:0.956410px;}
.ws72{word-spacing:1.075961px;}
.ws6c{word-spacing:1.135736px;}
.ws126{word-spacing:1.147694px;}
.ws8a{word-spacing:1.255288px;}
.ws104{word-spacing:1.315063px;}
.wsc8{word-spacing:1.434614px;}
.ws146{word-spacing:1.530259px;}
.wsdb{word-spacing:1.554166px;}
.wsc5{word-spacing:1.673717px;}
.ws8d{word-spacing:1.912819px;}
.ws140{word-spacing:1.912824px;}
.ws2a{word-spacing:1.972595px;}
.ws129{word-spacing:2.104106px;}
.ws156{word-spacing:2.151927px;}
.wsd6{word-spacing:2.211697px;}
.ws67{word-spacing:2.271473px;}
.ws2e{word-spacing:2.331248px;}
.ws157{word-spacing:2.343209px;}
.wsd3{word-spacing:2.391024px;}
.wsca{word-spacing:2.450800px;}
.ws41{word-spacing:2.570351px;}
.wsba{word-spacing:2.689902px;}
.ws14c{word-spacing:2.725774px;}
.wsa9{word-spacing:2.749678px;}
.wsf3{word-spacing:2.869229px;}
.wsc3{word-spacing:2.929004px;}
.ws15{word-spacing:2.958912px;}
.ws78{word-spacing:2.988780px;}
.ws25{word-spacing:3.108331px;}
.ws43{word-spacing:3.168107px;}
.ws99{word-spacing:3.287658px;}
.ws76{word-spacing:3.347434px;}
.ws137{word-spacing:3.443083px;}
.ws95{word-spacing:3.466985px;}
.ws8e{word-spacing:3.526760px;}
.ws2d{word-spacing:3.586536px;}
.ws161{word-spacing:3.682186px;}
.ws10a{word-spacing:3.765863px;}
.ws77{word-spacing:3.825638px;}
.ws12c{word-spacing:3.873469px;}
.ws6a{word-spacing:3.885414px;}
.ws12b{word-spacing:3.921289px;}
.wsa1{word-spacing:3.945190px;}
.ws81{word-spacing:4.004965px;}
.ws98{word-spacing:4.064741px;}
.ws14d{word-spacing:4.112572px;}
.ws83{word-spacing:4.124516px;}
.ws148{word-spacing:4.160392px;}
.ws117{word-spacing:4.184292px;}
.ws47{word-spacing:4.244068px;}
.ws4b{word-spacing:4.303843px;}
.ws15f{word-spacing:4.351675px;}
.wsb2{word-spacing:4.363619px;}
.ws160{word-spacing:4.399495px;}
.ws3d{word-spacing:4.423394px;}
.ws162{word-spacing:4.447316px;}
.ws10f{word-spacing:4.483170px;}
.ws168{word-spacing:4.495136px;}
.ws138{word-spacing:4.522423px;}
.ws12a{word-spacing:4.542957px;}
.ws13f{word-spacing:4.590778px;}
.ws5a{word-spacing:4.602721px;}
.wsab{word-spacing:4.662497px;}
.ws14b{word-spacing:4.686419px;}
.ws4f{word-spacing:4.722272px;}
.ws32{word-spacing:4.782060px;}
.ws163{word-spacing:4.829881px;}
.wsbd{word-spacing:4.841824px;}
.ws120{word-spacing:4.925522px;}
.wsf6{word-spacing:4.961375px;}
.ws121{word-spacing:4.973342px;}
.ws26{word-spacing:5.021150px;}
.ws123{word-spacing:5.021163px;}
.ws127{word-spacing:5.068984px;}
.ws5e{word-spacing:5.080926px;}
.ws15b{word-spacing:5.164625px;}
.ws6d{word-spacing:5.200477px;}
.wsce{word-spacing:5.439580px;}
.ws152{word-spacing:5.451548px;}
.ws49{word-spacing:5.618906px;}
.ws31{word-spacing:5.669590px;}
.ws10c{word-spacing:5.678682px;}
.ws30{word-spacing:5.690651px;}
.ws57{word-spacing:5.738458px;}
.ws122{word-spacing:5.738472px;}
.wsef{word-spacing:5.798233px;}
.ws145{word-spacing:5.834113px;}
.ws14a{word-spacing:5.881934px;}
.ws7f{word-spacing:5.910702px;}
.ws54{word-spacing:5.917784px;}
.ws4d{word-spacing:5.961520px;}
.ws3{word-spacing:5.977560px;}
.ws147{word-spacing:6.025396px;}
.ws9a{word-spacing:6.037336px;}
.ws128{word-spacing:6.073216px;}
.wsb6{word-spacing:6.097111px;}
.wsec{word-spacing:6.156887px;}
.ws7a{word-spacing:6.276438px;}
.ws164{word-spacing:6.312319px;}
.wsdf{word-spacing:6.336214px;}
.wsc{word-spacing:6.348211px;}
.ws11c{word-spacing:6.360140px;}
.wsfd{word-spacing:6.395989px;}
.ws133{word-spacing:6.407960px;}
.wsc1{word-spacing:6.455765px;}
.ws151{word-spacing:6.455781px;}
.ws13e{word-spacing:6.503602px;}
.wsf{word-spacing:6.509606px;}
.wsd7{word-spacing:6.515540px;}
.ws6b{word-spacing:6.575316px;}
.ws1{word-spacing:6.575340px;}
.ws1d{word-spacing:6.635092px;}
.ws13c{word-spacing:6.647063px;}
.ws73{word-spacing:6.694867px;}
.ws16{word-spacing:6.724800px;}
.ws53{word-spacing:6.754643px;}
.ws149{word-spacing:6.790525px;}
.ws136{word-spacing:6.886166px;}
.ws119{word-spacing:6.993745px;}
.ws89{word-spacing:7.113296px;}
.ws154{word-spacing:7.125269px;}
.ws82{word-spacing:7.173072px;}
.ws55{word-spacing:7.232848px;}
.ws11b{word-spacing:7.268731px;}
.ws3e{word-spacing:7.352399px;}
.ws125{word-spacing:7.364372px;}
.ws10e{word-spacing:7.412174px;}
.ws8{word-spacing:7.424179px;}
.ws33{word-spacing:7.471950px;}
.wsbe{word-spacing:7.531726px;}
.ws134{word-spacing:7.555655px;}
.ws79{word-spacing:7.591501px;}
.wsa0{word-spacing:7.651277px;}
.ws70{word-spacing:7.711052px;}
.ws65{word-spacing:7.770828px;}
.ws159{word-spacing:7.794758px;}
.wsf7{word-spacing:7.830604px;}
.wsf0{word-spacing:7.890379px;}
.ws3b{word-spacing:7.950155px;}
.ws166{word-spacing:7.986040px;}
.ws45{word-spacing:8.009930px;}
.ws11e{word-spacing:8.033861px;}
.ws36{word-spacing:8.069706px;}
.ws91{word-spacing:8.129482px;}
.ws13b{word-spacing:8.177323px;}
.ws158{word-spacing:8.225143px;}
.ws85{word-spacing:8.308808px;}
.wsad{word-spacing:8.488135px;}
.ws15a{word-spacing:8.512067px;}
.wsa4{word-spacing:8.547911px;}
.ws12{word-spacing:8.553946px;}
.ws22{word-spacing:8.607686px;}
.ws5{word-spacing:8.661542px;}
.ws58{word-spacing:8.667462px;}
.ws10d{word-spacing:8.846789px;}
.ws153{word-spacing:8.846811px;}
.wsfc{word-spacing:8.906564px;}
.wsea{word-spacing:8.966340px;}
.ws165{word-spacing:9.038093px;}
.ws56{word-spacing:9.085891px;}
.ws18{word-spacing:9.091930px;}
.ws111{word-spacing:9.145667px;}
.ws15c{word-spacing:9.181555px;}
.ws35{word-spacing:9.205442px;}
.ws8f{word-spacing:9.265218px;}
.ws66{word-spacing:9.324994px;}
.ws11d{word-spacing:9.325017px;}
.ws9d{word-spacing:9.384769px;}
.wsa{word-spacing:9.414720px;}
.ws12f{word-spacing:9.420658px;}
.wsd2{word-spacing:9.444545px;}
.wsb9{word-spacing:9.504320px;}
.ws5f{word-spacing:9.623872px;}
.ws132{word-spacing:9.707582px;}
.wsb3{word-spacing:9.743423px;}
.ws2b{word-spacing:9.803198px;}
.ws96{word-spacing:9.862974px;}
.wsf8{word-spacing:9.922750px;}
.ws130{word-spacing:9.946685px;}
.ws64{word-spacing:10.042301px;}
.ws169{word-spacing:10.042326px;}
.ws12e{word-spacing:10.042955px;}
.ws115{word-spacing:10.102076px;}
.ws5c{word-spacing:10.221628px;}
.ws59{word-spacing:10.281403px;}
.wsa3{word-spacing:10.400954px;}
.ws11f{word-spacing:10.472711px;}
.ws44{word-spacing:10.580281px;}
.ws15d{word-spacing:10.663994px;}
.ws92{word-spacing:10.699832px;}
.ws102{word-spacing:10.759608px;}
.ws3c{word-spacing:10.879159px;}
.ws23{word-spacing:10.938935px;}
.ws139{word-spacing:10.950917px;}
.wsbf{word-spacing:10.998710px;}
.wse7{word-spacing:11.118262px;}
.wsee{word-spacing:11.178037px;}
.ws142{word-spacing:11.285662px;}
.wsff{word-spacing:11.297588px;}
.ws141{word-spacing:11.333482px;}
.wsbb{word-spacing:11.357364px;}
.ws8b{word-spacing:11.476915px;}
.ws7{word-spacing:11.512858px;}
.wsaa{word-spacing:11.536691px;}
.wsb{word-spacing:11.620454px;}
.wsed{word-spacing:11.656242px;}
.ws93{word-spacing:11.716018px;}
.wsf1{word-spacing:11.775793px;}
.ws14f{word-spacing:11.811688px;}
.wsc0{word-spacing:11.835569px;}
.ws150{word-spacing:11.859509px;}
.ws7e{word-spacing:11.955120px;}
.ws51{word-spacing:11.968831px;}
.wsb4{word-spacing:12.074671px;}
.ws84{word-spacing:12.134447px;}
.ws60{word-spacing:12.194222px;}
.ws16a{word-spacing:12.242074px;}
.ws39{word-spacing:12.253998px;}
.wscf{word-spacing:12.313774px;}
.ws9c{word-spacing:12.373549px;}
.ws61{word-spacing:12.433325px;}
.ws4e{word-spacing:12.493100px;}
.ws28{word-spacing:12.612652px;}
.ws135{word-spacing:12.672459px;}
.ws88{word-spacing:12.732203px;}
.ws97{word-spacing:12.791978px;}
.ws9f{word-spacing:12.851754px;}
.ws103{word-spacing:13.031081px;}
.wsd9{word-spacing:13.090856px;}
.ws5b{word-spacing:13.150632px;}
.ws14e{word-spacing:13.246306px;}
.wsd0{word-spacing:13.329959px;}
.ws62{word-spacing:13.449510px;}
.ws10{word-spacing:13.449600px;}
.ws101{word-spacing:13.569061px;}
.wsb0{word-spacing:13.748388px;}
.ws144{word-spacing:13.772333px;}
.wsfe{word-spacing:13.808164px;}
.ws3f{word-spacing:13.867939px;}
.ws2c{word-spacing:13.987490px;}
.ws29{word-spacing:14.047266px;}
.ws9b{word-spacing:14.107042px;}
.ws69{word-spacing:14.166817px;}
.ws0{word-spacing:14.346180px;}
.wsd8{word-spacing:14.405920px;}
.ws14{word-spacing:14.633165px;}
.ws38{word-spacing:14.704798px;}
.wse{word-spacing:14.740762px;}
.wsf4{word-spacing:14.943900px;}
.ws6e{word-spacing:15.063451px;}
.ws12d{word-spacing:15.111310px;}
.wsde{word-spacing:15.123227px;}
.wsdd{word-spacing:15.183002px;}
.wse4{word-spacing:15.242778px;}
.wsfa{word-spacing:15.302554px;}
.wsc4{word-spacing:15.422105px;}
.ws74{word-spacing:15.481880px;}
.ws100{word-spacing:15.601432px;}
.ws116{word-spacing:15.720983px;}
.ws113{word-spacing:15.780758px;}
.wsa2{word-spacing:15.840534px;}
.ws46{word-spacing:15.960085px;}
.ws2f{word-spacing:16.067722px;}
.ws37{word-spacing:16.079636px;}
.ws105{word-spacing:16.199188px;}
.ws6{word-spacing:16.354714px;}
.wsaf{word-spacing:16.378514px;}
.ws1e{word-spacing:16.438290px;}
.ws4c{word-spacing:16.557841px;}
.ws27{word-spacing:16.677392px;}
.wsf2{word-spacing:16.796944px;}
.wsac{word-spacing:16.856719px;}
.wsa7{word-spacing:16.916495px;}
.wsc2{word-spacing:17.155597px;}
.wse5{word-spacing:17.334924px;}
.ws21{word-spacing:17.574026px;}
.wsc9{word-spacing:17.633802px;}
.ws112{word-spacing:17.693578px;}
.ws15e{word-spacing:17.693622px;}
.ws9e{word-spacing:17.753353px;}
.ws19{word-spacing:17.932680px;}
.wse1{word-spacing:17.992456px;}
.ws1c{word-spacing:18.052231px;}
.ws10b{word-spacing:18.112007px;}
.ws86{word-spacing:18.171782px;}
.ws106{word-spacing:18.351109px;}
.ws7b{word-spacing:18.410885px;}
.ws11a{word-spacing:18.410931px;}
.ws75{word-spacing:18.530436px;}
.wsa6{word-spacing:18.769538px;}
.ws114{word-spacing:18.829314px;}
.ws68{word-spacing:18.889090px;}
.wsf9{word-spacing:19.008641px;}
.wsfb{word-spacing:19.247743px;}
.wsda{word-spacing:19.427070px;}
.ws3a{word-spacing:19.546621px;}
.wsb8{word-spacing:19.666172px;}
.wsb7{word-spacing:19.785724px;}
.ws87{word-spacing:20.024826px;}
.wsf5{word-spacing:20.084602px;}
.wse8{word-spacing:20.204153px;}
.ws11{word-spacing:20.281997px;}
.wsa8{word-spacing:20.443255px;}
.wse6{word-spacing:20.682358px;}
.wsb5{word-spacing:20.801909px;}
.ws1b{word-spacing:20.861684px;}
.ws1f{word-spacing:20.921460px;}
.ws13a{word-spacing:20.925382px;}
.ws4a{word-spacing:20.981236px;}
.wsd4{word-spacing:21.041011px;}
.wsa5{word-spacing:21.220338px;}
.ws40{word-spacing:21.280114px;}
.wsae{word-spacing:21.399665px;}
.ws118{word-spacing:21.578992px;}
.ws6f{word-spacing:22.475626px;}
.ws17{word-spacing:22.487731px;}
.wsb1{word-spacing:22.654952px;}
.ws5d{word-spacing:23.073382px;}
.ws90{word-spacing:23.252708px;}
.wse3{word-spacing:23.312484px;}
.ws13{word-spacing:23.509901px;}
.ws124{word-spacing:23.575556px;}
.ws143{word-spacing:25.344918px;}
.wsbc{word-spacing:33.534112px;}
.ws110{word-spacing:36.463116px;}
.ws108{word-spacing:39.392120px;}
.wscb{word-spacing:87.442805px;}
.wscd{word-spacing:128.405391px;}
._2{margin-left:-18.506572px;}
._3{margin-left:-8.607708px;}
._a{margin-left:-6.635092px;}
._4{margin-left:-5.021163px;}
._0{margin-left:-3.586545px;}
._1{margin-left:-2.151927px;}
._6{margin-left:-1.022170px;}
._9{width:2.213168px;}
._5{width:3.761802px;}
._7{width:12.857818px;}
._14{width:14.405920px;}
._11{width:16.139434px;}
._e{width:18.231558px;}
._1e{width:19.461184px;}
._d{width:20.622587px;}
._1c{width:22.237061px;}
._f{width:24.089572px;}
._10{width:26.121937px;}
._c{width:27.377225px;}
._b{width:29.887800px;}
._16{width:31.202869px;}
._15{width:33.354785px;}
._21{width:34.956859px;}
._1a{width:36.487118px;}
._8{width:37.981661px;}
._1b{width:40.647510px;}
._1f{width:43.803670px;}
._22{width:45.635500px;}
._17{width:48.925393px;}
._20{width:50.020348px;}
._13{width:51.139081px;}
._1d{width:55.137152px;}
._19{width:65.741353px;}
._18{width:67.270452px;}
._12{width:164.444568px;}
.fc1{color:rgb(26,26,26);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:16.402560px;}
.fs12{font-size:16.451040px;}
.fsb{font-size:18.452880px;}
.fs10{font-size:18.507420px;}
.fsc{font-size:20.503200px;}
.fs16{font-size:22.619520px;}
.fse{font-size:24.603840px;}
.fs11{font-size:24.676560px;}
.fs14{font-size:25.446960px;}
.fsf{font-size:28.704480px;}
.fs13{font-size:28.789320px;}
.fs7{font-size:30.126720px;}
.fs15{font-size:33.929280px;}
.fs6{font-size:35.865600px;}
.fsa{font-size:37.658400px;}
.fs17{font-size:39.584160px;}
.fs5{font-size:41.842800px;}
.fs8{font-size:45.190080px;}
.fs2{font-size:47.820600px;}
.fs9{font-size:52.721760px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y12b{bottom:4.034005px;}
.y139{bottom:4.485075px;}
.y185{bottom:4.498331px;}
.y113{bottom:4.952080px;}
.y12c{bottom:5.433348px;}
.y1f1{bottom:6.185025px;}
.y11c{bottom:8.237775px;}
.y18f{bottom:9.407939px;}
.y189{bottom:9.567308px;}
.y18c{bottom:9.608436px;}
.y17b{bottom:9.726677px;}
.y12a{bottom:10.020939px;}
.y131{bottom:11.410031px;}
.y13a{bottom:11.589434px;}
.y123{bottom:11.681698px;}
.y138{bottom:11.943114px;}
.y184{bottom:11.978413px;}
.y1fd{bottom:13.281899px;}
.y1f5{bottom:13.387928px;}
.y1e8{bottom:14.688551px;}
.y1f0{bottom:16.469838px;}
.y126{bottom:17.458475px;}
.y134{bottom:18.924454px;}
.y17f{bottom:18.980387px;}
.y115{bottom:22.764503px;}
.y1ec{bottom:26.097271px;}
.y186{bottom:31.493460px;}
.y180{bottom:36.536732px;}
.y1fc{bottom:36.749651px;}
.y116{bottom:38.157374px;}
.y1f2{bottom:40.552558px;}
.y200{bottom:43.302244px;}
.y127{bottom:43.707697px;}
.y135{bottom:43.717948px;}
.y1f8{bottom:50.236540px;}
.y1ed{bottom:53.452753px;}
.y181{bottom:54.087935px;}
.y117{bottom:64.913667px;}
.y18d{bottom:68.410622px;}
.y136{bottom:68.511443px;}
.y17c{bottom:68.528864px;}
.y18a{bottom:69.248597px;}
.y132{bottom:69.674999px;}
.y128{bottom:69.962044px;}
.y190{bottom:69.963189px;}
.y124{bottom:70.746292px;}
.y182{bottom:71.639138px;}
.y1f9{bottom:74.368741px;}
.y18e{bottom:76.312262px;}
.y17d{bottom:76.425363px;}
.y133{bottom:77.112535px;}
.y18b{bottom:77.145096px;}
.y191{bottom:77.859688px;}
.y1ee{bottom:80.801167px;}
.y183{bottom:89.195482px;}
.y120{bottom:91.509912px;}
.y118{bottom:91.669960px;}
.y1e9{bottom:92.641072px;}
.y137{bottom:93.304937px;}
.y11d{bottom:94.098927px;}
.y1fe{bottom:94.132546px;}
.y1f6{bottom:95.447306px;}
.y129{bottom:96.211266px;}
.y1fa{bottom:98.500941px;}
.y12d{bottom:103.392512px;}
.y187{bottom:103.698102px;}
.y1ea{bottom:104.954573px;}
.y1ff{bottom:104.996984px;}
.y1f7{bottom:106.304675px;}
.y11f{bottom:107.778341px;}
.y1ef{bottom:108.156649px;}
.y34{bottom:113.332500px;}
.y238{bottom:113.334000px;}
.y5c{bottom:117.552000px;}
.y119{bottom:118.435668px;}
.y1fb{bottom:122.640210px;}
.y11e{bottom:124.338622px;}
.y33{bottom:126.783000px;}
.y90{bottom:131.265000px;}
.y5b{bottom:132.346500px;}
.y32{bottom:140.232000px;}
.y1f3{bottom:142.580731px;}
.ybe{bottom:142.960500px;}
.y11a{bottom:145.191961px;}
.y179{bottom:149.197500px;}
.y8f{bottom:149.199000px;}
.y270{bottom:151.972500px;}
.y237{bottom:153.682500px;}
.y111{bottom:156.201000px;}
.y5a{bottom:159.798000px;}
.ybd{bottom:160.893000px;}
.y26f{bottom:165.423000px;}
.y1bd{bottom:167.035500px;}
.y1e6{bottom:167.041500px;}
.y178{bottom:167.130000px;}
.y8e{bottom:167.131500px;}
.y236{bottom:167.416500px;}
.y31{bottom:169.041000px;}
.y11b{bottom:171.957669px;}
.y110{bottom:174.133500px;}
.y59{bottom:177.730500px;}
.ybc{bottom:178.825500px;}
.y26e{bottom:178.872000px;}
.y235{bottom:180.865500px;}
.y1bc{bottom:184.968000px;}
.y1e5{bottom:184.974000px;}
.y8d{bottom:185.064000px;}
.ye3{bottom:185.524500px;}
.y30{bottom:186.975000px;}
.y10f{bottom:192.066000px;}
.y26d{bottom:192.322500px;}
.y234{bottom:194.316000px;}
.y58{bottom:195.664500px;}
.ybb{bottom:196.758000px;}
.y1bb{bottom:202.902000px;}
.y1e4{bottom:202.906500px;}
.y8c{bottom:202.996500px;}
.ye2{bottom:203.457000px;}
.y2f{bottom:204.907500px;}
.y26c{bottom:205.771500px;}
.y233{bottom:207.765000px;}
.y10e{bottom:209.998500px;}
.y26b{bottom:219.220500px;}
.yba{bottom:219.303000px;}
.y57{bottom:219.312000px;}
.y1ba{bottom:220.834500px;}
.y1e3{bottom:220.839000px;}
.y8b{bottom:220.929000px;}
.ye1{bottom:221.389500px;}
.y232{bottom:221.499000px;}
.y2e{bottom:222.840000px;}
.y10d{bottom:227.931000px;}
.y26a{bottom:232.671000px;}
.y231{bottom:234.948000px;}
.y1b9{bottom:238.767000px;}
.y1e2{bottom:238.771500px;}
.y8a{bottom:238.861500px;}
.ye0{bottom:239.322000px;}
.y2d{bottom:240.772500px;}
.y56{bottom:243.681000px;}
.y10c{bottom:245.865000px;}
.y269{bottom:246.120000px;}
.yb9{bottom:246.753000px;}
.y230{bottom:248.398500px;}
.y1b8{bottom:256.699500px;}
.y1e1{bottom:256.704000px;}
.y177{bottom:256.794000px;}
.y89{bottom:256.795500px;}
.ydf{bottom:257.256000px;}
.y2c{bottom:258.705000px;}
.y268{bottom:259.569000px;}
.y22f{bottom:261.847500px;}
.y10b{bottom:263.797500px;}
.yb8{bottom:264.685500px;}
.y267{bottom:273.019500px;}
.y55{bottom:274.150500px;}
.y1b7{bottom:274.632000px;}
.y1e0{bottom:274.638000px;}
.y88{bottom:274.728000px;}
.y176{bottom:274.923000px;}
.yde{bottom:275.188500px;}
.y22e{bottom:275.581500px;}
.y2b{bottom:276.642000px;}
.y10a{bottom:281.730000px;}
.yb7{bottom:282.523500px;}
.y266{bottom:286.468500px;}
.y22d{bottom:289.032000px;}
.y54{bottom:292.084500px;}
.y1df{bottom:292.570500px;}
.y87{bottom:292.660500px;}
.y175{bottom:292.855500px;}
.ydd{bottom:293.121000px;}
.y2a{bottom:294.574500px;}
.y1b6{bottom:297.177000px;}
.y109{bottom:299.275500px;}
.y265{bottom:299.917500px;}
.yb6{bottom:300.456000px;}
.y22c{bottom:302.481000px;}
.y53{bottom:310.017000px;}
.y1de{bottom:310.503000px;}
.y150{bottom:310.593000px;}
.y174{bottom:310.789500px;}
.ydc{bottom:311.053500px;}
.y29{bottom:312.507000px;}
.y264{bottom:313.368000px;}
.y22b{bottom:315.930000px;}
.y108{bottom:317.209500px;}
.yb5{bottom:318.390000px;}
.y86{bottom:318.559500px;}
.y1b5{bottom:324.627000px;}
.y263{bottom:326.817000px;}
.y52{bottom:327.949500px;}
.y1dd{bottom:328.435500px;}
.y14f{bottom:328.525500px;}
.y173{bottom:328.722000px;}
.ydb{bottom:328.986000px;}
.y22a{bottom:329.664000px;}
.y28{bottom:330.439500px;}
.y107{bottom:335.142000px;}
.yb4{bottom:336.322500px;}
.y262{bottom:340.267500px;}
.y1b4{bottom:342.559500px;}
.y229{bottom:343.114500px;}
.y51{bottom:345.882000px;}
.y1dc{bottom:346.368000px;}
.y14e{bottom:346.459500px;}
.y172{bottom:346.654500px;}
.yda{bottom:346.920000px;}
.y27{bottom:348.373500px;}
.y106{bottom:353.074500px;}
.y261{bottom:353.716500px;}
.yb3{bottom:354.255000px;}
.y85{bottom:354.493500px;}
.y228{bottom:356.563500px;}
.y1b3{bottom:360.492000px;}
.y50{bottom:364.102500px;}
.y1db{bottom:364.300500px;}
.y14d{bottom:364.392000px;}
.y171{bottom:364.587000px;}
.yd9{bottom:364.852500px;}
.y26{bottom:366.306000px;}
.y260{bottom:367.165500px;}
.y227{bottom:370.014000px;}
.y105{bottom:371.007000px;}
.yb2{bottom:372.187500px;}
.y84{bottom:372.426000px;}
.y1b2{bottom:378.424500px;}
.y25f{bottom:380.616000px;}
.y4f{bottom:382.036500px;}
.y1da{bottom:382.234500px;}
.y14c{bottom:382.324500px;}
.y170{bottom:382.519500px;}
.yd8{bottom:382.785000px;}
.y226{bottom:383.463000px;}
.y25{bottom:384.238500px;}
.y104{bottom:388.939500px;}
.yb1{bottom:390.120000px;}
.y83{bottom:390.360000px;}
.y25e{bottom:394.065000px;}
.y1b1{bottom:396.358500px;}
.y225{bottom:397.197000px;}
.y4e{bottom:399.969000px;}
.y1d9{bottom:400.167000px;}
.y14b{bottom:400.257000px;}
.y16f{bottom:400.453500px;}
.yd7{bottom:401.178000px;}
.y24{bottom:402.171000px;}
.y103{bottom:406.872000px;}
.y25d{bottom:407.514000px;}
.yb0{bottom:408.052500px;}
.y82{bottom:408.292500px;}
.y224{bottom:410.646000px;}
.y1b0{bottom:414.291000px;}
.y4d{bottom:417.901500px;}
.y1d8{bottom:418.099500px;}
.y16e{bottom:418.581000px;}
.yd6{bottom:419.110500px;}
.y23{bottom:420.103500px;}
.y25c{bottom:420.964500px;}
.y14a{bottom:422.902500px;}
.y223{bottom:424.096500px;}
.y102{bottom:424.806000px;}
.yaf{bottom:425.986500px;}
.y81{bottom:427.156500px;}
.y1af{bottom:432.223500px;}
.y25b{bottom:434.413500px;}
.y4c{bottom:435.834000px;}
.y1d7{bottom:436.032000px;}
.y16d{bottom:436.515000px;}
.yd5{bottom:437.043000px;}
.y222{bottom:437.545500px;}
.y22{bottom:438.036000px;}
.y101{bottom:442.738500px;}
.yae{bottom:443.919000px;}
.y80{bottom:445.089000px;}
.y25a{bottom:447.864000px;}
.y1ae{bottom:450.156000px;}
.y149{bottom:450.936000px;}
.y221{bottom:451.279500px;}
.y4b{bottom:453.766500px;}
.y1d6{bottom:453.964500px;}
.y16c{bottom:454.447500px;}
.yd4{bottom:454.977000px;}
.y21{bottom:455.970000px;}
.y100{bottom:460.671000px;}
.y259{bottom:461.313000px;}
.yad{bottom:461.851500px;}
.y7f{bottom:463.021500px;}
.y220{bottom:464.730000px;}
.y1ad{bottom:468.088500px;}
.y148{bottom:468.868500px;}
.y4a{bottom:471.699000px;}
.y1d5{bottom:471.898500px;}
.y16b{bottom:472.380000px;}
.yd3{bottom:472.909500px;}
.y20{bottom:473.902500px;}
.y258{bottom:474.762000px;}
.y21f{bottom:478.179000px;}
.yff{bottom:478.603500px;}
.yac{bottom:479.689500px;}
.y7e{bottom:480.954000px;}
.y1ac{bottom:485.926500px;}
.y147{bottom:486.801000px;}
.y257{bottom:488.212500px;}
.y49{bottom:489.633000px;}
.y1d4{bottom:489.831000px;}
.y16a{bottom:490.312500px;}
.yd2{bottom:490.842000px;}
.y21e{bottom:491.628000px;}
.y1f{bottom:491.835000px;}
.yfe{bottom:496.150500px;}
.yab{bottom:497.622000px;}
.y7d{bottom:498.886500px;}
.y256{bottom:501.661500px;}
.y1ab{bottom:503.859000px;}
.y21d{bottom:505.363500px;}
.y48{bottom:507.565500px;}
.y169{bottom:508.441500px;}
.yd1{bottom:508.774500px;}
.y146{bottom:509.451000px;}
.y1e{bottom:509.767500px;}
.y1d3{bottom:512.380500px;}
.yfd{bottom:514.083000px;}
.y255{bottom:515.110500px;}
.yaa{bottom:515.554500px;}
.y7c{bottom:516.820500px;}
.y21c{bottom:518.812500px;}
.y1aa{bottom:521.793000px;}
.y47{bottom:525.498000px;}
.y168{bottom:526.374000px;}
.yd0{bottom:526.707000px;}
.y1d{bottom:527.700000px;}
.y254{bottom:528.561000px;}
.yfc{bottom:532.015500px;}
.y21b{bottom:532.261500px;}
.ya9{bottom:533.487000px;}
.y7b{bottom:534.753000px;}
.y145{bottom:537.484500px;}
.y1a9{bottom:539.725500px;}
.y1d2{bottom:539.862000px;}
.y253{bottom:542.010000px;}
.y46{bottom:543.430500px;}
.y167{bottom:544.306500px;}
.ycf{bottom:544.641000px;}
.y21a{bottom:545.995500px;}
.yfb{bottom:549.948000px;}
.y1c{bottom:550.363500px;}
.ya8{bottom:551.419500px;}
.y7a{bottom:552.685500px;}
.y144{bottom:555.417000px;}
.y252{bottom:555.460500px;}
.y1a8{bottom:557.658000px;}
.y1d1{bottom:557.794500px;}
.y219{bottom:559.446000px;}
.y45{bottom:561.363000px;}
.y166{bottom:562.240500px;}
.yce{bottom:562.573500px;}
.yfa{bottom:567.880500px;}
.y251{bottom:568.909500px;}
.ya7{bottom:569.353500px;}
.y79{bottom:570.618000px;}
.y218{bottom:572.895000px;}
.y143{bottom:573.349500px;}
.y1a7{bottom:575.590500px;}
.y1d0{bottom:575.727000px;}
.y44{bottom:579.295500px;}
.y165{bottom:580.173000px;}
.ycd{bottom:580.506000px;}
.y250{bottom:582.358500px;}
.y1b{bottom:582.570000px;}
.yf9{bottom:585.814500px;}
.y217{bottom:586.345500px;}
.ya6{bottom:587.286000px;}
.y78{bottom:588.550500px;}
.y142{bottom:591.282000px;}
.y1a6{bottom:593.523000px;}
.y1cf{bottom:593.661000px;}
.y24f{bottom:595.809000px;}
.y43{bottom:597.229500px;}
.y1a{bottom:597.513000px;}
.y164{bottom:598.105500px;}
.ycc{bottom:598.438500px;}
.y216{bottom:599.794500px;}
.yf8{bottom:603.747000px;}
.ya5{bottom:605.218500px;}
.y77{bottom:606.483000px;}
.y141{bottom:609.214500px;}
.y24e{bottom:609.258000px;}
.y1a5{bottom:611.455500px;}
.y1ce{bottom:611.593500px;}
.y19{bottom:612.462000px;}
.y215{bottom:613.528500px;}
.y42{bottom:615.162000px;}
.y163{bottom:616.038000px;}
.ycb{bottom:616.371000px;}
.yf7{bottom:621.679500px;}
.y24d{bottom:622.707000px;}
.ya4{bottom:623.151000px;}
.y76{bottom:624.417000px;}
.y214{bottom:626.977500px;}
.y140{bottom:627.147000px;}
.y18{bottom:627.405000px;}
.y1a4{bottom:629.389500px;}
.y1cd{bottom:629.526000px;}
.y41{bottom:633.094500px;}
.y162{bottom:633.970500px;}
.yca{bottom:634.303500px;}
.y24c{bottom:636.157500px;}
.yf6{bottom:639.612000px;}
.y213{bottom:640.428000px;}
.ya3{bottom:641.083500px;}
.y17{bottom:642.349500px;}
.y13f{bottom:645.081000px;}
.y1a3{bottom:647.322000px;}
.y1cc{bottom:647.368500px;}
.y24b{bottom:649.606500px;}
.y75{bottom:650.316000px;}
.y40{bottom:651.027000px;}
.y161{bottom:651.903000px;}
.yc9{bottom:652.237500px;}
.y212{bottom:653.877000px;}
.y16{bottom:657.292500px;}
.yf5{bottom:657.544500px;}
.ya2{bottom:659.016000px;}
.y13e{bottom:663.013500px;}
.y24a{bottom:663.057000px;}
.y1a2{bottom:665.254500px;}
.y1cb{bottom:665.301000px;}
.y211{bottom:667.327500px;}
.y3f{bottom:668.959500px;}
.y160{bottom:669.837000px;}
.yc8{bottom:670.170000px;}
.y15{bottom:672.237000px;}
.yf4{bottom:675.477000px;}
.y249{bottom:676.506000px;}
.y13d{bottom:680.946000px;}
.y210{bottom:681.061500px;}
.ya1{bottom:681.562500px;}
.y1a1{bottom:683.187000px;}
.y1ca{bottom:683.235000px;}
.y74{bottom:686.250000px;}
.y3e{bottom:686.892000px;}
.y14{bottom:687.181500px;}
.yc7{bottom:688.102500px;}
.y248{bottom:689.955000px;}
.y15f{bottom:693.163500px;}
.yf3{bottom:693.411000px;}
.y20f{bottom:694.510500px;}
.y13c{bottom:698.878500px;}
.y1a0{bottom:701.119500px;}
.y1c9{bottom:701.167500px;}
.y13{bottom:702.124500px;}
.y247{bottom:703.405500px;}
.y73{bottom:704.182500px;}
.y3d{bottom:704.826000px;}
.yc6{bottom:706.035000px;}
.y20e{bottom:707.959500px;}
.ya0{bottom:709.011000px;}
.yf2{bottom:711.343500px;}
.y13b{bottom:716.811000px;}
.y246{bottom:716.854500px;}
.y12{bottom:717.069000px;}
.y19f{bottom:719.052000px;}
.y1c8{bottom:719.100000px;}
.y20d{bottom:721.695000px;}
.y72{bottom:722.115000px;}
.y15e{bottom:722.850000px;}
.y3c{bottom:723.046500px;}
.yc5{bottom:724.428000px;}
.y9f{bottom:726.945000px;}
.y245{bottom:730.303500px;}
.y11{bottom:732.013500px;}
.yf1{bottom:733.596000px;}
.y20c{bottom:735.144000px;}
.y19e{bottom:736.890000px;}
.y1c7{bottom:736.942500px;}
.y71{bottom:740.047500px;}
.y15d{bottom:740.782500px;}
.y3b{bottom:740.979000px;}
.yc4{bottom:742.362000px;}
.y12f{bottom:742.519500px;}
.y244{bottom:743.754000px;}
.y9e{bottom:744.877500px;}
.y10{bottom:746.956500px;}
.y20b{bottom:748.593000px;}
.y19d{bottom:754.822500px;}
.y1c6{bottom:754.875000px;}
.y243{bottom:757.203000px;}
.y70{bottom:757.981500px;}
.y15c{bottom:758.715000px;}
.y3a{bottom:758.911500px;}
.yf0{bottom:759.298500px;}
.yc3{bottom:760.294500px;}
.y12e{bottom:760.452000px;}
.yf{bottom:761.901000px;}
.y20a{bottom:762.043500px;}
.y9d{bottom:762.810000px;}
.y242{bottom:770.653500px;}
.y19c{bottom:772.756500px;}
.y1c5{bottom:772.809000px;}
.y209{bottom:775.492500px;}
.y6f{bottom:775.914000px;}
.y15b{bottom:776.649000px;}
.y39{bottom:776.844000px;}
.ye{bottom:776.845500px;}
.yef{bottom:777.231000px;}
.yc2{bottom:778.227000px;}
.y9c{bottom:780.742500px;}
.y125{bottom:781.971000px;}
.y241{bottom:784.102500px;}
.y208{bottom:788.941500px;}
.y19b{bottom:790.689000px;}
.yd{bottom:791.788500px;}
.y6e{bottom:793.846500px;}
.y15a{bottom:794.581500px;}
.y38{bottom:794.778000px;}
.yee{bottom:795.163500px;}
.y1c4{bottom:795.358500px;}
.yc1{bottom:796.159500px;}
.y122{bottom:797.461168px;}
.y240{bottom:797.551500px;}
.y9b{bottom:798.675000px;}
.y130{bottom:799.388468px;}
.y207{bottom:802.675500px;}
.yc{bottom:806.733000px;}
.y19a{bottom:808.621500px;}
.y23f{bottom:811.002000px;}
.y6d{bottom:811.779000px;}
.y159{bottom:812.514000px;}
.y37{bottom:812.710500px;}
.yed{bottom:813.096000px;}
.y206{bottom:816.126000px;}
.y9a{bottom:816.607500px;}
.yb{bottom:821.677500px;}
.y1c3{bottom:822.840000px;}
.y23e{bottom:824.451000px;}
.yc0{bottom:826.080000px;}
.y199{bottom:826.554000px;}
.y205{bottom:829.575000px;}
.y6c{bottom:829.711500px;}
.y158{bottom:830.446500px;}
.y36{bottom:830.643000px;}
.yec{bottom:831.028500px;}
.ya{bottom:836.620500px;}
.y23d{bottom:837.900000px;}
.y99{bottom:839.154000px;}
.y1c2{bottom:840.772500px;}
.ybf{bottom:844.012500px;}
.y198{bottom:844.486500px;}
.y6b{bottom:847.644000px;}
.y157{bottom:848.379000px;}
.y35{bottom:848.575500px;}
.yeb{bottom:848.962500px;}
.y23c{bottom:851.350500px;}
.y9{bottom:851.565000px;}
.y204{bottom:854.841000px;}
.y1c1{bottom:858.705000px;}
.y197{bottom:862.419000px;}
.y23b{bottom:864.799500px;}
.y6a{bottom:865.578000px;}
.y156{bottom:866.311500px;}
.y8{bottom:866.508000px;}
.y98{bottom:866.602500px;}
.yea{bottom:866.895000px;}
.y1c0{bottom:876.637500px;}
.y23a{bottom:878.248500px;}
.y196{bottom:880.353000px;}
.y69{bottom:883.510500px;}
.y155{bottom:884.245500px;}
.y97{bottom:884.536500px;}
.ye9{bottom:884.827500px;}
.y203{bottom:887.215500px;}
.y239{bottom:891.699000px;}
.y1bf{bottom:894.481500px;}
.y121{bottom:900.763500px;}
.y68{bottom:901.443000px;}
.y154{bottom:902.178000px;}
.y96{bottom:902.469000px;}
.ye8{bottom:902.760000px;}
.y195{bottom:902.898000px;}
.y202{bottom:905.148000px;}
.y114{bottom:908.832000px;}
.y7{bottom:909.037500px;}
.y1be{bottom:912.414000px;}
.y67{bottom:919.375500px;}
.y153{bottom:920.110500px;}
.y95{bottom:920.401500px;}
.ye7{bottom:920.692500px;}
.y201{bottom:927.862500px;}
.y194{bottom:930.346500px;}
.y6{bottom:932.953500px;}
.y66{bottom:937.308000px;}
.y152{bottom:938.239500px;}
.y94{bottom:938.334000px;}
.ye6{bottom:938.625000px;}
.y1f4{bottom:941.574000px;}
.y193{bottom:948.279000px;}
.y5{bottom:951.447000px;}
.y65{bottom:955.242000px;}
.y151{bottom:956.172000px;}
.y93{bottom:956.266500px;}
.ye5{bottom:956.559000px;}
.y1eb{bottom:959.506500px;}
.y4{bottom:964.738500px;}
.y64{bottom:974.104500px;}
.ye4{bottom:974.491500px;}
.y192{bottom:979.960500px;}
.y1e7{bottom:983.525603px;}
.y92{bottom:992.037000px;}
.y63{bottom:992.038500px;}
.y188{bottom:993.672000px;}
.y3{bottom:997.465500px;}
.y62{bottom:1009.971000px;}
.y17e{bottom:1011.604500px;}
.y61{bottom:1027.903500px;}
.y17a{bottom:1029.073448px;}
.y2{bottom:1039.309500px;}
.y60{bottom:1045.836000px;}
.y5f{bottom:1063.768500px;}
.y1{bottom:1081.152000px;}
.y5e{bottom:1081.701000px;}
.y112{bottom:1091.531728px;}
.y91{bottom:1099.633500px;}
.y5d{bottom:1099.635000px;}
.hc{height:15.317554px;}
.h17{height:17.107358px;}
.h1f{height:17.157921px;}
.h13{height:19.245777px;}
.h1c{height:19.302661px;}
.h16{height:21.384197px;}
.h25{height:23.591453px;}
.ha{height:24.675533px;}
.h18{height:25.661036px;}
.h1e{height:25.736881px;}
.h22{height:26.540384px;}
.h1a{height:29.937876px;}
.h20{height:30.026361px;}
.hd{height:31.421228px;}
.h28{height:32.804932px;}
.h7{height:32.900573px;}
.h29{height:33.134573px;}
.h27{height:33.140573px;}
.h3{height:33.665702px;}
.h24{height:35.387179px;}
.h6{height:37.336090px;}
.h5{height:37.605082px;}
.h11{height:39.276534px;}
.h9{height:41.006062px;}
.h4{height:41.125613px;}
.h26{height:41.285042px;}
.h14{height:45.489873px;}
.hf{height:47.131841px;}
.h8{height:50.477846px;}
.hb{height:50.483846px;}
.h10{height:54.987148px;}
.h2{height:57.419702px;}
.h19{height:81.818020px;}
.h1b{height:82.059844px;}
.h12{height:83.740195px;}
.h1{height:98.701718px;}
.h15{height:110.717280px;}
.h1d{height:111.044520px;}
.h21{height:112.828993px;}
.h23{height:152.681760px;}
.he{height:203.355360px;}
.h0{height:1188.000000px;}
.w1{width:118.190888px;}
.w6{width:165.122173px;}
.w5{width:167.039570px;}
.w3{width:167.126709px;}
.w4{width:184.528800px;}
.w7{width:185.074200px;}
.w8{width:227.036363px;}
.w9{width:254.469600px;}
.w2{width:338.925600px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x21{left:6.586653px;}
.x2a{left:8.081573px;}
.x1f{left:9.118798px;}
.x27{left:11.073606px;}
.x18{left:14.799751px;}
.x2b{left:17.037108px;}
.x16{left:20.279048px;}
.x3e{left:23.425340px;}
.x20{left:25.157426px;}
.x28{left:27.370418px;}
.x3d{left:37.633226px;}
.x1c{left:40.565581px;}
.x12{left:45.491347px;}
.x15{left:49.163041px;}
.x3a{left:55.043188px;}
.x1d{left:60.463937px;}
.x9{left:73.446000px;}
.x49{left:79.423500px;}
.x3b{left:82.073515px;}
.x41{left:84.017380px;}
.xb{left:85.401000px;}
.x29{left:86.599303px;}
.x8{left:88.390500px;}
.x14{left:89.661000px;}
.x39{left:96.871340px;}
.x26{left:99.004415px;}
.x23{left:100.204264px;}
.x31{left:101.317843px;}
.x2{left:117.258000px;}
.x2d{left:118.663408px;}
.x11{left:120.860984px;}
.x1e{left:122.460488px;}
.x17{left:127.436026px;}
.x1{left:130.474500px;}
.x1b{left:134.746500px;}
.x3c{left:136.127099px;}
.x4b{left:138.027000px;}
.x2c{left:157.687500px;}
.x45{left:163.157425px;}
.x25{left:167.049000px;}
.x4a{left:175.150500px;}
.x37{left:179.355000px;}
.x3f{left:192.385500px;}
.xa{left:203.430000px;}
.x48{left:219.039000px;}
.x13{left:244.211074px;}
.x4{left:251.884500px;}
.x5{left:254.001000px;}
.x2e{left:263.746500px;}
.x24{left:265.503000px;}
.x22{left:280.085901px;}
.x19{left:288.218564px;}
.x1a{left:309.175464px;}
.x7{left:315.703500px;}
.x42{left:331.767000px;}
.x3{left:343.425000px;}
.x2f{left:347.569500px;}
.x6{left:350.599500px;}
.x40{left:355.192340px;}
.x4c{left:421.807500px;}
.x43{left:450.288000px;}
.x32{left:454.047000px;}
.xc{left:467.967000px;}
.x30{left:471.084108px;}
.xf{left:479.922000px;}
.xd{left:482.910000px;}
.x4d{left:495.355500px;}
.x56{left:503.329500px;}
.x33{left:538.288500px;}
.x38{left:541.186500px;}
.x51{left:552.765000px;}
.x10{left:568.645500px;}
.x46{left:590.086500px;}
.xe{left:591.838500px;}
.x4e{left:597.898500px;}
.x50{left:607.596000px;}
.x44{left:613.511840px;}
.x35{left:644.347500px;}
.x52{left:648.531000px;}
.x57{left:656.859000px;}
.x34{left:661.384608px;}
.x53{left:685.353000px;}
.x54{left:689.238000px;}
.x47{left:709.027500px;}
.x36{left:728.170500px;}
.x55{left:780.579000px;}
.x4f{left:811.677000px;}
@media print{
.v2{vertical-align:-19.285333pt;}
.v4{vertical-align:-15.002667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.280000pt;}
.v1{vertical-align:21.114667pt;}
.v5{vertical-align:23.328085pt;}
.ls7{letter-spacing:0.000000pt;}
.ls5{letter-spacing:2.177630pt;}
.ls16{letter-spacing:2.357031pt;}
.ls3{letter-spacing:2.635446pt;}
.ls0{letter-spacing:2.653258pt;}
.lsd{letter-spacing:2.655711pt;}
.ls4{letter-spacing:2.656533pt;}
.ls8{letter-spacing:2.656693pt;}
.ls6{letter-spacing:2.657067pt;}
.ls1{letter-spacing:2.658591pt;}
.ls2{letter-spacing:2.658767pt;}
.ls9{letter-spacing:2.660237pt;}
.ls10{letter-spacing:13.168479pt;}
.lse{letter-spacing:15.243145pt;}
.ls11{letter-spacing:18.597812pt;}
.lsa{letter-spacing:19.531200pt;}
.ls12{letter-spacing:19.819145pt;}
.ls14{letter-spacing:20.101812pt;}
.ls13{letter-spacing:22.032479pt;}
.lsc{letter-spacing:25.120479pt;}
.ls15{letter-spacing:25.552479pt;}
.lsb{letter-spacing:26.459200pt;}
.lsf{letter-spacing:26.763145pt;}
.ws2{word-spacing:-45.163900pt;}
.ws94{word-spacing:-13.283467pt;}
.ws1a{word-spacing:-13.262246pt;}
.ws50{word-spacing:-10.626800pt;}
.wscc{word-spacing:-9.305809pt;}
.ws24{word-spacing:-0.956410pt;}
.ws131{word-spacing:-0.850144pt;}
.wse0{word-spacing:-0.850142pt;}
.wsd5{word-spacing:-0.743874pt;}
.ws109{word-spacing:-0.690740pt;}
.ws107{word-spacing:-0.637606pt;}
.ws9{word-spacing:-0.621670pt;}
.ws7c{word-spacing:-0.584473pt;}
.ws63{word-spacing:-0.531339pt;}
.ws71{word-spacing:-0.478205pt;}
.ws80{word-spacing:-0.425071pt;}
.ws48{word-spacing:-0.212535pt;}
.ws167{word-spacing:-0.127522pt;}
.wse2{word-spacing:-0.106268pt;}
.ws4{word-spacing:-0.047821pt;}
.ws13d{word-spacing:-0.042507pt;}
.ws52{word-spacing:0.000000pt;}
.wsd1{word-spacing:0.106268pt;}
.ws7d{word-spacing:0.159402pt;}
.ws20{word-spacing:0.318803pt;}
.wsd{word-spacing:0.382566pt;}
.ws8c{word-spacing:0.425071pt;}
.ws42{word-spacing:0.478205pt;}
.ws34{word-spacing:0.531339pt;}
.wseb{word-spacing:0.584473pt;}
.wse9{word-spacing:0.637606pt;}
.wsc7{word-spacing:0.690740pt;}
.wsc6{word-spacing:0.743874pt;}
.ws155{word-spacing:0.807637pt;}
.wsdc{word-spacing:0.850142pt;}
.ws72{word-spacing:0.956410pt;}
.ws6c{word-spacing:1.009543pt;}
.ws126{word-spacing:1.020173pt;}
.ws8a{word-spacing:1.115811pt;}
.ws104{word-spacing:1.168945pt;}
.wsc8{word-spacing:1.275213pt;}
.ws146{word-spacing:1.360230pt;}
.wsdb{word-spacing:1.381481pt;}
.wsc5{word-spacing:1.487748pt;}
.ws8d{word-spacing:1.700284pt;}
.ws140{word-spacing:1.700288pt;}
.ws2a{word-spacing:1.753418pt;}
.ws129{word-spacing:1.870317pt;}
.ws156{word-spacing:1.912824pt;}
.wsd6{word-spacing:1.965953pt;}
.ws67{word-spacing:2.019087pt;}
.ws2e{word-spacing:2.072221pt;}
.ws157{word-spacing:2.082853pt;}
.wsd3{word-spacing:2.125355pt;}
.wsca{word-spacing:2.178489pt;}
.ws41{word-spacing:2.284756pt;}
.wsba{word-spacing:2.391024pt;}
.ws14c{word-spacing:2.422910pt;}
.wsa9{word-spacing:2.444158pt;}
.wsf3{word-spacing:2.550426pt;}
.wsc3{word-spacing:2.603559pt;}
.ws15{word-spacing:2.630144pt;}
.ws78{word-spacing:2.656693pt;}
.ws25{word-spacing:2.762961pt;}
.ws43{word-spacing:2.816095pt;}
.ws99{word-spacing:2.922363pt;}
.ws76{word-spacing:2.975497pt;}
.ws137{word-spacing:3.060518pt;}
.ws95{word-spacing:3.081764pt;}
.ws8e{word-spacing:3.134898pt;}
.ws2d{word-spacing:3.188032pt;}
.ws161{word-spacing:3.273054pt;}
.ws10a{word-spacing:3.347434pt;}
.ws77{word-spacing:3.400567pt;}
.ws12c{word-spacing:3.443083pt;}
.ws6a{word-spacing:3.453701pt;}
.ws12b{word-spacing:3.485590pt;}
.wsa1{word-spacing:3.506835pt;}
.ws81{word-spacing:3.559969pt;}
.ws98{word-spacing:3.613103pt;}
.ws14d{word-spacing:3.655619pt;}
.ws83{word-spacing:3.666237pt;}
.ws148{word-spacing:3.698126pt;}
.ws117{word-spacing:3.719371pt;}
.ws47{word-spacing:3.772505pt;}
.ws4b{word-spacing:3.825638pt;}
.ws15f{word-spacing:3.868155pt;}
.wsb2{word-spacing:3.878772pt;}
.ws160{word-spacing:3.910662pt;}
.ws3d{word-spacing:3.931906pt;}
.ws162{word-spacing:3.953170pt;}
.ws10f{word-spacing:3.985040pt;}
.ws168{word-spacing:3.995677pt;}
.ws138{word-spacing:4.019932pt;}
.ws12a{word-spacing:4.038184pt;}
.ws13f{word-spacing:4.080691pt;}
.ws5a{word-spacing:4.091308pt;}
.wsab{word-spacing:4.144442pt;}
.ws14b{word-spacing:4.165706pt;}
.ws4f{word-spacing:4.197575pt;}
.ws32{word-spacing:4.250720pt;}
.ws163{word-spacing:4.293227pt;}
.wsbd{word-spacing:4.303843pt;}
.ws120{word-spacing:4.378242pt;}
.wsf6{word-spacing:4.410111pt;}
.ws121{word-spacing:4.420749pt;}
.ws26{word-spacing:4.463245pt;}
.ws123{word-spacing:4.463256pt;}
.ws127{word-spacing:4.505763pt;}
.ws5e{word-spacing:4.516379pt;}
.ws15b{word-spacing:4.590778pt;}
.ws6d{word-spacing:4.622646pt;}
.wsce{word-spacing:4.835182pt;}
.ws152{word-spacing:4.845821pt;}
.ws49{word-spacing:4.994583pt;}
.ws31{word-spacing:5.039636pt;}
.ws10c{word-spacing:5.047717pt;}
.ws30{word-spacing:5.058357pt;}
.ws57{word-spacing:5.100851pt;}
.ws122{word-spacing:5.100864pt;}
.wsef{word-spacing:5.153985pt;}
.ws145{word-spacing:5.185878pt;}
.ws14a{word-spacing:5.228386pt;}
.ws7f{word-spacing:5.253957pt;}
.ws54{word-spacing:5.260253pt;}
.ws4d{word-spacing:5.299129pt;}
.ws3{word-spacing:5.313387pt;}
.ws147{word-spacing:5.355907pt;}
.ws9a{word-spacing:5.366521pt;}
.ws128{word-spacing:5.398414pt;}
.wsb6{word-spacing:5.419654pt;}
.wsec{word-spacing:5.472788pt;}
.ws7a{word-spacing:5.579056pt;}
.ws164{word-spacing:5.610950pt;}
.wsdf{word-spacing:5.632190pt;}
.wsc{word-spacing:5.642854pt;}
.ws11c{word-spacing:5.653458pt;}
.wsfd{word-spacing:5.685324pt;}
.ws133{word-spacing:5.695965pt;}
.wsc1{word-spacing:5.738458pt;}
.ws151{word-spacing:5.738472pt;}
.ws13e{word-spacing:5.780979pt;}
.wsf{word-spacing:5.786317pt;}
.wsd7{word-spacing:5.791591pt;}
.ws6b{word-spacing:5.844725pt;}
.ws1{word-spacing:5.844747pt;}
.ws1d{word-spacing:5.897859pt;}
.ws13c{word-spacing:5.908501pt;}
.ws73{word-spacing:5.950993pt;}
.ws16{word-spacing:5.977600pt;}
.ws53{word-spacing:6.004127pt;}
.ws149{word-spacing:6.036022pt;}
.ws136{word-spacing:6.121037pt;}
.ws119{word-spacing:6.216662pt;}
.ws89{word-spacing:6.322930pt;}
.ws154{word-spacing:6.333573pt;}
.ws82{word-spacing:6.376064pt;}
.ws55{word-spacing:6.429198pt;}
.ws11b{word-spacing:6.461094pt;}
.ws3e{word-spacing:6.535466pt;}
.ws125{word-spacing:6.546109pt;}
.ws10e{word-spacing:6.588599pt;}
.ws8{word-spacing:6.599270pt;}
.ws33{word-spacing:6.641733pt;}
.wsbe{word-spacing:6.694867pt;}
.ws134{word-spacing:6.716138pt;}
.ws79{word-spacing:6.748001pt;}
.wsa0{word-spacing:6.801135pt;}
.ws70{word-spacing:6.854269pt;}
.ws65{word-spacing:6.907403pt;}
.ws159{word-spacing:6.928674pt;}
.wsf7{word-spacing:6.960537pt;}
.wsf0{word-spacing:7.013670pt;}
.ws3b{word-spacing:7.066804pt;}
.ws166{word-spacing:7.098702pt;}
.ws45{word-spacing:7.119938pt;}
.ws11e{word-spacing:7.141210pt;}
.ws36{word-spacing:7.173072pt;}
.ws91{word-spacing:7.226206pt;}
.ws13b{word-spacing:7.268731pt;}
.ws158{word-spacing:7.311238pt;}
.ws85{word-spacing:7.385607pt;}
.wsad{word-spacing:7.545009pt;}
.ws15a{word-spacing:7.566282pt;}
.wsa4{word-spacing:7.598143pt;}
.ws12{word-spacing:7.603507pt;}
.ws22{word-spacing:7.651277pt;}
.ws5{word-spacing:7.699149pt;}
.ws58{word-spacing:7.704411pt;}
.ws10d{word-spacing:7.863812pt;}
.ws153{word-spacing:7.863832pt;}
.wsfc{word-spacing:7.916946pt;}
.wsea{word-spacing:7.970080pt;}
.ws165{word-spacing:8.033861pt;}
.ws56{word-spacing:8.076348pt;}
.ws18{word-spacing:8.081715pt;}
.ws111{word-spacing:8.129482pt;}
.ws15c{word-spacing:8.161382pt;}
.ws35{word-spacing:8.182615pt;}
.ws8f{word-spacing:8.235749pt;}
.ws66{word-spacing:8.288883pt;}
.ws11d{word-spacing:8.288904pt;}
.ws9d{word-spacing:8.342017pt;}
.wsa{word-spacing:8.368640pt;}
.ws12f{word-spacing:8.373918pt;}
.wsd2{word-spacing:8.395151pt;}
.wsb9{word-spacing:8.448285pt;}
.ws5f{word-spacing:8.554553pt;}
.ws132{word-spacing:8.628962pt;}
.wsb3{word-spacing:8.660820pt;}
.ws2b{word-spacing:8.713954pt;}
.ws96{word-spacing:8.767088pt;}
.wsf8{word-spacing:8.820222pt;}
.ws130{word-spacing:8.841498pt;}
.ws64{word-spacing:8.926490pt;}
.ws169{word-spacing:8.926512pt;}
.ws12e{word-spacing:8.927071pt;}
.ws115{word-spacing:8.979623pt;}
.ws5c{word-spacing:9.085891pt;}
.ws59{word-spacing:9.139025pt;}
.wsa3{word-spacing:9.245293pt;}
.ws11f{word-spacing:9.309077pt;}
.ws44{word-spacing:9.404694pt;}
.ws15d{word-spacing:9.479106pt;}
.ws92{word-spacing:9.510962pt;}
.ws102{word-spacing:9.564096pt;}
.ws3c{word-spacing:9.670364pt;}
.ws23{word-spacing:9.723498pt;}
.ws139{word-spacing:9.734149pt;}
.wsbf{word-spacing:9.776631pt;}
.wse7{word-spacing:9.882899pt;}
.wsee{word-spacing:9.936033pt;}
.ws142{word-spacing:10.031699pt;}
.wsff{word-spacing:10.042301pt;}
.ws141{word-spacing:10.074206pt;}
.wsbb{word-spacing:10.095435pt;}
.ws8b{word-spacing:10.201702pt;}
.ws7{word-spacing:10.233651pt;}
.wsaa{word-spacing:10.254836pt;}
.wsb{word-spacing:10.329293pt;}
.wsed{word-spacing:10.361104pt;}
.ws93{word-spacing:10.414238pt;}
.wsf1{word-spacing:10.467372pt;}
.ws14f{word-spacing:10.499278pt;}
.wsc0{word-spacing:10.520506pt;}
.ws150{word-spacing:10.541786pt;}
.ws7e{word-spacing:10.626773pt;}
.ws51{word-spacing:10.638961pt;}
.wsb4{word-spacing:10.733041pt;}
.ws84{word-spacing:10.786175pt;}
.ws60{word-spacing:10.839309pt;}
.ws16a{word-spacing:10.881843pt;}
.ws39{word-spacing:10.892443pt;}
.wscf{word-spacing:10.945577pt;}
.ws9c{word-spacing:10.998710pt;}
.ws61{word-spacing:11.051844pt;}
.ws4e{word-spacing:11.104978pt;}
.ws28{word-spacing:11.211246pt;}
.ws135{word-spacing:11.264408pt;}
.ws88{word-spacing:11.317514pt;}
.ws97{word-spacing:11.370647pt;}
.ws9f{word-spacing:11.423781pt;}
.ws103{word-spacing:11.583183pt;}
.wsd9{word-spacing:11.636317pt;}
.ws5b{word-spacing:11.689451pt;}
.ws14e{word-spacing:11.774494pt;}
.wsd0{word-spacing:11.848852pt;}
.ws62{word-spacing:11.955120pt;}
.ws10{word-spacing:11.955200pt;}
.ws101{word-spacing:12.061388pt;}
.wsb0{word-spacing:12.220789pt;}
.ws144{word-spacing:12.242074pt;}
.wsfe{word-spacing:12.273923pt;}
.ws3f{word-spacing:12.327057pt;}
.ws2c{word-spacing:12.433325pt;}
.ws29{word-spacing:12.486459pt;}
.ws9b{word-spacing:12.539593pt;}
.ws69{word-spacing:12.592726pt;}
.ws0{word-spacing:12.752160pt;}
.wsd8{word-spacing:12.805262pt;}
.ws14{word-spacing:13.007258pt;}
.ws38{word-spacing:13.070931pt;}
.wse{word-spacing:13.102899pt;}
.wsf4{word-spacing:13.283467pt;}
.ws6e{word-spacing:13.389734pt;}
.ws12d{word-spacing:13.432275pt;}
.wsde{word-spacing:13.442868pt;}
.wsdd{word-spacing:13.496002pt;}
.wse4{word-spacing:13.549136pt;}
.wsfa{word-spacing:13.602270pt;}
.wsc4{word-spacing:13.708538pt;}
.ws74{word-spacing:13.761671pt;}
.ws100{word-spacing:13.867939pt;}
.ws116{word-spacing:13.974207pt;}
.ws113{word-spacing:14.027341pt;}
.wsa2{word-spacing:14.080475pt;}
.ws46{word-spacing:14.186742pt;}
.ws2f{word-spacing:14.282419pt;}
.ws37{word-spacing:14.293010pt;}
.ws105{word-spacing:14.399278pt;}
.ws6{word-spacing:14.537523pt;}
.wsaf{word-spacing:14.558679pt;}
.ws1e{word-spacing:14.611813pt;}
.ws4c{word-spacing:14.718081pt;}
.ws27{word-spacing:14.824349pt;}
.wsf2{word-spacing:14.930617pt;}
.wsac{word-spacing:14.983750pt;}
.wsa7{word-spacing:15.036884pt;}
.wsc2{word-spacing:15.249420pt;}
.wse5{word-spacing:15.408821pt;}
.ws21{word-spacing:15.621357pt;}
.wsc9{word-spacing:15.674491pt;}
.ws112{word-spacing:15.727625pt;}
.ws15e{word-spacing:15.727664pt;}
.ws9e{word-spacing:15.780758pt;}
.ws19{word-spacing:15.940160pt;}
.wse1{word-spacing:15.993294pt;}
.ws1c{word-spacing:16.046428pt;}
.ws10b{word-spacing:16.099562pt;}
.ws86{word-spacing:16.152695pt;}
.ws106{word-spacing:16.312097pt;}
.ws7b{word-spacing:16.365231pt;}
.ws11a{word-spacing:16.365272pt;}
.ws75{word-spacing:16.471499pt;}
.wsa6{word-spacing:16.684034pt;}
.ws114{word-spacing:16.737168pt;}
.ws68{word-spacing:16.790302pt;}
.wsf9{word-spacing:16.896570pt;}
.wsfb{word-spacing:17.109105pt;}
.wsda{word-spacing:17.268507pt;}
.ws3a{word-spacing:17.374774pt;}
.wsb8{word-spacing:17.481042pt;}
.wsb7{word-spacing:17.587310pt;}
.ws87{word-spacing:17.799845pt;}
.wsf5{word-spacing:17.852979pt;}
.wse8{word-spacing:17.959247pt;}
.ws11{word-spacing:18.028442pt;}
.wsa8{word-spacing:18.171782pt;}
.wse6{word-spacing:18.384318pt;}
.wsb5{word-spacing:18.490586pt;}
.ws1b{word-spacing:18.543719pt;}
.ws1f{word-spacing:18.596853pt;}
.ws13a{word-spacing:18.600340pt;}
.ws4a{word-spacing:18.649987pt;}
.wsd4{word-spacing:18.703121pt;}
.wsa5{word-spacing:18.862523pt;}
.ws40{word-spacing:18.915657pt;}
.wsae{word-spacing:19.021924pt;}
.ws118{word-spacing:19.181326pt;}
.ws6f{word-spacing:19.978334pt;}
.ws17{word-spacing:19.989094pt;}
.wsb1{word-spacing:20.137735pt;}
.ws5d{word-spacing:20.509673pt;}
.ws90{word-spacing:20.669074pt;}
.wse3{word-spacing:20.722208pt;}
.ws13{word-spacing:20.897690pt;}
.ws124{word-spacing:20.956050pt;}
.ws143{word-spacing:22.528816pt;}
.wsbc{word-spacing:29.808099pt;}
.ws110{word-spacing:32.411659pt;}
.ws108{word-spacing:35.015218pt;}
.wscb{word-spacing:77.726938pt;}
.wscd{word-spacing:114.138125pt;}
._2{margin-left:-16.450286pt;}
._3{margin-left:-7.651296pt;}
._a{margin-left:-5.897859pt;}
._4{margin-left:-4.463256pt;}
._0{margin-left:-3.188040pt;}
._1{margin-left:-1.912824pt;}
._6{margin-left:-0.908595pt;}
._9{width:1.967261pt;}
._5{width:3.343824pt;}
._7{width:11.429171pt;}
._14{width:12.805262pt;}
._11{width:14.346163pt;}
._e{width:16.205829pt;}
._1e{width:17.298830pt;}
._d{width:18.331189pt;}
._1c{width:19.766276pt;}
._f{width:21.412953pt;}
._10{width:23.219500pt;}
._c{width:24.335311pt;}
._b{width:26.566933pt;}
._16{width:27.735883pt;}
._15{width:29.648698pt;}
._21{width:31.072763pt;}
._1a{width:32.432994pt;}
._8{width:33.761477pt;}
._1b{width:36.131120pt;}
._1f{width:38.936595pt;}
._22{width:40.564889pt;}
._17{width:43.489238pt;}
._20{width:44.462531pt;}
._13{width:45.456961pt;}
._1d{width:49.010802pt;}
._19{width:58.436758pt;}
._18{width:59.795958pt;}
._12{width:146.172949pt;}
.fsd{font-size:14.580053pt;}
.fs12{font-size:14.623147pt;}
.fsb{font-size:16.402560pt;}
.fs10{font-size:16.451040pt;}
.fsc{font-size:18.225067pt;}
.fs16{font-size:20.106240pt;}
.fse{font-size:21.870080pt;}
.fs11{font-size:21.934720pt;}
.fs14{font-size:22.619520pt;}
.fsf{font-size:25.515093pt;}
.fs13{font-size:25.590507pt;}
.fs7{font-size:26.779307pt;}
.fs15{font-size:30.159360pt;}
.fs6{font-size:31.880533pt;}
.fsa{font-size:33.474133pt;}
.fs17{font-size:35.185920pt;}
.fs5{font-size:37.193600pt;}
.fs8{font-size:40.168960pt;}
.fs2{font-size:42.507200pt;}
.fs9{font-size:46.863787pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y12b{bottom:3.585782pt;}
.y139{bottom:3.986733pt;}
.y185{bottom:3.998517pt;}
.y113{bottom:4.401849pt;}
.y12c{bottom:4.829643pt;}
.y1f1{bottom:5.497800pt;}
.y11c{bottom:7.322467pt;}
.y18f{bottom:8.362612pt;}
.y189{bottom:8.504274pt;}
.y18c{bottom:8.540832pt;}
.y17b{bottom:8.645935pt;}
.y12a{bottom:8.907501pt;}
.y131{bottom:10.142250pt;}
.y13a{bottom:10.301719pt;}
.y123{bottom:10.383732pt;}
.y138{bottom:10.616101pt;}
.y184{bottom:10.647479pt;}
.y1fd{bottom:11.806133pt;}
.y1f5{bottom:11.900381pt;}
.y1e8{bottom:13.056490pt;}
.y1f0{bottom:14.639856pt;}
.y126{bottom:15.518644pt;}
.y134{bottom:16.821737pt;}
.y17f{bottom:16.871455pt;}
.y115{bottom:20.235114pt;}
.y1ec{bottom:23.197574pt;}
.y186{bottom:27.994186pt;}
.y180{bottom:32.477095pt;}
.y1fc{bottom:32.666357pt;}
.y116{bottom:33.917666pt;}
.y1f2{bottom:36.046718pt;}
.y200{bottom:38.490883pt;}
.y127{bottom:38.851286pt;}
.y135{bottom:38.860398pt;}
.y1f8{bottom:44.654702pt;}
.y1ed{bottom:47.513558pt;}
.y181{bottom:48.078164pt;}
.y117{bottom:57.701037pt;}
.y18d{bottom:60.809441pt;}
.y136{bottom:60.899060pt;}
.y17c{bottom:60.914545pt;}
.y18a{bottom:61.554308pt;}
.y132{bottom:61.933333pt;}
.y128{bottom:62.188484pt;}
.y190{bottom:62.189501pt;}
.y124{bottom:62.885593pt;}
.y182{bottom:63.679234pt;}
.y1f9{bottom:66.105547pt;}
.y18e{bottom:67.833122pt;}
.y17d{bottom:67.933656pt;}
.y133{bottom:68.544476pt;}
.y18b{bottom:68.573418pt;}
.y191{bottom:69.208611pt;}
.y1ee{bottom:71.823259pt;}
.y183{bottom:79.284873pt;}
.y120{bottom:81.342144pt;}
.y118{bottom:81.484409pt;}
.y1e9{bottom:82.347619pt;}
.y137{bottom:82.937722pt;}
.y11d{bottom:83.643491pt;}
.y1fe{bottom:83.673374pt;}
.y1f6{bottom:84.842050pt;}
.y129{bottom:85.521125pt;}
.y1fa{bottom:87.556392pt;}
.y12d{bottom:91.904455pt;}
.y187{bottom:92.176091pt;}
.y1ea{bottom:93.292954pt;}
.y1ff{bottom:93.330653pt;}
.y1f7{bottom:94.493045pt;}
.y11f{bottom:95.802970pt;}
.y1ef{bottom:96.139243pt;}
.y34{bottom:100.740000pt;}
.y238{bottom:100.741333pt;}
.y5c{bottom:104.490667pt;}
.y119{bottom:105.276149pt;}
.y1fb{bottom:109.013520pt;}
.y11e{bottom:110.523220pt;}
.y33{bottom:112.696000pt;}
.y90{bottom:116.680000pt;}
.y5b{bottom:117.641333pt;}
.y32{bottom:124.650667pt;}
.y1f3{bottom:126.738427pt;}
.ybe{bottom:127.076000pt;}
.y11a{bottom:129.059521pt;}
.y179{bottom:132.620000pt;}
.y8f{bottom:132.621333pt;}
.y270{bottom:135.086667pt;}
.y237{bottom:136.606667pt;}
.y111{bottom:138.845333pt;}
.y5a{bottom:142.042667pt;}
.ybd{bottom:143.016000pt;}
.y26f{bottom:147.042667pt;}
.y1bd{bottom:148.476000pt;}
.y1e6{bottom:148.481333pt;}
.y178{bottom:148.560000pt;}
.y8e{bottom:148.561333pt;}
.y236{bottom:148.814667pt;}
.y31{bottom:150.258667pt;}
.y11b{bottom:152.851261pt;}
.y110{bottom:154.785333pt;}
.y59{bottom:157.982667pt;}
.ybc{bottom:158.956000pt;}
.y26e{bottom:158.997333pt;}
.y235{bottom:160.769333pt;}
.y1bc{bottom:164.416000pt;}
.y1e5{bottom:164.421333pt;}
.y8d{bottom:164.501333pt;}
.ye3{bottom:164.910667pt;}
.y30{bottom:166.200000pt;}
.y10f{bottom:170.725333pt;}
.y26d{bottom:170.953333pt;}
.y234{bottom:172.725333pt;}
.y58{bottom:173.924000pt;}
.ybb{bottom:174.896000pt;}
.y1bb{bottom:180.357333pt;}
.y1e4{bottom:180.361333pt;}
.y8c{bottom:180.441333pt;}
.ye2{bottom:180.850667pt;}
.y2f{bottom:182.140000pt;}
.y26c{bottom:182.908000pt;}
.y233{bottom:184.680000pt;}
.y10e{bottom:186.665333pt;}
.y26b{bottom:194.862667pt;}
.yba{bottom:194.936000pt;}
.y57{bottom:194.944000pt;}
.y1ba{bottom:196.297333pt;}
.y1e3{bottom:196.301333pt;}
.y8b{bottom:196.381333pt;}
.ye1{bottom:196.790667pt;}
.y232{bottom:196.888000pt;}
.y2e{bottom:198.080000pt;}
.y10d{bottom:202.605333pt;}
.y26a{bottom:206.818667pt;}
.y231{bottom:208.842667pt;}
.y1b9{bottom:212.237333pt;}
.y1e2{bottom:212.241333pt;}
.y8a{bottom:212.321333pt;}
.ye0{bottom:212.730667pt;}
.y2d{bottom:214.020000pt;}
.y56{bottom:216.605333pt;}
.y10c{bottom:218.546667pt;}
.y269{bottom:218.773333pt;}
.yb9{bottom:219.336000pt;}
.y230{bottom:220.798667pt;}
.y1b8{bottom:228.177333pt;}
.y1e1{bottom:228.181333pt;}
.y177{bottom:228.261333pt;}
.y89{bottom:228.262667pt;}
.ydf{bottom:228.672000pt;}
.y2c{bottom:229.960000pt;}
.y268{bottom:230.728000pt;}
.y22f{bottom:232.753333pt;}
.y10b{bottom:234.486667pt;}
.yb8{bottom:235.276000pt;}
.y267{bottom:242.684000pt;}
.y55{bottom:243.689333pt;}
.y1b7{bottom:244.117333pt;}
.y1e0{bottom:244.122667pt;}
.y88{bottom:244.202667pt;}
.y176{bottom:244.376000pt;}
.yde{bottom:244.612000pt;}
.y22e{bottom:244.961333pt;}
.y2b{bottom:245.904000pt;}
.y10a{bottom:250.426667pt;}
.yb7{bottom:251.132000pt;}
.y266{bottom:254.638667pt;}
.y22d{bottom:256.917333pt;}
.y54{bottom:259.630667pt;}
.y1df{bottom:260.062667pt;}
.y87{bottom:260.142667pt;}
.y175{bottom:260.316000pt;}
.ydd{bottom:260.552000pt;}
.y2a{bottom:261.844000pt;}
.y1b6{bottom:264.157333pt;}
.y109{bottom:266.022667pt;}
.y265{bottom:266.593333pt;}
.yb6{bottom:267.072000pt;}
.y22c{bottom:268.872000pt;}
.y53{bottom:275.570667pt;}
.y1de{bottom:276.002667pt;}
.y150{bottom:276.082667pt;}
.y174{bottom:276.257333pt;}
.ydc{bottom:276.492000pt;}
.y29{bottom:277.784000pt;}
.y264{bottom:278.549333pt;}
.y22b{bottom:280.826667pt;}
.y108{bottom:281.964000pt;}
.yb5{bottom:283.013333pt;}
.y86{bottom:283.164000pt;}
.y1b5{bottom:288.557333pt;}
.y263{bottom:290.504000pt;}
.y52{bottom:291.510667pt;}
.y1dd{bottom:291.942667pt;}
.y14f{bottom:292.022667pt;}
.y173{bottom:292.197333pt;}
.ydb{bottom:292.432000pt;}
.y22a{bottom:293.034667pt;}
.y28{bottom:293.724000pt;}
.y107{bottom:297.904000pt;}
.yb4{bottom:298.953333pt;}
.y262{bottom:302.460000pt;}
.y1b4{bottom:304.497333pt;}
.y229{bottom:304.990667pt;}
.y51{bottom:307.450667pt;}
.y1dc{bottom:307.882667pt;}
.y14e{bottom:307.964000pt;}
.y172{bottom:308.137333pt;}
.yda{bottom:308.373333pt;}
.y27{bottom:309.665333pt;}
.y106{bottom:313.844000pt;}
.y261{bottom:314.414667pt;}
.yb3{bottom:314.893333pt;}
.y85{bottom:315.105333pt;}
.y228{bottom:316.945333pt;}
.y1b3{bottom:320.437333pt;}
.y50{bottom:323.646667pt;}
.y1db{bottom:323.822667pt;}
.y14d{bottom:323.904000pt;}
.y171{bottom:324.077333pt;}
.yd9{bottom:324.313333pt;}
.y26{bottom:325.605333pt;}
.y260{bottom:326.369333pt;}
.y227{bottom:328.901333pt;}
.y105{bottom:329.784000pt;}
.yb2{bottom:330.833333pt;}
.y84{bottom:331.045333pt;}
.y1b2{bottom:336.377333pt;}
.y25f{bottom:338.325333pt;}
.y4f{bottom:339.588000pt;}
.y1da{bottom:339.764000pt;}
.y14c{bottom:339.844000pt;}
.y170{bottom:340.017333pt;}
.yd8{bottom:340.253333pt;}
.y226{bottom:340.856000pt;}
.y25{bottom:341.545333pt;}
.y104{bottom:345.724000pt;}
.yb1{bottom:346.773333pt;}
.y83{bottom:346.986667pt;}
.y25e{bottom:350.280000pt;}
.y1b1{bottom:352.318667pt;}
.y225{bottom:353.064000pt;}
.y4e{bottom:355.528000pt;}
.y1d9{bottom:355.704000pt;}
.y14b{bottom:355.784000pt;}
.y16f{bottom:355.958667pt;}
.yd7{bottom:356.602667pt;}
.y24{bottom:357.485333pt;}
.y103{bottom:361.664000pt;}
.y25d{bottom:362.234667pt;}
.yb0{bottom:362.713333pt;}
.y82{bottom:362.926667pt;}
.y224{bottom:365.018667pt;}
.y1b0{bottom:368.258667pt;}
.y4d{bottom:371.468000pt;}
.y1d8{bottom:371.644000pt;}
.y16e{bottom:372.072000pt;}
.yd6{bottom:372.542667pt;}
.y23{bottom:373.425333pt;}
.y25c{bottom:374.190667pt;}
.y14a{bottom:375.913333pt;}
.y223{bottom:376.974667pt;}
.y102{bottom:377.605333pt;}
.yaf{bottom:378.654667pt;}
.y81{bottom:379.694667pt;}
.y1af{bottom:384.198667pt;}
.y25b{bottom:386.145333pt;}
.y4c{bottom:387.408000pt;}
.y1d7{bottom:387.584000pt;}
.y16d{bottom:388.013333pt;}
.yd5{bottom:388.482667pt;}
.y222{bottom:388.929333pt;}
.y22{bottom:389.365333pt;}
.y101{bottom:393.545333pt;}
.yae{bottom:394.594667pt;}
.y80{bottom:395.634667pt;}
.y25a{bottom:398.101333pt;}
.y1ae{bottom:400.138667pt;}
.y149{bottom:400.832000pt;}
.y221{bottom:401.137333pt;}
.y4b{bottom:403.348000pt;}
.y1d6{bottom:403.524000pt;}
.y16c{bottom:403.953333pt;}
.yd4{bottom:404.424000pt;}
.y21{bottom:405.306667pt;}
.y100{bottom:409.485333pt;}
.y259{bottom:410.056000pt;}
.yad{bottom:410.534667pt;}
.y7f{bottom:411.574667pt;}
.y220{bottom:413.093333pt;}
.y1ad{bottom:416.078667pt;}
.y148{bottom:416.772000pt;}
.y4a{bottom:419.288000pt;}
.y1d5{bottom:419.465333pt;}
.y16b{bottom:419.893333pt;}
.yd3{bottom:420.364000pt;}
.y20{bottom:421.246667pt;}
.y258{bottom:422.010667pt;}
.y21f{bottom:425.048000pt;}
.yff{bottom:425.425333pt;}
.yac{bottom:426.390667pt;}
.y7e{bottom:427.514667pt;}
.y1ac{bottom:431.934667pt;}
.y147{bottom:432.712000pt;}
.y257{bottom:433.966667pt;}
.y49{bottom:435.229333pt;}
.y1d4{bottom:435.405333pt;}
.y16a{bottom:435.833333pt;}
.yd2{bottom:436.304000pt;}
.y21e{bottom:437.002667pt;}
.y1f{bottom:437.186667pt;}
.yfe{bottom:441.022667pt;}
.yab{bottom:442.330667pt;}
.y7d{bottom:443.454667pt;}
.y256{bottom:445.921333pt;}
.y1ab{bottom:447.874667pt;}
.y21d{bottom:449.212000pt;}
.y48{bottom:451.169333pt;}
.y169{bottom:451.948000pt;}
.yd1{bottom:452.244000pt;}
.y146{bottom:452.845333pt;}
.y1e{bottom:453.126667pt;}
.y1d3{bottom:455.449333pt;}
.yfd{bottom:456.962667pt;}
.y255{bottom:457.876000pt;}
.yaa{bottom:458.270667pt;}
.y7c{bottom:459.396000pt;}
.y21c{bottom:461.166667pt;}
.y1aa{bottom:463.816000pt;}
.y47{bottom:467.109333pt;}
.y168{bottom:467.888000pt;}
.yd0{bottom:468.184000pt;}
.y1d{bottom:469.066667pt;}
.y254{bottom:469.832000pt;}
.yfc{bottom:472.902667pt;}
.y21b{bottom:473.121333pt;}
.ya9{bottom:474.210667pt;}
.y7b{bottom:475.336000pt;}
.y145{bottom:477.764000pt;}
.y1a9{bottom:479.756000pt;}
.y1d2{bottom:479.877333pt;}
.y253{bottom:481.786667pt;}
.y46{bottom:483.049333pt;}
.y167{bottom:483.828000pt;}
.ycf{bottom:484.125333pt;}
.y21a{bottom:485.329333pt;}
.yfb{bottom:488.842667pt;}
.y1c{bottom:489.212000pt;}
.ya8{bottom:490.150667pt;}
.y7a{bottom:491.276000pt;}
.y144{bottom:493.704000pt;}
.y252{bottom:493.742667pt;}
.y1a8{bottom:495.696000pt;}
.y1d1{bottom:495.817333pt;}
.y219{bottom:497.285333pt;}
.y45{bottom:498.989333pt;}
.y166{bottom:499.769333pt;}
.yce{bottom:500.065333pt;}
.yfa{bottom:504.782667pt;}
.y251{bottom:505.697333pt;}
.ya7{bottom:506.092000pt;}
.y79{bottom:507.216000pt;}
.y218{bottom:509.240000pt;}
.y143{bottom:509.644000pt;}
.y1a7{bottom:511.636000pt;}
.y1d0{bottom:511.757333pt;}
.y44{bottom:514.929333pt;}
.y165{bottom:515.709333pt;}
.ycd{bottom:516.005333pt;}
.y250{bottom:517.652000pt;}
.y1b{bottom:517.840000pt;}
.yf9{bottom:520.724000pt;}
.y217{bottom:521.196000pt;}
.ya6{bottom:522.032000pt;}
.y78{bottom:523.156000pt;}
.y142{bottom:525.584000pt;}
.y1a6{bottom:527.576000pt;}
.y1cf{bottom:527.698667pt;}
.y24f{bottom:529.608000pt;}
.y43{bottom:530.870667pt;}
.y1a{bottom:531.122667pt;}
.y164{bottom:531.649333pt;}
.ycc{bottom:531.945333pt;}
.y216{bottom:533.150667pt;}
.yf8{bottom:536.664000pt;}
.ya5{bottom:537.972000pt;}
.y77{bottom:539.096000pt;}
.y141{bottom:541.524000pt;}
.y24e{bottom:541.562667pt;}
.y1a5{bottom:543.516000pt;}
.y1ce{bottom:543.638667pt;}
.y19{bottom:544.410667pt;}
.y215{bottom:545.358667pt;}
.y42{bottom:546.810667pt;}
.y163{bottom:547.589333pt;}
.ycb{bottom:547.885333pt;}
.yf7{bottom:552.604000pt;}
.y24d{bottom:553.517333pt;}
.ya4{bottom:553.912000pt;}
.y76{bottom:555.037333pt;}
.y214{bottom:557.313333pt;}
.y140{bottom:557.464000pt;}
.y18{bottom:557.693333pt;}
.y1a4{bottom:559.457333pt;}
.y1cd{bottom:559.578667pt;}
.y41{bottom:562.750667pt;}
.y162{bottom:563.529333pt;}
.yca{bottom:563.825333pt;}
.y24c{bottom:565.473333pt;}
.yf6{bottom:568.544000pt;}
.y213{bottom:569.269333pt;}
.ya3{bottom:569.852000pt;}
.y17{bottom:570.977333pt;}
.y13f{bottom:573.405333pt;}
.y1a3{bottom:575.397333pt;}
.y1cc{bottom:575.438667pt;}
.y24b{bottom:577.428000pt;}
.y75{bottom:578.058667pt;}
.y40{bottom:578.690667pt;}
.y161{bottom:579.469333pt;}
.yc9{bottom:579.766667pt;}
.y212{bottom:581.224000pt;}
.y16{bottom:584.260000pt;}
.yf5{bottom:584.484000pt;}
.ya2{bottom:585.792000pt;}
.y13e{bottom:589.345333pt;}
.y24a{bottom:589.384000pt;}
.y1a2{bottom:591.337333pt;}
.y1cb{bottom:591.378667pt;}
.y211{bottom:593.180000pt;}
.y3f{bottom:594.630667pt;}
.y160{bottom:595.410667pt;}
.yc8{bottom:595.706667pt;}
.y15{bottom:597.544000pt;}
.yf4{bottom:600.424000pt;}
.y249{bottom:601.338667pt;}
.y13d{bottom:605.285333pt;}
.y210{bottom:605.388000pt;}
.ya1{bottom:605.833333pt;}
.y1a1{bottom:607.277333pt;}
.y1ca{bottom:607.320000pt;}
.y74{bottom:610.000000pt;}
.y3e{bottom:610.570667pt;}
.y14{bottom:610.828000pt;}
.yc7{bottom:611.646667pt;}
.y248{bottom:613.293333pt;}
.y15f{bottom:616.145333pt;}
.yf3{bottom:616.365333pt;}
.y20f{bottom:617.342667pt;}
.y13c{bottom:621.225333pt;}
.y1a0{bottom:623.217333pt;}
.y1c9{bottom:623.260000pt;}
.y13{bottom:624.110667pt;}
.y247{bottom:625.249333pt;}
.y73{bottom:625.940000pt;}
.y3d{bottom:626.512000pt;}
.yc6{bottom:627.586667pt;}
.y20e{bottom:629.297333pt;}
.ya0{bottom:630.232000pt;}
.yf2{bottom:632.305333pt;}
.y13b{bottom:637.165333pt;}
.y246{bottom:637.204000pt;}
.y12{bottom:637.394667pt;}
.y19f{bottom:639.157333pt;}
.y1c8{bottom:639.200000pt;}
.y20d{bottom:641.506667pt;}
.y72{bottom:641.880000pt;}
.y15e{bottom:642.533333pt;}
.y3c{bottom:642.708000pt;}
.yc5{bottom:643.936000pt;}
.y9f{bottom:646.173333pt;}
.y245{bottom:649.158667pt;}
.y11{bottom:650.678667pt;}
.yf1{bottom:652.085333pt;}
.y20c{bottom:653.461333pt;}
.y19e{bottom:655.013333pt;}
.y1c7{bottom:655.060000pt;}
.y71{bottom:657.820000pt;}
.y15d{bottom:658.473333pt;}
.y3b{bottom:658.648000pt;}
.yc4{bottom:659.877333pt;}
.y12f{bottom:660.017333pt;}
.y244{bottom:661.114667pt;}
.y9e{bottom:662.113333pt;}
.y10{bottom:663.961333pt;}
.y20b{bottom:665.416000pt;}
.y19d{bottom:670.953333pt;}
.y1c6{bottom:671.000000pt;}
.y243{bottom:673.069333pt;}
.y70{bottom:673.761333pt;}
.y15c{bottom:674.413333pt;}
.y3a{bottom:674.588000pt;}
.yf0{bottom:674.932000pt;}
.yc3{bottom:675.817333pt;}
.y12e{bottom:675.957333pt;}
.yf{bottom:677.245333pt;}
.y20a{bottom:677.372000pt;}
.y9d{bottom:678.053333pt;}
.y242{bottom:685.025333pt;}
.y19c{bottom:686.894667pt;}
.y1c5{bottom:686.941333pt;}
.y209{bottom:689.326667pt;}
.y6f{bottom:689.701333pt;}
.y15b{bottom:690.354667pt;}
.y39{bottom:690.528000pt;}
.ye{bottom:690.529333pt;}
.yef{bottom:690.872000pt;}
.yc2{bottom:691.757333pt;}
.y9c{bottom:693.993333pt;}
.y125{bottom:695.085333pt;}
.y241{bottom:696.980000pt;}
.y208{bottom:701.281333pt;}
.y19b{bottom:702.834667pt;}
.yd{bottom:703.812000pt;}
.y6e{bottom:705.641333pt;}
.y15a{bottom:706.294667pt;}
.y38{bottom:706.469333pt;}
.yee{bottom:706.812000pt;}
.y1c4{bottom:706.985333pt;}
.yc1{bottom:707.697333pt;}
.y122{bottom:708.854371pt;}
.y240{bottom:708.934667pt;}
.y9b{bottom:709.933333pt;}
.y130{bottom:710.567527pt;}
.y207{bottom:713.489333pt;}
.yc{bottom:717.096000pt;}
.y19a{bottom:718.774667pt;}
.y23f{bottom:720.890667pt;}
.y6d{bottom:721.581333pt;}
.y159{bottom:722.234667pt;}
.y37{bottom:722.409333pt;}
.yed{bottom:722.752000pt;}
.y206{bottom:725.445333pt;}
.y9a{bottom:725.873333pt;}
.yb{bottom:730.380000pt;}
.y1c3{bottom:731.413333pt;}
.y23e{bottom:732.845333pt;}
.yc0{bottom:734.293333pt;}
.y199{bottom:734.714667pt;}
.y205{bottom:737.400000pt;}
.y6c{bottom:737.521333pt;}
.y158{bottom:738.174667pt;}
.y36{bottom:738.349333pt;}
.yec{bottom:738.692000pt;}
.ya{bottom:743.662667pt;}
.y23d{bottom:744.800000pt;}
.y99{bottom:745.914667pt;}
.y1c2{bottom:747.353333pt;}
.ybf{bottom:750.233333pt;}
.y198{bottom:750.654667pt;}
.y6b{bottom:753.461333pt;}
.y157{bottom:754.114667pt;}
.y35{bottom:754.289333pt;}
.yeb{bottom:754.633333pt;}
.y23c{bottom:756.756000pt;}
.y9{bottom:756.946667pt;}
.y204{bottom:759.858667pt;}
.y1c1{bottom:763.293333pt;}
.y197{bottom:766.594667pt;}
.y23b{bottom:768.710667pt;}
.y6a{bottom:769.402667pt;}
.y156{bottom:770.054667pt;}
.y8{bottom:770.229333pt;}
.y98{bottom:770.313333pt;}
.yea{bottom:770.573333pt;}
.y1c0{bottom:779.233333pt;}
.y23a{bottom:780.665333pt;}
.y196{bottom:782.536000pt;}
.y69{bottom:785.342667pt;}
.y155{bottom:785.996000pt;}
.y97{bottom:786.254667pt;}
.ye9{bottom:786.513333pt;}
.y203{bottom:788.636000pt;}
.y239{bottom:792.621333pt;}
.y1bf{bottom:795.094667pt;}
.y121{bottom:800.678667pt;}
.y68{bottom:801.282667pt;}
.y154{bottom:801.936000pt;}
.y96{bottom:802.194667pt;}
.ye8{bottom:802.453333pt;}
.y195{bottom:802.576000pt;}
.y202{bottom:804.576000pt;}
.y114{bottom:807.850667pt;}
.y7{bottom:808.033333pt;}
.y1be{bottom:811.034667pt;}
.y67{bottom:817.222667pt;}
.y153{bottom:817.876000pt;}
.y95{bottom:818.134667pt;}
.ye7{bottom:818.393333pt;}
.y201{bottom:824.766667pt;}
.y194{bottom:826.974667pt;}
.y6{bottom:829.292000pt;}
.y66{bottom:833.162667pt;}
.y152{bottom:833.990667pt;}
.y94{bottom:834.074667pt;}
.ye6{bottom:834.333333pt;}
.y1f4{bottom:836.954667pt;}
.y193{bottom:842.914667pt;}
.y5{bottom:845.730667pt;}
.y65{bottom:849.104000pt;}
.y151{bottom:849.930667pt;}
.y93{bottom:850.014667pt;}
.ye5{bottom:850.274667pt;}
.y1eb{bottom:852.894667pt;}
.y4{bottom:857.545333pt;}
.y64{bottom:865.870667pt;}
.ye4{bottom:866.214667pt;}
.y192{bottom:871.076000pt;}
.y1e7{bottom:874.244980pt;}
.y92{bottom:881.810667pt;}
.y63{bottom:881.812000pt;}
.y188{bottom:883.264000pt;}
.y3{bottom:886.636000pt;}
.y62{bottom:897.752000pt;}
.y17e{bottom:899.204000pt;}
.y61{bottom:913.692000pt;}
.y17a{bottom:914.731954pt;}
.y2{bottom:923.830667pt;}
.y60{bottom:929.632000pt;}
.y5f{bottom:945.572000pt;}
.y1{bottom:961.024000pt;}
.y5e{bottom:961.512000pt;}
.y112{bottom:970.250425pt;}
.y91{bottom:977.452000pt;}
.y5d{bottom:977.453333pt;}
.hc{height:13.615604pt;}
.h17{height:15.206540pt;}
.h1f{height:15.251485pt;}
.h13{height:17.107358pt;}
.h1c{height:17.157921pt;}
.h16{height:19.008175pt;}
.h25{height:20.970180pt;}
.ha{height:21.933807pt;}
.h18{height:22.809810pt;}
.h1e{height:22.877228pt;}
.h22{height:23.591452pt;}
.h1a{height:26.611445pt;}
.h20{height:26.690099pt;}
.hd{height:27.929980pt;}
.h28{height:29.159939pt;}
.h7{height:29.244954pt;}
.h29{height:29.452954pt;}
.h27{height:29.458287pt;}
.h3{height:29.925069pt;}
.h24{height:31.455270pt;}
.h6{height:33.187635pt;}
.h5{height:33.426739pt;}
.h11{height:34.912475pt;}
.h9{height:36.449833pt;}
.h4{height:36.556100pt;}
.h26{height:36.697815pt;}
.h14{height:40.435443pt;}
.hf{height:41.894970pt;}
.h8{height:44.869197pt;}
.hb{height:44.874530pt;}
.h10{height:48.877465pt;}
.h2{height:51.039735pt;}
.h19{height:72.727129pt;}
.h1b{height:72.942083pt;}
.h12{height:74.435729pt;}
.h1{height:87.734861pt;}
.h15{height:98.415360pt;}
.h1d{height:98.706240pt;}
.h21{height:100.292438pt;}
.h23{height:135.717120pt;}
.he{height:180.760320pt;}
.h0{height:1056.000000pt;}
.w1{width:105.058567pt;}
.w6{width:146.775265pt;}
.w5{width:148.479618pt;}
.w3{width:148.557075pt;}
.w4{width:164.025600pt;}
.w7{width:164.510400pt;}
.w8{width:201.810101pt;}
.w9{width:226.195200pt;}
.w2{width:301.267200pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x21{left:5.854803pt;}
.x2a{left:7.183621pt;}
.x1f{left:8.105598pt;}
.x27{left:9.843206pt;}
.x18{left:13.155334pt;}
.x2b{left:15.144096pt;}
.x16{left:18.025821pt;}
.x3e{left:20.822525pt;}
.x20{left:22.362157pt;}
.x28{left:24.329260pt;}
.x3d{left:33.451757pt;}
.x1c{left:36.058294pt;}
.x12{left:40.436753pt;}
.x15{left:43.700481pt;}
.x3a{left:48.927278pt;}
.x1d{left:53.745722pt;}
.x9{left:65.285333pt;}
.x49{left:70.598667pt;}
.x3b{left:72.954235pt;}
.x41{left:74.682115pt;}
.xb{left:75.912000pt;}
.x29{left:76.977158pt;}
.x8{left:78.569333pt;}
.x14{left:79.698667pt;}
.x39{left:86.107858pt;}
.x26{left:88.003925pt;}
.x23{left:89.070457pt;}
.x31{left:90.060305pt;}
.x2{left:104.229333pt;}
.x2d{left:105.478585pt;}
.x11{left:107.431986pt;}
.x1e{left:108.853767pt;}
.x17{left:113.276467pt;}
.x1{left:115.977333pt;}
.x1b{left:119.774667pt;}
.x3c{left:121.001866pt;}
.x4b{left:122.690667pt;}
.x2c{left:140.166667pt;}
.x45{left:145.028822pt;}
.x25{left:148.488000pt;}
.x4a{left:155.689333pt;}
.x37{left:159.426667pt;}
.x3f{left:171.009333pt;}
.xa{left:180.826667pt;}
.x48{left:194.701333pt;}
.x13{left:217.076510pt;}
.x4{left:223.897333pt;}
.x5{left:225.778667pt;}
.x2e{left:234.441333pt;}
.x24{left:236.002667pt;}
.x22{left:248.965245pt;}
.x19{left:256.194279pt;}
.x1a{left:274.822635pt;}
.x7{left:280.625333pt;}
.x42{left:294.904000pt;}
.x3{left:305.266667pt;}
.x2f{left:308.950667pt;}
.x6{left:311.644000pt;}
.x40{left:315.726525pt;}
.x4c{left:374.940000pt;}
.x43{left:400.256000pt;}
.x32{left:403.597333pt;}
.xc{left:415.970667pt;}
.x30{left:418.741430pt;}
.xf{left:426.597333pt;}
.xd{left:429.253333pt;}
.x4d{left:440.316000pt;}
.x56{left:447.404000pt;}
.x33{left:478.478667pt;}
.x38{left:481.054667pt;}
.x51{left:491.346667pt;}
.x10{left:505.462667pt;}
.x46{left:524.521333pt;}
.xe{left:526.078667pt;}
.x4e{left:531.465333pt;}
.x50{left:540.085333pt;}
.x44{left:545.343858pt;}
.x35{left:572.753333pt;}
.x52{left:576.472000pt;}
.x57{left:583.874667pt;}
.x34{left:587.897430pt;}
.x53{left:609.202667pt;}
.x54{left:612.656000pt;}
.x47{left:630.246667pt;}
.x36{left:647.262667pt;}
.x55{left:693.848000pt;}
.x4f{left:721.490667pt;}
}




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