
    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_5be1e462240f1b88e602da02.woff')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_a625aaba5c401419ff140c28.woff')format("woff");}.ff2{font-family:ff2;line-height:1.115723;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_b47ebf45da6ccb5d10068e23.woff')format("woff");}.ff3{font-family:ff3;line-height:1.094727;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_0bb2de3c595c2a0077397af1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.012000;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_f9389cd854731c5feb6f3188.woff')format("woff");}.ff5{font-family:ff5;line-height:1.095703;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_1071477391bafe21c5886893.woff')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_27219e73116faf989504bede.woff')format("woff");}.ff7{font-family:ff7;line-height:1.104004;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_3404f615d8e8f7564437c885.woff')format("woff");}.ff8{font-family:ff8;line-height:1.125977;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8e4bcb88851b2188449c9826.woff')format("woff");}.ff9{font-family:ff9;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_800eb0a2ec8191b3e7ae2033.woff')format("woff");}.ffa{font-family:ffa;line-height:1.115723;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;}
.m3{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.234923,0.000000,-0.085505,0.234923,0,0);-ms-transform:matrix(0.234923,0.000000,-0.085505,0.234923,0,0);-webkit-transform:matrix(0.234923,0.000000,-0.085505,0.234923,0,0);}
.m7{transform:matrix(0.243592,0.000000,-0.056238,0.243592,0,0);-ms-transform:matrix(0.243592,0.000000,-0.056238,0.243592,0,0);-webkit-transform:matrix(0.243592,0.000000,-0.056238,0.243592,0,0);}
.m1{transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);}
.m5{transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043412,0.246202,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);}
.m2{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.328269,0.000000,-0.043412,0.246202,0,0);-ms-transform:matrix(0.328269,0.000000,-0.043412,0.246202,0,0);-webkit-transform:matrix(0.328269,0.000000,-0.043412,0.246202,0,0);}
.m8{transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333333,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-19.800000px;}
.v3{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.840000px;}
.v2{vertical-align:17.820000px;}
.v1{vertical-align:19.800000px;}
.v7{vertical-align:24.000000px;}
.v6{vertical-align:30.000000px;}
.ls5{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000360px;}
.ls7{letter-spacing:0.000420px;}
.ls6{letter-spacing:0.000480px;}
.ls4{letter-spacing:0.005220px;}
.lsf{letter-spacing:0.005760px;}
.ls1{letter-spacing:0.005820px;}
.ls0{letter-spacing:0.008040px;}
.ls25{letter-spacing:0.009600px;}
.ls13{letter-spacing:0.010080px;}
.ls3{letter-spacing:0.012060px;}
.ls2{letter-spacing:0.012120px;}
.ls1d{letter-spacing:0.347940px;}
.ls1f{letter-spacing:0.599400px;}
.ls1e{letter-spacing:0.600000px;}
.ls1c{letter-spacing:0.600060px;}
.ls20{letter-spacing:0.612600px;}
.lsa{letter-spacing:0.715200px;}
.ls1a{letter-spacing:0.720000px;}
.ls1b{letter-spacing:0.720480px;}
.ls15{letter-spacing:0.963600px;}
.ls12{letter-spacing:1.107000px;}
.ls17{letter-spacing:1.147440px;}
.lsd{letter-spacing:1.173000px;}
.ls19{letter-spacing:1.377000px;}
.ls9{letter-spacing:1.483800px;}
.ls14{letter-spacing:2.233260px;}
.ls16{letter-spacing:2.442600px;}
.lsb{letter-spacing:2.669820px;}
.ls21{letter-spacing:3.072600px;}
.ls11{letter-spacing:3.529200px;}
.ls28{letter-spacing:3.600060px;}
.ls26{letter-spacing:5.111520px;}
.ls10{letter-spacing:5.253120px;}
.ls27{letter-spacing:5.949660px;}
.ls24{letter-spacing:6.000000px;}
.ls29{letter-spacing:6.219720px;}
.ls8{letter-spacing:6.417600px;}
.lse{letter-spacing:6.445920px;}
.ls22{letter-spacing:7.122600px;}
.ls23{letter-spacing:7.200000px;}
.ls18{letter-spacing:8.922000px;}
.ls2a{letter-spacing:9.866400px;}
.ls2b{letter-spacing:19.650600px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-18.000000px;}
.ws5{word-spacing:-16.200000px;}
.ws12{word-spacing:-15.600000px;}
.ws10{word-spacing:-15.120000px;}
.ws7{word-spacing:-15.000000px;}
.ws9{word-spacing:-14.400000px;}
.ws3{word-spacing:-13.500000px;}
.ws11{word-spacing:-12.720000px;}
.ws0{word-spacing:-12.000000px;}
.ws19{word-spacing:-10.500000px;}
.ws1{word-spacing:-8.700000px;}
.ws4{word-spacing:-7.830000px;}
.ws8{word-spacing:-6.960000px;}
.wsa{word-spacing:-4.210200px;}
.ws13{word-spacing:-4.200000px;}
.wsb{word-spacing:-3.008640px;}
.ws17{word-spacing:-3.000420px;}
.ws14{word-spacing:-3.000000px;}
.ws16{word-spacing:-2.999580px;}
.ws18{word-spacing:-2.999520px;}
.ws15{word-spacing:-2.999460px;}
.wsd{word-spacing:-0.608700px;}
.wse{word-spacing:-0.600000px;}
.ws6{word-spacing:0.000000px;}
.wsc{word-spacing:0.591360px;}
.wsf{word-spacing:0.600540px;}
._5{margin-left:-31.680000px;}
._20{margin-left:-30.241320px;}
._21{margin-left:-29.091000px;}
._24{margin-left:-27.248400px;}
._1b{margin-left:-25.486980px;}
._1f{margin-left:-24.394380px;}
._10{margin-left:-23.362140px;}
._1c{margin-left:-22.148880px;}
._2{margin-left:-21.120000px;}
._16{margin-left:-19.852560px;}
._7{margin-left:-18.742980px;}
._f{margin-left:-17.587680px;}
._1a{margin-left:-15.568500px;}
._17{margin-left:-14.148540px;}
._22{margin-left:-13.127340px;}
._25{margin-left:-11.791320px;}
._1d{margin-left:-9.496260px;}
._4{margin-left:-7.992000px;}
._13{margin-left:-6.475200px;}
._0{margin-left:-5.328000px;}
._1{margin-left:-3.552000px;}
._3{margin-left:-1.657860px;}
._6{width:1.448460px;}
._9{width:2.541180px;}
._d{width:4.481340px;}
._a{width:5.616000px;}
._c{width:7.290000px;}
._e{width:8.586000px;}
._15{width:10.044000px;}
._b{width:11.178000px;}
._14{width:12.306000px;}
._23{width:13.775400px;}
._8{width:15.108000px;}
._19{width:16.175880px;}
._18{width:18.095940px;}
._27{width:19.435200px;}
._28{width:20.450520px;}
._26{width:25.560000px;}
._1e{width:28.175940px;}
._12{width:30.096000px;}
._11{width:42.096000px;}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:27.840000px;}
.fs6{font-size:31.320000px;}
.fs2{font-size:34.800000px;}
.fsb{font-size:41.760060px;}
.fs7{font-size:42.000000px;}
.fs10{font-size:45.000000px;}
.fsc{font-size:45.694195px;}
.fs1{font-size:48.000000px;}
.fsa{font-size:49.072345px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fsd{font-size:60.925607px;}
.fs8{font-size:61.340429px;}
.fsf{font-size:61.578257px;}
.fse{font-size:63.850682px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:101.015010px;}
.y1{bottom:102.654720px;}
.y22{bottom:103.552365px;}
.y10b{bottom:148.136730px;}
.ybe{bottom:148.277415px;}
.y132{bottom:148.497645px;}
.y97{bottom:148.539615px;}
.y182{bottom:150.771915px;}
.y14c{bottom:151.729545px;}
.y1b4{bottom:152.081085px;}
.y19a{bottom:152.335305px;}
.yf5{bottom:152.870505px;}
.ydd{bottom:153.694905px;}
.y156{bottom:154.651590px;}
.y48{bottom:154.802670px;}
.y73{bottom:155.883615px;}
.y20{bottom:160.993275px;}
.y10a{bottom:162.536730px;}
.ybd{bottom:162.677415px;}
.y181{bottom:165.171900px;}
.y14b{bottom:166.129560px;}
.y1b3{bottom:166.481070px;}
.y199{bottom:166.735320px;}
.y131{bottom:166.857630px;}
.y96{bottom:166.899630px;}
.yf4{bottom:167.270490px;}
.y47{bottom:169.202685px;}
.y72{bottom:170.283630px;}
.y109{bottom:176.936730px;}
.ybc{bottom:177.077415px;}
.y1f{bottom:177.193275px;}
.yf3{bottom:177.710490px;}
.y180{bottom:179.571915px;}
.y14a{bottom:180.529545px;}
.y198{bottom:181.135305px;}
.y130{bottom:181.257630px;}
.y95{bottom:181.299615px;}
.y46{bottom:183.602670px;}
.y71{bottom:184.683630px;}
.y149{bottom:190.969545px;}
.y108{bottom:191.336730px;}
.ybb{bottom:191.477430px;}
.y12f{bottom:191.697645px;}
.y1e{bottom:193.393275px;}
.y197{bottom:195.535305px;}
.y94{bottom:195.699630px;}
.yf2{bottom:196.070475px;}
.y17f{bottom:197.931915px;}
.y45{bottom:198.002685px;}
.y70{bottom:199.083615px;}
.y155{bottom:205.868430px;}
.y12e{bottom:206.097645px;}
.y93{bottom:206.139630px;}
.y17e{bottom:208.371900px;}
.y148{bottom:209.329530px;}
.y1d{bottom:209.593275px;}
.y107{bottom:209.696730px;}
.yba{bottom:209.837430px;}
.y1b2{bottom:210.135825px;}
.yf1{bottom:210.470490px;}
.ydc{bottom:212.261025px;}
.y44{bottom:212.402685px;}
.y6f{bottom:213.483630px;}
.y6e{bottom:217.443630px;}
.y147{bottom:219.769530px;}
.y154{bottom:223.868430px;}
.y106{bottom:224.096715px;}
.yb9{bottom:224.237415px;}
.y12d{bottom:224.457645px;}
.y92{bottom:224.499615px;}
.y1c{bottom:225.793275px;}
.y17d{bottom:226.731900px;}
.y43{bottom:226.802670px;}
.y6d{bottom:227.883615px;}
.ydb{bottom:230.261025px;}
.y1b1{bottom:234.513765px;}
.yb8{bottom:234.677415px;}
.y146{bottom:238.129560px;}
.y105{bottom:238.496730px;}
.y12c{bottom:238.857630px;}
.y91{bottom:238.899630px;}
.y17c{bottom:241.131915px;}
.y153{bottom:241.868385px;}
.y1b{bottom:241.993275px;}
.y6c{bottom:246.243615px;}
.yda{bottom:248.261025px;}
.y104{bottom:248.936715px;}
.y1b0{bottom:252.513720px;}
.y145{bottom:252.529545px;}
.yb7{bottom:253.037400px;}
.y17b{bottom:255.531900px;}
.y6b{bottom:256.683630px;}
.y1a{bottom:258.193275px;}
.y196{bottom:259.267365px;}
.y17a{bottom:265.971915px;}
.y152{bottom:266.246385px;}
.yd9{bottom:266.261025px;}
.y103{bottom:267.296715px;}
.y19{bottom:274.393275px;}
.y6a{bottom:275.043615px;}
.y1af{bottom:276.891720px;}
.y195{bottom:277.267365px;}
.yf0{bottom:277.868430px;}
.y179{bottom:280.371915px;}
.y102{bottom:281.696730px;}
.y151{bottom:284.246385px;}
.yd8{bottom:284.261025px;}
.y69{bottom:289.443630px;}
.y18{bottom:290.593275px;}
.y178{bottom:294.771915px;}
.y1ae{bottom:294.891675px;}
.y194{bottom:295.267365px;}
.yef{bottom:295.868385px;}
.y42{bottom:299.361900px;}
.y12b{bottom:301.411425px;}
.y14f{bottom:302.246385px;}
.yd7{bottom:302.261025px;}
.y150{bottom:302.996385px;}
.y68{bottom:303.843630px;}
.y17{bottom:306.793260px;}
.y177{bottom:309.171900px;}
.y14e{bottom:312.746385px;}
.y193{bottom:313.267365px;}
.y67{bottom:314.283630px;}
.y41{bottom:317.361900px;}
.y1ad{bottom:319.269675px;}
.y12a{bottom:319.411425px;}
.yee{bottom:320.246385px;}
.yd6{bottom:320.261025px;}
.y16{bottom:322.993260px;}
.y176{bottom:323.571900px;}
.yb6{bottom:324.655515px;}
.y192{bottom:331.267365px;}
.y66{bottom:332.643630px;}
.y144{bottom:333.002295px;}
.y40{bottom:335.361855px;}
.y1ac{bottom:337.269630px;}
.y129{bottom:337.411425px;}
.y175{bottom:337.971900px;}
.yed{bottom:338.246385px;}
.yd5{bottom:338.260980px;}
.yb5{bottom:342.655515px;}
.y15{bottom:347.697210px;}
.y191{bottom:349.267365px;}
.y90{bottom:349.868430px;}
.y143{bottom:351.002295px;}
.y174{bottom:352.371900px;}
.y3f{bottom:353.361855px;}
.y128{bottom:355.411380px;}
.yec{bottom:356.246385px;}
.yb4{bottom:360.655515px;}
.y1ab{bottom:361.647630px;}
.yd4{bottom:362.638980px;}
.y14{bottom:363.897210px;}
.y173{bottom:366.771900px;}
.y190{bottom:367.267320px;}
.y8f{bottom:367.868430px;}
.y142{bottom:369.002295px;}
.y3e{bottom:371.361855px;}
.y127{bottom:373.411380px;}
.yeb{bottom:374.246385px;}
.yb3{bottom:378.655515px;}
.y1aa{bottom:379.647840px;}
.y13{bottom:380.097210px;}
.y65{bottom:380.638980px;}
.y172{bottom:385.131915px;}
.y8e{bottom:385.868430px;}
.y141{bottom:387.002295px;}
.y18f{bottom:391.645320px;}
.yea{bottom:392.246385px;}
.y3d{bottom:395.739855px;}
.y12{bottom:396.297210px;}
.yb2{bottom:396.655515px;}
.y126{bottom:397.789380px;}
.y64{bottom:398.638935px;}
.yd3{bottom:398.638980px;}
.y8d{bottom:403.868430px;}
.y1a9{bottom:404.025540px;}
.y140{bottom:405.002295px;}
.y18e{bottom:409.645320px;}
.ye9{bottom:410.246385px;}
.y11{bottom:412.497210px;}
.y3c{bottom:413.739855px;}
.yb1{bottom:414.655515px;}
.y125{bottom:415.789380px;}
.yd2{bottom:416.638980px;}
.y101{bottom:421.868340px;}
.y1a8{bottom:422.025540px;}
.y13f{bottom:423.002295px;}
.y63{bottom:423.016935px;}
.y18d{bottom:427.645320px;}
.ye8{bottom:428.246340px;}
.y10{bottom:428.697210px;}
.y3b{bottom:431.739855px;}
.yb0{bottom:432.655470px;}
.y124{bottom:433.789380px;}
.yd1{bottom:434.638980px;}
.y171{bottom:439.267365px;}
.y13e{bottom:441.002235px;}
.y62{bottom:441.016935px;}
.yf{bottom:444.897195px;}
.y18c{bottom:445.645320px;}
.y1a7{bottom:446.403540px;}
.y3a{bottom:449.739855px;}
.y123{bottom:451.789380px;}
.y8c{bottom:452.624340px;}
.yd0{bottom:452.638935px;}
.yaf{bottom:457.033470px;}
.y170{bottom:457.267320px;}
.y13d{bottom:459.002235px;}
.y61{bottom:459.016935px;}
.ye{bottom:461.097210px;}
.y18b{bottom:463.645320px;}
.y1a6{bottom:464.403480px;}
.y39{bottom:467.739855px;}
.y121{bottom:469.789335px;}
.y122{bottom:469.789380px;}
.y8b{bottom:470.624340px;}
.yae{bottom:475.033470px;}
.y16f{bottom:475.267320px;}
.y60{bottom:477.016935px;}
.yd{bottom:477.297210px;}
.y18a{bottom:481.645320px;}
.y13c{bottom:483.380235px;}
.y38{bottom:485.739855px;}
.y8a{bottom:488.624340px;}
.y1a5{bottom:488.781480px;}
.yad{bottom:493.033470px;}
.y16e{bottom:493.267320px;}
.yc{bottom:493.497210px;}
.y120{bottom:494.167335px;}
.y5f{bottom:495.016890px;}
.ycf{bottom:495.016935px;}
.y189{bottom:499.645320px;}
.y13b{bottom:501.380235px;}
.y37{bottom:503.739855px;}
.y89{bottom:506.624340px;}
.y1a4{bottom:506.781435px;}
.yb{bottom:509.697195px;}
.yac{bottom:511.033470px;}
.y11f{bottom:512.167335px;}
.yce{bottom:513.016935px;}
.y16d{bottom:517.645320px;}
.y13a{bottom:519.380235px;}
.y5e{bottom:519.394890px;}
.y36{bottom:521.739855px;}
.y88{bottom:524.624340px;}
.ya{bottom:525.897195px;}
.yab{bottom:529.033470px;}
.y11e{bottom:530.167335px;}
.ycd{bottom:531.016935px;}
.y1a3{bottom:531.159435px;}
.y16c{bottom:535.645320px;}
.y139{bottom:537.380235px;}
.y5d{bottom:537.394890px;}
.y35{bottom:539.739810px;}
.y9{bottom:542.097210px;}
.y87{bottom:542.624340px;}
.yaa{bottom:547.033425px;}
.y11d{bottom:548.167335px;}
.ycc{bottom:549.016935px;}
.y16b{bottom:553.645320px;}
.y138{bottom:555.380235px;}
.y5c{bottom:555.394890px;}
.y1a2{bottom:557.663475px;}
.y8{bottom:558.297210px;}
.y100{bottom:560.624295px;}
.y86{bottom:560.624340px;}
.y34{bottom:564.117810px;}
.y11c{bottom:566.167335px;}
.ycb{bottom:567.016935px;}
.ya9{bottom:571.411425px;}
.y16a{bottom:571.645320px;}
.y137{bottom:573.380235px;}
.y5b{bottom:573.394890px;}
.y7{bottom:574.497210px;}
.yff{bottom:578.624295px;}
.y85{bottom:578.624340px;}
.y33{bottom:582.117810px;}
.y11b{bottom:584.167335px;}
.yca{bottom:585.016935px;}
.ya8{bottom:589.411380px;}
.y169{bottom:589.645320px;}
.y1a1{bottom:590.545275px;}
.y6{bottom:590.697210px;}
.y136{bottom:591.380235px;}
.y5a{bottom:591.394890px;}
.y84{bottom:596.624295px;}
.ye6{bottom:596.624340px;}
.y32{bottom:600.117810px;}
.y11a{bottom:602.167335px;}
.ye7{bottom:602.564325px;}
.yfe{bottom:603.002295px;}
.yc9{bottom:603.016935px;}
.y168{bottom:607.645320px;}
.y1a0{bottom:608.545275px;}
.y135{bottom:609.380235px;}
.y59{bottom:609.394890px;}
.ya7{bottom:613.789380px;}
.ye5{bottom:614.624340px;}
.y31{bottom:618.117810px;}
.y167{bottom:619.645320px;}
.y119{bottom:620.167335px;}
.y83{bottom:621.002295px;}
.yc8{bottom:621.016935px;}
.y166{bottom:625.645320px;}
.y19f{bottom:626.545275px;}
.y134{bottom:627.380235px;}
.y58{bottom:627.394845px;}
.ya6{bottom:631.789380px;}
.y30{bottom:636.117810px;}
.y118{bottom:638.167275px;}
.y82{bottom:639.002295px;}
.y165{bottom:643.645320px;}
.y19e{bottom:644.545275px;}
.y133{bottom:645.380235px;}
.yc7{bottom:645.394890px;}
.ya5{bottom:649.789380px;}
.y5{bottom:650.097195px;}
.y57{bottom:651.772845px;}
.y2f{bottom:654.117810px;}
.y81{bottom:657.002295px;}
.y164{bottom:661.645275px;}
.y188{bottom:661.645320px;}
.y117{bottom:662.545275px;}
.ye4{bottom:663.380235px;}
.yc6{bottom:663.394890px;}
.ya4{bottom:667.789380px;}
.y56{bottom:669.772845px;}
.y2e{bottom:672.117810px;}
.y80{bottom:675.002295px;}
.y187{bottom:679.645320px;}
.y116{bottom:680.545275px;}
.ye3{bottom:681.380235px;}
.yc5{bottom:681.394890px;}
.y163{bottom:686.023275px;}
.y55{bottom:687.772845px;}
.y2d{bottom:690.117765px;}
.y4{bottom:691.497210px;}
.ya3{bottom:692.167335px;}
.y14d{bottom:693.002235px;}
.y7f{bottom:693.002295px;}
.y186{bottom:697.645320px;}
.y115{bottom:698.545275px;}
.ye2{bottom:699.380235px;}
.yc4{bottom:699.394890px;}
.y162{bottom:704.023275px;}
.y54{bottom:705.772845px;}
.ya2{bottom:710.167335px;}
.y7e{bottom:711.002235px;}
.yfd{bottom:711.002295px;}
.y3{bottom:713.097195px;}
.y2c{bottom:714.495765px;}
.y185{bottom:715.645320px;}
.y114{bottom:716.545275px;}
.ye1{bottom:717.380235px;}
.yc3{bottom:717.394890px;}
.y161{bottom:722.023275px;}
.y53{bottom:723.772845px;}
.ya1{bottom:728.167335px;}
.yfc{bottom:729.002295px;}
.y2b{bottom:732.495765px;}
.y184{bottom:733.645320px;}
.y19d{bottom:734.545230px;}
.y113{bottom:734.545275px;}
.y7d{bottom:735.380235px;}
.yc0{bottom:735.394845px;}
.yc2{bottom:735.394890px;}
.y160{bottom:740.023275px;}
.y52{bottom:741.772845px;}
.yc1{bottom:741.844890px;}
.ya0{bottom:746.167335px;}
.yfb{bottom:747.002295px;}
.y2a{bottom:750.495765px;}
.y183{bottom:751.645275px;}
.y112{bottom:752.545275px;}
.y7c{bottom:753.380235px;}
.ybf{bottom:753.394845px;}
.y15f{bottom:758.023275px;}
.y19c{bottom:758.923230px;}
.y51{bottom:759.772845px;}
.y9f{bottom:764.167335px;}
.yfa{bottom:765.002295px;}
.y29{bottom:768.495765px;}
.y111{bottom:770.545230px;}
.y7b{bottom:771.380235px;}
.y15e{bottom:776.023275px;}
.y19b{bottom:776.923230px;}
.y50{bottom:777.772845px;}
.yf9{bottom:783.002295px;}
.y28{bottom:786.495765px;}
.y9e{bottom:788.545275px;}
.y7a{bottom:789.380235px;}
.y15d{bottom:794.023275px;}
.y110{bottom:794.923230px;}
.y4f{bottom:795.772845px;}
.y9d{bottom:806.545275px;}
.ye0{bottom:807.380190px;}
.y79{bottom:807.380235px;}
.y15c{bottom:812.023275px;}
.y10f{bottom:812.923230px;}
.y4e{bottom:813.772845px;}
.y9c{bottom:824.545275px;}
.ydf{bottom:825.380190px;}
.y78{bottom:825.380235px;}
.y15b{bottom:830.023275px;}
.y10e{bottom:830.923230px;}
.yf8{bottom:831.758190px;}
.y4d{bottom:831.772845px;}
.y9b{bottom:842.545275px;}
.yde{bottom:843.380190px;}
.y77{bottom:843.380235px;}
.y15a{bottom:848.023275px;}
.y10d{bottom:848.923230px;}
.yf7{bottom:849.758190px;}
.y4c{bottom:849.772845px;}
.y27{bottom:856.199685px;}
.y9a{bottom:860.545275px;}
.y76{bottom:861.380190px;}
.y159{bottom:866.023275px;}
.y10c{bottom:866.923230px;}
.yf6{bottom:867.758190px;}
.y4b{bottom:867.772845px;}
.y26{bottom:872.399700px;}
.y158{bottom:884.023275px;}
.y99{bottom:884.923230px;}
.y75{bottom:885.758190px;}
.y4a{bottom:885.772845px;}
.y25{bottom:888.599700px;}
.y157{bottom:902.023275px;}
.y98{bottom:902.923230px;}
.y74{bottom:903.758190px;}
.y49{bottom:903.772845px;}
.y24{bottom:904.799700px;}
.y2{bottom:948.478410px;}
.y23{bottom:951.094485px;}
.h27{height:26.277067px;}
.h16{height:26.277188px;}
.h28{height:26.394255px;}
.h18{height:26.394315px;}
.h15{height:26.394375px;}
.h1a{height:26.394435px;}
.h22{height:27.214688px;}
.h1f{height:30.619922px;}
.hd{height:36.852539px;}
.h20{height:37.090600px;}
.h1b{height:39.748600px;}
.h2e{height:40.363770px;}
.h21{height:40.986444px;}
.h19{height:42.117188px;}
.h2d{height:42.234315px;}
.h17{height:42.234375px;}
.h2c{height:42.234435px;}
.he{height:43.054688px;}
.h8{height:47.381836px;}
.h9{height:47.513612px;}
.h7{height:47.513672px;}
.hb{height:47.513732px;}
.ha{height:48.436463px;}
.hc{height:48.436523px;}
.h23{height:49.349742px;}
.h12{height:49.685747px;}
.h4{height:50.640820px;}
.h3{height:52.646484px;}
.h14{height:52.646664px;}
.h26{height:52.646724px;}
.h25{height:52.646844px;}
.h2f{height:52.792129px;}
.h10{height:52.792969px;}
.h11{height:52.793149px;}
.h1c{height:52.793209px;}
.h13{height:53.173828px;}
.hf{height:53.291016px;}
.h1e{height:53.818359px;}
.h1d{height:53.818539px;}
.h2a{height:54.031313px;}
.h24{height:57.272316px;}
.h6{height:58.072266px;}
.h5{height:64.582031px;}
.h2b{height:77.818359px;}
.h29{height:82.792969px;}
.h2{height:1020.472440px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w2{width:722.834655px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:106.299195px;}
.x8{left:127.559055px;}
.x12{left:134.518890px;}
.xd{left:136.974195px;}
.x15{left:138.176415px;}
.xc{left:140.314950px;}
.xe{left:143.424090px;}
.x16{left:144.626310px;}
.xf{left:161.574810px;}
.xb{left:191.338575px;}
.x2{left:196.130235px;}
.x27{left:201.716265px;}
.x28{left:205.309440px;}
.x3{left:210.966960px;}
.x7{left:212.598405px;}
.x6{left:246.614175px;}
.x2b{left:251.761410px;}
.x2d{left:254.706270px;}
.x2c{left:258.841185px;}
.x4{left:273.020535px;}
.x23{left:282.005040px;}
.x24{left:288.454920px;}
.x13{left:294.053805px;}
.xa{left:295.170210px;}
.x30{left:299.180310px;}
.x14{left:300.503700px;}
.x17{left:303.165525px;}
.x18{left:309.615420px;}
.x19{left:313.782900px;}
.x5{left:318.039555px;}
.x1a{left:320.232795px;}
.x10{left:362.080425px;}
.x29{left:365.668185px;}
.x11{left:368.530305px;}
.x2a{left:373.980315px;}
.x1b{left:377.825700px;}
.x1c{left:384.275595px;}
.x1f{left:391.082925px;}
.x2e{left:395.947455px;}
.x20{left:397.532820px;}
.x2f{left:403.359555px;}
.x34{left:414.439845px;}
.x35{left:421.851945px;}
.x31{left:436.129305px;}
.x26{left:442.604640px;}
.x25{left:446.870610px;}
.x1d{left:463.816605px;}
.x1e{left:470.266500px;}
.x21{left:515.249595px;}
.x22{left:520.409505px;}
.x32{left:554.583390px;}
.x33{left:561.995505px;}
.x1{left:594.035430px;}
@media print{
.v4{vertical-align:-17.600000pt;}
.v3{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:14.080000pt;}
.v2{vertical-align:15.840000pt;}
.v1{vertical-align:17.600000pt;}
.v7{vertical-align:21.333333pt;}
.v6{vertical-align:26.666667pt;}
.ls5{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000320pt;}
.ls7{letter-spacing:0.000373pt;}
.ls6{letter-spacing:0.000427pt;}
.ls4{letter-spacing:0.004640pt;}
.lsf{letter-spacing:0.005120pt;}
.ls1{letter-spacing:0.005173pt;}
.ls0{letter-spacing:0.007147pt;}
.ls25{letter-spacing:0.008533pt;}
.ls13{letter-spacing:0.008960pt;}
.ls3{letter-spacing:0.010720pt;}
.ls2{letter-spacing:0.010773pt;}
.ls1d{letter-spacing:0.309280pt;}
.ls1f{letter-spacing:0.532800pt;}
.ls1e{letter-spacing:0.533333pt;}
.ls1c{letter-spacing:0.533387pt;}
.ls20{letter-spacing:0.544533pt;}
.lsa{letter-spacing:0.635733pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls1b{letter-spacing:0.640427pt;}
.ls15{letter-spacing:0.856533pt;}
.ls12{letter-spacing:0.984000pt;}
.ls17{letter-spacing:1.019947pt;}
.lsd{letter-spacing:1.042667pt;}
.ls19{letter-spacing:1.224000pt;}
.ls9{letter-spacing:1.318933pt;}
.ls14{letter-spacing:1.985120pt;}
.ls16{letter-spacing:2.171200pt;}
.lsb{letter-spacing:2.373173pt;}
.ls21{letter-spacing:2.731200pt;}
.ls11{letter-spacing:3.137067pt;}
.ls28{letter-spacing:3.200053pt;}
.ls26{letter-spacing:4.543573pt;}
.ls10{letter-spacing:4.669440pt;}
.ls27{letter-spacing:5.288587pt;}
.ls24{letter-spacing:5.333333pt;}
.ls29{letter-spacing:5.528640pt;}
.ls8{letter-spacing:5.704533pt;}
.lse{letter-spacing:5.729707pt;}
.ls22{letter-spacing:6.331200pt;}
.ls23{letter-spacing:6.400000pt;}
.ls18{letter-spacing:7.930667pt;}
.ls2a{letter-spacing:8.770133pt;}
.ls2b{letter-spacing:17.467200pt;}
.ws2{word-spacing:-16.000000pt;}
.ws5{word-spacing:-14.400000pt;}
.ws12{word-spacing:-13.866667pt;}
.ws10{word-spacing:-13.440000pt;}
.ws7{word-spacing:-13.333333pt;}
.ws9{word-spacing:-12.800000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws11{word-spacing:-11.306667pt;}
.ws0{word-spacing:-10.666667pt;}
.ws19{word-spacing:-9.333333pt;}
.ws1{word-spacing:-7.733333pt;}
.ws4{word-spacing:-6.960000pt;}
.ws8{word-spacing:-6.186667pt;}
.wsa{word-spacing:-3.742400pt;}
.ws13{word-spacing:-3.733333pt;}
.wsb{word-spacing:-2.674347pt;}
.ws17{word-spacing:-2.667040pt;}
.ws14{word-spacing:-2.666667pt;}
.ws16{word-spacing:-2.666293pt;}
.ws18{word-spacing:-2.666240pt;}
.ws15{word-spacing:-2.666187pt;}
.wsd{word-spacing:-0.541067pt;}
.wse{word-spacing:-0.533333pt;}
.ws6{word-spacing:0.000000pt;}
.wsc{word-spacing:0.525653pt;}
.wsf{word-spacing:0.533813pt;}
._5{margin-left:-28.160000pt;}
._20{margin-left:-26.881173pt;}
._21{margin-left:-25.858667pt;}
._24{margin-left:-24.220800pt;}
._1b{margin-left:-22.655093pt;}
._1f{margin-left:-21.683893pt;}
._10{margin-left:-20.766347pt;}
._1c{margin-left:-19.687893pt;}
._2{margin-left:-18.773333pt;}
._16{margin-left:-17.646720pt;}
._7{margin-left:-16.660427pt;}
._f{margin-left:-15.633493pt;}
._1a{margin-left:-13.838667pt;}
._17{margin-left:-12.576480pt;}
._22{margin-left:-11.668747pt;}
._25{margin-left:-10.481173pt;}
._1d{margin-left:-8.441120pt;}
._4{margin-left:-7.104000pt;}
._13{margin-left:-5.755733pt;}
._0{margin-left:-4.736000pt;}
._1{margin-left:-3.157333pt;}
._3{margin-left:-1.473653pt;}
._6{width:1.287520pt;}
._9{width:2.258827pt;}
._d{width:3.983413pt;}
._a{width:4.992000pt;}
._c{width:6.480000pt;}
._e{width:7.632000pt;}
._15{width:8.928000pt;}
._b{width:9.936000pt;}
._14{width:10.938667pt;}
._23{width:12.244800pt;}
._8{width:13.429333pt;}
._19{width:14.378560pt;}
._18{width:16.085280pt;}
._27{width:17.275733pt;}
._28{width:18.178240pt;}
._26{width:22.720000pt;}
._1e{width:25.045280pt;}
._12{width:26.752000pt;}
._11{width:37.418667pt;}
.fs9{font-size:24.746667pt;}
.fs6{font-size:27.840000pt;}
.fs2{font-size:30.933333pt;}
.fsb{font-size:37.120053pt;}
.fs7{font-size:37.333333pt;}
.fs10{font-size:40.000000pt;}
.fsc{font-size:40.617062pt;}
.fs1{font-size:42.666667pt;}
.fsa{font-size:43.619863pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fsd{font-size:54.156095pt;}
.fs8{font-size:54.524825pt;}
.fsf{font-size:54.736229pt;}
.fse{font-size:56.756162pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:89.791120pt;}
.y1{bottom:91.248640pt;}
.y22{bottom:92.046547pt;}
.y10b{bottom:131.677093pt;}
.ybe{bottom:131.802147pt;}
.y132{bottom:131.997907pt;}
.y97{bottom:132.035213pt;}
.y182{bottom:134.019480pt;}
.y14c{bottom:134.870707pt;}
.y1b4{bottom:135.183187pt;}
.y19a{bottom:135.409160pt;}
.yf5{bottom:135.884893pt;}
.ydd{bottom:136.617693pt;}
.y156{bottom:137.468080pt;}
.y48{bottom:137.602373pt;}
.y73{bottom:138.563213pt;}
.y20{bottom:143.105133pt;}
.y10a{bottom:144.477093pt;}
.ybd{bottom:144.602147pt;}
.y181{bottom:146.819467pt;}
.y14b{bottom:147.670720pt;}
.y1b3{bottom:147.983173pt;}
.y199{bottom:148.209173pt;}
.y131{bottom:148.317893pt;}
.y96{bottom:148.355227pt;}
.yf4{bottom:148.684880pt;}
.y47{bottom:150.402387pt;}
.y72{bottom:151.363227pt;}
.y109{bottom:157.277093pt;}
.ybc{bottom:157.402147pt;}
.y1f{bottom:157.505133pt;}
.yf3{bottom:157.964880pt;}
.y180{bottom:159.619480pt;}
.y14a{bottom:160.470707pt;}
.y198{bottom:161.009160pt;}
.y130{bottom:161.117893pt;}
.y95{bottom:161.155213pt;}
.y46{bottom:163.202373pt;}
.y71{bottom:164.163227pt;}
.y149{bottom:169.750707pt;}
.y108{bottom:170.077093pt;}
.ybb{bottom:170.202160pt;}
.y12f{bottom:170.397907pt;}
.y1e{bottom:171.905133pt;}
.y197{bottom:173.809160pt;}
.y94{bottom:173.955227pt;}
.yf2{bottom:174.284867pt;}
.y17f{bottom:175.939480pt;}
.y45{bottom:176.002387pt;}
.y70{bottom:176.963213pt;}
.y155{bottom:182.994160pt;}
.y12e{bottom:183.197907pt;}
.y93{bottom:183.235227pt;}
.y17e{bottom:185.219467pt;}
.y148{bottom:186.070693pt;}
.y1d{bottom:186.305133pt;}
.y107{bottom:186.397093pt;}
.yba{bottom:186.522160pt;}
.y1b2{bottom:186.787400pt;}
.yf1{bottom:187.084880pt;}
.ydc{bottom:188.676467pt;}
.y44{bottom:188.802387pt;}
.y6f{bottom:189.763227pt;}
.y6e{bottom:193.283227pt;}
.y147{bottom:195.350693pt;}
.y154{bottom:198.994160pt;}
.y106{bottom:199.197080pt;}
.yb9{bottom:199.322147pt;}
.y12d{bottom:199.517907pt;}
.y92{bottom:199.555213pt;}
.y1c{bottom:200.705133pt;}
.y17d{bottom:201.539467pt;}
.y43{bottom:201.602373pt;}
.y6d{bottom:202.563213pt;}
.ydb{bottom:204.676467pt;}
.y1b1{bottom:208.456680pt;}
.yb8{bottom:208.602147pt;}
.y146{bottom:211.670720pt;}
.y105{bottom:211.997093pt;}
.y12c{bottom:212.317893pt;}
.y91{bottom:212.355227pt;}
.y17c{bottom:214.339480pt;}
.y153{bottom:214.994120pt;}
.y1b{bottom:215.105133pt;}
.y6c{bottom:218.883213pt;}
.yda{bottom:220.676467pt;}
.y104{bottom:221.277080pt;}
.y1b0{bottom:224.456640pt;}
.y145{bottom:224.470707pt;}
.yb7{bottom:224.922133pt;}
.y17b{bottom:227.139467pt;}
.y6b{bottom:228.163227pt;}
.y1a{bottom:229.505133pt;}
.y196{bottom:230.459880pt;}
.y17a{bottom:236.419480pt;}
.y152{bottom:236.663453pt;}
.yd9{bottom:236.676467pt;}
.y103{bottom:237.597080pt;}
.y19{bottom:243.905133pt;}
.y6a{bottom:244.483213pt;}
.y1af{bottom:246.125973pt;}
.y195{bottom:246.459880pt;}
.yf0{bottom:246.994160pt;}
.y179{bottom:249.219480pt;}
.y102{bottom:250.397093pt;}
.y151{bottom:252.663453pt;}
.yd8{bottom:252.676467pt;}
.y69{bottom:257.283227pt;}
.y18{bottom:258.305133pt;}
.y178{bottom:262.019480pt;}
.y1ae{bottom:262.125933pt;}
.y194{bottom:262.459880pt;}
.yef{bottom:262.994120pt;}
.y42{bottom:266.099467pt;}
.y12b{bottom:267.921267pt;}
.y14f{bottom:268.663453pt;}
.yd7{bottom:268.676467pt;}
.y150{bottom:269.330120pt;}
.y68{bottom:270.083227pt;}
.y17{bottom:272.705120pt;}
.y177{bottom:274.819467pt;}
.y14e{bottom:277.996787pt;}
.y193{bottom:278.459880pt;}
.y67{bottom:279.363227pt;}
.y41{bottom:282.099467pt;}
.y1ad{bottom:283.795267pt;}
.y12a{bottom:283.921267pt;}
.yee{bottom:284.663453pt;}
.yd6{bottom:284.676467pt;}
.y16{bottom:287.105120pt;}
.y176{bottom:287.619467pt;}
.yb6{bottom:288.582680pt;}
.y192{bottom:294.459880pt;}
.y66{bottom:295.683227pt;}
.y144{bottom:296.002040pt;}
.y40{bottom:298.099427pt;}
.y1ac{bottom:299.795227pt;}
.y129{bottom:299.921267pt;}
.y175{bottom:300.419467pt;}
.yed{bottom:300.663453pt;}
.yd5{bottom:300.676427pt;}
.yb5{bottom:304.582680pt;}
.y15{bottom:309.064187pt;}
.y191{bottom:310.459880pt;}
.y90{bottom:310.994160pt;}
.y143{bottom:312.002040pt;}
.y174{bottom:313.219467pt;}
.y3f{bottom:314.099427pt;}
.y128{bottom:315.921227pt;}
.yec{bottom:316.663453pt;}
.yb4{bottom:320.582680pt;}
.y1ab{bottom:321.464560pt;}
.yd4{bottom:322.345760pt;}
.y14{bottom:323.464187pt;}
.y173{bottom:326.019467pt;}
.y190{bottom:326.459840pt;}
.y8f{bottom:326.994160pt;}
.y142{bottom:328.002040pt;}
.y3e{bottom:330.099427pt;}
.y127{bottom:331.921227pt;}
.yeb{bottom:332.663453pt;}
.yb3{bottom:336.582680pt;}
.y1aa{bottom:337.464747pt;}
.y13{bottom:337.864187pt;}
.y65{bottom:338.345760pt;}
.y172{bottom:342.339480pt;}
.y8e{bottom:342.994160pt;}
.y141{bottom:344.002040pt;}
.y18f{bottom:348.129173pt;}
.yea{bottom:348.663453pt;}
.y3d{bottom:351.768760pt;}
.y12{bottom:352.264187pt;}
.yb2{bottom:352.582680pt;}
.y126{bottom:353.590560pt;}
.y64{bottom:354.345720pt;}
.yd3{bottom:354.345760pt;}
.y8d{bottom:358.994160pt;}
.y1a9{bottom:359.133813pt;}
.y140{bottom:360.002040pt;}
.y18e{bottom:364.129173pt;}
.ye9{bottom:364.663453pt;}
.y11{bottom:366.664187pt;}
.y3c{bottom:367.768760pt;}
.yb1{bottom:368.582680pt;}
.y125{bottom:369.590560pt;}
.yd2{bottom:370.345760pt;}
.y101{bottom:374.994080pt;}
.y1a8{bottom:375.133813pt;}
.y13f{bottom:376.002040pt;}
.y63{bottom:376.015053pt;}
.y18d{bottom:380.129173pt;}
.ye8{bottom:380.663413pt;}
.y10{bottom:381.064187pt;}
.y3b{bottom:383.768760pt;}
.yb0{bottom:384.582640pt;}
.y124{bottom:385.590560pt;}
.yd1{bottom:386.345760pt;}
.y171{bottom:390.459880pt;}
.y13e{bottom:392.001987pt;}
.y62{bottom:392.015053pt;}
.yf{bottom:395.464173pt;}
.y18c{bottom:396.129173pt;}
.y1a7{bottom:396.803147pt;}
.y3a{bottom:399.768760pt;}
.y123{bottom:401.590560pt;}
.y8c{bottom:402.332747pt;}
.yd0{bottom:402.345720pt;}
.yaf{bottom:406.251973pt;}
.y170{bottom:406.459840pt;}
.y13d{bottom:408.001987pt;}
.y61{bottom:408.015053pt;}
.ye{bottom:409.864187pt;}
.y18b{bottom:412.129173pt;}
.y1a6{bottom:412.803093pt;}
.y39{bottom:415.768760pt;}
.y121{bottom:417.590520pt;}
.y122{bottom:417.590560pt;}
.y8b{bottom:418.332747pt;}
.yae{bottom:422.251973pt;}
.y16f{bottom:422.459840pt;}
.y60{bottom:424.015053pt;}
.yd{bottom:424.264187pt;}
.y18a{bottom:428.129173pt;}
.y13c{bottom:429.671320pt;}
.y38{bottom:431.768760pt;}
.y8a{bottom:434.332747pt;}
.y1a5{bottom:434.472427pt;}
.yad{bottom:438.251973pt;}
.y16e{bottom:438.459840pt;}
.yc{bottom:438.664187pt;}
.y120{bottom:439.259853pt;}
.y5f{bottom:440.015013pt;}
.ycf{bottom:440.015053pt;}
.y189{bottom:444.129173pt;}
.y13b{bottom:445.671320pt;}
.y37{bottom:447.768760pt;}
.y89{bottom:450.332747pt;}
.y1a4{bottom:450.472387pt;}
.yb{bottom:453.064173pt;}
.yac{bottom:454.251973pt;}
.y11f{bottom:455.259853pt;}
.yce{bottom:456.015053pt;}
.y16d{bottom:460.129173pt;}
.y13a{bottom:461.671320pt;}
.y5e{bottom:461.684347pt;}
.y36{bottom:463.768760pt;}
.y88{bottom:466.332747pt;}
.ya{bottom:467.464173pt;}
.yab{bottom:470.251973pt;}
.y11e{bottom:471.259853pt;}
.ycd{bottom:472.015053pt;}
.y1a3{bottom:472.141720pt;}
.y16c{bottom:476.129173pt;}
.y139{bottom:477.671320pt;}
.y5d{bottom:477.684347pt;}
.y35{bottom:479.768720pt;}
.y9{bottom:481.864187pt;}
.y87{bottom:482.332747pt;}
.yaa{bottom:486.251933pt;}
.y11d{bottom:487.259853pt;}
.ycc{bottom:488.015053pt;}
.y16b{bottom:492.129173pt;}
.y138{bottom:493.671320pt;}
.y5c{bottom:493.684347pt;}
.y1a2{bottom:495.700867pt;}
.y8{bottom:496.264187pt;}
.y100{bottom:498.332707pt;}
.y86{bottom:498.332747pt;}
.y34{bottom:501.438053pt;}
.y11c{bottom:503.259853pt;}
.ycb{bottom:504.015053pt;}
.ya9{bottom:507.921267pt;}
.y16a{bottom:508.129173pt;}
.y137{bottom:509.671320pt;}
.y5b{bottom:509.684347pt;}
.y7{bottom:510.664187pt;}
.yff{bottom:514.332707pt;}
.y85{bottom:514.332747pt;}
.y33{bottom:517.438053pt;}
.y11b{bottom:519.259853pt;}
.yca{bottom:520.015053pt;}
.ya8{bottom:523.921227pt;}
.y169{bottom:524.129173pt;}
.y1a1{bottom:524.929133pt;}
.y6{bottom:525.064187pt;}
.y136{bottom:525.671320pt;}
.y5a{bottom:525.684347pt;}
.y84{bottom:530.332707pt;}
.ye6{bottom:530.332747pt;}
.y32{bottom:533.438053pt;}
.y11a{bottom:535.259853pt;}
.ye7{bottom:535.612733pt;}
.yfe{bottom:536.002040pt;}
.yc9{bottom:536.015053pt;}
.y168{bottom:540.129173pt;}
.y1a0{bottom:540.929133pt;}
.y135{bottom:541.671320pt;}
.y59{bottom:541.684347pt;}
.ya7{bottom:545.590560pt;}
.ye5{bottom:546.332747pt;}
.y31{bottom:549.438053pt;}
.y167{bottom:550.795840pt;}
.y119{bottom:551.259853pt;}
.y83{bottom:552.002040pt;}
.yc8{bottom:552.015053pt;}
.y166{bottom:556.129173pt;}
.y19f{bottom:556.929133pt;}
.y134{bottom:557.671320pt;}
.y58{bottom:557.684307pt;}
.ya6{bottom:561.590560pt;}
.y30{bottom:565.438053pt;}
.y118{bottom:567.259800pt;}
.y82{bottom:568.002040pt;}
.y165{bottom:572.129173pt;}
.y19e{bottom:572.929133pt;}
.y133{bottom:573.671320pt;}
.yc7{bottom:573.684347pt;}
.ya5{bottom:577.590560pt;}
.y5{bottom:577.864173pt;}
.y57{bottom:579.353640pt;}
.y2f{bottom:581.438053pt;}
.y81{bottom:584.002040pt;}
.y164{bottom:588.129133pt;}
.y188{bottom:588.129173pt;}
.y117{bottom:588.929133pt;}
.ye4{bottom:589.671320pt;}
.yc6{bottom:589.684347pt;}
.ya4{bottom:593.590560pt;}
.y56{bottom:595.353640pt;}
.y2e{bottom:597.438053pt;}
.y80{bottom:600.002040pt;}
.y187{bottom:604.129173pt;}
.y116{bottom:604.929133pt;}
.ye3{bottom:605.671320pt;}
.yc5{bottom:605.684347pt;}
.y163{bottom:609.798467pt;}
.y55{bottom:611.353640pt;}
.y2d{bottom:613.438013pt;}
.y4{bottom:614.664187pt;}
.ya3{bottom:615.259853pt;}
.y14d{bottom:616.001987pt;}
.y7f{bottom:616.002040pt;}
.y186{bottom:620.129173pt;}
.y115{bottom:620.929133pt;}
.ye2{bottom:621.671320pt;}
.yc4{bottom:621.684347pt;}
.y162{bottom:625.798467pt;}
.y54{bottom:627.353640pt;}
.ya2{bottom:631.259853pt;}
.y7e{bottom:632.001987pt;}
.yfd{bottom:632.002040pt;}
.y3{bottom:633.864173pt;}
.y2c{bottom:635.107347pt;}
.y185{bottom:636.129173pt;}
.y114{bottom:636.929133pt;}
.ye1{bottom:637.671320pt;}
.yc3{bottom:637.684347pt;}
.y161{bottom:641.798467pt;}
.y53{bottom:643.353640pt;}
.ya1{bottom:647.259853pt;}
.yfc{bottom:648.002040pt;}
.y2b{bottom:651.107347pt;}
.y184{bottom:652.129173pt;}
.y19d{bottom:652.929093pt;}
.y113{bottom:652.929133pt;}
.y7d{bottom:653.671320pt;}
.yc0{bottom:653.684307pt;}
.yc2{bottom:653.684347pt;}
.y160{bottom:657.798467pt;}
.y52{bottom:659.353640pt;}
.yc1{bottom:659.417680pt;}
.ya0{bottom:663.259853pt;}
.yfb{bottom:664.002040pt;}
.y2a{bottom:667.107347pt;}
.y183{bottom:668.129133pt;}
.y112{bottom:668.929133pt;}
.y7c{bottom:669.671320pt;}
.ybf{bottom:669.684307pt;}
.y15f{bottom:673.798467pt;}
.y19c{bottom:674.598427pt;}
.y51{bottom:675.353640pt;}
.y9f{bottom:679.259853pt;}
.yfa{bottom:680.002040pt;}
.y29{bottom:683.107347pt;}
.y111{bottom:684.929093pt;}
.y7b{bottom:685.671320pt;}
.y15e{bottom:689.798467pt;}
.y19b{bottom:690.598427pt;}
.y50{bottom:691.353640pt;}
.yf9{bottom:696.002040pt;}
.y28{bottom:699.107347pt;}
.y9e{bottom:700.929133pt;}
.y7a{bottom:701.671320pt;}
.y15d{bottom:705.798467pt;}
.y110{bottom:706.598427pt;}
.y4f{bottom:707.353640pt;}
.y9d{bottom:716.929133pt;}
.ye0{bottom:717.671280pt;}
.y79{bottom:717.671320pt;}
.y15c{bottom:721.798467pt;}
.y10f{bottom:722.598427pt;}
.y4e{bottom:723.353640pt;}
.y9c{bottom:732.929133pt;}
.ydf{bottom:733.671280pt;}
.y78{bottom:733.671320pt;}
.y15b{bottom:737.798467pt;}
.y10e{bottom:738.598427pt;}
.yf8{bottom:739.340613pt;}
.y4d{bottom:739.353640pt;}
.y9b{bottom:748.929133pt;}
.yde{bottom:749.671280pt;}
.y77{bottom:749.671320pt;}
.y15a{bottom:753.798467pt;}
.y10d{bottom:754.598427pt;}
.yf7{bottom:755.340613pt;}
.y4c{bottom:755.353640pt;}
.y27{bottom:761.066387pt;}
.y9a{bottom:764.929133pt;}
.y76{bottom:765.671280pt;}
.y159{bottom:769.798467pt;}
.y10c{bottom:770.598427pt;}
.yf6{bottom:771.340613pt;}
.y4b{bottom:771.353640pt;}
.y26{bottom:775.466400pt;}
.y158{bottom:785.798467pt;}
.y99{bottom:786.598427pt;}
.y75{bottom:787.340613pt;}
.y4a{bottom:787.353640pt;}
.y25{bottom:789.866400pt;}
.y157{bottom:801.798467pt;}
.y98{bottom:802.598427pt;}
.y74{bottom:803.340613pt;}
.y49{bottom:803.353640pt;}
.y24{bottom:804.266400pt;}
.y2{bottom:843.091920pt;}
.y23{bottom:845.417320pt;}
.h27{height:23.357393pt;}
.h16{height:23.357500pt;}
.h28{height:23.461560pt;}
.h18{height:23.461613pt;}
.h15{height:23.461667pt;}
.h1a{height:23.461720pt;}
.h22{height:24.190833pt;}
.h1f{height:27.217708pt;}
.hd{height:32.757812pt;}
.h20{height:32.969422pt;}
.h1b{height:35.332089pt;}
.h2e{height:35.878906pt;}
.h21{height:36.432394pt;}
.h19{height:37.437500pt;}
.h2d{height:37.541613pt;}
.h17{height:37.541667pt;}
.h2c{height:37.541720pt;}
.he{height:38.270833pt;}
.h8{height:42.117188pt;}
.h9{height:42.234322pt;}
.h7{height:42.234375pt;}
.hb{height:42.234428pt;}
.ha{height:43.054634pt;}
.hc{height:43.054688pt;}
.h23{height:43.866437pt;}
.h12{height:44.165109pt;}
.h4{height:45.014063pt;}
.h3{height:46.796875pt;}
.h14{height:46.797035pt;}
.h26{height:46.797088pt;}
.h25{height:46.797195pt;}
.h2f{height:46.926337pt;}
.h10{height:46.927083pt;}
.h11{height:46.927243pt;}
.h1c{height:46.927297pt;}
.h13{height:47.265625pt;}
.hf{height:47.369792pt;}
.h1e{height:47.838542pt;}
.h1d{height:47.838702pt;}
.h2a{height:48.027834pt;}
.h24{height:50.908725pt;}
.h6{height:51.619792pt;}
.h5{height:57.406250pt;}
.h2b{height:69.171875pt;}
.h29{height:73.593750pt;}
.h2{height:907.086613pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w2{width:642.519693pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:94.488173pt;}
.x8{left:113.385827pt;}
.x12{left:119.572347pt;}
.xd{left:121.754840pt;}
.x15{left:122.823480pt;}
.xc{left:124.724400pt;}
.xe{left:127.488080pt;}
.x16{left:128.556720pt;}
.xf{left:143.622053pt;}
.xb{left:170.078733pt;}
.x2{left:174.337987pt;}
.x27{left:179.303347pt;}
.x28{left:182.497280pt;}
.x3{left:187.526187pt;}
.x7{left:188.976360pt;}
.x6{left:219.212600pt;}
.x2b{left:223.787920pt;}
.x2d{left:226.405573pt;}
.x2c{left:230.081053pt;}
.x4{left:242.684920pt;}
.x23{left:250.671147pt;}
.x24{left:256.404373pt;}
.x13{left:261.381160pt;}
.xa{left:262.373520pt;}
.x30{left:265.938053pt;}
.x14{left:267.114400pt;}
.x17{left:269.480467pt;}
.x18{left:275.213707pt;}
.x19{left:278.918133pt;}
.x5{left:282.701827pt;}
.x1a{left:284.651373pt;}
.x10{left:321.849267pt;}
.x29{left:325.038387pt;}
.x11{left:327.582493pt;}
.x2a{left:332.426947pt;}
.x1b{left:335.845067pt;}
.x1c{left:341.578307pt;}
.x1f{left:347.629267pt;}
.x2e{left:351.953293pt;}
.x20{left:353.362507pt;}
.x2f{left:358.541827pt;}
.x34{left:368.390973pt;}
.x35{left:374.979507pt;}
.x31{left:387.670493pt;}
.x26{left:393.426347pt;}
.x25{left:397.218320pt;}
.x1d{left:412.281427pt;}
.x1e{left:418.014667pt;}
.x21{left:457.999640pt;}
.x22{left:462.586227pt;}
.x32{left:492.963013pt;}
.x33{left:499.551560pt;}
.x1{left:528.031493pt;}
}

