
    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_dbc5eeb99850018248ada7ac.woff')format("woff");}.ff1{font-family:ff1;line-height:1.086914;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_57afb856753286dc150c5a5c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_275aa22c951ae12f5298d15a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.404297;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_aeaa6486d62f5dd35bf4c8dd.woff')format("woff");}.ff4{font-family:ff4;line-height:1.086914;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_28c20ae47b7bad229c54c3d1.woff')format("woff");}.ff5{font-family:ff5;line-height:1.404297;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_c00ce81ebc616431cacde701.woff')format("woff");}.ff6{font-family:ff6;line-height:1.105957;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;}
.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);}
.v4{vertical-align:-16.977000px;}
.v3{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:16.686000px;}
.v1{vertical-align:81.000000px;}
.ls24{letter-spacing:-4.275000px;}
.ls2c{letter-spacing:-2.691000px;}
.ls3b{letter-spacing:-2.457000px;}
.ls28{letter-spacing:-2.175000px;}
.ls1d{letter-spacing:-1.794000px;}
.ls29{letter-spacing:-1.587000px;}
.ls15{letter-spacing:-1.350000px;}
.ls2a{letter-spacing:-1.242000px;}
.ls5{letter-spacing:-1.176000px;}
.ls16{letter-spacing:-1.035000px;}
.ls34{letter-spacing:-1.026000px;}
.ls25{letter-spacing:-0.828000px;}
.ls3e{letter-spacing:-0.675000px;}
.ls11{letter-spacing:-0.621000px;}
.ls10{letter-spacing:-0.483000px;}
.ls2e{letter-spacing:-0.345000px;}
.ls4{letter-spacing:-0.180000px;}
.lse{letter-spacing:-0.138000px;}
.ls38{letter-spacing:-0.108000px;}
.ls7{letter-spacing:-0.069000px;}
.ls2{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000300px;}
.ls18{letter-spacing:0.001554px;}
.ls19{letter-spacing:0.002154px;}
.ls1b{letter-spacing:0.003558px;}
.ls1a{letter-spacing:0.004158px;}
.ls8{letter-spacing:0.345000px;}
.ls37{letter-spacing:0.450000px;}
.ls9{letter-spacing:0.486000px;}
.ls35{letter-spacing:0.621000px;}
.ls30{letter-spacing:0.641700px;}
.ls33{letter-spacing:0.897000px;}
.ls2d{letter-spacing:1.104000px;}
.ls1c{letter-spacing:1.449000px;}
.ls21{letter-spacing:1.518000px;}
.ls14{letter-spacing:1.725000px;}
.lsb{letter-spacing:2.100000px;}
.lsd{letter-spacing:2.400000px;}
.ls32{letter-spacing:2.898000px;}
.ls31{letter-spacing:3.864000px;}
.ls1{letter-spacing:5.700000px;}
.ls3{letter-spacing:6.000000px;}
.ls6{letter-spacing:6.264000px;}
.ls39{letter-spacing:6.300000px;}
.ls1f{letter-spacing:8.160156px;}
.ls22{letter-spacing:8.160756px;}
.lsc{letter-spacing:8.211000px;}
.ls3a{letter-spacing:8.820000px;}
.ls3d{letter-spacing:9.431100px;}
.ls36{letter-spacing:466.079400px;}
.lsa{letter-spacing:467.512200px;}
.ls3c{letter-spacing:468.172200px;}
.ls1e{letter-spacing:470.257200px;}
.ls2f{letter-spacing:470.369400px;}
.ls12{letter-spacing:470.392200px;}
.ls27{letter-spacing:471.487200px;}
.ls23{letter-spacing:473.527200px;}
.lsf{letter-spacing:936.351000px;}
.ls20{letter-spacing:936.846000px;}
.ls26{letter-spacing:939.471000px;}
.ls2b{letter-spacing:943.521000px;}
.ls17{letter-spacing:945.501000px;}
.ls0{letter-spacing:959.692800px;}
.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;}
}
.ws0{word-spacing:-22.560000px;}
.ws31{word-spacing:-21.525000px;}
.wsd{word-spacing:-21.075000px;}
.ws1c{word-spacing:-20.838000px;}
.ws36{word-spacing:-20.400000px;}
.ws3{word-spacing:-19.734000px;}
.ws17{word-spacing:-19.725000px;}
.ws12{word-spacing:-19.389000px;}
.ws21{word-spacing:-18.900000px;}
.ws14{word-spacing:-18.768000px;}
.ws38{word-spacing:-17.703000px;}
.ws2{word-spacing:-17.043000px;}
.wsf{word-spacing:-16.905000px;}
.ws1{word-spacing:-16.860000px;}
.ws1f{word-spacing:-16.800000px;}
.ws13{word-spacing:-16.560000px;}
.ws1d{word-spacing:-16.422000px;}
.ws20{word-spacing:-16.215000px;}
.ws18{word-spacing:-16.008000px;}
.ws23{word-spacing:-15.801000px;}
.ws37{word-spacing:-15.561000px;}
.ws22{word-spacing:-15.456000px;}
.ws1e{word-spacing:-15.249000px;}
.ws39{word-spacing:-14.820000px;}
.ws24{word-spacing:-14.352000px;}
.wse{word-spacing:-13.902000px;}
.ws6{word-spacing:-13.824000px;}
.ws5{word-spacing:-13.338000px;}
.ws32{word-spacing:-13.230000px;}
.ws28{word-spacing:-12.312000px;}
.ws4{word-spacing:-11.303787px;}
.ws19{word-spacing:-9.936069px;}
.ws33{word-spacing:-8.820000px;}
.ws34{word-spacing:-6.300000px;}
.wsb{word-spacing:-6.264000px;}
.ws8{word-spacing:-6.000000px;}
.ws15{word-spacing:-5.700000px;}
.ws29{word-spacing:-3.864000px;}
.ws2b{word-spacing:-2.898000px;}
.ws1b{word-spacing:-2.430000px;}
.ws10{word-spacing:-2.400000px;}
.ws27{word-spacing:-1.518000px;}
.ws25{word-spacing:-1.104000px;}
.ws30{word-spacing:-0.897000px;}
.ws2e{word-spacing:-0.621000px;}
.ws7{word-spacing:0.000000px;}
.wsc{word-spacing:0.069000px;}
.ws11{word-spacing:0.138000px;}
.ws9{word-spacing:0.180000px;}
.ws26{word-spacing:0.345000px;}
.ws16{word-spacing:0.483000px;}
.wsa{word-spacing:1.176000px;}
.ws35{word-spacing:2.457000px;}
.ws2c{word-spacing:2.898000px;}
.ws2f{word-spacing:3.174000px;}
.ws2d{word-spacing:3.519000px;}
.ws2a{word-spacing:3.864000px;}
.ws1a{word-spacing:43.445160px;}
._15{margin-left:-16.601400px;}
._13{margin-left:-13.317000px;}
._17{margin-left:-9.636000px;}
._16{margin-left:-7.687200px;}
._9{margin-left:-6.312000px;}
._f{margin-left:-5.136000px;}
._a{margin-left:-3.943800px;}
._2{margin-left:-2.771100px;}
._8{margin-left:-1.698000px;}
._3{width:1.008000px;}
._1{width:2.400000px;}
._7{width:4.028400px;}
._4{width:5.760000px;}
._5{width:7.722000px;}
._6{width:9.606000px;}
._b{width:11.280900px;}
._d{width:12.393000px;}
._e{width:13.598700px;}
._12{width:14.958900px;}
._11{width:16.424700px;}
._10{width:17.733600px;}
._1a{width:19.353600px;}
._1b{width:20.645100px;}
._18{width:23.265900px;}
._1d{width:25.322040px;}
._1e{width:26.400540px;}
._14{width:27.704160px;}
._1c{width:33.723900px;}
._c{width:43.445160px;}
._1f{width:51.943500px;}
._19{width:59.988600px;}
._0{width:578.400000px;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:31.482000px;}
.fs8{font-size:40.227000px;}
.fsc{font-size:42.000000px;}
.fsb{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs7{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fs4{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.fs6{font-size:199.210200px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y21e{bottom:106.253250px;}
.y1b2{bottom:106.278300px;}
.yde{bottom:106.281300px;}
.y6f{bottom:106.287300px;}
.y1fc{bottom:106.290300px;}
.y102{bottom:106.293300px;}
.y20{bottom:106.296300px;}
.y48{bottom:109.294800px;}
.y1b1{bottom:123.531300px;}
.ydd{bottom:123.534300px;}
.y6e{bottom:123.540300px;}
.y1fb{bottom:123.543300px;}
.y101{bottom:123.546300px;}
.y1f{bottom:126.544800px;}
.y125{bottom:127.795200px;}
.y23e{bottom:128.145750px;}
.y149{bottom:130.796700px;}
.y21d{bottom:135.186000px;}
.y1b0{bottom:140.784300px;}
.ydc{bottom:140.787300px;}
.y6d{bottom:140.793300px;}
.y1fa{bottom:140.796300px;}
.y100{bottom:143.794800px;}
.y1d7{bottom:145.039200px;}
.y94{bottom:145.048200px;}
.yb8{bottom:148.046700px;}
.y23d{bottom:148.395750px;}
.y148{bottom:152.298750px;}
.y47{bottom:153.369000px;}
.y21c{bottom:155.613750px;}
.y1af{bottom:158.037300px;}
.ydb{bottom:158.040300px;}
.y6c{bottom:158.046300px;}
.y1f9{bottom:161.044800px;}
.y1d6{bottom:162.292200px;}
.y167{bottom:162.298200px;}
.y93{bottom:162.301200px;}
.y92{bottom:165.296700px;}
.y23c{bottom:168.645750px;}
.yb7{bottom:169.548750px;}
.y18b{bottom:170.550900px;}
.y1e{bottom:170.592750px;}
.y46{bottom:173.620500px;}
.y1ae{bottom:175.290300px;}
.yda{bottom:175.293300px;}
.y6b{bottom:178.294800px;}
.y1d5{bottom:179.545200px;}
.y166{bottom:182.546700px;}
.yff{bottom:183.794250px;}
.y91{bottom:183.800250px;}
.y21b{bottom:184.546500px;}
.y23b{bottom:188.895750px;}
.y18a{bottom:190.888650px;}
.y1d{bottom:191.551500px;}
.y1ad{bottom:192.543300px;}
.yd9{bottom:192.546300px;}
.y45{bottom:193.872000px;}
.y147{bottom:196.401150px;}
.y1d4{bottom:196.798200px;}
.yfe{bottom:201.047250px;}
.y90{bottom:204.048750px;}
.y21a{bottom:204.974250px;}
.y124{bottom:209.331900px;}
.y1ac{bottom:209.796300px;}
.y189{bottom:211.226400px;}
.y1c{bottom:212.510250px;}
.yd8{bottom:212.794800px;}
.yb6{bottom:213.565350px;}
.y44{bottom:214.123500px;}
.y1d3{bottom:217.046700px;}
.y146{bottom:217.170150px;}
.yfd{bottom:218.300250px;}
.y23a{bottom:221.895750px;}
.y6a{bottom:222.447600px;}
.y1f8{bottom:226.464450px;}
.y123{bottom:229.721400px;}
.y1ab{bottom:230.044800px;}
.y188{bottom:231.564150px;}
.y1b{bottom:233.469000px;}
.yb5{bottom:233.834100px;}
.y219{bottom:233.907000px;}
.y43{bottom:234.375000px;}
.y1d2{bottom:235.547250px;}
.y145{bottom:237.939150px;}
.yfc{bottom:238.548750px;}
.y69{bottom:243.061350px;}
.y1f7{bottom:246.957450px;}
.y165{bottom:248.055300px;}
.y8f{bottom:248.057550px;}
.y122{bottom:250.110900px;}
.y187{bottom:251.901900px;}
.y1d1{bottom:252.800250px;}
.yb4{bottom:254.102850px;}
.y218{bottom:254.334750px;}
.y1a{bottom:254.500500px;}
.y42{bottom:254.626500px;}
.yd7{bottom:256.737750px;}
.yfb{bottom:257.049150px;}
.y144{bottom:258.708150px;}
.y239{bottom:263.272350px;}
.y68{bottom:263.675100px;}
.y1f6{bottom:267.450450px;}
.y164{bottom:268.513800px;}
.y8e{bottom:268.516050px;}
.y121{bottom:270.500400px;}
.y186{bottom:272.239650px;}
.y1d0{bottom:273.048750px;}
.y1aa{bottom:273.842700px;}
.yfa{bottom:274.302150px;}
.yb3{bottom:274.371600px;}
.y41{bottom:274.878000px;}
.y19{bottom:275.459250px;}
.yd6{bottom:277.575750px;}
.y143{bottom:279.477150px;}
.y217{bottom:283.267500px;}
.y67{bottom:284.288850px;}
.y1f5{bottom:287.943450px;}
.y163{bottom:288.972300px;}
.y8d{bottom:288.974550px;}
.y120{bottom:290.936250px;}
.y1cf{bottom:291.543150px;}
.y238{bottom:292.031850px;}
.y185{bottom:292.577400px;}
.y1a9{bottom:294.128700px;}
.yf9{bottom:294.550650px;}
.yb2{bottom:294.640350px;}
.y40{bottom:295.129500px;}
.y18{bottom:296.418000px;}
.yd5{bottom:298.413750px;}
.y142{bottom:300.246150px;}
.y216{bottom:303.695250px;}
.y66{bottom:304.902600px;}
.y1f4{bottom:308.436450px;}
.y1ce{bottom:308.796150px;}
.y162{bottom:309.430800px;}
.y8c{bottom:309.433050px;}
.y11f{bottom:311.325750px;}
.y237{bottom:312.286350px;}
.y184{bottom:312.915150px;}
.y1a8{bottom:314.414700px;}
.yb1{bottom:314.909100px;}
.y3f{bottom:315.381000px;}
.y17{bottom:317.376750px;}
.yd4{bottom:319.251750px;}
.y141{bottom:321.015150px;}
.y215{bottom:324.123000px;}
.y65{bottom:325.516350px;}
.y1cd{bottom:326.049150px;}
.y1f3{bottom:328.929450px;}
.y161{bottom:329.889300px;}
.y8b{bottom:329.891550px;}
.y11e{bottom:331.715250px;}
.y183{bottom:333.252900px;}
.y1a7{bottom:334.700700px;}
.yb0{bottom:335.177850px;}
.y3e{bottom:335.632500px;}
.y16{bottom:338.335500px;}
.yf8{bottom:338.528700px;}
.yd3{bottom:340.089750px;}
.y236{bottom:341.045850px;}
.y140{bottom:341.784150px;}
.y1cc{bottom:343.302150px;}
.y64{bottom:346.130100px;}
.y1f2{bottom:349.422450px;}
.y160{bottom:350.347800px;}
.y8a{bottom:350.350050px;}
.y11d{bottom:352.104750px;}
.y214{bottom:353.055750px;}
.y182{bottom:353.590650px;}
.y1a6{bottom:354.986700px;}
.yaf{bottom:355.446600px;}
.y3d{bottom:355.884000px;}
.y15{bottom:359.294250px;}
.yf7{bottom:360.229200px;}
.yd2{bottom:360.927750px;}
.y235{bottom:361.300350px;}
.y13f{bottom:362.553150px;}
.y1cb{bottom:363.550650px;}
.y63{bottom:366.743850px;}
.y1f1{bottom:369.915450px;}
.y15f{bottom:370.806300px;}
.y89{bottom:370.808550px;}
.y11c{bottom:372.494250px;}
.y213{bottom:373.483500px;}
.y181{bottom:373.928400px;}
.y1a5{bottom:375.272700px;}
.yae{bottom:375.715350px;}
.y3c{bottom:376.135500px;}
.y14{bottom:380.253000px;}
.yd1{bottom:381.765750px;}
.yf6{bottom:381.929700px;}
.y13e{bottom:383.322150px;}
.y62{bottom:387.357600px;}
.y234{bottom:390.059850px;}
.y1f0{bottom:390.408450px;}
.y15e{bottom:391.264800px;}
.y88{bottom:391.267050px;}
.y11b{bottom:392.883750px;}
.y212{bottom:393.911250px;}
.y180{bottom:394.266150px;}
.y1a4{bottom:395.558700px;}
.yad{bottom:395.984100px;}
.y3b{bottom:396.387000px;}
.y13{bottom:401.211750px;}
.yd0{bottom:402.603750px;}
.yf5{bottom:403.630200px;}
.y13d{bottom:404.091150px;}
.y1ca{bottom:407.567100px;}
.y61{bottom:407.971350px;}
.y1ef{bottom:410.901450px;}
.y15d{bottom:411.723300px;}
.y87{bottom:411.724350px;}
.y11a{bottom:413.273250px;}
.y17f{bottom:414.603900px;}
.y1a3{bottom:415.844700px;}
.yac{bottom:416.252850px;}
.y3a{bottom:416.638500px;}
.y233{bottom:418.819350px;}
.y12{bottom:422.170500px;}
.y211{bottom:422.844000px;}
.ycf{bottom:423.441750px;}
.y13c{bottom:424.860150px;}
.yf4{bottom:425.330700px;}
.y1c9{bottom:428.198100px;}
.y60{bottom:428.585100px;}
.y1ee{bottom:431.394450px;}
.y86{bottom:432.166350px;}
.y15c{bottom:432.181800px;}
.y119{bottom:433.662750px;}
.y17e{bottom:434.941650px;}
.y1a2{bottom:436.130700px;}
.yab{bottom:436.521600px;}
.y39{bottom:436.890000px;}
.y232{bottom:439.073850px;}
.y11{bottom:443.129250px;}
.yce{bottom:444.279750px;}
.y13b{bottom:445.678200px;}
.yf3{bottom:447.031200px;}
.y1c8{bottom:448.829100px;}
.y5f{bottom:449.198850px;}
.y1ed{bottom:451.887450px;}
.y15b{bottom:452.622600px;}
.y85{bottom:452.624850px;}
.y118{bottom:454.052250px;}
.y17d{bottom:455.279400px;}
.y1a1{bottom:456.416700px;}
.yaa{bottom:456.790350px;}
.y38{bottom:457.141500px;}
.y231{bottom:459.328350px;}
.y10{bottom:464.088000px;}
.yf{bottom:464.089500px;}
.ycd{bottom:465.117750px;}
.y13a{bottom:466.447200px;}
.yf2{bottom:468.731700px;}
.y1c7{bottom:469.460100px;}
.y5e{bottom:469.812600px;}
.y1ec{bottom:472.380450px;}
.y15a{bottom:473.081100px;}
.y84{bottom:473.083350px;}
.y117{bottom:474.441750px;}
.y17c{bottom:475.617150px;}
.y1a0{bottom:476.702700px;}
.ya9{bottom:477.059100px;}
.y37{bottom:477.393000px;}
.y230{bottom:479.582850px;}
.ycc{bottom:485.955750px;}
.y139{bottom:487.216200px;}
.y1c6{bottom:490.089150px;}
.y5d{bottom:490.426350px;}
.yf1{bottom:490.432200px;}
.y1eb{bottom:492.873450px;}
.y159{bottom:493.539600px;}
.y83{bottom:493.541850px;}
.y210{bottom:494.221350px;}
.y116{bottom:494.831250px;}
.y17b{bottom:495.954900px;}
.y19f{bottom:496.988700px;}
.ya8{bottom:497.327850px;}
.y36{bottom:497.644500px;}
.ycb{bottom:506.793750px;}
.y138{bottom:507.985200px;}
.y22f{bottom:508.342350px;}
.y1c5{bottom:510.720150px;}
.y5c{bottom:511.040100px;}
.yf0{bottom:512.132700px;}
.y1ea{bottom:513.366450px;}
.y158{bottom:513.998100px;}
.y82{bottom:514.000350px;}
.y20f{bottom:514.645350px;}
.y115{bottom:515.237550px;}
.y17a{bottom:516.292650px;}
.y19e{bottom:517.274700px;}
.ya7{bottom:517.596600px;}
.y35{bottom:517.896000px;}
.yca{bottom:527.631750px;}
.y22e{bottom:528.596850px;}
.y137{bottom:528.754200px;}
.y1c4{bottom:531.351150px;}
.y5b{bottom:531.653850px;}
.yef{bottom:533.833200px;}
.y1e9{bottom:533.859450px;}
.y157{bottom:534.456600px;}
.y81{bottom:534.458850px;}
.ye{bottom:535.057950px;}
.y20e{bottom:535.069350px;}
.y114{bottom:535.627050px;}
.y179{bottom:536.630400px;}
.y19d{bottom:537.560700px;}
.ya6{bottom:537.865350px;}
.y34{bottom:538.147500px;}
.yc9{bottom:548.469750px;}
.y136{bottom:549.523200px;}
.y1c3{bottom:551.982150px;}
.y5a{bottom:552.267600px;}
.y1e8{bottom:554.352450px;}
.y156{bottom:554.915100px;}
.y80{bottom:554.917350px;}
.y20d{bottom:555.493350px;}
.yee{bottom:555.533700px;}
.y113{bottom:556.016550px;}
.yd{bottom:556.777950px;}
.y178{bottom:556.968150px;}
.y22d{bottom:557.356350px;}
.y19c{bottom:557.846700px;}
.ya5{bottom:558.133200px;}
.y33{bottom:558.399000px;}
.yc8{bottom:569.307750px;}
.y135{bottom:570.292200px;}
.y1c2{bottom:572.612550px;}
.y59{bottom:572.881350px;}
.y1e7{bottom:574.845450px;}
.y155{bottom:575.373600px;}
.y7f{bottom:575.375850px;}
.y20c{bottom:575.917350px;}
.y112{bottom:576.406050px;}
.yed{bottom:577.234200px;}
.y177{bottom:577.305900px;}
.y22c{bottom:577.610850px;}
.y19b{bottom:578.132700px;}
.ya4{bottom:578.401950px;}
.yc{bottom:578.497950px;}
.y32{bottom:578.650500px;}
.yc7{bottom:590.145750px;}
.y134{bottom:591.082200px;}
.y1c1{bottom:593.236350px;}
.y58{bottom:593.495100px;}
.y1e6{bottom:595.338450px;}
.y154{bottom:595.832100px;}
.y7e{bottom:595.834350px;}
.y20b{bottom:596.341350px;}
.y111{bottom:596.799750px;}
.y176{bottom:597.635100px;}
.y22b{bottom:597.865350px;}
.y19a{bottom:598.418700px;}
.ya3{bottom:598.670700px;}
.y31{bottom:598.902000px;}
.yec{bottom:598.934700px;}
.yb{bottom:600.217950px;}
.yc6{bottom:610.983750px;}
.y133{bottom:611.851200px;}
.y1c0{bottom:613.867350px;}
.y57{bottom:614.108850px;}
.y1e5{bottom:615.831450px;}
.y153{bottom:616.290600px;}
.y7d{bottom:616.292850px;}
.y20a{bottom:616.765350px;}
.y110{bottom:617.248350px;}
.y175{bottom:617.972850px;}
.y199{bottom:618.704700px;}
.ya2{bottom:618.939450px;}
.y30{bottom:619.153500px;}
.yeb{bottom:620.619600px;}
.y22a{bottom:626.624850px;}
.yc5{bottom:631.821750px;}
.y132{bottom:632.620200px;}
.y1bf{bottom:634.498350px;}
.y56{bottom:634.722600px;}
.y1e4{bottom:636.324450px;}
.y152{bottom:636.749100px;}
.y7c{bottom:636.751350px;}
.y209{bottom:637.189350px;}
.y10f{bottom:637.637850px;}
.y174{bottom:638.310600px;}
.y198{bottom:638.990700px;}
.ya1{bottom:639.208200px;}
.y2f{bottom:639.405000px;}
.yea{bottom:642.320100px;}
.y229{bottom:646.879350px;}
.ya{bottom:651.697950px;}
.yc4{bottom:652.659750px;}
.y131{bottom:653.473350px;}
.y1be{bottom:655.129350px;}
.y55{bottom:655.336350px;}
.y1e3{bottom:656.817450px;}
.y151{bottom:657.207600px;}
.y7b{bottom:657.209850px;}
.y208{bottom:657.613350px;}
.y10e{bottom:658.027350px;}
.y173{bottom:658.648350px;}
.y197{bottom:659.276700px;}
.ya0{bottom:659.476950px;}
.y2e{bottom:659.683350px;}
.ye9{bottom:664.020600px;}
.yc3{bottom:673.497750px;}
.y130{bottom:674.242350px;}
.y228{bottom:675.638850px;}
.y1bd{bottom:675.760350px;}
.y54{bottom:675.950100px;}
.y1e2{bottom:677.310450px;}
.y150{bottom:677.666100px;}
.y7a{bottom:677.668350px;}
.y207{bottom:678.037350px;}
.y10d{bottom:678.416850px;}
.y172{bottom:678.986100px;}
.y196{bottom:679.562700px;}
.y9f{bottom:679.745700px;}
.y2d{bottom:679.934850px;}
.y9{bottom:683.914050px;}
.ye8{bottom:685.721100px;}
.yc2{bottom:694.335750px;}
.y12f{bottom:695.011350px;}
.y227{bottom:695.893350px;}
.y1bc{bottom:696.391350px;}
.y53{bottom:696.563850px;}
.y1e1{bottom:697.803450px;}
.y14f{bottom:698.124600px;}
.y79{bottom:698.126850px;}
.y206{bottom:698.461350px;}
.y10c{bottom:698.806350px;}
.y171{bottom:699.323850px;}
.y195{bottom:699.848700px;}
.y9e{bottom:700.014450px;}
.y2c{bottom:700.186350px;}
.ye7{bottom:707.421600px;}
.yc1{bottom:715.173750px;}
.y12e{bottom:715.780350px;}
.y8{bottom:716.130300px;}
.y1bb{bottom:717.022350px;}
.y52{bottom:717.177600px;}
.y1e0{bottom:718.296450px;}
.y78{bottom:718.579500px;}
.y14e{bottom:718.583100px;}
.y205{bottom:718.885350px;}
.y10b{bottom:719.195850px;}
.y170{bottom:719.661600px;}
.y194{bottom:720.134700px;}
.y9d{bottom:720.283200px;}
.y2b{bottom:720.437850px;}
.y226{bottom:724.652850px;}
.ye6{bottom:729.106650px;}
.yc0{bottom:736.011750px;}
.y12d{bottom:736.549350px;}
.y1ba{bottom:737.653350px;}
.y51{bottom:737.791350px;}
.y1df{bottom:738.761400px;}
.y77{bottom:739.038000px;}
.y14d{bottom:739.041600px;}
.y204{bottom:739.309350px;}
.y10a{bottom:739.585350px;}
.y16f{bottom:739.999350px;}
.y193{bottom:740.420700px;}
.y9c{bottom:740.551950px;}
.y2a{bottom:740.689350px;}
.y225{bottom:744.907350px;}
.ye5{bottom:750.807150px;}
.ybf{bottom:756.849750px;}
.y12c{bottom:757.318350px;}
.y1b9{bottom:758.284350px;}
.y50{bottom:758.405100px;}
.y1de{bottom:759.254400px;}
.y76{bottom:759.496500px;}
.y14c{bottom:759.498900px;}
.y203{bottom:759.733350px;}
.y109{bottom:759.974850px;}
.y16e{bottom:760.337100px;}
.y192{bottom:760.706700px;}
.y9b{bottom:760.820700px;}
.y29{bottom:760.940850px;}
.y224{bottom:765.161850px;}
.ye4{bottom:772.507650px;}
.ybe{bottom:777.687750px;}
.y12b{bottom:778.087350px;}
.y7{bottom:778.092750px;}
.y1b8{bottom:778.915350px;}
.y4f{bottom:779.018850px;}
.y1dd{bottom:779.747400px;}
.y14b{bottom:779.950350px;}
.y75{bottom:779.955000px;}
.y202{bottom:780.157350px;}
.y108{bottom:780.364350px;}
.y16d{bottom:780.674850px;}
.y191{bottom:780.992700px;}
.y9a{bottom:781.089450px;}
.y28{bottom:781.192350px;}
.y223{bottom:793.921350px;}
.ye3{bottom:794.208150px;}
.ybd{bottom:798.511350px;}
.y12a{bottom:798.856350px;}
.y1b7{bottom:799.546350px;}
.y4e{bottom:799.632600px;}
.y1dc{bottom:800.240400px;}
.y14a{bottom:800.408850px;}
.y74{bottom:800.413500px;}
.y201{bottom:800.581350px;}
.y107{bottom:800.753850px;}
.y16c{bottom:801.012600px;}
.y190{bottom:801.278700px;}
.y99{bottom:801.358050px;}
.y27{bottom:801.443850px;}
.y6{bottom:808.317750px;}
.y222{bottom:814.175850px;}
.ye2{bottom:815.908650px;}
.ybc{bottom:819.349350px;}
.y129{bottom:819.625350px;}
.y1b6{bottom:820.177350px;}
.y4d{bottom:820.246350px;}
.y1db{bottom:820.733400px;}
.y73{bottom:820.867350px;}
.y200{bottom:821.005350px;}
.y106{bottom:821.143350px;}
.y16b{bottom:821.350350px;}
.y18f{bottom:821.564700px;}
.y98{bottom:821.626500px;}
.y26{bottom:821.695350px;}
.y5{bottom:830.037750px;}
.y221{bottom:834.430350px;}
.ye1{bottom:837.599850px;}
.ybb{bottom:840.187350px;}
.y128{bottom:840.394350px;}
.y1b5{bottom:840.808350px;}
.y4c{bottom:840.860100px;}
.y1da{bottom:841.226400px;}
.y72{bottom:841.325850px;}
.y1ff{bottom:841.429350px;}
.y105{bottom:841.532850px;}
.y16a{bottom:841.688100px;}
.y18e{bottom:841.850700px;}
.y97{bottom:841.895250px;}
.y25{bottom:841.946850px;}
.y4{bottom:851.757750px;}
.ye0{bottom:859.300350px;}
.yba{bottom:861.025350px;}
.y127{bottom:861.163350px;}
.y1b4{bottom:861.439350px;}
.y4b{bottom:861.473850px;}
.y1d9{bottom:861.719400px;}
.y71{bottom:861.784350px;}
.y1fe{bottom:861.853350px;}
.y104{bottom:861.922350px;}
.y169{bottom:862.025850px;}
.y18d{bottom:862.136700px;}
.y96{bottom:862.164000px;}
.y24{bottom:862.198350px;}
.y220{bottom:863.189850px;}
.ydf{bottom:881.000850px;}
.yb9{bottom:881.863350px;}
.y126{bottom:881.932350px;}
.y3{bottom:881.982750px;}
.y1b3{bottom:882.070350px;}
.y4a{bottom:882.087600px;}
.y1d8{bottom:882.208350px;}
.y70{bottom:882.242850px;}
.y1fd{bottom:882.277350px;}
.y103{bottom:882.311850px;}
.y168{bottom:882.363600px;}
.y18c{bottom:882.415350px;}
.y95{bottom:882.432600px;}
.y23{bottom:882.449850px;}
.y21f{bottom:883.444350px;}
.y22{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y21{bottom:948.189000px;}
.y49{bottom:966.189000px;}
.h16{height:26.732030px;}
.hd{height:34.028742px;}
.h17{height:38.036555px;}
.hf{height:40.898438px;}
.h11{height:46.010742px;}
.he{height:50.018555px;}
.h5{height:50.947266px;}
.h4{height:51.123047px;}
.h3{height:53.679199px;}
.h28{height:54.479004px;}
.h9{height:55.576172px;}
.h27{height:58.354980px;}
.hc{height:58.791504px;}
.h25{height:58.793904px;}
.h1a{height:58.795104px;}
.h15{height:58.796304px;}
.h26{height:58.799304px;}
.h12{height:58.810104px;}
.h24{height:58.820304px;}
.h1c{height:58.828704px;}
.h1b{height:58.849104px;}
.h1d{height:58.853304px;}
.h21{height:58.862304px;}
.h1f{height:58.952304px;}
.h10{height:59.129280px;}
.h1e{height:59.667480px;}
.h8{height:61.347656px;}
.h2{height:63.903809px;}
.hb{height:63.912598px;}
.h18{height:63.913198px;}
.h19{height:63.913798px;}
.h13{height:63.935998px;}
.h20{height:63.940798px;}
.h23{height:63.941998px;}
.h22{height:63.946798px;}
.h14{height:63.978598px;}
.h6{height:71.572266px;}
.h7{height:92.021484px;}
.ha{height:169.737207px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xe{left:80.934600px;}
.x4{left:82.096650px;}
.x8{left:83.686650px;}
.x1{left:85.039350px;}
.xf{left:102.438000px;}
.xc{left:104.279700px;}
.x6{left:105.358050px;}
.x7{left:106.474650px;}
.xd{left:108.028200px;}
.xa{left:125.381550px;}
.x9{left:126.995250px;}
.xb{left:128.015700px;}
.x5{left:195.437550px;}
.x3{left:232.349700px;}
.x2{left:233.415450px;}
@media print{
.v4{vertical-align:-15.090667pt;}
.v3{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.832000pt;}
.v1{vertical-align:72.000000pt;}
.ls24{letter-spacing:-3.800000pt;}
.ls2c{letter-spacing:-2.392000pt;}
.ls3b{letter-spacing:-2.184000pt;}
.ls28{letter-spacing:-1.933333pt;}
.ls1d{letter-spacing:-1.594667pt;}
.ls29{letter-spacing:-1.410667pt;}
.ls15{letter-spacing:-1.200000pt;}
.ls2a{letter-spacing:-1.104000pt;}
.ls5{letter-spacing:-1.045333pt;}
.ls16{letter-spacing:-0.920000pt;}
.ls34{letter-spacing:-0.912000pt;}
.ls25{letter-spacing:-0.736000pt;}
.ls3e{letter-spacing:-0.600000pt;}
.ls11{letter-spacing:-0.552000pt;}
.ls10{letter-spacing:-0.429333pt;}
.ls2e{letter-spacing:-0.306667pt;}
.ls4{letter-spacing:-0.160000pt;}
.lse{letter-spacing:-0.122667pt;}
.ls38{letter-spacing:-0.096000pt;}
.ls7{letter-spacing:-0.061333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000267pt;}
.ls18{letter-spacing:0.001381pt;}
.ls19{letter-spacing:0.001915pt;}
.ls1b{letter-spacing:0.003163pt;}
.ls1a{letter-spacing:0.003696pt;}
.ls8{letter-spacing:0.306667pt;}
.ls37{letter-spacing:0.400000pt;}
.ls9{letter-spacing:0.432000pt;}
.ls35{letter-spacing:0.552000pt;}
.ls30{letter-spacing:0.570400pt;}
.ls33{letter-spacing:0.797333pt;}
.ls2d{letter-spacing:0.981333pt;}
.ls1c{letter-spacing:1.288000pt;}
.ls21{letter-spacing:1.349333pt;}
.ls14{letter-spacing:1.533333pt;}
.lsb{letter-spacing:1.866667pt;}
.lsd{letter-spacing:2.133333pt;}
.ls32{letter-spacing:2.576000pt;}
.ls31{letter-spacing:3.434667pt;}
.ls1{letter-spacing:5.066667pt;}
.ls3{letter-spacing:5.333333pt;}
.ls6{letter-spacing:5.568000pt;}
.ls39{letter-spacing:5.600000pt;}
.ls1f{letter-spacing:7.253472pt;}
.ls22{letter-spacing:7.254005pt;}
.lsc{letter-spacing:7.298667pt;}
.ls3a{letter-spacing:7.840000pt;}
.ls3d{letter-spacing:8.383200pt;}
.ls36{letter-spacing:414.292800pt;}
.lsa{letter-spacing:415.566400pt;}
.ls3c{letter-spacing:416.153067pt;}
.ls1e{letter-spacing:418.006400pt;}
.ls2f{letter-spacing:418.106133pt;}
.ls12{letter-spacing:418.126400pt;}
.ls27{letter-spacing:419.099733pt;}
.ls23{letter-spacing:420.913067pt;}
.lsf{letter-spacing:832.312000pt;}
.ls20{letter-spacing:832.752000pt;}
.ls26{letter-spacing:835.085333pt;}
.ls2b{letter-spacing:838.685333pt;}
.ls17{letter-spacing:840.445333pt;}
.ls0{letter-spacing:853.060267pt;}
.ws0{word-spacing:-20.053333pt;}
.ws31{word-spacing:-19.133333pt;}
.wsd{word-spacing:-18.733333pt;}
.ws1c{word-spacing:-18.522667pt;}
.ws36{word-spacing:-18.133333pt;}
.ws3{word-spacing:-17.541333pt;}
.ws17{word-spacing:-17.533333pt;}
.ws12{word-spacing:-17.234667pt;}
.ws21{word-spacing:-16.800000pt;}
.ws14{word-spacing:-16.682667pt;}
.ws38{word-spacing:-15.736000pt;}
.ws2{word-spacing:-15.149333pt;}
.wsf{word-spacing:-15.026667pt;}
.ws1{word-spacing:-14.986667pt;}
.ws1f{word-spacing:-14.933333pt;}
.ws13{word-spacing:-14.720000pt;}
.ws1d{word-spacing:-14.597333pt;}
.ws20{word-spacing:-14.413333pt;}
.ws18{word-spacing:-14.229333pt;}
.ws23{word-spacing:-14.045333pt;}
.ws37{word-spacing:-13.832000pt;}
.ws22{word-spacing:-13.738667pt;}
.ws1e{word-spacing:-13.554667pt;}
.ws39{word-spacing:-13.173333pt;}
.ws24{word-spacing:-12.757333pt;}
.wse{word-spacing:-12.357333pt;}
.ws6{word-spacing:-12.288000pt;}
.ws5{word-spacing:-11.856000pt;}
.ws32{word-spacing:-11.760000pt;}
.ws28{word-spacing:-10.944000pt;}
.ws4{word-spacing:-10.047811pt;}
.ws19{word-spacing:-8.832061pt;}
.ws33{word-spacing:-7.840000pt;}
.ws34{word-spacing:-5.600000pt;}
.wsb{word-spacing:-5.568000pt;}
.ws8{word-spacing:-5.333333pt;}
.ws15{word-spacing:-5.066667pt;}
.ws29{word-spacing:-3.434667pt;}
.ws2b{word-spacing:-2.576000pt;}
.ws1b{word-spacing:-2.160000pt;}
.ws10{word-spacing:-2.133333pt;}
.ws27{word-spacing:-1.349333pt;}
.ws25{word-spacing:-0.981333pt;}
.ws30{word-spacing:-0.797333pt;}
.ws2e{word-spacing:-0.552000pt;}
.ws7{word-spacing:0.000000pt;}
.wsc{word-spacing:0.061333pt;}
.ws11{word-spacing:0.122667pt;}
.ws9{word-spacing:0.160000pt;}
.ws26{word-spacing:0.306667pt;}
.ws16{word-spacing:0.429333pt;}
.wsa{word-spacing:1.045333pt;}
.ws35{word-spacing:2.184000pt;}
.ws2c{word-spacing:2.576000pt;}
.ws2f{word-spacing:2.821333pt;}
.ws2d{word-spacing:3.128000pt;}
.ws2a{word-spacing:3.434667pt;}
.ws1a{word-spacing:38.617920pt;}
._15{margin-left:-14.756800pt;}
._13{margin-left:-11.837333pt;}
._17{margin-left:-8.565333pt;}
._16{margin-left:-6.833067pt;}
._9{margin-left:-5.610667pt;}
._f{margin-left:-4.565333pt;}
._a{margin-left:-3.505600pt;}
._2{margin-left:-2.463200pt;}
._8{margin-left:-1.509333pt;}
._3{width:0.896000pt;}
._1{width:2.133333pt;}
._7{width:3.580800pt;}
._4{width:5.120000pt;}
._5{width:6.864000pt;}
._6{width:8.538667pt;}
._b{width:10.027467pt;}
._d{width:11.016000pt;}
._e{width:12.087733pt;}
._12{width:13.296800pt;}
._11{width:14.599733pt;}
._10{width:15.763200pt;}
._1a{width:17.203200pt;}
._1b{width:18.351200pt;}
._18{width:20.680800pt;}
._1d{width:22.508480pt;}
._1e{width:23.467147pt;}
._14{width:24.625920pt;}
._1c{width:29.976800pt;}
._c{width:38.617920pt;}
._1f{width:46.172000pt;}
._19{width:53.323200pt;}
._0{width:514.133333pt;}
.fs9{font-size:27.984000pt;}
.fs8{font-size:35.757333pt;}
.fsc{font-size:37.333333pt;}
.fsb{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs7{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fs4{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.fs6{font-size:177.075733pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y21e{bottom:94.447333pt;}
.y1b2{bottom:94.469600pt;}
.yde{bottom:94.472267pt;}
.y6f{bottom:94.477600pt;}
.y1fc{bottom:94.480267pt;}
.y102{bottom:94.482933pt;}
.y20{bottom:94.485600pt;}
.y48{bottom:97.150933pt;}
.y1b1{bottom:109.805600pt;}
.ydd{bottom:109.808267pt;}
.y6e{bottom:109.813600pt;}
.y1fb{bottom:109.816267pt;}
.y101{bottom:109.818933pt;}
.y1f{bottom:112.484267pt;}
.y125{bottom:113.595733pt;}
.y23e{bottom:113.907333pt;}
.y149{bottom:116.263733pt;}
.y21d{bottom:120.165333pt;}
.y1b0{bottom:125.141600pt;}
.ydc{bottom:125.144267pt;}
.y6d{bottom:125.149600pt;}
.y1fa{bottom:125.152267pt;}
.y100{bottom:127.817600pt;}
.y1d7{bottom:128.923733pt;}
.y94{bottom:128.931733pt;}
.yb8{bottom:131.597067pt;}
.y23d{bottom:131.907333pt;}
.y148{bottom:135.376667pt;}
.y47{bottom:136.328000pt;}
.y21c{bottom:138.323333pt;}
.y1af{bottom:140.477600pt;}
.ydb{bottom:140.480267pt;}
.y6c{bottom:140.485600pt;}
.y1f9{bottom:143.150933pt;}
.y1d6{bottom:144.259733pt;}
.y167{bottom:144.265067pt;}
.y93{bottom:144.267733pt;}
.y92{bottom:146.930400pt;}
.y23c{bottom:149.907333pt;}
.yb7{bottom:150.710000pt;}
.y18b{bottom:151.600800pt;}
.y1e{bottom:151.638000pt;}
.y46{bottom:154.329333pt;}
.y1ae{bottom:155.813600pt;}
.yda{bottom:155.816267pt;}
.y6b{bottom:158.484267pt;}
.y1d5{bottom:159.595733pt;}
.y166{bottom:162.263733pt;}
.yff{bottom:163.372667pt;}
.y91{bottom:163.378000pt;}
.y21b{bottom:164.041333pt;}
.y23b{bottom:167.907333pt;}
.y18a{bottom:169.678800pt;}
.y1d{bottom:170.268000pt;}
.y1ad{bottom:171.149600pt;}
.yd9{bottom:171.152267pt;}
.y45{bottom:172.330667pt;}
.y147{bottom:174.578800pt;}
.y1d4{bottom:174.931733pt;}
.yfe{bottom:178.708667pt;}
.y90{bottom:181.376667pt;}
.y21a{bottom:182.199333pt;}
.y124{bottom:186.072800pt;}
.y1ac{bottom:186.485600pt;}
.y189{bottom:187.756800pt;}
.y1c{bottom:188.898000pt;}
.yd8{bottom:189.150933pt;}
.yb6{bottom:189.835867pt;}
.y44{bottom:190.332000pt;}
.y1d3{bottom:192.930400pt;}
.y146{bottom:193.040133pt;}
.yfd{bottom:194.044667pt;}
.y23a{bottom:197.240667pt;}
.y6a{bottom:197.731200pt;}
.y1f8{bottom:201.301733pt;}
.y123{bottom:204.196800pt;}
.y1ab{bottom:204.484267pt;}
.y188{bottom:205.834800pt;}
.y1b{bottom:207.528000pt;}
.yb5{bottom:207.852533pt;}
.y219{bottom:207.917333pt;}
.y43{bottom:208.333333pt;}
.y1d2{bottom:209.375333pt;}
.y145{bottom:211.501467pt;}
.yfc{bottom:212.043333pt;}
.y69{bottom:216.054533pt;}
.y1f7{bottom:219.517733pt;}
.y165{bottom:220.493600pt;}
.y8f{bottom:220.495600pt;}
.y122{bottom:222.320800pt;}
.y187{bottom:223.912800pt;}
.y1d1{bottom:224.711333pt;}
.yb4{bottom:225.869200pt;}
.y218{bottom:226.075333pt;}
.y1a{bottom:226.222667pt;}
.y42{bottom:226.334667pt;}
.yd7{bottom:228.211333pt;}
.yfb{bottom:228.488133pt;}
.y144{bottom:229.962800pt;}
.y239{bottom:234.019867pt;}
.y68{bottom:234.377867pt;}
.y1f6{bottom:237.733733pt;}
.y164{bottom:238.678933pt;}
.y8e{bottom:238.680933pt;}
.y121{bottom:240.444800pt;}
.y186{bottom:241.990800pt;}
.y1d0{bottom:242.710000pt;}
.y1aa{bottom:243.415733pt;}
.yfa{bottom:243.824133pt;}
.yb3{bottom:243.885867pt;}
.y41{bottom:244.336000pt;}
.y19{bottom:244.852667pt;}
.yd6{bottom:246.734000pt;}
.y143{bottom:248.424133pt;}
.y217{bottom:251.793333pt;}
.y67{bottom:252.701200pt;}
.y1f5{bottom:255.949733pt;}
.y163{bottom:256.864267pt;}
.y8d{bottom:256.866267pt;}
.y120{bottom:258.610000pt;}
.y1cf{bottom:259.149467pt;}
.y238{bottom:259.583867pt;}
.y185{bottom:260.068800pt;}
.y1a9{bottom:261.447733pt;}
.yf9{bottom:261.822800pt;}
.yb2{bottom:261.902533pt;}
.y40{bottom:262.337333pt;}
.y18{bottom:263.482667pt;}
.yd5{bottom:265.256667pt;}
.y142{bottom:266.885467pt;}
.y216{bottom:269.951333pt;}
.y66{bottom:271.024533pt;}
.y1f4{bottom:274.165733pt;}
.y1ce{bottom:274.485467pt;}
.y162{bottom:275.049600pt;}
.y8c{bottom:275.051600pt;}
.y11f{bottom:276.734000pt;}
.y237{bottom:277.587867pt;}
.y184{bottom:278.146800pt;}
.y1a8{bottom:279.479733pt;}
.yb1{bottom:279.919200pt;}
.y3f{bottom:280.338667pt;}
.y17{bottom:282.112667pt;}
.yd4{bottom:283.779333pt;}
.y141{bottom:285.346800pt;}
.y215{bottom:288.109333pt;}
.y65{bottom:289.347867pt;}
.y1cd{bottom:289.821467pt;}
.y1f3{bottom:292.381733pt;}
.y161{bottom:293.234933pt;}
.y8b{bottom:293.236933pt;}
.y11e{bottom:294.858000pt;}
.y183{bottom:296.224800pt;}
.y1a7{bottom:297.511733pt;}
.yb0{bottom:297.935867pt;}
.y3e{bottom:298.340000pt;}
.y16{bottom:300.742667pt;}
.yf8{bottom:300.914400pt;}
.yd3{bottom:302.302000pt;}
.y236{bottom:303.151867pt;}
.y140{bottom:303.808133pt;}
.y1cc{bottom:305.157467pt;}
.y64{bottom:307.671200pt;}
.y1f2{bottom:310.597733pt;}
.y160{bottom:311.420267pt;}
.y8a{bottom:311.422267pt;}
.y11d{bottom:312.982000pt;}
.y214{bottom:313.827333pt;}
.y182{bottom:314.302800pt;}
.y1a6{bottom:315.543733pt;}
.yaf{bottom:315.952533pt;}
.y3d{bottom:316.341333pt;}
.y15{bottom:319.372667pt;}
.yf7{bottom:320.203733pt;}
.yd2{bottom:320.824667pt;}
.y235{bottom:321.155867pt;}
.y13f{bottom:322.269467pt;}
.y1cb{bottom:323.156133pt;}
.y63{bottom:325.994533pt;}
.y1f1{bottom:328.813733pt;}
.y15f{bottom:329.605600pt;}
.y89{bottom:329.607600pt;}
.y11c{bottom:331.106000pt;}
.y213{bottom:331.985333pt;}
.y181{bottom:332.380800pt;}
.y1a5{bottom:333.575733pt;}
.yae{bottom:333.969200pt;}
.y3c{bottom:334.342667pt;}
.y14{bottom:338.002667pt;}
.yd1{bottom:339.347333pt;}
.yf6{bottom:339.493067pt;}
.y13e{bottom:340.730800pt;}
.y62{bottom:344.317867pt;}
.y234{bottom:346.719867pt;}
.y1f0{bottom:347.029733pt;}
.y15e{bottom:347.790933pt;}
.y88{bottom:347.792933pt;}
.y11b{bottom:349.230000pt;}
.y212{bottom:350.143333pt;}
.y180{bottom:350.458800pt;}
.y1a4{bottom:351.607733pt;}
.yad{bottom:351.985867pt;}
.y3b{bottom:352.344000pt;}
.y13{bottom:356.632667pt;}
.yd0{bottom:357.870000pt;}
.yf5{bottom:358.782400pt;}
.y13d{bottom:359.192133pt;}
.y1ca{bottom:362.281867pt;}
.y61{bottom:362.641200pt;}
.y1ef{bottom:365.245733pt;}
.y15d{bottom:365.976267pt;}
.y87{bottom:365.977200pt;}
.y11a{bottom:367.354000pt;}
.y17f{bottom:368.536800pt;}
.y1a3{bottom:369.639733pt;}
.yac{bottom:370.002533pt;}
.y3a{bottom:370.345333pt;}
.y233{bottom:372.283867pt;}
.y12{bottom:375.262667pt;}
.y211{bottom:375.861333pt;}
.ycf{bottom:376.392667pt;}
.y13c{bottom:377.653467pt;}
.yf4{bottom:378.071733pt;}
.y1c9{bottom:380.620533pt;}
.y60{bottom:380.964533pt;}
.y1ee{bottom:383.461733pt;}
.y86{bottom:384.147867pt;}
.y15c{bottom:384.161600pt;}
.y119{bottom:385.478000pt;}
.y17e{bottom:386.614800pt;}
.y1a2{bottom:387.671733pt;}
.yab{bottom:388.019200pt;}
.y39{bottom:388.346667pt;}
.y232{bottom:390.287867pt;}
.y11{bottom:393.892667pt;}
.yce{bottom:394.915333pt;}
.y13b{bottom:396.158400pt;}
.yf3{bottom:397.361067pt;}
.y1c8{bottom:398.959200pt;}
.y5f{bottom:399.287867pt;}
.y1ed{bottom:401.677733pt;}
.y15b{bottom:402.331200pt;}
.y85{bottom:402.333200pt;}
.y118{bottom:403.602000pt;}
.y17d{bottom:404.692800pt;}
.y1a1{bottom:405.703733pt;}
.yaa{bottom:406.035867pt;}
.y38{bottom:406.348000pt;}
.y231{bottom:408.291867pt;}
.y10{bottom:412.522667pt;}
.yf{bottom:412.524000pt;}
.ycd{bottom:413.438000pt;}
.y13a{bottom:414.619733pt;}
.yf2{bottom:416.650400pt;}
.y1c7{bottom:417.297867pt;}
.y5e{bottom:417.611200pt;}
.y1ec{bottom:419.893733pt;}
.y15a{bottom:420.516533pt;}
.y84{bottom:420.518533pt;}
.y117{bottom:421.726000pt;}
.y17c{bottom:422.770800pt;}
.y1a0{bottom:423.735733pt;}
.ya9{bottom:424.052533pt;}
.y37{bottom:424.349333pt;}
.y230{bottom:426.295867pt;}
.ycc{bottom:431.960667pt;}
.y139{bottom:433.081067pt;}
.y1c6{bottom:435.634800pt;}
.y5d{bottom:435.934533pt;}
.yf1{bottom:435.939733pt;}
.y1eb{bottom:438.109733pt;}
.y159{bottom:438.701867pt;}
.y83{bottom:438.703867pt;}
.y210{bottom:439.307867pt;}
.y116{bottom:439.850000pt;}
.y17b{bottom:440.848800pt;}
.y19f{bottom:441.767733pt;}
.ya8{bottom:442.069200pt;}
.y36{bottom:442.350667pt;}
.ycb{bottom:450.483333pt;}
.y138{bottom:451.542400pt;}
.y22f{bottom:451.859867pt;}
.y1c5{bottom:453.973467pt;}
.y5c{bottom:454.257867pt;}
.yf0{bottom:455.229067pt;}
.y1ea{bottom:456.325733pt;}
.y158{bottom:456.887200pt;}
.y82{bottom:456.889200pt;}
.y20f{bottom:457.462533pt;}
.y115{bottom:457.988933pt;}
.y17a{bottom:458.926800pt;}
.y19e{bottom:459.799733pt;}
.ya7{bottom:460.085867pt;}
.y35{bottom:460.352000pt;}
.yca{bottom:469.006000pt;}
.y22e{bottom:469.863867pt;}
.y137{bottom:470.003733pt;}
.y1c4{bottom:472.312133pt;}
.y5b{bottom:472.581200pt;}
.yef{bottom:474.518400pt;}
.y1e9{bottom:474.541733pt;}
.y157{bottom:475.072533pt;}
.y81{bottom:475.074533pt;}
.ye{bottom:475.607067pt;}
.y20e{bottom:475.617200pt;}
.y114{bottom:476.112933pt;}
.y179{bottom:477.004800pt;}
.y19d{bottom:477.831733pt;}
.ya6{bottom:478.102533pt;}
.y34{bottom:478.353333pt;}
.yc9{bottom:487.528667pt;}
.y136{bottom:488.465067pt;}
.y1c3{bottom:490.650800pt;}
.y5a{bottom:490.904533pt;}
.y1e8{bottom:492.757733pt;}
.y156{bottom:493.257867pt;}
.y80{bottom:493.259867pt;}
.y20d{bottom:493.771867pt;}
.yee{bottom:493.807733pt;}
.y113{bottom:494.236933pt;}
.yd{bottom:494.913733pt;}
.y178{bottom:495.082800pt;}
.y22d{bottom:495.427867pt;}
.y19c{bottom:495.863733pt;}
.ya5{bottom:496.118400pt;}
.y33{bottom:496.354667pt;}
.yc8{bottom:506.051333pt;}
.y135{bottom:506.926400pt;}
.y1c2{bottom:508.988933pt;}
.y59{bottom:509.227867pt;}
.y1e7{bottom:510.973733pt;}
.y155{bottom:511.443200pt;}
.y7f{bottom:511.445200pt;}
.y20c{bottom:511.926533pt;}
.y112{bottom:512.360933pt;}
.yed{bottom:513.097067pt;}
.y177{bottom:513.160800pt;}
.y22c{bottom:513.431867pt;}
.y19b{bottom:513.895733pt;}
.ya4{bottom:514.135067pt;}
.yc{bottom:514.220400pt;}
.y32{bottom:514.356000pt;}
.yc7{bottom:524.574000pt;}
.y134{bottom:525.406400pt;}
.y1c1{bottom:527.321200pt;}
.y58{bottom:527.551200pt;}
.y1e6{bottom:529.189733pt;}
.y154{bottom:529.628533pt;}
.y7e{bottom:529.630533pt;}
.y20b{bottom:530.081200pt;}
.y111{bottom:530.488667pt;}
.y176{bottom:531.231200pt;}
.y22b{bottom:531.435867pt;}
.y19a{bottom:531.927733pt;}
.ya3{bottom:532.151733pt;}
.y31{bottom:532.357333pt;}
.yec{bottom:532.386400pt;}
.yb{bottom:533.527067pt;}
.yc6{bottom:543.096667pt;}
.y133{bottom:543.867733pt;}
.y1c0{bottom:545.659867pt;}
.y57{bottom:545.874533pt;}
.y1e5{bottom:547.405733pt;}
.y153{bottom:547.813867pt;}
.y7d{bottom:547.815867pt;}
.y20a{bottom:548.235867pt;}
.y110{bottom:548.665200pt;}
.y175{bottom:549.309200pt;}
.y199{bottom:549.959733pt;}
.ya2{bottom:550.168400pt;}
.y30{bottom:550.358667pt;}
.yeb{bottom:551.661867pt;}
.y22a{bottom:556.999867pt;}
.yc5{bottom:561.619333pt;}
.y132{bottom:562.329067pt;}
.y1bf{bottom:563.998533pt;}
.y56{bottom:564.197867pt;}
.y1e4{bottom:565.621733pt;}
.y152{bottom:565.999200pt;}
.y7c{bottom:566.001200pt;}
.y209{bottom:566.390533pt;}
.y10f{bottom:566.789200pt;}
.y174{bottom:567.387200pt;}
.y198{bottom:567.991733pt;}
.ya1{bottom:568.185067pt;}
.y2f{bottom:568.360000pt;}
.yea{bottom:570.951200pt;}
.y229{bottom:575.003867pt;}
.ya{bottom:579.287067pt;}
.yc4{bottom:580.142000pt;}
.y131{bottom:580.865200pt;}
.y1be{bottom:582.337200pt;}
.y55{bottom:582.521200pt;}
.y1e3{bottom:583.837733pt;}
.y151{bottom:584.184533pt;}
.y7b{bottom:584.186533pt;}
.y208{bottom:584.545200pt;}
.y10e{bottom:584.913200pt;}
.y173{bottom:585.465200pt;}
.y197{bottom:586.023733pt;}
.ya0{bottom:586.201733pt;}
.y2e{bottom:586.385200pt;}
.ye9{bottom:590.240533pt;}
.yc3{bottom:598.664667pt;}
.y130{bottom:599.326533pt;}
.y228{bottom:600.567867pt;}
.y1bd{bottom:600.675867pt;}
.y54{bottom:600.844533pt;}
.y1e2{bottom:602.053733pt;}
.y150{bottom:602.369867pt;}
.y7a{bottom:602.371867pt;}
.y207{bottom:602.699867pt;}
.y10d{bottom:603.037200pt;}
.y172{bottom:603.543200pt;}
.y196{bottom:604.055733pt;}
.y9f{bottom:604.218400pt;}
.y2d{bottom:604.386533pt;}
.y9{bottom:607.923600pt;}
.ye8{bottom:609.529867pt;}
.yc2{bottom:617.187333pt;}
.y12f{bottom:617.787867pt;}
.y227{bottom:618.571867pt;}
.y1bc{bottom:619.014533pt;}
.y53{bottom:619.167867pt;}
.y1e1{bottom:620.269733pt;}
.y14f{bottom:620.555200pt;}
.y79{bottom:620.557200pt;}
.y206{bottom:620.854533pt;}
.y10c{bottom:621.161200pt;}
.y171{bottom:621.621200pt;}
.y195{bottom:622.087733pt;}
.y9e{bottom:622.235067pt;}
.y2c{bottom:622.387867pt;}
.ye7{bottom:628.819200pt;}
.yc1{bottom:635.710000pt;}
.y12e{bottom:636.249200pt;}
.y8{bottom:636.560267pt;}
.y1bb{bottom:637.353200pt;}
.y52{bottom:637.491200pt;}
.y1e0{bottom:638.485733pt;}
.y78{bottom:638.737333pt;}
.y14e{bottom:638.740533pt;}
.y205{bottom:639.009200pt;}
.y10b{bottom:639.285200pt;}
.y170{bottom:639.699200pt;}
.y194{bottom:640.119733pt;}
.y9d{bottom:640.251733pt;}
.y2b{bottom:640.389200pt;}
.y226{bottom:644.135867pt;}
.ye6{bottom:648.094800pt;}
.yc0{bottom:654.232667pt;}
.y12d{bottom:654.710533pt;}
.y1ba{bottom:655.691867pt;}
.y51{bottom:655.814533pt;}
.y1df{bottom:656.676800pt;}
.y77{bottom:656.922667pt;}
.y14d{bottom:656.925867pt;}
.y204{bottom:657.163867pt;}
.y10a{bottom:657.409200pt;}
.y16f{bottom:657.777200pt;}
.y193{bottom:658.151733pt;}
.y9c{bottom:658.268400pt;}
.y2a{bottom:658.390533pt;}
.y225{bottom:662.139867pt;}
.ye5{bottom:667.384133pt;}
.ybf{bottom:672.755333pt;}
.y12c{bottom:673.171867pt;}
.y1b9{bottom:674.030533pt;}
.y50{bottom:674.137867pt;}
.y1de{bottom:674.892800pt;}
.y76{bottom:675.108000pt;}
.y14c{bottom:675.110133pt;}
.y203{bottom:675.318533pt;}
.y109{bottom:675.533200pt;}
.y16e{bottom:675.855200pt;}
.y192{bottom:676.183733pt;}
.y9b{bottom:676.285067pt;}
.y29{bottom:676.391867pt;}
.y224{bottom:680.143867pt;}
.ye4{bottom:686.673467pt;}
.ybe{bottom:691.278000pt;}
.y12b{bottom:691.633200pt;}
.y7{bottom:691.638000pt;}
.y1b8{bottom:692.369200pt;}
.y4f{bottom:692.461200pt;}
.y1dd{bottom:693.108800pt;}
.y14b{bottom:693.289200pt;}
.y75{bottom:693.293333pt;}
.y202{bottom:693.473200pt;}
.y108{bottom:693.657200pt;}
.y16d{bottom:693.933200pt;}
.y191{bottom:694.215733pt;}
.y9a{bottom:694.301733pt;}
.y28{bottom:694.393200pt;}
.y223{bottom:705.707867pt;}
.ye3{bottom:705.962800pt;}
.ybd{bottom:709.787867pt;}
.y12a{bottom:710.094533pt;}
.y1b7{bottom:710.707867pt;}
.y4e{bottom:710.784533pt;}
.y1dc{bottom:711.324800pt;}
.y14a{bottom:711.474533pt;}
.y74{bottom:711.478667pt;}
.y201{bottom:711.627867pt;}
.y107{bottom:711.781200pt;}
.y16c{bottom:712.011200pt;}
.y190{bottom:712.247733pt;}
.y99{bottom:712.318267pt;}
.y27{bottom:712.394533pt;}
.y6{bottom:718.504667pt;}
.y222{bottom:723.711867pt;}
.ye2{bottom:725.252133pt;}
.ybc{bottom:728.310533pt;}
.y129{bottom:728.555867pt;}
.y1b6{bottom:729.046533pt;}
.y4d{bottom:729.107867pt;}
.y1db{bottom:729.540800pt;}
.y73{bottom:729.659867pt;}
.y200{bottom:729.782533pt;}
.y106{bottom:729.905200pt;}
.y16b{bottom:730.089200pt;}
.y18f{bottom:730.279733pt;}
.y98{bottom:730.334667pt;}
.y26{bottom:730.395867pt;}
.y5{bottom:737.811333pt;}
.y221{bottom:741.715867pt;}
.ye1{bottom:744.533200pt;}
.ybb{bottom:746.833200pt;}
.y128{bottom:747.017200pt;}
.y1b5{bottom:747.385200pt;}
.y4c{bottom:747.431200pt;}
.y1da{bottom:747.756800pt;}
.y72{bottom:747.845200pt;}
.y1ff{bottom:747.937200pt;}
.y105{bottom:748.029200pt;}
.y16a{bottom:748.167200pt;}
.y18e{bottom:748.311733pt;}
.y97{bottom:748.351333pt;}
.y25{bottom:748.397200pt;}
.y4{bottom:757.118000pt;}
.ye0{bottom:763.822533pt;}
.yba{bottom:765.355867pt;}
.y127{bottom:765.478533pt;}
.y1b4{bottom:765.723867pt;}
.y4b{bottom:765.754533pt;}
.y1d9{bottom:765.972800pt;}
.y71{bottom:766.030533pt;}
.y1fe{bottom:766.091867pt;}
.y104{bottom:766.153200pt;}
.y169{bottom:766.245200pt;}
.y18d{bottom:766.343733pt;}
.y96{bottom:766.368000pt;}
.y24{bottom:766.398533pt;}
.y220{bottom:767.279867pt;}
.ydf{bottom:783.111867pt;}
.yb9{bottom:783.878533pt;}
.y126{bottom:783.939867pt;}
.y3{bottom:783.984667pt;}
.y1b3{bottom:784.062533pt;}
.y4a{bottom:784.077867pt;}
.y1d8{bottom:784.185200pt;}
.y70{bottom:784.215867pt;}
.y1fd{bottom:784.246533pt;}
.y103{bottom:784.277200pt;}
.y168{bottom:784.323200pt;}
.y18c{bottom:784.369200pt;}
.y95{bottom:784.384533pt;}
.y23{bottom:784.399867pt;}
.y21f{bottom:785.283867pt;}
.y22{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y21{bottom:842.834667pt;}
.y49{bottom:858.834667pt;}
.h16{height:23.761805pt;}
.hd{height:30.247771pt;}
.h17{height:33.810271pt;}
.hf{height:36.354167pt;}
.h11{height:40.898438pt;}
.he{height:44.460938pt;}
.h5{height:45.286458pt;}
.h4{height:45.442708pt;}
.h3{height:47.714844pt;}
.h28{height:48.425781pt;}
.h9{height:49.401042pt;}
.h27{height:51.871094pt;}
.hc{height:52.259115pt;}
.h25{height:52.261248pt;}
.h1a{height:52.262315pt;}
.h15{height:52.263381pt;}
.h26{height:52.266048pt;}
.h12{height:52.275648pt;}
.h24{height:52.284715pt;}
.h1c{height:52.292181pt;}
.h1b{height:52.310315pt;}
.h1d{height:52.314048pt;}
.h21{height:52.322048pt;}
.h1f{height:52.402048pt;}
.h10{height:52.559360pt;}
.h1e{height:53.037760pt;}
.h8{height:54.531250pt;}
.h2{height:56.803385pt;}
.hb{height:56.811198pt;}
.h18{height:56.811731pt;}
.h19{height:56.812265pt;}
.h13{height:56.831998pt;}
.h20{height:56.836265pt;}
.h23{height:56.837331pt;}
.h22{height:56.841598pt;}
.h14{height:56.869865pt;}
.h6{height:63.619792pt;}
.h7{height:81.796875pt;}
.ha{height:150.877517pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xe{left:71.941867pt;}
.x4{left:72.974800pt;}
.x8{left:74.388133pt;}
.x1{left:75.590533pt;}
.xf{left:91.056000pt;}
.xc{left:92.693067pt;}
.x6{left:93.651600pt;}
.x7{left:94.644133pt;}
.xd{left:96.025067pt;}
.xa{left:111.450267pt;}
.x9{left:112.884667pt;}
.xb{left:113.791733pt;}
.x5{left:173.722267pt;}
.x3{left:206.533067pt;}
.x2{left:207.480400pt;}
}




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