
    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_55bfcb6bf4586b49293620c2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.940000;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_aec43c84a8719a7bcaad43f2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.678741;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_52d265fe1251ca2e944b8ee9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.931000;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_92c0f958ea1fa9a875cbde18.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.467989;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_9fb23b6c5fec600838a8e455.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.920000;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_4d05f06ce1777efdd0f60bdf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914000;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_d4e326568ee7db761aea6784.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.680000;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_71ebd0c19f8cf25099438492.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.667000;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;}
.m4{transform:matrix(0.244535,0.000000,-0.051988,0.244535,0,0);-ms-transform:matrix(0.244535,0.000000,-0.051988,0.244535,0,0);-webkit-transform:matrix(0.244535,0.000000,-0.051988,0.244535,0,0);}
.m6{transform:matrix(0.244537,0.000000,-0.051976,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051976,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051976,0.244537,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);}
.m9{transform:matrix(0.265646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265646,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283333,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.285295,0.000000,-0.051969,0.244539,0,0);-ms-transform:matrix(0.285295,0.000000,-0.051969,0.244539,0,0);-webkit-transform:matrix(0.285295,0.000000,-0.051969,0.244539,0,0);}
.m5{transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291667,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.004781px;}
.ls8{letter-spacing:0.005378px;}
.ls19{letter-spacing:3.585600px;}
.ls17{letter-spacing:3.968064px;}
.ls16{letter-spacing:4.780800px;}
.ls24{letter-spacing:4.960080px;}
.ls1a{letter-spacing:5.976000px;}
.ls2f{letter-spacing:15.159917px;}
.ls3f{letter-spacing:15.212506px;}
.ls2e{letter-spacing:15.528038px;}
.ls4a{letter-spacing:16.965864px;}
.ls48{letter-spacing:17.013672px;}
.ls35{letter-spacing:17.037576px;}
.ls3{letter-spacing:17.913658px;}
.ls2d{letter-spacing:17.961466px;}
.ls5{letter-spacing:18.001505px;}
.ls4d{letter-spacing:18.131184px;}
.ls11{letter-spacing:18.286560px;}
.ls37{letter-spacing:18.382176px;}
.ls3b{letter-spacing:18.465840px;}
.ls1{letter-spacing:18.654682px;}
.ls2{letter-spacing:18.659462px;}
.ls4{letter-spacing:18.664243px;}
.ls1c{letter-spacing:18.669024px;}
.ls22{letter-spacing:18.686952px;}
.ls6{letter-spacing:18.689940px;}
.ls2a{letter-spacing:18.812448px;}
.lsf{letter-spacing:18.888941px;}
.ls10{letter-spacing:18.899698px;}
.ls15{letter-spacing:19.278576px;}
.ls42{letter-spacing:19.517616px;}
.ls7{letter-spacing:20.152865px;}
.ls2c{letter-spacing:20.240712px;}
.ls4f{letter-spacing:20.294496px;}
.lsc{letter-spacing:21.051058px;}
.lsd{letter-spacing:21.061814px;}
.ls9{letter-spacing:21.395275px;}
.ls39{letter-spacing:22.033512px;}
.ls46{letter-spacing:23.031504px;}
.ls1e{letter-spacing:23.348232px;}
.ls25{letter-spacing:23.372136px;}
.ls3c{letter-spacing:23.856192px;}
.ls26{letter-spacing:24.143040px;}
.ls47{letter-spacing:24.453792px;}
.ls31{letter-spacing:24.941434px;}
.lse{letter-spacing:24.950398px;}
.lsa{letter-spacing:24.966533px;}
.ls45{letter-spacing:26.162928px;}
.ls44{letter-spacing:26.563320px;}
.ls1d{letter-spacing:27.125064px;}
.ls4e{letter-spacing:27.202752px;}
.ls1f{letter-spacing:27.633024px;}
.ls33{letter-spacing:28.971648px;}
.ls52{letter-spacing:29.019456px;}
.ls3d{letter-spacing:29.473632px;}
.ls14{letter-spacing:29.826216px;}
.ls13{letter-spacing:29.832192px;}
.ls38{letter-spacing:30.585168px;}
.ls20{letter-spacing:30.609072px;}
.lsb{letter-spacing:30.807475px;}
.ls49{letter-spacing:31.158864px;}
.ls36{letter-spacing:31.350096px;}
.ls41{letter-spacing:31.864032px;}
.ls4c{letter-spacing:31.870008px;}
.ls50{letter-spacing:32.049288px;}
.ls29{letter-spacing:32.903856px;}
.ls28{letter-spacing:32.915808px;}
.ls2b{letter-spacing:34.427736px;}
.ls32{letter-spacing:34.785101px;}
.ls40{letter-spacing:34.804224px;}
.ls21{letter-spacing:34.810200px;}
.ls43{letter-spacing:35.031312px;}
.ls34{letter-spacing:36.848016px;}
.ls4b{letter-spacing:37.672704px;}
.ls51{letter-spacing:37.965528px;}
.ls27{letter-spacing:38.999376px;}
.ls0{letter-spacing:39.691994px;}
.ls3a{letter-spacing:45.465408px;}
.ls12{letter-spacing:46.702440px;}
.ls3e{letter-spacing:47.688480px;}
.ls30{letter-spacing:47.889274px;}
.ls23{letter-spacing:51.901560px;}
.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;}
}
.ws62{word-spacing:-59.760000px;}
.ws5{word-spacing:-47.808000px;}
.ws90{word-spacing:-40.923648px;}
.ws70{word-spacing:-39.083040px;}
.ws1{word-spacing:-25.398000px;}
.ws53{word-spacing:-19.900080px;}
.ws7{word-spacing:-15.920064px;}
.ws22{word-spacing:-14.940000px;}
.ws17{word-spacing:-13.446000px;}
.ws6{word-spacing:-11.952000px;}
.ws40{word-spacing:0.000000px;}
.wsda{word-spacing:2.031840px;}
.ws1e{word-spacing:2.091600px;}
.wsd9{word-spacing:2.151360px;}
.ws76{word-spacing:2.270880px;}
.wsff{word-spacing:2.342592px;}
.wsb3{word-spacing:2.450160px;}
.ws71{word-spacing:2.569680px;}
.ws25{word-spacing:2.629440px;}
.wsdc{word-spacing:2.808720px;}
.wsb4{word-spacing:3.047760px;}
.wsbb{word-spacing:3.107520px;}
.ws101{word-spacing:3.155328px;}
.wse1{word-spacing:3.167280px;}
.ws88{word-spacing:3.203136px;}
.wsa7{word-spacing:3.227040px;}
.wsb9{word-spacing:3.250944px;}
.ws6b{word-spacing:3.286800px;}
.ws92{word-spacing:3.298752px;}
.ws21{word-spacing:3.346560px;}
.ws9d{word-spacing:3.436200px;}
.ws9c{word-spacing:3.466080px;}
.wsab{word-spacing:3.525840px;}
.ws87{word-spacing:3.585600px;}
.ws2b{word-spacing:3.645360px;}
.ws5d{word-spacing:3.764880px;}
.ws7d{word-spacing:3.866472px;}
.ws7c{word-spacing:3.884400px;}
.ws104{word-spacing:4.015872px;}
.ws72{word-spacing:4.242960px;}
.ws107{word-spacing:4.254912px;}
.ws34{word-spacing:4.332600px;}
.ws35{word-spacing:4.362480px;}
.ws9{word-spacing:4.560883px;}
.ws8{word-spacing:4.571640px;}
.wsbf{word-spacing:4.601520px;}
.ws8f{word-spacing:4.637376px;}
.ws61{word-spacing:4.661280px;}
.ws4b{word-spacing:4.780800px;}
.wsc0{word-spacing:4.840560px;}
.wsbe{word-spacing:4.960080px;}
.ws5e{word-spacing:5.079600px;}
.wsa{word-spacing:5.217048px;}
.wsb{word-spacing:5.270832px;}
.ws80{word-spacing:5.294736px;}
.ws38{word-spacing:5.318640px;}
.ws81{word-spacing:5.378400px;}
.ws16{word-spacing:5.432184px;}
.wsc2{word-spacing:5.438160px;}
.ws39{word-spacing:5.557680px;}
.wsc7{word-spacing:5.617440px;}
.ws96{word-spacing:5.677200px;}
.ws56{word-spacing:5.736960px;}
.wsd2{word-spacing:5.796720px;}
.wsf7{word-spacing:5.832576px;}
.ws3c{word-spacing:5.916240px;}
.ws4{word-spacing:5.976000px;}
.ws85{word-spacing:6.023808px;}
.wsf5{word-spacing:6.167232px;}
.wsfb{word-spacing:6.262848px;}
.ws59{word-spacing:6.274800px;}
.wsf2{word-spacing:6.310656px;}
.ws73{word-spacing:6.454080px;}
.wsfa{word-spacing:6.501888px;}
.wsaa{word-spacing:6.573600px;}
.ws105{word-spacing:6.597504px;}
.wsfd{word-spacing:6.645312px;}
.ws0{word-spacing:6.693120px;}
.ws42{word-spacing:6.721805px;}
.wsc{word-spacing:6.723000px;}
.wsef{word-spacing:6.740928px;}
.wsb7{word-spacing:6.788736px;}
.ws43{word-spacing:6.842709px;}
.wsd3{word-spacing:6.872400px;}
.ws4f{word-spacing:6.932160px;}
.wsf6{word-spacing:7.027776px;}
.wsa6{word-spacing:7.087536px;}
.wsa5{word-spacing:7.111440px;}
.wsfc{word-spacing:7.123392px;}
.wsd4{word-spacing:7.290720px;}
.wse3{word-spacing:7.350480px;}
.wsb2{word-spacing:7.410240px;}
.ws18{word-spacing:7.529760px;}
.ws12{word-spacing:7.583544px;}
.ws13{word-spacing:7.621193px;}
.wsb1{word-spacing:7.709040px;}
.ws102{word-spacing:7.744896px;}
.ws6d{word-spacing:7.948080px;}
.wse{word-spacing:7.954654px;}
.wsd{word-spacing:7.960032px;}
.wsc9{word-spacing:8.007840px;}
.wsc6{word-spacing:8.067600px;}
.ws109{word-spacing:8.079552px;}
.ws51{word-spacing:8.187120px;}
.ws1f{word-spacing:8.366400px;}
.ws19{word-spacing:8.426160px;}
.ws2d{word-spacing:8.545680px;}
.ws9e{word-spacing:8.605440px;}
.ws1d{word-spacing:8.724960px;}
.wsac{word-spacing:8.904240px;}
.ws84{word-spacing:8.964000px;}
.wsfe{word-spacing:9.035712px;}
.ws3f{word-spacing:9.143280px;}
.ws108{word-spacing:9.179136px;}
.ws5c{word-spacing:9.203040px;}
.ws44{word-spacing:9.262800px;}
.wsf8{word-spacing:9.370368px;}
.ws55{word-spacing:9.501840px;}
.wsca{word-spacing:9.507816px;}
.ws1b{word-spacing:9.543672px;}
.ws1c{word-spacing:9.561600px;}
.wseb{word-spacing:9.609408px;}
.ws3{word-spacing:9.711000px;}
.ws106{word-spacing:9.896256px;}
.wscd{word-spacing:9.920160px;}
.wsb0{word-spacing:10.039680px;}
.wsaf{word-spacing:10.099440px;}
.ws2e{word-spacing:10.218960px;}
.wsf4{word-spacing:10.326528px;}
.wsc5{word-spacing:10.338480px;}
.ws36{word-spacing:10.517760px;}
.ws103{word-spacing:10.661184px;}
.ws68{word-spacing:10.756800px;}
.ws14{word-spacing:10.864368px;}
.ws1a{word-spacing:10.876320px;}
.ws30{word-spacing:10.936080px;}
.ws7e{word-spacing:11.055600px;}
.ws10b{word-spacing:11.091456px;}
.ws20{word-spacing:11.115360px;}
.ws3d{word-spacing:11.175120px;}
.wsc4{word-spacing:11.216952px;}
.ws3a{word-spacing:11.234880px;}
.wsec{word-spacing:11.282688px;}
.wsa1{word-spacing:11.294640px;}
.ws46{word-spacing:11.354400px;}
.ws67{word-spacing:11.473920px;}
.ws15{word-spacing:11.504398px;}
.wsf{word-spacing:11.509776px;}
.ws10{word-spacing:11.525911px;}
.ws50{word-spacing:11.533680px;}
.wsea{word-spacing:11.569536px;}
.ws9f{word-spacing:11.593440px;}
.wsf1{word-spacing:11.617344px;}
.wsc3{word-spacing:11.653200px;}
.wsd5{word-spacing:11.952000px;}
.ws29{word-spacing:12.191040px;}
.wse2{word-spacing:12.250800px;}
.wsed{word-spacing:12.334464px;}
.ws47{word-spacing:12.693024px;}
.ws48{word-spacing:12.728880px;}
.ws2c{word-spacing:12.788640px;}
.ws8b{word-spacing:12.908160px;}
.ws8a{word-spacing:13.003776px;}
.ws54{word-spacing:13.045608px;}
.ws52{word-spacing:13.087440px;}
.ws97{word-spacing:13.266720px;}
.wsd1{word-spacing:13.326480px;}
.ws23{word-spacing:13.804560px;}
.wse9{word-spacing:13.924080px;}
.wsbd{word-spacing:14.031648px;}
.wsa0{word-spacing:14.043600px;}
.wse7{word-spacing:14.049576px;}
.wse8{word-spacing:14.079456px;}
.ws4a{word-spacing:14.103360px;}
.ws9a{word-spacing:14.163120px;}
.wsa4{word-spacing:14.222880px;}
.ws2{word-spacing:14.324472px;}
.ws83{word-spacing:14.461920px;}
.ws3b{word-spacing:14.521680px;}
.ws98{word-spacing:14.581440px;}
.ws6c{word-spacing:14.820480px;}
.ws2f{word-spacing:14.880240px;}
.ws10a{word-spacing:15.250752px;}
.ws32{word-spacing:15.477840px;}
.wsf3{word-spacing:15.633216px;}
.ws4d{word-spacing:15.657120px;}
.ws4e{word-spacing:15.663096px;}
.wsd6{word-spacing:15.776640px;}
.ws82{word-spacing:15.836400px;}
.wsad{word-spacing:15.896160px;}
.wsae{word-spacing:15.955920px;}
.ws77{word-spacing:16.135200px;}
.wsd8{word-spacing:16.194960px;}
.wsd7{word-spacing:16.212888px;}
.wsdb{word-spacing:16.254720px;}
.ws3e{word-spacing:16.374240px;}
.ws99{word-spacing:16.434000px;}
.ws37{word-spacing:16.553520px;}
.ws5f{word-spacing:16.732800px;}
.wse0{word-spacing:16.876224px;}
.wsdf{word-spacing:16.912080px;}
.ws91{word-spacing:16.971840px;}
.wsee{word-spacing:17.067456px;}
.wse4{word-spacing:17.091360px;}
.wsf0{word-spacing:17.210880px;}
.ws11{word-spacing:17.372232px;}
.wsb6{word-spacing:17.497728px;}
.ws57{word-spacing:17.509680px;}
.wsb5{word-spacing:17.545536px;}
.ws7b{word-spacing:17.569440px;}
.ws78{word-spacing:17.933976px;}
.ws79{word-spacing:17.963856px;}
.ws7a{word-spacing:17.987760px;}
.ws45{word-spacing:18.406080px;}
.wscf{word-spacing:18.585360px;}
.wse5{word-spacing:18.645120px;}
.ws8c{word-spacing:18.740736px;}
.wsba{word-spacing:18.788544px;}
.ws100{word-spacing:18.836352px;}
.wscb{word-spacing:19.242720px;}
.ws7f{word-spacing:19.481760px;}
.wscc{word-spacing:19.601280px;}
.ws63{word-spacing:19.661040px;}
.ws5a{word-spacing:19.840320px;}
.wsbc{word-spacing:19.888128px;}
.wsc1{word-spacing:20.079360px;}
.wsdd{word-spacing:20.139120px;}
.ws28{word-spacing:20.198880px;}
.ws6a{word-spacing:20.258640px;}
.wsf9{word-spacing:20.700864px;}
.ws4c{word-spacing:21.095280px;}
.ws93{word-spacing:21.872160px;}
.ws94{word-spacing:21.902040px;}
.ws95{word-spacing:21.931920px;}
.wsa3{word-spacing:21.991680px;}
.ws6e{word-spacing:22.230720px;}
.ws69{word-spacing:22.290480px;}
.wsde{word-spacing:22.708800px;}
.ws8d{word-spacing:22.804416px;}
.ws8e{word-spacing:22.852224px;}
.wsc8{word-spacing:22.888080px;}
.wse6{word-spacing:23.007600px;}
.ws41{word-spacing:23.234688px;}
.wsce{word-spacing:23.366160px;}
.ws9b{word-spacing:23.784480px;}
.ws74{word-spacing:24.053400px;}
.ws75{word-spacing:24.083280px;}
.wsd0{word-spacing:24.382080px;}
.wsa2{word-spacing:24.680880px;}
.ws49{word-spacing:24.740640px;}
.ws2a{word-spacing:24.919920px;}
.ws60{word-spacing:27.549360px;}
.ws86{word-spacing:28.684800px;}
.ws6f{word-spacing:29.640960px;}
.wsa9{word-spacing:30.519432px;}
.wsa8{word-spacing:30.537360px;}
.ws26{word-spacing:31.756464px;}
.ws27{word-spacing:31.792320px;}
.ws58{word-spacing:34.840080px;}
.wsb8{word-spacing:35.712576px;}
.ws89{word-spacing:35.903808px;}
.ws33{word-spacing:35.975520px;}
.ws64{word-spacing:36.991440px;}
.ws31{word-spacing:48.047040px;}
.ws5b{word-spacing:49.182480px;}
.ws66{word-spacing:65.616480px;}
.ws24{word-spacing:69.739920px;}
.ws65{word-spacing:115.994160px;}
._b{margin-left:-1303.222176px;}
._10{margin-left:-1217.119968px;}
._15{margin-left:-1045.776096px;}
._d{margin-left:-1007.003808px;}
._e{margin-left:-991.131552px;}
._c{margin-left:-721.088064px;}
._8{margin-left:-28.971648px;}
._7{margin-left:-24.149016px;}
._0{width:4.828608px;}
._4{width:5.976000px;}
._2{width:19.362240px;}
._3{width:20.405650px;}
._9{width:23.904000px;}
._1{width:30.376008px;}
._5{width:35.186688px;}
._6{width:40.110912px;}
._a{width:50.772096px;}
._12{width:64.253952px;}
._11{width:94.898880px;}
._14{width:115.456320px;}
._13{width:148.099622px;}
._f{width:155.854080px;}
._17{width:250.992000px;}
._16{width:795.955392px;}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:17.928000px;}
.fs4{font-size:29.880000px;}
.fs9{font-size:35.856000px;}
.fsb{font-size:36.656747px;}
.fs6{font-size:40.338000px;}
.fs3{font-size:44.820000px;}
.fs0{font-size:47.808000px;}
.fs7{font-size:48.876495px;}
.fs5{font-size:53.784000px;}
.fs8{font-size:59.760000px;}
.fsa{font-size:61.094995px;}
.fs2{font-size:77.688000px;}
.fs1{font-size:101.592000px;}
.y0{bottom:0.000000px;}
.y44{bottom:46.404000px;}
.y43{bottom:61.344000px;}
.y40{bottom:94.212000px;}
.y42{bottom:109.152000px;}
.y76{bottom:112.140000px;}
.y3f{bottom:112.513500px;}
.y41{bottom:124.092000px;}
.yca{bottom:127.080000px;}
.y75{bottom:130.068000px;}
.y3e{bottom:130.815000px;}
.yc9{bottom:142.020000px;}
.y99{bottom:147.996000px;}
.y3c{bottom:149.116500px;}
.y3d{bottom:154.719000px;}
.yc8{bottom:156.960000px;}
.y28{bottom:162.940620px;}
.y74{bottom:165.924000px;}
.y3b{bottom:167.418000px;}
.yc7{bottom:171.900000px;}
.y27{bottom:181.343712px;}
.y73{bottom:183.852000px;}
.y3a{bottom:185.719500px;}
.yc6{bottom:186.840000px;}
.y26{bottom:199.746804px;}
.y98{bottom:201.780000px;}
.y39{bottom:204.021000px;}
.yc4{bottom:214.105500px;}
.yc3{bottom:216.720000px;}
.y25{bottom:218.149896px;}
.y72{bottom:219.708000px;}
.yc1{bottom:219.709500px;}
.yc5{bottom:221.202000px;}
.y38{bottom:222.322500px;}
.yc2{bottom:231.660000px;}
.y24{bottom:236.552988px;}
.y71{bottom:237.636000px;}
.yc0{bottom:237.637500px;}
.y37{bottom:240.624000px;}
.yf3{bottom:246.600000px;}
.y23{bottom:254.956080px;}
.y70{bottom:255.564000px;}
.ybf{bottom:255.565500px;}
.y36{bottom:258.925500px;}
.yf2{bottom:261.540000px;}
.y22{bottom:273.359172px;}
.y97{bottom:273.492000px;}
.ybe{bottom:273.493500px;}
.yf1{bottom:276.480000px;}
.y35{bottom:277.227000px;}
.y6e{bottom:288.432000px;}
.y6d{bottom:291.420000px;}
.ybd{bottom:291.421500px;}
.y21{bottom:291.762264px;}
.y34{bottom:295.528500px;}
.y6f{bottom:297.022500px;}
.yfa{bottom:306.360000px;}
.y96{bottom:309.348000px;}
.ybc{bottom:309.349500px;}
.y20{bottom:310.165356px;}
.y33{bottom:313.830000px;}
.y31{bottom:313.834620px;}
.y32{bottom:319.432500px;}
.yf9{bottom:321.300000px;}
.y95{bottom:327.276000px;}
.y6c{bottom:327.277500px;}
.y1f{bottom:328.568448px;}
.y30{bottom:332.136120px;}
.yf8{bottom:336.240000px;}
.y6b{bottom:345.205500px;}
.y1e{bottom:346.971540px;}
.y2f{bottom:350.437620px;}
.y94{bottom:363.132000px;}
.y6a{bottom:363.133500px;}
.y1d{bottom:365.374632px;}
.yf7{bottom:366.120000px;}
.y2e{bottom:368.739120px;}
.yf0{bottom:372.097500px;}
.yf6{bottom:381.060000px;}
.y69{bottom:381.061500px;}
.y1c{bottom:383.777724px;}
.y2d{bottom:387.040620px;}
.yef{bottom:390.025500px;}
.y68{bottom:398.989500px;}
.y1b{bottom:402.180816px;}
.y93{bottom:402.575400px;}
.y2c{bottom:405.342120px;}
.yee{bottom:407.953500px;}
.yf5{bottom:410.940000px;}
.y67{bottom:416.917500px;}
.y1a{bottom:420.583908px;}
.y2b{bottom:423.643620px;}
.yf4{bottom:425.880000px;}
.y66{bottom:434.845500px;}
.y2a{bottom:441.945120px;}
.yed{bottom:443.809500px;}
.y65{bottom:452.773500px;}
.y19{bottom:456.915000px;}
.ye7{bottom:458.749500px;}
.y92{bottom:459.945000px;}
.y29{bottom:460.246620px;}
.y64{bottom:470.701500px;}
.ye6{bottom:476.677500px;}
.y91{bottom:477.873000px;}
.y63{bottom:488.629500px;}
.ye5{bottom:494.605500px;}
.y90{bottom:495.801000px;}
.y62{bottom:503.569500px;}
.y61{bottom:506.557500px;}
.y18{bottom:511.039500px;}
.ye4{bottom:512.533500px;}
.y8f{bottom:513.729000px;}
.y60{bottom:524.485500px;}
.ye3{bottom:530.461500px;}
.y8e{bottom:531.657000px;}
.y5f{bottom:542.413500px;}
.y17{bottom:542.414396px;}
.yb4{bottom:545.401164px;}
.yb5{bottom:545.401500px;}
.ye2{bottom:548.389500px;}
.y8d{bottom:549.585000px;}
.y5e{bottom:557.353500px;}
.y16{bottom:558.848098px;}
.y5d{bottom:560.341500px;}
.yb3{bottom:563.660832px;}
.ye1{bottom:566.317500px;}
.y8c{bottom:567.513000px;}
.y5c{bottom:575.281500px;}
.y15{bottom:575.281799px;}
.y5b{bottom:578.269500px;}
.yb2{bottom:581.920500px;}
.ye0{bottom:584.245500px;}
.y8b{bottom:585.441000px;}
.y14{bottom:591.715500px;}
.y13{bottom:591.718189px;}
.y5a{bottom:596.197500px;}
.yb0{bottom:600.181332px;}
.yb1{bottom:600.181500px;}
.ydf{bottom:602.173500px;}
.y8a{bottom:603.369000px;}
.y12{bottom:608.151890px;}
.ybb{bottom:609.643500px;}
.y59{bottom:614.125500px;}
.yad{bottom:615.453000px;}
.yaf{bottom:618.441000px;}
.yac{bottom:618.443328px;}
.yde{bottom:620.101500px;}
.y89{bottom:621.297000px;}
.yae{bottom:624.043201px;}
.y11{bottom:624.585592px;}
.yba{bottom:627.571500px;}
.y58{bottom:632.053500px;}
.yab{bottom:636.702996px;}
.ydd{bottom:638.029500px;}
.y119{bottom:638.039366px;}
.y10{bottom:641.019293px;}
.yb9{bottom:645.499500px;}
.y57{bottom:649.981500px;}
.y138{bottom:652.979366px;}
.y118{bottom:653.461032px;}
.yaa{bottom:654.962664px;}
.ydc{bottom:655.957500px;}
.y88{bottom:657.153000px;}
.yf{bottom:657.452994px;}
.yb8{bottom:663.427500px;}
.y56{bottom:667.909500px;}
.y137{bottom:667.919366px;}
.y117{bottom:668.882698px;}
.ydb{bottom:673.885500px;}
.ye{bottom:673.886695px;}
.yb7{bottom:681.355500px;}
.y136{bottom:682.859366px;}
.y116{bottom:684.304363px;}
.y55{bottom:685.837500px;}
.yd{bottom:690.320396px;}
.ya9{bottom:691.150332px;}
.yda{bottom:691.813500px;}
.y87{bottom:696.594000px;}
.y135{bottom:697.799366px;}
.yb6{bottom:699.283500px;}
.y115{bottom:699.726029px;}
.y54{bottom:703.765500px;}
.yc{bottom:706.754098px;}
.ya8{bottom:709.410000px;}
.yd9{bottom:709.741500px;}
.y134{bottom:712.739366px;}
.y86{bottom:714.522000px;}
.y114{bottom:715.147694px;}
.y53{bottom:721.693500px;}
.yd8{bottom:727.669500px;}
.y133{bottom:727.679366px;}
.y113{bottom:730.569360px;}
.y84{bottom:732.450000px;}
.ya7{bottom:735.139500px;}
.y85{bottom:738.052500px;}
.yb{bottom:739.621500px;}
.y132{bottom:742.619366px;}
.y9f{bottom:745.597500px;}
.y112{bottom:745.991026px;}
.ya6{bottom:750.079500px;}
.y83{bottom:750.378000px;}
.y52{bottom:757.549500px;}
.y131{bottom:757.559366px;}
.y9e{bottom:760.537500px;}
.y111{bottom:761.412691px;}
.yd7{bottom:763.525500px;}
.ya5{bottom:765.019500px;}
.y82{bottom:768.306000px;}
.y130{bottom:772.499366px;}
.y51{bottom:775.477500px;}
.y9d{bottom:775.479000px;}
.y110{bottom:776.834357px;}
.ya4{bottom:779.959500px;}
.yd6{bottom:781.453500px;}
.y12f{bottom:787.439366px;}
.y9c{bottom:790.419000px;}
.y10f{bottom:792.256022px;}
.y50{bottom:793.405500px;}
.ya3{bottom:794.899500px;}
.yd5{bottom:799.381500px;}
.y12e{bottom:802.379366px;}
.y81{bottom:804.162000px;}
.y9b{bottom:805.359000px;}
.y10e{bottom:807.677688px;}
.ya{bottom:808.345500px;}
.ya2{bottom:809.839500px;}
.yec{bottom:811.333500px;}
.yd4{bottom:817.309500px;}
.y12d{bottom:817.319366px;}
.y9a{bottom:820.299000px;}
.y80{bottom:822.090000px;}
.y10d{bottom:823.099354px;}
.ya1{bottom:824.779500px;}
.y4f{bottom:829.261500px;}
.y9{bottom:832.249500px;}
.y12c{bottom:832.259366px;}
.yd3{bottom:835.237500px;}
.y8{bottom:836.731500px;}
.y10c{bottom:838.521019px;}
.ya0{bottom:839.719500px;}
.y7{bottom:847.189500px;}
.y12b{bottom:847.199366px;}
.y6{bottom:851.671500px;}
.yd2{bottom:853.165500px;}
.y10b{bottom:853.942685px;}
.y7f{bottom:861.532500px;}
.y12a{bottom:862.139366px;}
.y4e{bottom:865.117500px;}
.y10a{bottom:869.364350px;}
.yd1{bottom:871.093500px;}
.y4{bottom:874.081500px;}
.y129{bottom:877.079366px;}
.y7e{bottom:879.460500px;}
.y5{bottom:880.804500px;}
.y4d{bottom:883.045500px;}
.y109{bottom:884.786016px;}
.yd0{bottom:889.021500px;}
.y128{bottom:892.019366px;}
.y7d{bottom:897.388500px;}
.y108{bottom:900.207682px;}
.y4c{bottom:900.973500px;}
.ycf{bottom:906.949500px;}
.y127{bottom:906.959366px;}
.y3{bottom:914.418753px;}
.y7c{bottom:915.316500px;}
.y107{bottom:915.629347px;}
.yeb{bottom:918.901500px;}
.y126{bottom:921.899366px;}
.yce{bottom:924.877500px;}
.y106{bottom:931.051013px;}
.y7b{bottom:933.244500px;}
.y4b{bottom:936.829500px;}
.y125{bottom:936.839366px;}
.ycd{bottom:942.805500px;}
.y2{bottom:944.299500px;}
.y105{bottom:946.472678px;}
.y7a{bottom:951.172500px;}
.y124{bottom:951.779366px;}
.yea{bottom:954.757500px;}
.ycc{bottom:960.733500px;}
.y104{bottom:961.894344px;}
.y123{bottom:966.719366px;}
.y4a{bottom:972.685500px;}
.y103{bottom:977.316010px;}
.y122{bottom:981.659366px;}
.y79{bottom:987.028500px;}
.ye9{bottom:990.613500px;}
.y102{bottom:992.737675px;}
.ycb{bottom:996.589500px;}
.y121{bottom:996.599366px;}
.y78{bottom:1004.956500px;}
.y101{bottom:1008.159341px;}
.ye8{bottom:1008.541500px;}
.y120{bottom:1011.539366px;}
.y100{bottom:1023.581006px;}
.y49{bottom:1026.469500px;}
.y11f{bottom:1026.479366px;}
.yff{bottom:1039.002672px;}
.y11e{bottom:1041.419366px;}
.y1{bottom:1044.397500px;}
.yfe{bottom:1054.424338px;}
.y11d{bottom:1056.359366px;}
.y48{bottom:1062.325500px;}
.yfd{bottom:1069.846003px;}
.y11c{bottom:1071.299366px;}
.y47{bottom:1080.253500px;}
.yfc{bottom:1085.267669px;}
.y11b{bottom:1086.239366px;}
.y77{bottom:1098.180000px;}
.y46{bottom:1098.181500px;}
.yfb{bottom:1100.689334px;}
.y11a{bottom:1101.179366px;}
.y45{bottom:1134.039000px;}
.h16{height:13.051584px;}
.h15{height:21.244680px;}
.h6{height:21.752640px;}
.he{height:25.493616px;}
.h11{height:26.103168px;}
.h12{height:26.686112px;}
.h9{height:29.366064px;}
.h14{height:32.135940px;}
.h5{height:32.628960px;}
.ha{height:34.278336px;}
.hf{height:34.751188px;}
.h1{height:34.804224px;}
.hb{height:35.582088px;}
.h7{height:37.756368px;}
.h8{height:39.154752px;}
.hc{height:41.951520px;}
.h13{height:42.847920px;}
.hd{height:43.505280px;}
.h10{height:44.477156px;}
.h4{height:56.556864px;}
.h3{height:72.841464px;}
.h2{height:73.958976px;}
.h0{height:1155.000000px;}
.w0{width:828.000000px;}
.x0{left:0.000000px;}
.xd{left:38.856000px;}
.x30{left:45.210000px;}
.x1f{left:46.326000px;}
.x41{left:48.693000px;}
.x1a{left:50.808000px;}
.xe{left:52.302000px;}
.x13{left:53.796000px;}
.x20{left:57.843000px;}
.x3c{left:62.670000px;}
.x3d{left:63.715800px;}
.x21{left:76.234500px;}
.x3e{left:81.840000px;}
.x2{left:85.638000px;}
.x11{left:87.792000px;}
.x22{left:91.860000px;}
.x12{left:95.695500px;}
.x31{left:106.603500px;}
.x24{left:109.152000px;}
.x32{left:112.956000px;}
.x33{left:115.174500px;}
.x8{left:116.344500px;}
.x9{left:123.814500px;}
.x1b{left:127.060500px;}
.x23{left:132.361500px;}
.xa{left:135.103500px;}
.xb{left:143.038500px;}
.x56{left:162.865476px;}
.x34{left:169.258500px;}
.x4b{left:171.070500px;}
.x35{left:177.097500px;}
.x4{left:222.381000px;}
.x4a{left:223.555500px;}
.x4e{left:235.500000px;}
.x1c{left:238.996500px;}
.x38{left:242.191500px;}
.x4f{left:245.337000px;}
.x39{left:247.165500px;}
.x3f{left:252.916500px;}
.x40{left:260.889000px;}
.x3a{left:270.201000px;}
.xc{left:272.397386px;}
.x3b{left:281.014500px;}
.x1{left:292.470000px;}
.x42{left:297.411000px;}
.x43{left:307.248000px;}
.x3{left:310.250293px;}
.x57{left:361.560000px;}
.x1d{left:380.280000px;}
.x4c{left:384.469500px;}
.x5{left:387.468000px;}
.x4d{left:392.442000px;}
.x6{left:397.258500px;}
.x15{left:433.272000px;}
.x54{left:439.249500px;}
.x28{left:440.742000px;}
.x29{left:444.790500px;}
.x14{left:448.212000px;}
.x2a{left:452.260500px;}
.x55{left:457.691436px;}
.x36{left:475.395000px;}
.x37{left:481.747500px;}
.x52{left:487.945500px;}
.x1e{left:494.317500px;}
.x53{left:495.918000px;}
.x46{left:516.570000px;}
.x25{left:518.856000px;}
.x47{left:524.542500px;}
.x26{left:526.828500px;}
.x27{left:528.694500px;}
.x48{left:543.565500px;}
.x49{left:551.538000px;}
.x2b{left:553.194000px;}
.x2c{left:562.407000px;}
.x7{left:601.299000px;}
.x50{left:614.017500px;}
.x51{left:621.990000px;}
.x44{left:640.149000px;}
.x45{left:648.121500px;}
.xf{left:652.672500px;}
.x18{left:654.724500px;}
.x10{left:659.898000px;}
.x19{left:687.478500px;}
.x2e{left:730.192500px;}
.x16{left:747.043500px;}
.x2d{left:755.440500px;}
.x17{left:766.152000px;}
.x2f{left:773.905500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.004250pt;}
.ls8{letter-spacing:0.004781pt;}
.ls19{letter-spacing:3.187200pt;}
.ls17{letter-spacing:3.527168pt;}
.ls16{letter-spacing:4.249600pt;}
.ls24{letter-spacing:4.408960pt;}
.ls1a{letter-spacing:5.312000pt;}
.ls2f{letter-spacing:13.475482pt;}
.ls3f{letter-spacing:13.522227pt;}
.ls2e{letter-spacing:13.802701pt;}
.ls4a{letter-spacing:15.080768pt;}
.ls48{letter-spacing:15.123264pt;}
.ls35{letter-spacing:15.144512pt;}
.ls3{letter-spacing:15.923251pt;}
.ls2d{letter-spacing:15.965747pt;}
.ls5{letter-spacing:16.001338pt;}
.ls4d{letter-spacing:16.116608pt;}
.ls11{letter-spacing:16.254720pt;}
.ls37{letter-spacing:16.339712pt;}
.ls3b{letter-spacing:16.414080pt;}
.ls1{letter-spacing:16.581939pt;}
.ls2{letter-spacing:16.586189pt;}
.ls4{letter-spacing:16.590438pt;}
.ls1c{letter-spacing:16.594688pt;}
.ls22{letter-spacing:16.610624pt;}
.ls6{letter-spacing:16.613280pt;}
.ls2a{letter-spacing:16.722176pt;}
.lsf{letter-spacing:16.790170pt;}
.ls10{letter-spacing:16.799731pt;}
.ls15{letter-spacing:17.136512pt;}
.ls42{letter-spacing:17.348992pt;}
.ls7{letter-spacing:17.913658pt;}
.ls2c{letter-spacing:17.991744pt;}
.ls4f{letter-spacing:18.039552pt;}
.lsc{letter-spacing:18.712051pt;}
.lsd{letter-spacing:18.721613pt;}
.ls9{letter-spacing:19.018022pt;}
.ls39{letter-spacing:19.585344pt;}
.ls46{letter-spacing:20.472448pt;}
.ls1e{letter-spacing:20.753984pt;}
.ls25{letter-spacing:20.775232pt;}
.ls3c{letter-spacing:21.205504pt;}
.ls26{letter-spacing:21.460480pt;}
.ls47{letter-spacing:21.736704pt;}
.ls31{letter-spacing:22.170163pt;}
.lse{letter-spacing:22.178131pt;}
.lsa{letter-spacing:22.192474pt;}
.ls45{letter-spacing:23.255936pt;}
.ls44{letter-spacing:23.611840pt;}
.ls1d{letter-spacing:24.111168pt;}
.ls4e{letter-spacing:24.180224pt;}
.ls1f{letter-spacing:24.562688pt;}
.ls33{letter-spacing:25.752576pt;}
.ls52{letter-spacing:25.795072pt;}
.ls3d{letter-spacing:26.198784pt;}
.ls14{letter-spacing:26.512192pt;}
.ls13{letter-spacing:26.517504pt;}
.ls38{letter-spacing:27.186816pt;}
.ls20{letter-spacing:27.208064pt;}
.lsb{letter-spacing:27.384422pt;}
.ls49{letter-spacing:27.696768pt;}
.ls36{letter-spacing:27.866752pt;}
.ls41{letter-spacing:28.323584pt;}
.ls4c{letter-spacing:28.328896pt;}
.ls50{letter-spacing:28.488256pt;}
.ls29{letter-spacing:29.247872pt;}
.ls28{letter-spacing:29.258496pt;}
.ls2b{letter-spacing:30.602432pt;}
.ls32{letter-spacing:30.920090pt;}
.ls40{letter-spacing:30.937088pt;}
.ls21{letter-spacing:30.942400pt;}
.ls43{letter-spacing:31.138944pt;}
.ls34{letter-spacing:32.753792pt;}
.ls4b{letter-spacing:33.486848pt;}
.ls51{letter-spacing:33.747136pt;}
.ls27{letter-spacing:34.666112pt;}
.ls0{letter-spacing:35.281773pt;}
.ls3a{letter-spacing:40.413696pt;}
.ls12{letter-spacing:41.513280pt;}
.ls3e{letter-spacing:42.389760pt;}
.ls30{letter-spacing:42.568243pt;}
.ls23{letter-spacing:46.134720pt;}
.ws62{word-spacing:-53.120000pt;}
.ws5{word-spacing:-42.496000pt;}
.ws90{word-spacing:-36.376576pt;}
.ws70{word-spacing:-34.740480pt;}
.ws1{word-spacing:-22.576000pt;}
.ws53{word-spacing:-17.688960pt;}
.ws7{word-spacing:-14.151168pt;}
.ws22{word-spacing:-13.280000pt;}
.ws17{word-spacing:-11.952000pt;}
.ws6{word-spacing:-10.624000pt;}
.ws40{word-spacing:0.000000pt;}
.wsda{word-spacing:1.806080pt;}
.ws1e{word-spacing:1.859200pt;}
.wsd9{word-spacing:1.912320pt;}
.ws76{word-spacing:2.018560pt;}
.wsff{word-spacing:2.082304pt;}
.wsb3{word-spacing:2.177920pt;}
.ws71{word-spacing:2.284160pt;}
.ws25{word-spacing:2.337280pt;}
.wsdc{word-spacing:2.496640pt;}
.wsb4{word-spacing:2.709120pt;}
.wsbb{word-spacing:2.762240pt;}
.ws101{word-spacing:2.804736pt;}
.wse1{word-spacing:2.815360pt;}
.ws88{word-spacing:2.847232pt;}
.wsa7{word-spacing:2.868480pt;}
.wsb9{word-spacing:2.889728pt;}
.ws6b{word-spacing:2.921600pt;}
.ws92{word-spacing:2.932224pt;}
.ws21{word-spacing:2.974720pt;}
.ws9d{word-spacing:3.054400pt;}
.ws9c{word-spacing:3.080960pt;}
.wsab{word-spacing:3.134080pt;}
.ws87{word-spacing:3.187200pt;}
.ws2b{word-spacing:3.240320pt;}
.ws5d{word-spacing:3.346560pt;}
.ws7d{word-spacing:3.436864pt;}
.ws7c{word-spacing:3.452800pt;}
.ws104{word-spacing:3.569664pt;}
.ws72{word-spacing:3.771520pt;}
.ws107{word-spacing:3.782144pt;}
.ws34{word-spacing:3.851200pt;}
.ws35{word-spacing:3.877760pt;}
.ws9{word-spacing:4.054118pt;}
.ws8{word-spacing:4.063680pt;}
.wsbf{word-spacing:4.090240pt;}
.ws8f{word-spacing:4.122112pt;}
.ws61{word-spacing:4.143360pt;}
.ws4b{word-spacing:4.249600pt;}
.wsc0{word-spacing:4.302720pt;}
.wsbe{word-spacing:4.408960pt;}
.ws5e{word-spacing:4.515200pt;}
.wsa{word-spacing:4.637376pt;}
.wsb{word-spacing:4.685184pt;}
.ws80{word-spacing:4.706432pt;}
.ws38{word-spacing:4.727680pt;}
.ws81{word-spacing:4.780800pt;}
.ws16{word-spacing:4.828608pt;}
.wsc2{word-spacing:4.833920pt;}
.ws39{word-spacing:4.940160pt;}
.wsc7{word-spacing:4.993280pt;}
.ws96{word-spacing:5.046400pt;}
.ws56{word-spacing:5.099520pt;}
.wsd2{word-spacing:5.152640pt;}
.wsf7{word-spacing:5.184512pt;}
.ws3c{word-spacing:5.258880pt;}
.ws4{word-spacing:5.312000pt;}
.ws85{word-spacing:5.354496pt;}
.wsf5{word-spacing:5.481984pt;}
.wsfb{word-spacing:5.566976pt;}
.ws59{word-spacing:5.577600pt;}
.wsf2{word-spacing:5.609472pt;}
.ws73{word-spacing:5.736960pt;}
.wsfa{word-spacing:5.779456pt;}
.wsaa{word-spacing:5.843200pt;}
.ws105{word-spacing:5.864448pt;}
.wsfd{word-spacing:5.906944pt;}
.ws0{word-spacing:5.949440pt;}
.ws42{word-spacing:5.974938pt;}
.wsc{word-spacing:5.976000pt;}
.wsef{word-spacing:5.991936pt;}
.wsb7{word-spacing:6.034432pt;}
.ws43{word-spacing:6.082408pt;}
.wsd3{word-spacing:6.108800pt;}
.ws4f{word-spacing:6.161920pt;}
.wsf6{word-spacing:6.246912pt;}
.wsa6{word-spacing:6.300032pt;}
.wsa5{word-spacing:6.321280pt;}
.wsfc{word-spacing:6.331904pt;}
.wsd4{word-spacing:6.480640pt;}
.wse3{word-spacing:6.533760pt;}
.wsb2{word-spacing:6.586880pt;}
.ws18{word-spacing:6.693120pt;}
.ws12{word-spacing:6.740928pt;}
.ws13{word-spacing:6.774394pt;}
.wsb1{word-spacing:6.852480pt;}
.ws102{word-spacing:6.884352pt;}
.ws6d{word-spacing:7.064960pt;}
.wse{word-spacing:7.070803pt;}
.wsd{word-spacing:7.075584pt;}
.wsc9{word-spacing:7.118080pt;}
.wsc6{word-spacing:7.171200pt;}
.ws109{word-spacing:7.181824pt;}
.ws51{word-spacing:7.277440pt;}
.ws1f{word-spacing:7.436800pt;}
.ws19{word-spacing:7.489920pt;}
.ws2d{word-spacing:7.596160pt;}
.ws9e{word-spacing:7.649280pt;}
.ws1d{word-spacing:7.755520pt;}
.wsac{word-spacing:7.914880pt;}
.ws84{word-spacing:7.968000pt;}
.wsfe{word-spacing:8.031744pt;}
.ws3f{word-spacing:8.127360pt;}
.ws108{word-spacing:8.159232pt;}
.ws5c{word-spacing:8.180480pt;}
.ws44{word-spacing:8.233600pt;}
.wsf8{word-spacing:8.329216pt;}
.ws55{word-spacing:8.446080pt;}
.wsca{word-spacing:8.451392pt;}
.ws1b{word-spacing:8.483264pt;}
.ws1c{word-spacing:8.499200pt;}
.wseb{word-spacing:8.541696pt;}
.ws3{word-spacing:8.632000pt;}
.ws106{word-spacing:8.796672pt;}
.wscd{word-spacing:8.817920pt;}
.wsb0{word-spacing:8.924160pt;}
.wsaf{word-spacing:8.977280pt;}
.ws2e{word-spacing:9.083520pt;}
.wsf4{word-spacing:9.179136pt;}
.wsc5{word-spacing:9.189760pt;}
.ws36{word-spacing:9.349120pt;}
.ws103{word-spacing:9.476608pt;}
.ws68{word-spacing:9.561600pt;}
.ws14{word-spacing:9.657216pt;}
.ws1a{word-spacing:9.667840pt;}
.ws30{word-spacing:9.720960pt;}
.ws7e{word-spacing:9.827200pt;}
.ws10b{word-spacing:9.859072pt;}
.ws20{word-spacing:9.880320pt;}
.ws3d{word-spacing:9.933440pt;}
.wsc4{word-spacing:9.970624pt;}
.ws3a{word-spacing:9.986560pt;}
.wsec{word-spacing:10.029056pt;}
.wsa1{word-spacing:10.039680pt;}
.ws46{word-spacing:10.092800pt;}
.ws67{word-spacing:10.199040pt;}
.ws15{word-spacing:10.226131pt;}
.wsf{word-spacing:10.230912pt;}
.ws10{word-spacing:10.245254pt;}
.ws50{word-spacing:10.252160pt;}
.wsea{word-spacing:10.284032pt;}
.ws9f{word-spacing:10.305280pt;}
.wsf1{word-spacing:10.326528pt;}
.wsc3{word-spacing:10.358400pt;}
.wsd5{word-spacing:10.624000pt;}
.ws29{word-spacing:10.836480pt;}
.wse2{word-spacing:10.889600pt;}
.wsed{word-spacing:10.963968pt;}
.ws47{word-spacing:11.282688pt;}
.ws48{word-spacing:11.314560pt;}
.ws2c{word-spacing:11.367680pt;}
.ws8b{word-spacing:11.473920pt;}
.ws8a{word-spacing:11.558912pt;}
.ws54{word-spacing:11.596096pt;}
.ws52{word-spacing:11.633280pt;}
.ws97{word-spacing:11.792640pt;}
.wsd1{word-spacing:11.845760pt;}
.ws23{word-spacing:12.270720pt;}
.wse9{word-spacing:12.376960pt;}
.wsbd{word-spacing:12.472576pt;}
.wsa0{word-spacing:12.483200pt;}
.wse7{word-spacing:12.488512pt;}
.wse8{word-spacing:12.515072pt;}
.ws4a{word-spacing:12.536320pt;}
.ws9a{word-spacing:12.589440pt;}
.wsa4{word-spacing:12.642560pt;}
.ws2{word-spacing:12.732864pt;}
.ws83{word-spacing:12.855040pt;}
.ws3b{word-spacing:12.908160pt;}
.ws98{word-spacing:12.961280pt;}
.ws6c{word-spacing:13.173760pt;}
.ws2f{word-spacing:13.226880pt;}
.ws10a{word-spacing:13.556224pt;}
.ws32{word-spacing:13.758080pt;}
.wsf3{word-spacing:13.896192pt;}
.ws4d{word-spacing:13.917440pt;}
.ws4e{word-spacing:13.922752pt;}
.wsd6{word-spacing:14.023680pt;}
.ws82{word-spacing:14.076800pt;}
.wsad{word-spacing:14.129920pt;}
.wsae{word-spacing:14.183040pt;}
.ws77{word-spacing:14.342400pt;}
.wsd8{word-spacing:14.395520pt;}
.wsd7{word-spacing:14.411456pt;}
.wsdb{word-spacing:14.448640pt;}
.ws3e{word-spacing:14.554880pt;}
.ws99{word-spacing:14.608000pt;}
.ws37{word-spacing:14.714240pt;}
.ws5f{word-spacing:14.873600pt;}
.wse0{word-spacing:15.001088pt;}
.wsdf{word-spacing:15.032960pt;}
.ws91{word-spacing:15.086080pt;}
.wsee{word-spacing:15.171072pt;}
.wse4{word-spacing:15.192320pt;}
.wsf0{word-spacing:15.298560pt;}
.ws11{word-spacing:15.441984pt;}
.wsb6{word-spacing:15.553536pt;}
.ws57{word-spacing:15.564160pt;}
.wsb5{word-spacing:15.596032pt;}
.ws7b{word-spacing:15.617280pt;}
.ws78{word-spacing:15.941312pt;}
.ws79{word-spacing:15.967872pt;}
.ws7a{word-spacing:15.989120pt;}
.ws45{word-spacing:16.360960pt;}
.wscf{word-spacing:16.520320pt;}
.wse5{word-spacing:16.573440pt;}
.ws8c{word-spacing:16.658432pt;}
.wsba{word-spacing:16.700928pt;}
.ws100{word-spacing:16.743424pt;}
.wscb{word-spacing:17.104640pt;}
.ws7f{word-spacing:17.317120pt;}
.wscc{word-spacing:17.423360pt;}
.ws63{word-spacing:17.476480pt;}
.ws5a{word-spacing:17.635840pt;}
.wsbc{word-spacing:17.678336pt;}
.wsc1{word-spacing:17.848320pt;}
.wsdd{word-spacing:17.901440pt;}
.ws28{word-spacing:17.954560pt;}
.ws6a{word-spacing:18.007680pt;}
.wsf9{word-spacing:18.400768pt;}
.ws4c{word-spacing:18.751360pt;}
.ws93{word-spacing:19.441920pt;}
.ws94{word-spacing:19.468480pt;}
.ws95{word-spacing:19.495040pt;}
.wsa3{word-spacing:19.548160pt;}
.ws6e{word-spacing:19.760640pt;}
.ws69{word-spacing:19.813760pt;}
.wsde{word-spacing:20.185600pt;}
.ws8d{word-spacing:20.270592pt;}
.ws8e{word-spacing:20.313088pt;}
.wsc8{word-spacing:20.344960pt;}
.wse6{word-spacing:20.451200pt;}
.ws41{word-spacing:20.653056pt;}
.wsce{word-spacing:20.769920pt;}
.ws9b{word-spacing:21.141760pt;}
.ws74{word-spacing:21.380800pt;}
.ws75{word-spacing:21.407360pt;}
.wsd0{word-spacing:21.672960pt;}
.wsa2{word-spacing:21.938560pt;}
.ws49{word-spacing:21.991680pt;}
.ws2a{word-spacing:22.151040pt;}
.ws60{word-spacing:24.488320pt;}
.ws86{word-spacing:25.497600pt;}
.ws6f{word-spacing:26.347520pt;}
.wsa9{word-spacing:27.128384pt;}
.wsa8{word-spacing:27.144320pt;}
.ws26{word-spacing:28.227968pt;}
.ws27{word-spacing:28.259840pt;}
.ws58{word-spacing:30.968960pt;}
.wsb8{word-spacing:31.744512pt;}
.ws89{word-spacing:31.914496pt;}
.ws33{word-spacing:31.978240pt;}
.ws64{word-spacing:32.881280pt;}
.ws31{word-spacing:42.708480pt;}
.ws5b{word-spacing:43.717760pt;}
.ws66{word-spacing:58.325760pt;}
.ws24{word-spacing:61.991040pt;}
.ws65{word-spacing:103.105920pt;}
._b{margin-left:-1158.419712pt;}
._10{margin-left:-1081.884416pt;}
._15{margin-left:-929.578752pt;}
._d{margin-left:-895.114496pt;}
._e{margin-left:-881.005824pt;}
._c{margin-left:-640.967168pt;}
._8{margin-left:-25.752576pt;}
._7{margin-left:-21.465792pt;}
._0{width:4.292096pt;}
._4{width:5.312000pt;}
._2{width:17.210880pt;}
._3{width:18.138355pt;}
._9{width:21.248000pt;}
._1{width:27.000896pt;}
._5{width:31.277056pt;}
._6{width:35.654144pt;}
._a{width:45.130752pt;}
._12{width:57.114624pt;}
._11{width:84.354560pt;}
._14{width:102.627840pt;}
._13{width:131.644109pt;}
._f{width:138.536960pt;}
._17{width:223.104000pt;}
._16{width:707.515904pt;}
.fsc{font-size:15.936000pt;}
.fs4{font-size:26.560000pt;}
.fs9{font-size:31.872000pt;}
.fsb{font-size:32.583776pt;}
.fs6{font-size:35.856000pt;}
.fs3{font-size:39.840000pt;}
.fs0{font-size:42.496000pt;}
.fs7{font-size:43.445773pt;}
.fs5{font-size:47.808000pt;}
.fs8{font-size:53.120000pt;}
.fsa{font-size:54.306662pt;}
.fs2{font-size:69.056000pt;}
.fs1{font-size:90.304000pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:41.248000pt;}
.y43{bottom:54.528000pt;}
.y40{bottom:83.744000pt;}
.y42{bottom:97.024000pt;}
.y76{bottom:99.680000pt;}
.y3f{bottom:100.012000pt;}
.y41{bottom:110.304000pt;}
.yca{bottom:112.960000pt;}
.y75{bottom:115.616000pt;}
.y3e{bottom:116.280000pt;}
.yc9{bottom:126.240000pt;}
.y99{bottom:131.552000pt;}
.y3c{bottom:132.548000pt;}
.y3d{bottom:137.528000pt;}
.yc8{bottom:139.520000pt;}
.y28{bottom:144.836107pt;}
.y74{bottom:147.488000pt;}
.y3b{bottom:148.816000pt;}
.yc7{bottom:152.800000pt;}
.y27{bottom:161.194411pt;}
.y73{bottom:163.424000pt;}
.y3a{bottom:165.084000pt;}
.yc6{bottom:166.080000pt;}
.y26{bottom:177.552715pt;}
.y98{bottom:179.360000pt;}
.y39{bottom:181.352000pt;}
.yc4{bottom:190.316000pt;}
.yc3{bottom:192.640000pt;}
.y25{bottom:193.911019pt;}
.y72{bottom:195.296000pt;}
.yc1{bottom:195.297333pt;}
.yc5{bottom:196.624000pt;}
.y38{bottom:197.620000pt;}
.yc2{bottom:205.920000pt;}
.y24{bottom:210.269323pt;}
.y71{bottom:211.232000pt;}
.yc0{bottom:211.233333pt;}
.y37{bottom:213.888000pt;}
.yf3{bottom:219.200000pt;}
.y23{bottom:226.627627pt;}
.y70{bottom:227.168000pt;}
.ybf{bottom:227.169333pt;}
.y36{bottom:230.156000pt;}
.yf2{bottom:232.480000pt;}
.y22{bottom:242.985931pt;}
.y97{bottom:243.104000pt;}
.ybe{bottom:243.105333pt;}
.yf1{bottom:245.760000pt;}
.y35{bottom:246.424000pt;}
.y6e{bottom:256.384000pt;}
.y6d{bottom:259.040000pt;}
.ybd{bottom:259.041333pt;}
.y21{bottom:259.344235pt;}
.y34{bottom:262.692000pt;}
.y6f{bottom:264.020000pt;}
.yfa{bottom:272.320000pt;}
.y96{bottom:274.976000pt;}
.ybc{bottom:274.977333pt;}
.y20{bottom:275.702539pt;}
.y33{bottom:278.960000pt;}
.y31{bottom:278.964107pt;}
.y32{bottom:283.940000pt;}
.yf9{bottom:285.600000pt;}
.y95{bottom:290.912000pt;}
.y6c{bottom:290.913333pt;}
.y1f{bottom:292.060843pt;}
.y30{bottom:295.232107pt;}
.yf8{bottom:298.880000pt;}
.y6b{bottom:306.849333pt;}
.y1e{bottom:308.419147pt;}
.y2f{bottom:311.500107pt;}
.y94{bottom:322.784000pt;}
.y6a{bottom:322.785333pt;}
.y1d{bottom:324.777451pt;}
.yf7{bottom:325.440000pt;}
.y2e{bottom:327.768107pt;}
.yf0{bottom:330.753333pt;}
.yf6{bottom:338.720000pt;}
.y69{bottom:338.721333pt;}
.y1c{bottom:341.135755pt;}
.y2d{bottom:344.036107pt;}
.yef{bottom:346.689333pt;}
.y68{bottom:354.657333pt;}
.y1b{bottom:357.494059pt;}
.y93{bottom:357.844800pt;}
.y2c{bottom:360.304107pt;}
.yee{bottom:362.625333pt;}
.yf5{bottom:365.280000pt;}
.y67{bottom:370.593333pt;}
.y1a{bottom:373.852363pt;}
.y2b{bottom:376.572107pt;}
.yf4{bottom:378.560000pt;}
.y66{bottom:386.529333pt;}
.y2a{bottom:392.840107pt;}
.yed{bottom:394.497333pt;}
.y65{bottom:402.465333pt;}
.y19{bottom:406.146667pt;}
.ye7{bottom:407.777333pt;}
.y92{bottom:408.840000pt;}
.y29{bottom:409.108107pt;}
.y64{bottom:418.401333pt;}
.ye6{bottom:423.713333pt;}
.y91{bottom:424.776000pt;}
.y63{bottom:434.337333pt;}
.ye5{bottom:439.649333pt;}
.y90{bottom:440.712000pt;}
.y62{bottom:447.617333pt;}
.y61{bottom:450.273333pt;}
.y18{bottom:454.257333pt;}
.ye4{bottom:455.585333pt;}
.y8f{bottom:456.648000pt;}
.y60{bottom:466.209333pt;}
.ye3{bottom:471.521333pt;}
.y8e{bottom:472.584000pt;}
.y5f{bottom:482.145333pt;}
.y17{bottom:482.146130pt;}
.yb4{bottom:484.801035pt;}
.yb5{bottom:484.801333pt;}
.ye2{bottom:487.457333pt;}
.y8d{bottom:488.520000pt;}
.y5e{bottom:495.425333pt;}
.y16{bottom:496.753865pt;}
.y5d{bottom:498.081333pt;}
.yb3{bottom:501.031851pt;}
.ye1{bottom:503.393333pt;}
.y8c{bottom:504.456000pt;}
.y5c{bottom:511.361333pt;}
.y15{bottom:511.361599pt;}
.y5b{bottom:514.017333pt;}
.yb2{bottom:517.262667pt;}
.ye0{bottom:519.329333pt;}
.y8b{bottom:520.392000pt;}
.y14{bottom:525.969333pt;}
.y13{bottom:525.971724pt;}
.y5a{bottom:529.953333pt;}
.yb0{bottom:533.494517pt;}
.yb1{bottom:533.494667pt;}
.ydf{bottom:535.265333pt;}
.y8a{bottom:536.328000pt;}
.y12{bottom:540.579458pt;}
.ybb{bottom:541.905333pt;}
.y59{bottom:545.889333pt;}
.yad{bottom:547.069333pt;}
.yaf{bottom:549.725333pt;}
.yac{bottom:549.727403pt;}
.yde{bottom:551.201333pt;}
.y89{bottom:552.264000pt;}
.yae{bottom:554.705068pt;}
.y11{bottom:555.187193pt;}
.yba{bottom:557.841333pt;}
.y58{bottom:561.825333pt;}
.yab{bottom:565.958219pt;}
.ydd{bottom:567.137333pt;}
.y119{bottom:567.146103pt;}
.y10{bottom:569.794927pt;}
.yb9{bottom:573.777333pt;}
.y57{bottom:577.761333pt;}
.y138{bottom:580.426103pt;}
.y118{bottom:580.854251pt;}
.yaa{bottom:582.189035pt;}
.ydc{bottom:583.073333pt;}
.y88{bottom:584.136000pt;}
.yf{bottom:584.402661pt;}
.yb8{bottom:589.713333pt;}
.y56{bottom:593.697333pt;}
.y137{bottom:593.706103pt;}
.y117{bottom:594.562398pt;}
.ydb{bottom:599.009333pt;}
.ye{bottom:599.010396pt;}
.yb7{bottom:605.649333pt;}
.y136{bottom:606.986103pt;}
.y116{bottom:608.270545pt;}
.y55{bottom:609.633333pt;}
.yd{bottom:613.618130pt;}
.ya9{bottom:614.355851pt;}
.yda{bottom:614.945333pt;}
.y87{bottom:619.194667pt;}
.y135{bottom:620.266103pt;}
.yb6{bottom:621.585333pt;}
.y115{bottom:621.978692pt;}
.y54{bottom:625.569333pt;}
.yc{bottom:628.225865pt;}
.ya8{bottom:630.586667pt;}
.yd9{bottom:630.881333pt;}
.y134{bottom:633.546103pt;}
.y86{bottom:635.130667pt;}
.y114{bottom:635.686839pt;}
.y53{bottom:641.505333pt;}
.yd8{bottom:646.817333pt;}
.y133{bottom:646.826103pt;}
.y113{bottom:649.394987pt;}
.y84{bottom:651.066667pt;}
.ya7{bottom:653.457333pt;}
.y85{bottom:656.046667pt;}
.yb{bottom:657.441333pt;}
.y132{bottom:660.106103pt;}
.y9f{bottom:662.753333pt;}
.y112{bottom:663.103134pt;}
.ya6{bottom:666.737333pt;}
.y83{bottom:667.002667pt;}
.y52{bottom:673.377333pt;}
.y131{bottom:673.386103pt;}
.y9e{bottom:676.033333pt;}
.y111{bottom:676.811281pt;}
.yd7{bottom:678.689333pt;}
.ya5{bottom:680.017333pt;}
.y82{bottom:682.938667pt;}
.y130{bottom:686.666103pt;}
.y51{bottom:689.313333pt;}
.y9d{bottom:689.314667pt;}
.y110{bottom:690.519428pt;}
.ya4{bottom:693.297333pt;}
.yd6{bottom:694.625333pt;}
.y12f{bottom:699.946103pt;}
.y9c{bottom:702.594667pt;}
.y10f{bottom:704.227575pt;}
.y50{bottom:705.249333pt;}
.ya3{bottom:706.577333pt;}
.yd5{bottom:710.561333pt;}
.y12e{bottom:713.226103pt;}
.y81{bottom:714.810667pt;}
.y9b{bottom:715.874667pt;}
.y10e{bottom:717.935723pt;}
.ya{bottom:718.529333pt;}
.ya2{bottom:719.857333pt;}
.yec{bottom:721.185333pt;}
.yd4{bottom:726.497333pt;}
.y12d{bottom:726.506103pt;}
.y9a{bottom:729.154667pt;}
.y80{bottom:730.746667pt;}
.y10d{bottom:731.643870pt;}
.ya1{bottom:733.137333pt;}
.y4f{bottom:737.121333pt;}
.y9{bottom:739.777333pt;}
.y12c{bottom:739.786103pt;}
.yd3{bottom:742.433333pt;}
.y8{bottom:743.761333pt;}
.y10c{bottom:745.352017pt;}
.ya0{bottom:746.417333pt;}
.y7{bottom:753.057333pt;}
.y12b{bottom:753.066103pt;}
.y6{bottom:757.041333pt;}
.yd2{bottom:758.369333pt;}
.y10b{bottom:759.060164pt;}
.y7f{bottom:765.806667pt;}
.y12a{bottom:766.346103pt;}
.y4e{bottom:768.993333pt;}
.y10a{bottom:772.768311pt;}
.yd1{bottom:774.305333pt;}
.y4{bottom:776.961333pt;}
.y129{bottom:779.626103pt;}
.y7e{bottom:781.742667pt;}
.y5{bottom:782.937333pt;}
.y4d{bottom:784.929333pt;}
.y109{bottom:786.476459pt;}
.yd0{bottom:790.241333pt;}
.y128{bottom:792.906103pt;}
.y7d{bottom:797.678667pt;}
.y108{bottom:800.184606pt;}
.y4c{bottom:800.865333pt;}
.ycf{bottom:806.177333pt;}
.y127{bottom:806.186103pt;}
.y3{bottom:812.816669pt;}
.y7c{bottom:813.614667pt;}
.y107{bottom:813.892753pt;}
.yeb{bottom:816.801333pt;}
.y126{bottom:819.466103pt;}
.yce{bottom:822.113333pt;}
.y106{bottom:827.600900pt;}
.y7b{bottom:829.550667pt;}
.y4b{bottom:832.737333pt;}
.y125{bottom:832.746103pt;}
.ycd{bottom:838.049333pt;}
.y2{bottom:839.377333pt;}
.y105{bottom:841.309047pt;}
.y7a{bottom:845.486667pt;}
.y124{bottom:846.026103pt;}
.yea{bottom:848.673333pt;}
.ycc{bottom:853.985333pt;}
.y104{bottom:855.017195pt;}
.y123{bottom:859.306103pt;}
.y4a{bottom:864.609333pt;}
.y103{bottom:868.725342pt;}
.y122{bottom:872.586103pt;}
.y79{bottom:877.358667pt;}
.ye9{bottom:880.545333pt;}
.y102{bottom:882.433489pt;}
.ycb{bottom:885.857333pt;}
.y121{bottom:885.866103pt;}
.y78{bottom:893.294667pt;}
.y101{bottom:896.141636pt;}
.ye8{bottom:896.481333pt;}
.y120{bottom:899.146103pt;}
.y100{bottom:909.849783pt;}
.y49{bottom:912.417333pt;}
.y11f{bottom:912.426103pt;}
.yff{bottom:923.557931pt;}
.y11e{bottom:925.706103pt;}
.y1{bottom:928.353333pt;}
.yfe{bottom:937.266078pt;}
.y11d{bottom:938.986103pt;}
.y48{bottom:944.289333pt;}
.yfd{bottom:950.974225pt;}
.y11c{bottom:952.266103pt;}
.y47{bottom:960.225333pt;}
.yfc{bottom:964.682372pt;}
.y11b{bottom:965.546103pt;}
.y77{bottom:976.160000pt;}
.y46{bottom:976.161333pt;}
.yfb{bottom:978.390519pt;}
.y11a{bottom:978.826103pt;}
.y45{bottom:1008.034667pt;}
.h16{height:11.601408pt;}
.h15{height:18.884160pt;}
.h6{height:19.335680pt;}
.he{height:22.660992pt;}
.h11{height:23.202816pt;}
.h12{height:23.720989pt;}
.h9{height:26.103168pt;}
.h14{height:28.565280pt;}
.h5{height:29.003520pt;}
.ha{height:30.469632pt;}
.hf{height:30.889945pt;}
.h1{height:30.937088pt;}
.hb{height:31.628523pt;}
.h7{height:33.561216pt;}
.h8{height:34.804224pt;}
.hc{height:37.290240pt;}
.h13{height:38.087040pt;}
.hd{height:38.671360pt;}
.h10{height:39.535250pt;}
.h4{height:50.272768pt;}
.h3{height:64.747968pt;}
.h2{height:65.741312pt;}
.h0{height:1026.666667pt;}
.w0{width:736.000000pt;}
.x0{left:0.000000pt;}
.xd{left:34.538667pt;}
.x30{left:40.186667pt;}
.x1f{left:41.178667pt;}
.x41{left:43.282667pt;}
.x1a{left:45.162667pt;}
.xe{left:46.490667pt;}
.x13{left:47.818667pt;}
.x20{left:51.416000pt;}
.x3c{left:55.706667pt;}
.x3d{left:56.636267pt;}
.x21{left:67.764000pt;}
.x3e{left:72.746667pt;}
.x2{left:76.122667pt;}
.x11{left:78.037333pt;}
.x22{left:81.653333pt;}
.x12{left:85.062667pt;}
.x31{left:94.758667pt;}
.x24{left:97.024000pt;}
.x32{left:100.405333pt;}
.x33{left:102.377333pt;}
.x8{left:103.417333pt;}
.x9{left:110.057333pt;}
.x1b{left:112.942667pt;}
.x23{left:117.654667pt;}
.xa{left:120.092000pt;}
.xb{left:127.145333pt;}
.x56{left:144.769312pt;}
.x34{left:150.452000pt;}
.x4b{left:152.062667pt;}
.x35{left:157.420000pt;}
.x4{left:197.672000pt;}
.x4a{left:198.716000pt;}
.x4e{left:209.333333pt;}
.x1c{left:212.441333pt;}
.x38{left:215.281333pt;}
.x4f{left:218.077333pt;}
.x39{left:219.702667pt;}
.x3f{left:224.814667pt;}
.x40{left:231.901333pt;}
.x3a{left:240.178667pt;}
.xc{left:242.131010pt;}
.x3b{left:249.790667pt;}
.x1{left:259.973333pt;}
.x42{left:264.365333pt;}
.x43{left:273.109333pt;}
.x3{left:275.778038pt;}
.x57{left:321.386667pt;}
.x1d{left:338.026667pt;}
.x4c{left:341.750667pt;}
.x5{left:344.416000pt;}
.x4d{left:348.837333pt;}
.x6{left:353.118667pt;}
.x15{left:385.130667pt;}
.x54{left:390.444000pt;}
.x28{left:391.770667pt;}
.x29{left:395.369333pt;}
.x14{left:398.410667pt;}
.x2a{left:402.009333pt;}
.x55{left:406.836832pt;}
.x36{left:422.573333pt;}
.x37{left:428.220000pt;}
.x52{left:433.729333pt;}
.x1e{left:439.393333pt;}
.x53{left:440.816000pt;}
.x46{left:459.173333pt;}
.x25{left:461.205333pt;}
.x47{left:466.260000pt;}
.x26{left:468.292000pt;}
.x27{left:469.950667pt;}
.x48{left:483.169333pt;}
.x49{left:490.256000pt;}
.x2b{left:491.728000pt;}
.x2c{left:499.917333pt;}
.x7{left:534.488000pt;}
.x50{left:545.793333pt;}
.x51{left:552.880000pt;}
.x44{left:569.021333pt;}
.x45{left:576.108000pt;}
.xf{left:580.153333pt;}
.x18{left:581.977333pt;}
.x10{left:586.576000pt;}
.x19{left:611.092000pt;}
.x2e{left:649.060000pt;}
.x16{left:664.038667pt;}
.x2d{left:671.502667pt;}
.x17{left:681.024000pt;}
.x2f{left:687.916000pt;}
}




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