Last active
September 30, 2016 09:50
-
-
Save YiLiu6240/6954da000e63b12934d76202daee2a20 to your computer and use it in GitHub Desktop.
Revisions
-
YiLiu6240 revised this gist
Sep 30, 2016 . 2 changed files with 43 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,42 @@ ``` elisp (let* ((query "test") (url-request-method "GET") (random-id (format "%016x" (random (expt 16 16)))) (expiration (format-time-string "%a, %d %b %Y %H:%M:%S.00 %Z" (time-add (current-time) (seconds-to-time 3600)) t)) (my-cookie (mapconcat #'identity (list (format "GSP=ID=%s:CF=4; " random-id) (format "expires=%s" expiration) "path=/" "domain=scholar.google.com") "; ")) (url-current-object (url-generic-parse-url "http://scholar.google.com"))) (url-cookie-handle-set-cookie my-cookie) ;; (gscholar-bibtex--url-retrieve-as-string ;; (concat "http://scholar.google.com/scholar?q=" ;; (url-hexify-string ;; (replace-regexp-in-string " " "\+" query)))) ) ``` The above block changes `url-cookie-storage` as ``` elisp (("scholar.google.com" [url-cookie "GSP" "ID=3b42efa2a3173e2b:CF=4" "Fri, 30 Sep 2016 10:40:35.00 UTC" "/" "scholar.google.com" nil])) ``` When I uncomment the `(gscholar-bibtex--url-retrieve-as-string ...)` part (after clearing up `(setq url-cookie-storage nil)`), `url-cookie-storage` changes to ``` elisp (("scholar.google.com" [url-cookie "GSP" "LM=1475228728:S=6n6XaGoLKYDaGo6s" "30-Sep-2018 09:45:28.00 GMT" "/" "scholar.google.com" nil]) (".google.com" [url-cookie "HttpOnly" nil "01-Apr-2017 09:45:28.00 GMT" "/" ".google.com" nil] [url-cookie "NID" "87=gKaRWnrelO6mO3-jApeDc4WJdqQRVxJ7IhdZcMTqX8Hwdtpog_VIILSGx5Oae-SU9SsxP5aAHUUymmNOamOxGKWLqFLF2mYE_a8lF7pPpgbnLzOtC7X_ZHKr2TmROuMe" "01-Apr-2017 09:45:28.00 GMT" "/" ".google.com" nil])) ``` The retrived url result is pasted in `2016-09-30_url.txt` -
YiLiu6240 revised this gist
Sep 27, 2016 . 1 changed file with 18 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,23 @@ # Debug steps: 1. Go to the definition of `gscholar-bibtex-google-scholar-search-results` in `gscholar-bibtex.el` 2. Press `C-u C-M-x` on function definition to enable `Edebug` 3. `M-x gscholar-bibtex` 4. Select `"Google Scholar"`, then search for `"the lemon market"` 5. Press `n` to step through `gscholar-bibtex-google-scholar-search-results` # Retrieve url steps 1. in terminal, run `curl -v -A "Mozilla/5.0" --cookie "GSP=ID=87969bbbc5530bab:CF=4" "http://scholar.google.com/scholar?q=test" > output_terminal.txt` to save output to `output_terminal.txt` 2. copy the additional info from terminal to `info_terminal.txt` 3. in my usual emacs, `eval-last-sexp` the code block below, and save output to `output_emacs.txt` 4. in plain emacs `emacs -Q`, `eval-last-sexp` the code block below, and save output to `output_emacs_plain.txt` code block: (let* ((url-request-method "GET") (url-request-extra-headers `(("User-Agent" . "Mozilla/5.0") ("Cookie" . "GSP=ID=87969bbbc5530bab:CF=4")))) (url-retrieve "https://scholar.google.com/scholar?q=test" (lambda (status) (switch-to-buffer (current-buffer))))) -
YiLiu6240 revised this gist
Sep 27, 2016 . 4 changed files with 61 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,29 @@ * Trying 216.58.210.36... % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0* Connected to scholar.google.com (216.58.210.36) port 80 (#0) > GET /scholar?q=test HTTP/1.1 > Host: scholar.google.com > User-Agent: Mozilla/5.0 > Accept: */* > Cookie: GSP=ID=87969bbbc5530bab:CF=4 > < HTTP/1.1 200 OK < Date: Tue, 27 Sep 2016 08:47:22 GMT < Expires: Tue, 27 Sep 2016 08:47:22 GMT < Cache-Control: private, max-age=0 < Content-Type: text/html; charset=UTF-8 < P3P: CP="This is not a P3P policy! See https://www.google.com/support/accounts/answer/151657?hl=en for more info." < X-Content-Type-Options: nosniff < Server: scholar < X-XSS-Protection: 1; mode=block < X-Frame-Options: SAMEORIGIN < Set-Cookie: NID=87=bnWqwrg3Y1o5Ji4MKUBsGbOMiGTP4EFv0Hazh7kHD68fOg4sflG_kNIfv_X39xIrupEio31a4XEXKriTLXHEZfkmYEx8zxRRJog1Me8OdII41zqrcWOEGIDWNLipZkus; expires=Wed, 29-Mar-2017 08:47:22 GMT; path=/; domain=.google.com; HttpOnly < Set-Cookie: GSP=CF=4:LM=1474966042:S=ZEyVVVk8GQLO31Yy; expires=Thu, 27-Sep-2018 08:47:22 GMT; path=/; domain=scholar.google.com < Accept-Ranges: none < Vary: Accept-Encoding < Transfer-Encoding: chunked < { [578 bytes data] 100 99k 0 99k 0 0 93815 0 --:--:-- 0:00:01 --:--:-- 138k * Connection #0 to host scholar.google.com left intact This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ HTTP/1.1 200 OK Date: Tue, 27 Sep 2016 08:48:52 GMT Expires: Tue, 27 Sep 2016 08:48:52 GMT Cache-Control: private, max-age=0 Content-Type: text/html; charset=UTF-8 X-Content-Type-Options: nosniff Content-Encoding: gzip Server: scholar X-XSS-Protection: 1; mode=block X-Frame-Options: SAMEORIGIN Alt-Svc: quic=":443"; ma=2592000; v="36,35,34,33,32" Transfer-Encoding: chunked <!doctype html><html><head><title>test - Google Scholar</title><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=Edge"><meta name="referrer" content="always"><meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=2"><style>@viewport{width:device-width;min-zoom:1;max-zoom:2;}</style><meta name="format-detection" content="telephone=no"><script>var gs_ts=Number(new Date());</script><style>html,body,form,table,div,h1,h2,h3,h4,h5,h6,img,ol,ul,li,button{margin:0;padding:0;border:0;}table{border-collapse:collapse;border-width:0;empty-cells:show;}#gs_top{position:relative;min-width:964px;-webkit-tap-highlight-color:rgba(0,0,0,0);}#gs_top>*:not(#x){-webkit-tap-highlight-color:rgba(204,204,204,.5);}.gs_el_ph #gs_top,.gs_el_ta #gs_top{min-width:300px;}#gs_top.gs_nscl{position:fixed;width:100%;}body,td,input{font-size:13px;font-family:Arial,sans-serif;line-height:1.24}body{background:#fff;color:#222;-webkit-text-size-adjust:100%;-moz-text-size-adjust:none;}.gs_gray{color:#777777}.gs_red{color:#dd4b39}.gs_grn{color:#006621}.gs_lil{font-size:11px}.gs_med{font-size:16px}.gs_hlt{font-weight:bold;}a:link{color:#1a0dab;text-decoration:none}a:visited{color:#660099;text-decoration:none}a:hover,a:active,a:hover .gs_lbl,a:active .gs_lbl,a .gs_lbl:active{text-decoration:underline;outline:none;}a:active,a:active .gs_lbl,a .gs_lbl:active{color:#d14836}.gs_a,.gs_a a:link,.gs_a a:visited{color:#006621}.gs_a a:active{color:#d14836}a.gs_fl:link,.gs_fl a:link{color:#1a0dab}a.gs_fl:visited,.gs_fl a:visited{color:#660099}a.gs_fl:active,.gs_fl a:active{color:#d14836}.gs_fl{color:#777777}.gs_ctc,.gs_ctu{vertical-align:middle;font-size:11px;font-weight:bold}.gs_ctc{color:#1a0dab}.gs_ctg,.gs_ctg2{font-size:13px;font-weight:bold}.gs_ctg{color:#1a0dab}a.gs_pda,.gs_pda a{padding:7px 0 5px 0}.gs_alrt{background:#f9edbe;border:1px solid #f0c36d;padding:0 16px;text-align:center;-webkit-box-shadow:0 2px 4px rgba(0,0,0,.2);-moz-box-shadow:0 2px 4px rgba(0,0,0,.2);box-shadow:0 2px 4px rgba(0,0,0,.2);-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;}.gs_spc{display:inline-block;width:12px}.gs_br{width:0;font-size:0}.gs_ibl{display:inline-block;}.gs_scl:after{content:"";display:table;clear:both;}.gs_ind{padding-left:8px;text-indent:-8px}.gs_ico,.gs_icm{display:inline-block;background:no-repeat url(/intl/en/scholar/images/1x/sprite_20160809.png);background-size:169px;width:21px;height:21px;}@media(-webkit-min-device-pixel-ratio:1.5),(min-resolution:144dpi){.gs_ico,.gs_icm{background-image:url(/intl/en/scholar/images/2x/sprite_20160809.png);}}.gs_el_ta .gs_nta,.gs_ota,.gs_el_ph .gs_nph,.gs_oph{display:none}.gs_el_ta .gs_ota,.gs_el_ph .gs_oph{display:inline}.gs_el_ta div.gs_ota,.gs_el_ph div.gs_oph{display:block}#gs_ftr{margin:32px 0 0 0;text-align:center;clear:both;}#gs_ftr a{display:inline-block;margin:0 12px;padding:7px 0 8px 0;}#gs_ftr a:link,#gs_ftr a:visited{color:#1a0dab}#gs_ftr a:active{color:#d14836}.gs_in_txt{color:black;background:#fff;font-size:16px;height:23px;line-height:23px;border:1px solid #d9d9d9;border-top:1px solid #c0c0c0;padding:3px 6px 1px 8px;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;outline:none;vertical-align:middle;-webkit-appearance:none;-moz-appearance:none;}.gs_el_tc .gs_in_txt{font-size:18px;}.gs_in_txt:hover{border:1px solid #b9b9b9;border-top:1px solid #a0a0a0;-webkit-box-shadow:inset 0px 1px 2px rgba(0,0,0,0.1);-moz-box-shadow:inset 0px 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0px 1px 2px rgba(0,0,0,0.1);}.gs_in_txte,.gs_in_txte:hover{border:1px solid #DD4B39;}.gs_in_txt:focus{border:1px solid #4d90fe;-webkit-box-shadow:inset 0px 1px 2px rgba(0,0,0,0.3);-moz-box-shadow:inset 0px 1px 2px rgba(0,0,0,0.3);box-shadow:inset 0px 1px 2px rgba(0,0,0,0.3);}.gs_in_txt:disabled{color:#b8b8b8;border-color:#f1f1f1;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}input.gs_mini{font-size:13px;height:16px;line-height:16px;padding:3px 6px;}.gs_el_tc input.gs_mini{font-size:13px;height:21px;line-height:21px;}.gs_in_txtf{margin-right:16px}.gs_in_txtm{margin-right:14px}.gs_in_txtf .gs_in_txt,.gs_in_txtm .gs_in_txt{width:100%;}.gs_in_txts{font-size:13px;line-height:18px;}button{position:relative;z-index:1;box-sizing:border-box;font-size:11px;font-weight:bold;cursor:default;height:29px;min-width:72px;overflow:visible;color:#444;border:1px solid #dcdcdc;border:1px solid rgba(0,0,0,.1);border-radius:2px;text-align:center;background-color:#f5f5f5;background-image:linear-gradient(to bottom,#f5f5f5,#f1f1f1);transition:all .218s;user-select:none;}button .gs_wr{line-height:27px;}button.gs_btn_mini{min-width:26px;height:26px;}.gs_btn_mini .gs_wr{line-height:24px;}.gs_btn_half,.gs_el_ph .gs_btn_hph{min-width:36px;}>. }}.gs_btn_slt{border-radius:2px 0 0 2px;}.gs_btn_srt{margin-left:-1px;border-radius:0 2px 2px 0;}.gs_btn_smd{margin-left:-1px;border-radius:0;}button:hover,button.gs_in_cb:hover{z-index:2;color:#222;border:1px solid #c6c6c6;box-shadow:0 1px 1px rgba(0,0,0,.1);background-color:#f8f8f8;background-image:linear-gradient(to bottom,#f8f8f8,#f1f1f1);transition:all 0s;}button.gs_sel{color:#333;border:1px solid #ccc;box-shadow:inset 0 1px 2px rgba(0,0,0,.1);background-color:#e8e8e8;background-image:linear-gradient(to bottom,#eee,#e0e0e0);}button.gs_in_cb{color:#444;border:1px solid #dcdcdc;border:1px solid rgba(0,0,0,.1);box-shadow:none;background-color:#f5f5f5;background-image:linear-gradient(to bottom,#f5f5f5,#f1f1f1);}button:active,button.gs_in_cb:active{z-index:2;color:#333;background-color:#f6f6f6;background-image:linear-gradient(to bottom,#f6f6f6,#f1f1f1);box-shadow:inset 0px 1px 2px rgba(0,0,0,.1);}button:focus,button.gs_in_cb:focus{z-index:2;outline:none;border:1px solid #4d90fe;}button::-moz-focus-inner{padding:0;border:0}button .gs_lbl{padding:0px 8px;}a.gs_in_ib{position:relative;display:inline-block;line-height:16px;padding:5px 0 6px 0;user-select:none;}a.gs_btn_mini{height:24px;line-height:24px;padding:0;}a .gs_lbl,button .gs_lbl{vertical-align:baseline;}a.gs_in_ib .gs_lbl{display:inline-block;padding-left:21px}button.gs_in_ib .gs_lbl{padding-left:29px;}button.gs_btn_mini .gs_lbl,button.gs_btn_half .gs_lbl,button.gs_btn_eml .gs_lbl{padding:11px;}.gs_el_ph .gs_btn_hph .gs_lbl,.gs_el_ph .gs_btn_cph .gs_lbl{padding:11px;font-size:0;visibility:hidden;}.gs_in_ib .gs_ico{position:absolute;top:2px;left:8px;}.gs_btn_mini .gs_ico{top:1px;left:2px;}.gs_btn_half .gs_ico,.gs_el_ph .gs_btn_hph .gs_ico{left:7px}.gs_btn_eml .gs_ico,.gs_el_ph .gs_btn_cph .gs_ico{left:25px}.gs_btn_eml.gs_btn_mnu .gs_ico{left:20px;}a.gs_in_ib .gs_ico{top:3px;left:0}a.gs_in_ib.gs_md_li .gs_ico{left:14px}.gs_el_tc a.gs_in_ib.gs_md_li .gs_ico{top:11px}a.gs_btn_mini .gs_ico{top:1px;left:0}button .gs_cb_wr{position:absolute;top:5px;left:26px;}.gs_el_tc button .gs_cb_wr{top:-3px;}.gs_in_ib .gs_ico{opacity:.55;}a.gs_in_ib .gs_ico{opacity:.65;}.gs_in_ib:hover .gs_ico{opacity:.72;}.gs_in_ib:active .gs_ico,.gs_in_ib .gs_ico:active,.gs_in_ib :active~.gs_ico{opacity:1;}.gs_in_ib:disabled .gs_ico{opacity:.28;}a.gs_in_ib.gs_dis .gs_ico{opacity:.33;}button.gs_btn_act{color:#fff;border:1px solid #3079ed;background-color:#4d90fe;background-image:linear-gradient(to bottom,#4d90fe,#4787ed);}button.gs_btn_act:hover{color:#fff;border:1px solid #2f5bb7;background-color:#357ae8;background-image:linear-gradient(to bottom,#4d90fe,#357ae8);box-shadow:inset 0 1px 1px rgba(0,0,0,.1);}button.gs_btnG{width:70px;min-width:0;}button.gs_btn_act:focus{box-shadow:inset 0 0 0 1px rgba(255,255,255,.5);}button.gs_btn_act:focus{border-color:#404040;}button.gs_btn_act:active{border:1px solid #315da3;background-color:#2f6de1;background-image:linear-gradient(to bottom,#4d90fe,#2f6de1);}button.gs_btn_act:active{box-shadow:inset 0 1px 2px rgba(0,0,0,.3);}button:disabled,button:disabled:hover,button:disabled:active{color:#b8b8b8;border:1px solid #f3f3f3;border:1px solid rgba(0,0,0,.05);background:none;box-shadow:none;z-index:0;}button.gs_btn_act:disabled{color:white;border-color:#98bcf6;background:#a6c8ff;}button:disabled:active{box-shadow:inset 0 1px 2px rgba(0,0,0,.1);z-index:2;}a.gs_dis{cursor:default}.gs_ttp{position:absolute;top:100%;right:50%;z-index:10;pointer-events:none;visibility:hidden;opacity:0;transition:visibility 0s .13s,opacity .13s ease-out;}button:hover .gs_ttp,button:focus .gs_ttp,a:hover .gs_ttp,a:focus .gs_ttp{transition:visibility 0s .3s,opacity .13s ease-in .3s;visibility:visible;opacity:1;}button.gs_sel .gs_ttp{visibility:hidden;}.gs_ttp .gs_aro,.gs_ttp .gs_aru{position:absolute;top:-2px;right:-5px;width:0;height:0;line-height:0;font-size:0;border:5px solid transparent;border-top:none;border-bottom-color:#2a2a2a;z-index:1;}.gs_ttp .gs_aro{top:-3px;right:-6px;border-width:6px;border-top:none;border-bottom-color:white;}.gs_ttp .gs_txt{display:block;position:relative;top:2px;right:-50%;padding:7px 9px;background:#2a2a2a;color:white;font-size:11px;font-weight:bold;line-height:normal;white-space:nowrap;border:1px solid white;box-shadow:inset 0 1px 4px rgba(0,0,0,.2);}.gs_in_se,.gs_tan{touch-action:none;}.gs_in_se .gs_lbl{padding-left:8px;padding-right:22px;}.gs_in_se .gs_icm{position:absolute;top:8px;right:8px;width:7px;height:11px;background-position:-21px -88px;opacity:.55;}a.gs_in_se .gs_icm{opacity:.65;}.gs_in_se:hover .gs_icm{opacity:.72;}.gs_in_se:active .gs_icm,.gs_in_se .gs_icm:active,.gs_in_se :active~.gs_icm{opacity:1;}.gs_in_ib:disabled .gs_icm{opacity:.28;}.gs_el_ph .gs_btn_hph .gs_icm,.gs_el_ph .gs_btn_cph .gs_icm{display:none}.gs_btn_mnu .gs_icm{top:11px;height:7px;background-position:0 -110px;}.gs_md_se,.gs_md_wn,.gs_md_wm{position:absolute;top:0;left:0;border:1px solid #ccc;border-color:rgba(0,0,0,.2);background:#fff;box-shadow:0 2px 4px rgba(0,0,0,.2);z-index:1100;opacity:0;}.gs_md_se,.gs_md_wn{display:none;transition:opacity .13s;}.gs_md_wm{visibility:hidden;max-height:0;transition:opacity .13s,visibility 0s .13s,max-height 0s .13s;}.gs_md_se.gs_vis,.gs_md_wn.gs_vis,.gs_md_wm.gs_vis{opacity:1;transition:all 0s;}.gs_md_wm.gs_vis{visibility:visible;max-height:10000px;}.gs_el_tc .gs_md_se,.gs_el_tc .gs_md_wn{transform-origin:100% 0;transform:scale(1,0);transition:opacity .218s ease-out,transform 0s .218s;}.gs_el_tc .gs_md_wm{transition:opacity .218s ease-out,transform 0s .218s,visibility 0s .218s,max-height 0s .218s;}.gs_el_tc .gs_md_wn.gs_ttss{transform:scale(0,1);}.gs_el_tc .gs_md_wm,.gs_el_tc .gs_md_wn.gs_ttzi,.gs_el_ph.gs_el_tc .gs_md_wp.gs_ttzi{transform-origin:50% 50%;transform:scale(0,0);}.gs_el_tc .gs_md_se.gs_vis,.gs_el_tc .gs_md_wn.gs_vis,.gs_el_tc .gs_md_wm.gs_vis{transform:scale(1,1);transition:transform .218s ease-out;}.gs_el_ph .gs_md_wmw{top:0;left:0;position:fixed;height:100%;width:100%;visibility:hidden;z-index:1100;}.gs_el_ph .gs_md_wm{padding:0;width:100%;height:100%;border:none;box-shadow:none;transform:translate(0,100%);transform:translate(0,100vh);transition:transform .218s ease-out,opacity 0s .218s,visibility 0s .218s,max-height 0s .218s;}.gs_el_ph .gs_md_wm.gs_vis{transform:translate(0,0);transition:transform .218s ease-out;}.gs_md_se{white-space:nowrap}.gs_md_se ul{list-style-type:none;word-wrap:break-word;display:inline-block;vertical-align:top;}.gs_md_seb ul{display:block}.gs_md_se li,.gs_md_li,.gs_md_li:link,.gs_md_li:visited{display:block;padding:6px 44px 6px 16px;font-size:13px;line-height:16px;color:#222;cursor:default;text-decoration:none;background:white;transition:background .13s;}a.gs_md_li:hover .gs_lbl,a.gs_md_li:active .gs_lbl{text-decoration:none}.gs_el_tc .gs_md_se li,.gs_el_tc .gs_md_li{padding-top:14px;padding-bottom:10px;}.gs_md_se li:focus,.gs_md_se li:hover,.gs_md_li:hover,.gs_md_li:focus{background:#f1f1f1;transition:background 0s;}.gs_md_se li.gs_sel{color:#dd4b39}.gs_md_wn:focus,.gs_md_se li:focus,.gs_md_li:focus{outline:none}button.gs_btnG .gs_ico,button.gs_btnG:hover .gs_ico,button.gs_btnG:active .gs_ico,button.gs_btnG .gs_ico:active,button.gs_btnG :active~.gs_ico{width:14px;height:14px;top:7px;left:27px;background-position:-113px -44px;opacity:1;}a.gs_in_cb:link,a.gs_in_cb:visited,a.gs_in_cb:active,a.gs_in_cb:hover,a.gs_in_cb.gs_dis:active .gs_lbl{cursor:default;color:#222;text-decoration:none;}.gs_in_cb,.gs_in_ra{position:relative;line-height:16px;display:inline-block;user-select:none;}.gs_in_cb.gs_md_li{padding:6px 44px 6px 16px;display:block;}.gs_in_cb input,.gs_in_ra input{position:absolute;top:1px;left:1px;width:15px;height:15px;margin:0;padding:0;opacity:0;z-index:2;}.gs_in_ra input{top:0;left:0}.gs_el_tc .gs_in_cb input{top:9px}.gs_el_tc .gs_in_ra input{top:8px}.gs_in_cb.gs_in_cbj input{top:15px;left:15px}.gs_in_cb label,.gs_in_cb .gs_lbl,.gs_in_ra label{display:inline-block;padding-left:21px;min-height:16px;}.gs_el_tc .gs_in_cb label,.gs_el_tc .gs_in_cb .gs_lbl,.gs_el_tc .gs_in_ra label{padding-top:8px;padding-bottom:5px;}.gs_in_cb.gs_in_cbj label,.gs_in_cb.gs_in_cbj .gs_lbl{padding:13px 0 12px 41px;}.gs_in_cb .gs_cbx,.gs_in_ra .gs_cbx{position:absolute}.gs_in_cb .gs_cbx{top:2px;left:2px;width:11px;height:11px;border:1px solid #c6c6c6;border-radius:1px;}.gs_md_li .gs_cbx{top:8px;left:18px}.gs_el_tc .gs_in_cb .gs_cbx{top:10px}.gs_el_tc .gs_md_li .gs_cbx{top:16px}.gs_in_cb.gs_in_cbj .gs_cbx{top:15px;left:15px}.gs_el_tc .gs_in_ra .gs_cbx{top:8px}.gs_in_ra .gs_cbx{top:0;left:0;border:1px solid #c6c6c6;width:13px;height:13px;border-radius:7px;}.gs_in_cb:hover .gs_cbx,.gs_in_ra:hover .gs_cbx{border-color:#666;box-shadow:inset 0 1px 1px rgba(0,0,0,.1);}button.gs_in_cb:hover .gs_cbx{border-color:#c6c6c6;}button.gs_in_cb:active .gs_cbx{border-color:#a6a6a6;}.gs_in_cb:focus .gs_cbx,.gs_in_cb :focus~.gs_cbx,.gs_in_ra :focus~.gs_cbx{border-color:#4d90fe;}.gs_in_cb:active .gs_cbx,.gs_in_ra:active .gs_cbx,.gs_in_cb .gs_cbx:active,.gs_in_ra .gs_cbx:active,.gs_in_cb :active~.gs_cbx,.gs_in_ra :active~.gs_cbx{border-color:#666;background:#ebebeb;}.gs_in_cb :disabled~.gs_cbx,.gs_in_ra :disabled~.gs_cbx{border-color:#f1f1f1;box-shadow:none;}.gs_in_cb :disabled~label,.gs_in_ra :disabled~label{color:#b8b8b8;}.gs_in_cb.gs_err .gs_cbx{border-color:#eda29b;}.gs_in_cb .gs_chk,.gs_in_ra .gs_chk{position:absolute;z-index:1;top:-3px;left:-2px;width:21px;height:21px;}.gs_md_li .gs_chk{top:3px;left:14px}.gs_el_tc .gs_in_cb .gs_chk{top:5px}.gs_el_tc .gs_md_li .gs_chk{top:11px}.gs_in_cb.gs_in_cbj .gs_chk{top:10px;left:11px}.gs_in_ra .gs_chk{top:4px;left:4px;width:7px;height:7px;}.gs_el_tc .gs_in_ra .gs_chk{top:12px}.gs_in_cb input:checked~.gs_chk,.gs_in_cb.gs_sel .gs_chk{background:no-repeat url(/intl/en/scholar/images/1x/sprite_20160809.png) -69px -67px;opacity:.62;}.gs_in_ra input:checked~.gs_chk{border-radius:4px;background:#666;}.gs_in_cb.gs_par .gs_chk{background:no-repeat url(/intl/en/scholar/images/1x/sprite_20160809.png) -21px -44px;opacity:.55;}@media(-webkit-min-device-pixel-ratio:1.5),(min-resolution:144dpi){.gs_in_cb input:checked~.gs_chk,.gs_in_cb.gs_sel .gs_chk,.gs_in_cb.gs_par .gs_chk{background-image:url(/intl/en/scholar/images/2x/sprite_20160809.png);background-size:169px;}}.gs_in_cb input:checked:disabled~.gs_chk{background-position:-69px -67px;opacity:.22;}.gs_ico_X{background-position:-71px 0;opacity:.55;}.gs_ico_X:hover{opacity:.72;}.gs_ico_X:active{opacity:1;}.gs_el_tc .gs_ico_Xt{-webkit-background-origin:content;background-origin:content-box;-webkit-background-clip:content;background-clip:content-box;padding:10px 6px 10px 14px;}.gs_btnP .gs_ico{background-position:-21px 0;}.gs_btnC .gs_ico{background-position:0 -66px;}.gs_btnJ .gs_ico{background-position:-92px -22px;}.gs_btnM .gs_ico{background-position:-92px 0;}.gs_btnSB .gs_ico{background-position:0 -44px;}.gs_btnPL .gs_ico{background-position:-148px -66px;}.gs_btnPR .gs_ico{background-position:-21px -66px;}.gs_btnDE .gs_ico{background-position:-134px 0;}.gs_btnFI .gs_ico{background-position:-50px -66px;}.gs_btnAD .gs_ico{background-position:-141px -88px;opacity:.55;}.gs_btnAD:hover .gs_ico{opacity:.72;}.gs_btnAD:active .gs_ico,.gs_btnAD .gs_ico:active,.gs_btnAD :active~.gs_ico{opacity:1;}.gs_btnLBL .gs_ico{background-position:0 -161px;}.gs_btnCNCL .gs_ico{background-position:-71px 0;}.gs_btnDWL .gs_ico{background-position:-28px -88px;}button.gs_btnUB,button.gs_btnUR{border:none;background:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}button.gs_btnUB .gs_lbl,button.gs_btnUR .gs_lbl{padding:0;}button.gs_btnUR .gs_lbl{color:#fff;text-shadow:0px 1px rgba(0,0,0,.1);}button.gs_btnUR{-webkit-font-smoothing:antialiased;}.gs_btnUB .gs_ico,.gs_btnUR .gs_ico{top:-3px;left:-1px;width:38px;height:34px;z-index:-1;opacity:1;background:no-repeat url(/intl/en/scholar/images/1x/bell_sprite_20160531.png) -190px 0;background-size:456px;}@media(-webkit-min-device-pixel-ratio:1.5),(min-resolution:144dpi){.gs_btnUB .gs_ico,.gs_btnUR .gs_ico{background-image:url(/intl/en/scholar/images/2x/bell_sprite_20160531.png);}}.gs_btnUR .gs_ico{background-position:-380px 0;}.gs_btnUB:hover .gs_ico{background-position:-304px 0;opacity: 1;}.gs_btnUR:hover .gs_ico{background-position:-152px 0;opacity:1;}.gs_btnUB:focus .gs_ico{background-position:0 0;opacity:1;}.gs_btnUR:focus .gs_ico{background-position:-114px 0;opacity:1;}.gs_btnUB:focus:hover .gs_ico{background-position:-418px 0;}.gs_btnUR:focus:hover .gs_ico{background-position:-76px 0;}.gs_btnUB:active .gs_ico,.gs_btnUB .gs_ico:active,.gs_btnUB :active~.gs_ico{background-position:-342px 0;opacity:1;}.gs_btnUR:active .gs_ico,.gs_btnUR .gs_ico:active,.gs_btnUR :active~.gs_ico{background-position:-266px 0;opacity:1;}.gs_btnUB:focus:active .gs_ico{background-position:-228px 0;}.gs_btnUR:focus:active .gs_ico{background-position:-38px 0;}.gs_ico_nav_previous{background-position:0 -119px;width:53px;height:40px;}.gs_ico_nav_first{background-position:-25px -119px;width:28px;height:40px;}.gs_ico_nav_current{background-position:-53px -119px;width:20px;height:40px;}.gs_ico_nav_page{background-position:-73px -119px;width:20px;height:40px;}.gs_ico_nav_next{background-position:-93px -119px;width:71px;height:40px;}.gs_ico_nav_last{background-position:-93px -119px;width:45px;height:40px;}#gs_hdr{position:relative;height:58px;white-space:nowrap;clear:both;}#gs_hdr_bg{position:absolute;top:0;left:0;width:100%;height:57px;border-bottom:1px solid #e5e5e5;z-index:-1;background-color:#f5f5f5;}#gs_hdr_lt{position:absolute;top:0;left:0;width:100%;height:57px;}#gs_hdr_lt .gs_ico_ggl{position:absolute;left:0;top:14px;margin-left:32px;}.gs_el_sm #gs_hdr_lt .gs_ico_ggl{margin-left:16px;}#gs_hdr_lt .gs_ico_ggl a{display:block;width:100%;height:100%;}#gs_hdr_md{position:relative;height:29px;vertical-align:top;margin-left:172px;padding-top:15px;}.gs_el_sm #gs_hdr_md{margin-left:140px;}.gs_el_ta #gs_hdr_md{margin-left:127px;}.gs_el_ph #gs_hdr_md{margin-left:8px;padding-top:9px;}#gs_hdr_frm{position:relative;}.gs_el_ta #gs_hdr_frm{margin-right:94px;max-width:567px;}.gs_el_ph #gs_hdr_frm{margin-right:43px;max-width:736px;}#gs_hdr_frm_in{position:relative;display:inline-block;}.gs_el_ph #gs_hdr_frm_in,.gs_el_ta #gs_hdr_frm_in{display:block;margin-right:18px;width:auto;}#gs_hdr_frm_in_txt{vertical-align:top;width:537px;padding:3px 25px 1px 8px;}#gs_hdr_frm_in_txt[dir="ltr"]{padding:3px 25px 1px 8px;}#gs_hdr_frm_in_txt[dir="rtl"]{padding:3px 8px 1px 25px;}.gs_el_tc #gs_hdr_frm_in_txt{width:556px;padding:3px 8px 1px 8px;}.gs_el_ph #gs_hdr_frm_in_txt,.gs_el_ta #gs_hdr_frm_in_txt{width:100%;padding:3px 8px 1px 8px;}.gs_el_ph #gs_hdr_frm_in_txt{height:34px;line-height:34px;border-radius:2px 0 0 2px;}.gs_el_ta #gs_hdr_frm_ac{right:-18px;}.gs_el_ph #gs_hdr_frm_ac{top:39px;right:-53px;}.gs_el_ph #gs_hdr_arw,.gs_el_ta #gs_hdr_arw,.gs_el_tc #gs_hdr_arw{display:none;}#gs_hdr_tsb{vertical-align:top;margin:0 17px;}.gs_el_ta #gs_hdr_tsb,.gs_el_ph #gs_hdr_tsb{position:absolute;top:0;right:-85px;margin:0;}.gs_el_ph #gs_hdr_tsb{right:-35px;width:36px;height:40px;border-radius:0 2px 2px 0;}.gs_el_ta #gs_hdr_tsb .gs_ico{left:28px;}.gs_el_ph #gs_hdr_tsb .gs_ico{left:11px;top:12px;}#gs_hdr_rt{position:absolute;top:0;right:0;height:29px;line-height:27px;color:#666;margin-right:32px;padding-top:15px;}.gs_el_sm #gs_hdr_rt{margin-right:16px;}.gs_el_ta #gs_hdr_rt,.gs_el_ph #gs_hdr_rt{display:none;}#gs_hdr_rt a:link,#gs_hdr_rt a:visited{color:#666}#gs_hdr_rt a:active{color:#d14836}.gs_ico_ggl{width:92px;height:30px;background-position:-49px -88px;}.gs_el_ph .gs_ico_ggl{display:none}#gs_ab{position:relative;height:57px;border-bottom:1px solid #DEDEDE;white-space:nowrap;}.gs_el_sm #gs_ab{height:43px}#gs_ab_na{position:absolute;color:#DD4B39;text-decoration:none;top:19px;font-size:16px;margin-left:31px;}.gs_el_sm #gs_ab_na{top:13px;font-size:16px;margin-left:15px;}.gs_el_ph #gs_ab_na{top:12px;font-size:18px;margin-left:8px;}#gs_ab_na .gs_ico{display:none;}#gs_ab_top{margin-left:173px;}.gs_el_sm #gs_ab_top{margin-left:141px;}.gs_el_ta #gs_ab_top{margin-left:127px;}#gs_ab_rt{position:relative;float:right;padding-top:14px;padding-right:32px;}.gs_el_sm #gs_ab_rt{padding-top:7px;padding-right:16px;}.gs_el_ta #gs_ab_rt,.gs_el_ph #gs_ab_rt{padding-right:8px;}#gs_ab_rt button{margin-left:16px;vertical-align:top}.gs_el_sm #gs_ab_rt button{margin-left:8px}.gs_el_tc #gs_ab_rt button{margin-left:16px}#gs_bdy{position:relative;clear:both;margin-top:21px;padding-bottom:13px;}#gs_lnv{position:absolute;top:1px;left:0;width:164px;}.gs_el_sm #gs_lnv{width:132px}.gs_el_ph #gs_lnv,.gs_el_ta #gs_lnv{display:none}#gs_lnv ul{list-style-type:none;word-wrap:break-word}#gs_lnv .gs_pad{padding-left:32px}.gs_el_sm #gs_lnv .gs_pad{padding-left:16px}#gs_lnv .gs_ind,#gs_lnv .gs_inw{margin-bottom:4px}.gs_el_tc #gs_lnv .gs_ind,.gs_el_tc #gs_lnv .gs_inw{margin-bottom:0}#gs_lnv .gs_hr{border-bottom:1px solid #efefef;margin:14px 4px 14px 0;}#gs_lnv a:link,#gs_lnv a:visited{color:#222}#gs_lnv a:active{color:#d14836}#gs_lnv a.gs_in_cb:active{color:#222}#gs_lnv li.gs_sel a:link,#gs_lnv li.gs_sel a:visited,#gs_lnv li.gs_sel a:active,#gs_lnv li.gs_sel a:hover{color:#d14836;text-decoration:none;}#gs_lnv_pri li{line-height:0}#gs_lnv_pri a{display:block;padding:7px 0 6px 32px;line-height:16px;outline:none;}.gs_el_sm #gs_lnv_pri a{padding-left:16px}#gs_lnv_pri a:hover,#gs_lnv_pri a:focus{text-decoration:none;background:#eeeeee}#gs_lnv_pri .gs_sel a{border-left:5px solid #dd4b39;padding-left:27px;}.gs_el_sm #gs_lnv_pri .gs_sel a{padding-left:11px}#gs_ccl{position:relative;padding:0 8px;margin-left:164px;}.gs_el_sm #gs_ccl{margin-left:132px}.gs_el_ph #gs_ccl,.gs_el_ta #gs_ccl{margin:0}#gs_ab_md{position:absolute;color:#999;top:23px;}.gs_el_sm #gs_ab_md{top:16px;}.gs_el_ph #gs_ab_md{display:none;}#gs_hdr_adv{top:49px;left:0;width:552px;}.gs_el_ta #gs_hdr_adv{width:90%;max-width:546px;}#gs_ylo_dd,#gs_ad_dd{position:relative}#gs_ylo_dd{display:none}.gs_el_ta #gs_ylo_dd,.gs_el_ph #gs_ylo_dd,#gs_ad_dd{display:inline-block;}#gs_ylo_md,#gs_ad_md{left:auto;right:0;top:29px;}.gs_el_ph #gs_ylo_md,.gs_el_ph #gs_ad_md{top:0;}#gs_ylo_md a.gs_cur,#gs_ylo_md a:active,#gs_ad_md a.gs_cur,#gs_ad_md a:active{color:#d14836;}#gs_ylo_md .gs_hr,#gs_ad_md .gs_hr{border-bottom:1px solid #efefef;margin:7px 0;}.gs_ad_nlnv{display:none}.gs_el_ta .gs_ad_nlnv,.gs_el_ph .gs_ad_nlnv{display:block}.gs_el_ta #gs_ab_rt .gs_btnC,.gs_el_ph #gs_ab_rt .gs_btnC{display:none}.gs_el_ta #gs_ad_md .gs_btnC,.gs_el_ph #gs_ad_md .gs_btnC{display:block}.gs_btnAD{-ms-touch-action:none;touch-action:none;}.gs_el_ph #gs_lnv,.gs_el_ta #gs_lnv{display:none}.gs_el_tc #gs_lnv_ylo li,.gs_el_tc #gs_lnv_ylo a,.gs_el_tc #gs_lnv_lr li,.gs_el_tc #gs_lnv_lr a,.gs_el_tc #gs_lnv_stype li,.gs_el_tc #gs_lnv_stype a{padding-top:8px;padding-bottom:5px;margin:0;}#gs_lnv_yloc td{padding:5px 0}.gs_el_tc #gs_lnv_yloc td{padding:10px 0}#gs_lnv_yloc .gs_in_txt{width:2.75em}.gs_el_sm #gs_ccl{max-width:980px}.gs_el_ta #gs_ccl{max-width:780px}.gs_r{position:relative;margin:1em 0;overflow-x:hidden;}.gs_rt{position:relative;font-weight:normal;font-size:17px;line-height:19px}.gs_rt2{font-size:13px;font-weight:normal}.gs_rt a:link,.gs_rt a:link b,.gs_rt2 a:link,.gs_rt2 a:link b{color:#1a0dab}.gs_rt a:visited,.gs_rt a:visited b,.gs_rt2 a:visited,.gs_rt2 a:visited b{color:#660099}.gs_rt a:active,.gs_rt a:active b,.gs_rt2 a:active,.gs_rt2 a:active b{color:#d14836}.gs_rt a:focus,.gs_fl a:focus,.gs_ggsm a:focus{outline:none;text-decoration:underline;}.gs_ggs{position:absolute;top:0;left:720px;white-space:nowrap;font-size:17px;line-height:19px;}.gs_el_sm .gs_ggs{position:relative;left:0;z-index:1;float:right;margin-left:12px;width:200px;}.gs_el_ph .gs_ggs{height:36px;}@media(max-width:779px){.gs_el_sm .gs_ggs{width:150px;}}.gs_el_ph .gs_ggs{width:72px;}.gs_el_tc .gs_ggs{margin-top:2px;}.gs_el_sm.gs_el_tc .gs_ggs{margin-top:-13px;}.gs_el_ph.gs_el_tc .gs_ggs,.gs_el_ph .gs_ggs{margin-top:-14px;}.gs_ggsd{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}.gs_el_tc .gs_ggsm a,.gs_el_ph .gs_ggsm a{display:block;overflow:hidden;text-overflow:ellipsis;padding:13px 8px 9px 8px;-ms-touch-action:none;touch-action:none;background:#fff;height:19px;}.gs_el_ph .gs_ggsm a{text-decoration:none;}.gs_el_ph .gs_ggsm a:focus{background:#f1f1f1;}.gs_el_ph .gs_ggsm a:active{color:#1a0dab;}.gs_el_ph .gs_ggsm a:visited{color:#660099;}.gs_el_ph .gs_ggsm{position:absolute;top:0;left:0;padding:1px 0;width:200px;height:41px;transform:translate(0,0);}.gs_el_ph .gs_ggsm.gs_vis{left:-132px;height:auto;}.gs_el_ph .gs_ggsm>div:nth-child(2){height:0;transform:scale(1,0);transform-origin:0 0;}.gs_el_ph .gs_ggsm.gs_vis>div:nth-child(2){height:41px;transform:scale(1,1);}.gs_el_ph .gs_ggsm:before{content:"";position:absolute;top:0;left:-1px;right:-1px;bottom:0;box-shadow:0 2px 4px rgba(0,0,0,.2);border:1px solid #ccc;opacity:0;z-index:-1;}.gs_el_ph .gs_ggsm.gs_vis:before{opacity:1}.gs_el_ph .gs_ggsm:after{content:"";pointer-events:none;position:absolute;top:0;left:0;right:0;bottom:0;z-index:1;background-image:linear-gradient(to left,rgba(255,255,255,1),rgba(255,255,255,1) 65%,rgba(255,255,255,0) 70%);}.gs_el_ph .gs_ggsm.gs_vis:after{visibility:hidden}.gs_el_ph .gs_ggsm.gs_vis.gs_anm{animation:gs_anm_hsli .218s ease-in-out;}.gs_el_ph .gs_ggsm.gs_anm{animation:gs_anm_hslo .218s ease-out;}.gs_el_ph .gs_ggs .gs_ggsm.gs_vis.gs_anm>div:nth-child(2){animation:gs_anm_vscli .218s ease-in;}.gs_el_ph .gs_ggsm.gs_vis.gs_anm:before{animation:gs_anm_fil .3s;}@keyframes gs_anm_hsli{0%{transform:translate(66%,0);height:41px;}99%{transform:translate(0,0);height:41px;}100%{transform:translate(0,0);height:auto;}}@keyframes gs_anm_hslo{0%{transform:translate(-66%,0);}100%{transform:translate(0,0);}}@keyframes gs_anm_vscli{0%{transform:scale(1,0);}100%{transform:scale(1,1);}}@keyframes gs_anm_fil{0%{opacity:0;}99%{opacity:0;}100%{opacity:1;}}.gs_ct1{display:inline}.gs_ct2{display:none}.gs_el_ph .gs_ct1{display:none}.gs_el_ph .gs_ct2{display:inline;font-size:13px;font-weight:normal}.gs_ri{max-width:712px}.gs_a a:link,.gs_a a:visited{text-decoration:underline}.gs_ri .gs_fl a,.gs_a a{white-space:nowrap}.gs_ri .gs_fl a.gs_wno{white-space:normal}.gs_svm{display:none}.gs_ri .gs_fl{font-size:1px}.gs_ri .gs_fl a,.gs_svm{font-size:13px;margin-right:12px}.gs_ri .gs_svm a{margin:0}.gs_ri .gs_fl a:last-child,.gs_svm:last-child{margin:0}.gs_nvi,.gs_mvi .gs_mor{display:none}.gs_mvi .gs_nvi,.gs_mvi .gs_nph,.gs_mvi .gs_nta{display:inline}.gs_rs{margin:1px 0}.gs_el_tc .gs_rs{margin:0}.gs_el_ta .gs_rs{margin-right:10%}@media(max-width:780px){.gs_el_ta .gs_rs,.gs_el_ta .gs_a{margin-right:100px;}}.gs_el_ph .gs_rs br,.gs_el_ta .gs_rs br{display:none}@media screen and (min-width:771px){.gs_el_ta .gs_rs br{display:block}}.gs_age{color:#777777}.gs_rs b,.gs_rt b,.gs_rt2 b{color:#000}.gs_el_tc .gs_r,.gs_el_ph .gs_r{padding:15px 0 1em 0;margin:0;border-bottom:1px solid #eee;}.gs_el_tc #gs_ccl,.gs_el_ph #gs_ccl{margin-top:-1em;}.gs_el_tc #gs_ccl_top,.gs_el_ph #gs_ccl_top{margin-top:1em;padding-top:1px;}.gs_rt{margin-right:100px;}.gs_el_ph .gs_rt{margin-right:0;}.gs_el_tc .gs_rt a{font-size:17px;line-height:20px;padding:12px 0 9px 0;}.gs_el_tc .gs_rt2 a{font-size:14px;line-height:20px;padding:6px 0 4px 0;}.gs_el_tc .gs_a,.gs_el_tc .gs_a a,.gs_el_tc .gs_ri .gs_fl a{padding:8px 0 5px 0;}.gs_el_tc .gs_ri .gs_fl a{line-height:29px;}#gs_n{clear:both;margin:1.5em 0;width:650px;text-align:center;}#gs_n td{font-size:13px}#gs_n a:link,#gs_n a:visited{color:#1a0dab}#gs_n a:active{color:#d14836}#gs_nm{clear:both;position:relative;text-align:center;max-width:500px;margin:1.5em 50px;font-size:13px;line-height:29px;display:none;}.gs_el_tc #gs_nm{font-size:15px;line-height:41px;}#gs_nm button{position:absolute;top:0}#gs_nm .gs_btnPL{left:-50px}#gs_nm .gs_btnPR{right:-50px}.gs_el_tc #gs_nm button{height:41px}.gs_el_tc #gs_nm button .gs_wr{line-height:39px}.gs_el_tc #gs_nm button .gs_ico{top:8px}#gs_nml{overflow:hidden;white-space:nowrap;width:100%;}.gs_nma{display:inline-block;width:40px;margin:0 5px;}.gs_el_tc #gs_n,.gs_el_ta #gs_n,.gs_el_ph #gs_n{display:none}.gs_el_tc #gs_nm,.gs_el_ta #gs_nm,.gs_el_ph #gs_nm{display:block}.gs_lkp_btm{margin:24px 0}.gs_alrt_btm a:link,.gs_alrt_btm a:visited{color:#444}.gs_alrt_btm a:active{color:#d14836}#gs_ftr{width:650px;}.gs_el_ta #gs_ftr,.gs_el_ph #gs_ftr{width:auto;max-width:600px;}@media print{#gs_gb,#gs_hdr,#gs_ab,#gs_top #gs_lnv,.gs_pda,.gs_ggs,.gs_alrt_btm,#gs_top #gs_n,#gs_top #gs_nm,#gs_ftr,#gs_top .gs_ctc,#gs_top .gs_ctu,#gs_rt_hdr,.gs_rt_hdr_ttl{display:none}#gs_top,#gs_top #gs_bdy,#gs_top #gs_res_bdy,#gs_top #gs_ccl,#gs_top .gs_r,#gs_top .gs_ri,#gs_top .gs_rs{font-size:9pt;color:black;position:static;float:none;margin:0;padding:0;width:auto;min-width:0;max-width:none;}#gs_top #gs_bdy a{color:blue;text-decoration:none}#gs_top .gs_r{margin:1em 0;page-break-inside:avoid}#gs_top .gs_med,#gs_top .gs_rt{font-size:12pt}#gs_top .gs_a,#gs_top #gs_bdy .gs_a a{font-size:9pt;color:green}#gs_top .gs_fl,#gs_top .gs_fl a{font-size:9pt}#gs_top .gs_rs br{display:inline}}</style><script>var gs_ie_ver=100;</script><!--[if lte IE 8]><script>gs_ie_ver=8;</script><![endif]--><script>function gs_id(i){return document.getElementById(i)}function gs_ch(e,t){return e?e.getElementsByTagName(t):[]}function gs_ech(e){return e.children||e.childNodes}function gs_atr(e,a){return e.getAttribute(a)}function gs_hatr(e,a){var n=e.getAttributeNode(a);return n&&n.specified}function gs_xatr(e,a,v){e.setAttribute(a,v)}function gs_uatr(e,a){e.removeAttribute(a)}function gs_catr(e,a,v){gs_hatr(e,a)&&gs_xatr(e,a,v)}function gs_ctai(e,v){gs_hatr(e,"tabindex")&&(e.tabIndex=v)}function gs_uas(s){return (navigator.userAgent||"").indexOf(s)>=0}function gs_is_ph(){return document.documentElement.className.indexOf("gs_el_ph")+1;}var gs_is_tc=/[?&]tc=([01])/.exec(window.location.search||""),gs_is_ios=gs_uas("iPhone")||gs_uas("iPod")||gs_uas("iPad");if(gs_is_tc){gs_is_tc=parseInt(gs_is_tc[1]);}else if(window.matchMedia&&matchMedia("(pointer),(-moz-touch-enabled),(-moz-touch-enabled:0)").matches){gs_is_tc=matchMedia("(pointer:coarse),(-moz-touch-enabled)").matches;}else{gs_is_tc=0||('ontouchstart' in window)||(navigator.msMaxTouchPoints||0)>0;}var gs_re_sp=/\s+/,gs_re_sel=/(?:^|\s)gs_sel(?!\S)/g,gs_re_par=/(?:^|\s)gs_par(?!\S)/g,gs_re_dis=/(?:^|\s)gs_dis(?!\S)/g,gs_re_vis=/(?:^|\s)gs_vis(?!\S)/g,gs_re_anm=/(?:^|\s)gs_anm(?!\S)/g,gs_re_bsp=/(?:^|\s)gs_bsp(?!\S)/g,gs_re_err=/(?:^|\s)gs_err(?!\S)/g,gs_re_nscl=/(?:^|\s)gs_nscl(?!\S)/g,gs_re_cb=/(?:^|\s)gs_in_cb(?!\S)/,gs_re_ra=/(?:^|\s)gs_in_ra(?!\S)/,gs_re_qsp=/[\s\u0000-\u002f\u003a-\u0040\u005b-\u0060\u007b-\u00bf\u2000-\u206f\u2e00-\u2e42\u3000-\u303f\uff00-\uff0f\uff1a-\uff20\uff3b-\uff40\uff5b-\uff65]+/g;function gs_xcls(e,c){gs_scls(e,e.className+" "+c)}function gs_ucls(e,r){gs_scls(e,e.className.replace(r,""))}function gs_scls(e,c){return e.className!=c&&(e.className=c,true)}function gs_usel(e){gs_ucls(e,gs_re_sel)}function gs_xsel(e){gs_usel(e);gs_xcls(e,"gs_sel")}function gs_tsel(e){return e.className.match(gs_re_sel)}function gs_isel(e){(gs_tsel(e)?gs_usel:gs_xsel)(e)}function gs_upar(e){gs_ucls(e,gs_re_par)}function gs_xpar(e){gs_upar(e);gs_xcls(e,"gs_par")}function gs_tpar(e){return e.className.match(gs_re_par)}function gs_udis(e){gs_ucls(e,gs_re_dis)}function gs_xdis(e){gs_udis(e);gs_xcls(e,"gs_dis")}function gs_tdis(e){return e.className.match(gs_re_dis)}function gs_btn_xdis(b,d){b&&((b.disabled=!!d)?gs_xdis:gs_udis)(b);}function gs_uvis(e){gs_ucls(e,gs_re_vis)}function gs_xvis(e){gs_uvis(e);gs_xcls(e,"gs_vis")}function gs_uanm(e){gs_ucls(e,gs_re_anm)}function gs_xanm(e){gs_uanm(e);gs_xcls(e,"gs_anm")}function gs_ubsp(e){gs_ucls(e,gs_re_bsp)}function gs_xbsp(e){gs_ubsp(e);gs_xcls(e,"gs_bsp")}function gs_uerr(e){gs_ucls(e,gs_re_err)}function gs_xerr(e){gs_uerr(e);gs_xcls(e,"gs_err")}function gs_unscl(e){gs_ucls(e,gs_re_nscl)}function gs_xnscl(e){gs_unscl(e);gs_xcls(e,"gs_nscl")}var gs_gcs=window.getComputedStyle?function(e){return getComputedStyle(e,null)}:function(e){return e.currentStyle};var gs_ctd=function(){var s=document.documentElement.style,p,l=['OT','MozT','webkitT','t'],i=l.length;function f(s){return Math.max.apply(null,(s||"").split(",").map(parseFloat))||0;}do{p=l[--i]+'ransition'}while(i&&!(p in s));return i?function(e){var s=gs_gcs(e);return f(s[p+"Delay"])+f(s[p+"Duration"]);}:function(){return 0};}();var gs_tmh=function(){var X,P={};return {a:function(e){var t=pageYOffset+e.getBoundingClientRect().bottom;X=X||gs_id("gs_top");if(e.id){P[e.id]=1;t>X.offsetHeight&&(X.style.minHeight=t+"px");}},r:function(e){if(e.id&&X){delete P[e.id];if(!Object.keys(P).length){X.style.minHeight="";}}}}}();var gs_vis=function(){return function(e,v,c){var s=e&&e.style,h,f;if(s){gs_catr(e,"aria-hidden",v?"false":"true");if(v){s.display=v===2?"inline":"block";gs_ctd(e);gs_xvis(e);f=gs_ctd(e);gs_uas("AppleWebKit")&&f&&gs_evt_one(e,"transitionend webkitTransitionEnd",function(){gs_tmh.a(e);});c&&(f?setTimeout(c,1000*f):c());}else{gs_uvis(e);h=function(){s.display="none";gs_tmh.r(e);c&&c();};f=gs_ctd(e);f?setTimeout(h,1000*f):h();}}};}();function gs_visi(i,v,c){gs_vis(gs_id(i),v,c)}function gs_sel_clk(p,t){var l=gs_ch(gs_id(p),"li"),i=l.length,c,x,s;while(i--){if((c=gs_ch(x=l[i],"a")).length){s=c[0]===t;(s?gs_xsel:gs_usel)(x);gs_catr(c[0],"aria-selected",s?"true":"false");}}return false;}function gs_efl(f){if(typeof f=="string"){var c=f.charAt(0),x=f.slice(1);if(c==="#")f=function(t){return t.id===x};else if(c===".")f=function(t){return (" "+t.className+" ").indexOf(" "+x+" ")>=0};else{c=f.toLowerCase();f=function(t){return t.nodeName.toLowerCase()===c};}}return f;}function gs_dfcn(d){return (d?"last":"first")+"Child"}function gs_dnsn(d){return (d?"previous":"next")+"Sibling"}var gs_trv=function(){function h(r,x,f,s,n,c){var t,p;while(x){if(x.nodeType===1){if(f(x)){if(c)return x;}else{for(p=x[s];p;p=p[n])if(t=h(p,p,f,s,n,1))return t;}}c=1;while(1){if(x===r)return;p=x.parentNode;if(x=x[n])break;x=p;}}}return function(r,x,f,d){return h(r,x,gs_efl(f),gs_dfcn(d),gs_dnsn(d))};}();function gs_bind(){var a=Array.prototype.slice.call(arguments),f=a.shift();return function(){return f.apply(null,a.concat(Array.prototype.slice.call(arguments)))};}function gs_evt1(e,n,f){e.addEventListener(n,f,false)}function gs_uevt1(e,n,f){e.removeEventListener(n,f,false)}if(!window.addEventListener){gs_evt1=function(e,n,f){e.attachEvent("on"+n,f)};gs_uevt1=function(e,n,f){e.detachEvent("on"+n,f)};}function gs_evtX(e,n,f,w){var i,a;typeof n==="string"&&(n=n.split(" "));for(i=n.length;i--;)(a=n[i])&&w(e,a,f);}function gs_evt(e,n,f){gs_evtX(e,n,f,gs_evt1)}function gs_uevt(e,n,f){gs_evtX(e,n,f,gs_uevt1)}function gs_evt_one(e,n,f){function g(E){gs_uevt(e,n,g);f(E);}gs_evt(e,n,g);}function gs_evt_all(l,n,f){for(var i=l.length;i--;){gs_evt(l[i],n,gs_bind(f,l[i]))}}function gs_evt_dlg(p,c,n,f){p!==c&&(c=gs_efl(c));gs_evt(p,n,p===c?function(e){f(p,e)}:function(e){var t=gs_evt_tgt(e);while(t){if(c(t))return f(t,e);if(t===p)return;t=t.parentNode;}});}function gs_evt_sms(v){var L=[],l=["mousedown","click"],i=l.length;function s(e){for(var l=L,n=l.length,i=0,x=e.clientX,y=e.clientY;i<n;i+=2){if(Math.abs(x-l[i])<10&&Math.abs(y-l[i+1])<10){gs_evt_ntr(e);break;}}}while(i--)document.addEventListener(l[i],s,true);gs_evt_sms=function(e){var l=e.changedTouches||[],h=l[0]||{};L.push(h.clientX,h.clientY);setTimeout(function(){L.splice(0,2)},2000);};gs_evt_sms(v);v=0;}function gs_evt_clk(e,f,w,k,d){return gs_evt_dlg_clk(e,e,function(t,e){f(e)},w,k,d);}function gs_evt_dlg_clk(p,c,f,w,k,d){k=","+(k||[13,32]).join(",")+",";return gs_evt_dlg_xclk(p,c,function(t,e){if(e.type=="keydown"){if(k.indexOf(","+e.keyCode+",")<0)return;gs_evt_ntr(e);}f(t,e);},w,d);}function gs_evt_xclk(e,f,w){return gs_evt_dlg_xclk(e,e,function(t,e){f(e)},w);}function gs_evt_dlg_xclk(p,c,f,w,d){var T,S=0,D=0;function u(t,e){var n=e.type;if(!S&&d&&d(e))return;if(t!==T){T=t;S=0;}if(!gs_evt_spk(e)){if(n==="mousedown"){S=1;D=d&&d(e);}else if(n==="click"){if(S){D||gs_evt_ntr(e);return S=0;}}else if(n==="touchstart"){S=0;gs_evt_sms(e);}else if(n==="keydown"){f(t,e);return;}else if(n==="keyup"){e.keyCode===32&&gs_evt_pdf(e);return;}else{return}gs_evt_ntr(e);f(t,e);}}gs_evt_dlg(p,c,["keydown","keyup","click"].concat(w?["mousedown","touchstart"]:[]),u);return u;}function gs_evt_inp(e,f){gs_evt(e,["input","keyup","cut","paste","change","gs-change"],function(){setTimeout(f,0)});}function gs_evt_fcs(e,f){e.addEventListener("focus",f,true)}function gs_evt_blr(e,f){e.addEventListener("blur",f,true)}if("onfocusin" in document){gs_evt_fcs=function(e,f){gs_evt(e,"focusin",f)};gs_evt_blr=function(e,f){gs_evt(e,"focusout",f)};}function gs_evt_stp(e){e.cancelBubble=true;e.stopPropagation&&e.stopPropagation();return false;}function gs_evt_pdf(e){e.returnValue=false;e.preventDefault&&e.preventDefault();}function gs_evt_ntr(e){gs_evt_stp(e);gs_evt_pdf(e);}function gs_evt_tgt(e){var t=e.target||e.srcElement;t&&t.nodeType===3&&(t=t.parentNode);return t;}function gs_evt_spk(e){return (e.ctrlKey?1:0)|(e.altKey?2:0)|(e.metaKey?4:0)|(e.shiftKey?8:0);}function gs_evt_crt(d,t){if(document.createEvent){var e=document.createEvent('Event');e.initEvent(t,!0,!0);d.dispatchEvent(e);}}function gs_tfcs(t){if(!gs_is_tc||(gs_uas("Windows")&&!gs_uas("Windows Phone"))){t.focus();t.value=t.value;}}var gs_raf=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||function(c){setTimeout(c,33)};var gs_evt_rdy=function(){var d=document,l=[],h=function(){var n=l.length,i=0;while(i<n)l[i++]();l=[];};gs_evt(d,"DOMContentLoaded",h);gs_evt(d,"readystatechange",function(){var s=d.readyState;(s=="complete"||(s=="interactive"&&gs_id("gs_rdy")))&&h();});gs_evt(window,"load",h);return function(f){l.push(f)};}();function gs_evt_raf(e,n){var l=[],t=0,h=function(){var x=l,n=x.length,i=0;while(i<n)x[i++]();t=0;};return function(f){l.length||gs_evt(e,n,function(){!t++&&gs_raf(h)});l.push(f);};}var gs_evt_wsc=gs_evt_raf(window,"scroll"),gs_evt_wre=gs_evt_raf(window,"resize");var gs_md_st=[],gs_md_lv={},gs_md_fc={},gs_md_if,gs_md_is=0;function gs_md_ifc(d,f){gs_md_fc[d]=f}function gs_md_sif(){gs_md_if=1;setTimeout(function(){gs_md_if=0},0);}function gs_md_plv(n){var l=gs_md_lv,x=0;while(n&&!x){x=l[n.id]||0;n=n.parentNode;}return x;}gs_evt(document,"click",function(e){var m=gs_md_st.length;if(m&&!gs_evt_spk(e)&&m>gs_md_plv(gs_evt_tgt(e))){(gs_md_st.pop())();gs_evt_pdf(e);}});gs_evt(document,"keydown",function(e){e.keyCode==27&&!gs_evt_spk(e)&&gs_md_st.length&&(gs_md_st.pop())();});gs_evt(document,"selectstart",function(e){gs_md_is&&gs_evt_pdf(e)});gs_evt_fcs(document,function(e){var l=gs_md_lv,m=gs_md_st.length,x,k,v,d;if(m&&!gs_md_if){x=gs_md_plv(gs_evt_tgt(e));while(x<m){v=0;for(k in l)l.hasOwnProperty(k)&&l[k]>v&&(v=l[d=k]);if(v=gs_md_fc[d]){gs_evt_stp(e);gs_id(v).focus();break;}else{(gs_md_st.pop())(1);--m;!gs_md_is++&&setTimeout(function(){gs_md_is=0},1000);}}}});function gs_md_cls(d,e){var x=gs_md_lv[d]||1e6;while(gs_md_st.length>=x)(gs_md_st.pop())();return e&&gs_evt_stp(e);}function gs_md_shw(d,e,o,c){if(!gs_md_lv[d]){var x=gs_md_plv(gs_id(d));while(gs_md_st.length>x)(gs_md_st.pop())();o&&o();gs_md_st.push(function(u){gs_md_lv[d]=0;c&&c(u);});gs_md_lv[d]=gs_md_st.length;return gs_evt_stp(e);}}function gs_md_opn(d,e,c,z){var a=document.activeElement;return gs_md_shw(d,e,gs_bind(gs_visi,d,1),function(u){gs_visi(d,0,z);try{u||a.focus()}catch(_){}c&&c(u);});}function gs_evt_md_mnu(d,b,f,a,w){var O,X;d=gs_id(d);b=gs_id(b);f=f?gs_efl(f):function(t){return (gs_hatr(t,"data-a")||t.nodeName==="A"&&t.href)&&t.offsetWidth;};a=a||function(t){var c=gs_atr(t,"data-a");c?eval(c):t.nodeName==="A"&&t.href&&(location=t.href);};function u(e){if(e.type=="keydown"){var k=e.keyCode;if(k==38||k==40){if(O){try{gs_trv(d,d,f,k==38).focus()}catch(_){}gs_evt_ntr(e);return;}}else if(k!=13&&k!=32){return;}gs_evt_pdf(e);}if(O){gs_md_cls(d.id,e);}else{gs_md_sif();O=1;gs_xsel(b);gs_md_opn(d.id,e,function(){O=0;gs_usel(b);try{X.blur()}catch(_){}});w&&w();}}function c(x,r){var p=x.parentNode,c=gs_ech(p),i=c.length,l="offsetLeft";if(p!==d){while(c[--i]!==x);p=p[gs_dnsn(r)]||p.parentNode[gs_dfcn(r)];c=gs_ech(p);if(i=Math.min(i+1,c.length)){p=c[i-1];if(p.nodeType==1&&f(p)&&p[l]!=x[l])return p;}}}function g(t,e){function m(x){if(x){gs_evt_ntr(e);x.focus();}}if(O){if(e.type=="keydown"){var k=e.keyCode;if(k==13||k==32){}else{if(k==38||k==40){m(gs_trv(d,t,f,k==38)||gs_trv(d,d,f,k==38));}else if(k==37||k==39){m(c(t,k==37));}return;}}gs_hatr(t,"data-md-no-close")||gs_md_cls(d.id,e);gs_evt_pdf(e);gs_md_sif();a(t);}}gs_evt_xclk(b,u,2);gs_evt_fcs(d,function(e){var x=gs_evt_tgt(e);if(x&&f(x)){gs_ctai(x,0);X=x;}});gs_evt_blr(d,function(e){var x=gs_evt_tgt(e);if(x&&f(x)){gs_ctai(x,-1);X=0;}});gs_evt_dlg_xclk(d,f,g);return u;}function gs_evt_md_sel(d,b,h,c,s,u){h=gs_id(h);c=gs_id(c);s=gs_id(s);return gs_evt_md_mnu(d,b,function(t){return gs_hatr(t,"data-v")},function(t){h.innerHTML=t.innerHTML;c.value=gs_atr(t,"data-v");if(t!==s){gs_usel(s);gs_uatr(s,"aria-selected");gs_xsel(s=t);gs_xatr(s,"aria-selected","true");}gs_evt_crt(c,"gs-change");u&&u();},function(){s.focus()});}function gs_xhr(){if(window.XMLHttpRequest)return new XMLHttpRequest();var c=["Microsoft.XMLHTTP","MSXML2.XMLHTTP","MSXML2.XMLHTTP.3.0","MSXML2.XMLHTTP.6.0"],i=c.length;while(i--)try{return new ActiveXObject(c[i])}catch(e){}}function gs_ajax(u,d,c){var r=gs_xhr();r.onreadystatechange=function(){r.readyState==4&&c(r.status,r.responseText);};r.open(d?"POST":"GET",u,true);d&&r.setRequestHeader("Content-Type","application/x-www-form-urlencoded");d?r.send(d):r.send();}var gs_json_parse="JSON" in window?function(s){return JSON.parse(s)}:function(s){return eval("("+s+")")};function gs_frm_ser(e,f){var i=e.length,r=[],x,n,t;while(i--){x=e[i];n=encodeURIComponent(x.name||"");t=x.type;n&&(!f||f(x))&&!x.disabled&&((t!="checkbox"&&t!="radio")||x.checked)&&r.push(n+"="+encodeURIComponent(x.value||""));}return r.join("&");}var gs_rlst,gs_wlst;!function(U){var L={},S;try{S=window.localStorage}catch(_){}gs_rlst=function(k,s){if(s||!(k in L)){var v=S&&S[k];if(v)try{v=JSON.parse(v)}catch(_){v=U}else v=U;L[k]=v;}return L[k];};gs_wlst=function(k,v){L[k]=v;try{S&&(S[k]=JSON.stringify(v))}catch(_){}};}();function gs_ac_nrm(q,o,t){o=o||[];o.length=0;q=(q||"").toLowerCase();var L=q.length,M;q=q.replace(gs_re_qsp,function(m,p){o.push(M=m.length);return !t||p+M<L?" ":"";});q[0]==" "?(q=q.substr(1)):o.unshift(0);return q;}function gs_ac_get(Q){var h=gs_rlst("H:"+Q),t={"":1},i=0,j=0,n,v,q;(h instanceof Array)||(h=[]);h=h.slice();for(n=h.length;i<n;i++){v=h[i]=((v=h[i]) instanceof Array)&&v.length==3?v.slice():[0,0,""];v[0]=+v[0]||0;v[1]=+v[1]||0;v[2]=""+v[2];q=v[3]=gs_ac_nrm(""+v[2],v[4]=[],1);t[q]||(t[q]=1,h[j++]=v);}h.splice(Math.min(j,50),n);return h;}function gs_ac_set(Q,h){var r=[],i=0,n=h.length;while(i<n)r.push(h[i++].slice(0,3));gs_wlst("H:"+Q,r);}function gs_ac_fre(t){return Math.exp(.0231*((Math.max(t-1422777600,0)/86400)|0));}function gs_ac_add(Q,q,d){var h=gs_ac_get(Q),n=h.length,t=1e-3*(new Date()),m=0,x,w,o=[];if(w=gs_ac_nrm(q,o,1)){d=d||t;while(m<n&&h[m][3]!=w)++m;m<n||h.push([0,0,q,w,o]);if(d-h[m][0]>1){h[m][0]=d;h[m][2]=q;h[m][4]=o;h[m][1]=Math.min(h[m][1]+gs_ac_fre(d),10*gs_ac_fre(t));while(m&&h[m][1]>h[m-1][1]){x=h[m];h[m]=h[m-1];h[--m]=x;}h.splice(50,h.length);gs_ac_set(Q,h);}}}var gs_evt_el=function(W,D,L){function p(){var r=D.documentElement,w=W.innerWidth||r.offsetWidth,h=W.innerHeight||r.offsetHeight,m="",n,i;if(w&&h){if(gs_is_ios){var S=W.screen||{},w2=S.width,h2=S.height,t;if(w>h&&w2<h2){t=w2;w2=h2;h2=t;}w2&&w2<w&&(w=w2);h2&&h2<h&&(h=h2);}if(w<600)m="gs_el_sm gs_el_ph";else if(w<982)m="gs_el_sm gs_el_ta";else if(w<1060||h<590)m="gs_el_sm";else if(w<1252||h<640)m="gs_el_me";gs_is_tc&&(m+=" gs_el_tc");gs_is_ios&&(m+=" gs_el_ios");if(gs_scls(r,m))for(n=L.length,i=0;i<n;)L[i++]();}}p();gs_evt_wre(p);gs_evt(W,["pageshow","load"],p);return function(f){f();L.push(f)};}(window,document,[]);!function(B,U){gs_evt(document,(B&&""?[]:["mousedown","touchstart"]).concat(["contextmenu","click"]),function(e){var t=gs_evt_tgt(e),a="data-clk",w=window,r=document.documentElement,p="http://scholar.google.com"||"http://"+location.host,n,h,c,u;while(t){n=t.nodeName;if(n==="A"&&(h=gs_ie_ver<=8?t.getAttribute("href",2):gs_atr(t,"href"))&&(c=gs_atr(t,a))){u="/scholar_url?url="+encodeURIComponent(h)+"&"+c+"&ws="+(w.innerWidth||r.offsetWidth||0)+"x"+(w.innerHeight||r.offsetHeight||0);if(c.indexOf("&scisig=")>0){gs_xatr(t,"href",p+u);gs_uatr(t,a);}else if(B){B.call(navigator,u);}else if(u!=U.src){(U=new Image()).src=u;setTimeout(function(){U={};},1000);}break;}t=(n==="SPAN"||n==="B"||n==="I"||n==="EM")&&t.parentNode;}});}(navigator.sendBeacon,{});function gs_is_cb(e){var n=e.className||"";return n.match(gs_re_cb)||n.match(gs_re_ra);}function gs_ssel(e){}(function(d){function c(){var v=l,i=v.length,k=p,e,x=gs_id("gs_top");if(x&&!r){gs_evt(x,"click",function(){});r=1;if(!s){clearInterval(t);t=null}}p=i;while(i-->k)gs_is_cb((e=v[i]).parentNode)&&gs_ssel(e);}var s=gs_ie_ver<=8,l=[],p=0,t=setInterval(c,200),r;gs_evt_rdy(function(){c();l=[];clearInterval(t)});if(!s&&gs_is_tc){s=/AppleWebKit\/([0-9]+)/.exec(navigator.userAgent||"");s=s&&parseInt(s[1])<535;}if(!s)return;l=gs_ch(d,"input");gs_ssel=function(e){var p=e.parentNode,l,i,r;(e.checked?gs_xsel:gs_usel)(p);if(p.className.match(gs_re_ra)){l=e.form.elements[e.name]||[];for(i=l.length;i--;)((r=l[i]).checked?gs_xsel:gs_usel)(r.parentNode);}};gs_evt(d,"click",function(e){var x=gs_evt_tgt(e),p=x.parentNode;gs_is_cb(p)&&x.nodeName==="INPUT"&&gs_ssel(x);});})(document);</script><script>var gs_ellt=null;function gs_svj(s){gs_svk();var n=0;gs_ellt=setInterval(function(){var h="",i=n;while(i--)h+=".";h+="<span style='color:white'>";i=3-n;while(i--)h+=".";h+="</span>";gs_id(s).innerHTML=h;n=(n+1)%4;},200);}function gs_svk(){clearInterval(gs_ellt);gs_ellt=null;}function gs_svw(p,c){gs_visi("gs_svl"+p,0);var a=gs_id("gs_svs"+p);a.href="/citations?view_op\x3dview_citation\x26continue\x3d/scholar%3Fq%3Dtest%26hl%3Den%26as_sdt%3D0,5\x26citilm\x3d1\x26citation_for_view\x3d{id}\x26hl\x3den\x26oi\x3dsaved".replace("{id}",encodeURIComponent(c));gs_vis(a,2);}function gs_now(){return +new Date();}function gs_sva(d,p){gs_visi("gs_svl"+p,0);gs_visi("gs_sve"+p,0);gs_visi("gs_svs"+p,0);gs_visi("gs_svo"+p,2);gs_svj("gs_svd"+p);gs_ajax("/citations?hl\x3den\x26update_op\x3dlibrary_add\x26xsrf\x3dAMstHGQAAAAAV-uD9HOTmTUKMvpoJQgyc2B3oqLYGqoo\x26info\x3d{id}".replace("{id}",d),"",function(c,t){var f=t.charAt(0),a,b;gs_visi("gs_svo"+p,0);gs_svk();if(c==200&&t){if(f=="2"){window.location="https://accounts.google.com/Login?hl\x3den\x26continue\x3dhttps://scholar.google.com/scholar%3Fq%3Dtest\x26service\x3dcitations\x26ltmpl\x3dscholarlibrary";}else if(f=="1"){window.location="/citations?view_op\x3dlibrary_setup\x26continue\x3d/scholar%3Fq%3Dtest%26hl%3Den%26as_sdt%3D0,5\x26info\x3d{id}\x26hl\x3den".replace("{id}",d);}else if(f=="3"){gs_wa_m(t.substr(1));}else{a=t.substr(1).split(":");b={};gs_svw(p,a[1]);b[d+","+a[0]]=a[1];gs_svc(b);}}else{gs_visi("gs_sve"+p,2);}});return false;}function gs_svl(){var l=gs_rlst("s",1);return l&&typeof l=="object"?l:{};}function gs_svc(u){u=u||{};var l=gs_svl(),t=gs_now(),k,v;for(k in l)(v=l[k]) instanceof Array&&v.length==2&&t-v[1]<12e5||(delete l[k]);for(k in u)l[k]=[u[k],t];gs_wlst("s",l);}function gs_more(t,v){gs_scls(t.parentNode,"gs_fl"+(v?" gs_mvi":""));return false;}function gs_acb(q){var l=document.querySelectorAll("#gs_qsuggest li>a"),n=l.length,r=[],i=0,x;if(q==gs_ac_nrm("test"))while(i<n&&i<10){x=l[i++];r.push([x.textContent,x.innerHTML]);}return r;}</script></head><body><div id="gs_top"><style>#gs_gb{position:relative;height:30px;background:#2d2d2d;font-size:13px;line-height:16px;-webkit-backface-visibility:hidden;}#gs_gb_lt,#gs_gb_rt,#gs_gb_lp{position:absolute;top:0;white-space:nowrap;}#gs_gb_lt{left:22px}.gs_el_sm #gs_gb_lt{left:6px}.gs_el_ph #gs_gb_lt{display:none}#gs_gb_lp{display:none}#gs_gb_lp:hover,#gs_gb_lp:focus,#gs_gb_lp:active{-webkit-filter:brightness(100%);}.gs_el_ph #gs_gb_lp{display:block;z-index:1;cursor:pointer;top:8px;left:8px;width:48px;height:16px;background:no-repeat url('/intl/en/scholar/images/1x/googlelogo_bbb_color_48x16dp.png');background-size:48px 16px;}@media(-webkit-min-device-pixel-ratio:1.5),(min-resolution:144dpi){.gs_el_ph #gs_gb_lp{background-image:url('/intl/en/scholar/images/2x/googlelogo_bbb_color_48x16dp.png');}}#gs_gb_rt{right:22px}.gs_el_sm #gs_gb_rt{right:6px}.gs_el_ta #gs_gb_rt,.gs_el_ph #gs_gb_rt{right:0}#gs_gb_lt a:link,#gs_gb_lt a:visited,#gs_gb_rt a:link,#gs_gb_rt a:visited{display:inline-block;vertical-align:top;height:29px;line-height:27px;padding:2px 10px 0 10px;font-weight:bold;color:#bbb;cursor:pointer;text-decoration:none;}#gs_gb_rt a:link,#gs_gb_rt a:visited{padding:2px 8px 0 8px}#gs_gb_lt a:hover,#gs_gb_lt a:focus,#gs_gb_lt a:active,#gs_gb_rt a:hover,#gs_gb_rt a:focus,#gs_gb_rt a:active{color:white;outline:none;}#gs_gb_ac{top:30px;left:auto;right:6px;width:288px;white-space:normal;}#gs_gb_aw,#gs_gb_ap,.gs_gb_am,#gs_gb_ab{display:block;padding:10px 20px;word-wrap:break-word;}#gs_gb_aw{background:#fef9db;font-size:11px;}#gs_gb_ap,.gs_gb_am{border-bottom:1px solid #ccc;}#gs_gb_aa:link,#gs_gb_aa:visited{float:right;margin-left:8px;color:#1a0dab;}#gs_gb_aa:active{color:#d14836}.gs_gb_am:link,.gs_gb_am:visited{color:#222;text-decoration:none;background:#fbfbfb;}.gs_gb_am:hover,.gs_gb_am:focus{background:#f1f1f1}.gs_gb_am:active{background:#eee}#gs_gb_ab{background:#fbfbfb;overflow:auto;}#gs_gb_aab{float:left}#gs_gb_aso{float:right}</style><div id="gs_gb" role="navigation"><div id="gs_gb_lt"><a href="//www.google.com/search?q=test&hl=en&">Web</a><a href="//www.google.com/search?tbm=isch&q=test&hl=en&">Images</a><a href="//www.google.com/intl/en/options/">More…</a></div><a id="gs_gb_lp" aria-label="Web" href="//www.google.com/search?q=test&hl=en&"></a><div id="gs_gb_rt"><a href="https://accounts.google.com/Login?hl=en&continue=https://scholar.google.com/scholar%3Fq%3Dtest">Sign in</a></div></div><!--[if lte IE 9]><div class="gs_alrt" style="padding:16px"><div>Sorry, some features may not work in this version of Internet Explorer.</div><div>Please use <a href="//www.google.com/chrome/">Google Chrome</a> or <a href="//www.mozilla.com/firefox/">Mozilla Firefox</a> for the best experience.</div></div><![endif]--><style>html,body{height:100%}#gs_top{min-height:100%}#gs_md_s,#gs_md_w{z-index:1200;position:absolute;top:0;left:0;width:100%;height:100%;}#gs_md_s{background:#666;filter:alpha(opacity=50);-ms-filter:"alpha(opacity=50)";opacity:.5;}.gs_md_d{position:relative;padding:28px 32px;margin:0 auto;width:400px;-moz-box-shadow:2px 2px 8px rgba(0,0,0,.65);-webkit-box-shadow:2px 2px 8px rgba(0,0,0,.65);box-shadow:2px 2px 8px rgba(0,0,0,.65);}.gs_el_ph .gs_md_d{padding:16px 20px;width:80%;max-width:400px;}.gs_md_d .gs_ico_X{position:absolute;top:8px;right:8px;background-color:#fff;}.gs_md_d h2{font-size:16px;font-weight:normal;line-height:24px;margin-bottom:16px;}.gs_el_ph .gs_md_d h2{margin-bottom:8px}.gs_md_lbl{margin:16px 0}.gs_md_btns{margin-top:16px}.gs_md_btns button{margin-right:16px}.gs_md_prg{margin:24px 0;}</style><script>function gs_md_opw(d,e,b){var r=document.documentElement,s=gs_id("gs_md_s").style,w=gs_id("gs_md_w").style,q=gs_id(d),g=q.style;g.visibility="hidden";s.display=w.display=g.display="block";g.top=Math.max(document.body.scrollTop||0,r.scrollTop||0)+Math.max((r.clientHeight-q.offsetHeight)/2,10)+"px";g.visibility="visible";gs_md_opn(d,e,function(){s.display="none"},function(){w.display="none"});if(b){b=gs_id(b);b.type==="text"?gs_tfcs(b):b.focus();}return false;}function gs_md_ldw(d,e,b,c,u,p,f){c=gs_id(c);c.innerHTML="<div class='gs_md_prg'>Loading...</div>";gs_md_opw(d,e,b);gs_ajax(u,p,function(x,t){c.innerHTML=x===200?t:"<div class='gs_md_prg gs_alrt'>The system can\x27t perform the operation now. Try again later.</div>";f&&f(x,t);});}</script><div id="gs_md_s" style="display:none"></div><div id="gs_md_w" style="display:none"><div id="gs_cit" style="display:none" class="gs_md_d gs_md_wn gs_ttzi" role="dialog" aria-hidden="true" aria-labelledby="gs_cit-t"><a id="gs_cit-x" href="#" role="button" aria-label="Cancel" class="gs_ico gs_ico_X gs_ico_Xt" onclick="return gs_md_cls('gs_cit',event)"></a><h2 id="gs_cit-t">Cite</h2><style>#gs_cit{width:520px;max-width:85%}.gs_el_ph #gs_cit{width:80%;max-width:520px}#gs_citt table{width:100%}#gs_citt td,#gs_citt th{vertical-align:top;padding:8px 0;}#gs_citt th{text-align:right;font-weight:normal;color:#777;padding-right:12px;white-space:nowrap;user-select:none;}#gs_citi{margin:16px 0 0 0;text-align:center;}.gs_citi{margin-right:12px;white-space:nowrap;padding:7px 0 5px 0;}#gs_citv,#gs_citf{display:none}</style><script>function gs_ocit(e,i,p){var s=gs_id("gs_cit").style,d=gs_id("gs_citd");s.height="500px";d.innerHTML="Loading...";gs_md_opw("gs_cit",e);gs_ajax('/scholar?q\x3dinfo:{id}:scholar.google.com/\x26output\x3dcite\x26scirp\x3d{p}\x26hl\x3den'.replace('{id}',i).replace('{p}',p),"",function(c,t){if(c!=200){d.innerHTML="The system can\x27t perform the operation now. Try again later."}else{s.height="auto";d.innerHTML=t;gs_id("gs_cit0").focus();}});return false;}var gs_sdom=window.getSelection?function(i){getSelection().selectAllChildren(gs_id(i))}:function(i){try{var r=document.body.createTextRange();r.moveToElementText(gs_id(i));r.select();}catch(_){}};gs_evt_rdy(function(){var X;gs_evt_fcs(gs_id("gs_cit"),function(e){var x=gs_evt_tgt(e)||{},i=x.id||"";x!==X&&i.match(/^gs_cit[0-9]+$/)&&setTimeout(function(){gs_md_sif();gs_sdom(i);(X=x).focus();},0);});});</script><div id="gs_citd" aria-live="assertive"></div></div><script>gs_md_ifc("gs_cit","gs_cit-x");</script></div><div id="gs_hdr" role="banner"><div id="gs_hdr_bg"></div><div id="gs_hdr_lt"><div class="gs_ico gs_ico_ggl"><a href="/schhp?hl=en&as_sdt=0,5" aria-label="Scholar Home"></a></div><div id="gs_hdr_md"><form id="gs_hdr_frm" action="/scholar" name="f" role="search"><span id="gs_hdr_frm_in"><input type="text" class="gs_in_txt" name="q" value="test" id="gs_hdr_frm_in_txt" size="41" maxlength="2048" autocapitalize="off" aria-label="Search"><span id="gs_hdr_arw"><a id="gs_hdr_arr" class="gs_btnAD" href="#" aria-haspopup="true" aria-controls="gs_hdr_adv" aria-label="Advanced Scholar Search"><span class="gs_ico"></span><span class="gs_ttp"><span class="gs_aro"></span><span class="gs_aru"></span><span class="gs_txt">Advanced Scholar Search</span></span></a></span></span><button type="submit" id="gs_hdr_tsb" name="btnG" aria-label="Search" class="gs_btnG gs_in_ib gs_btn_act gs_btn_eml"><span class="gs_wr"><span class="gs_lbl"></span><span class="gs_ico"></span></span></button><input type=hidden name=hl value="en"><input type=hidden name=as_sdt value="0,5"></form><style>#gs_hdr_adv{padding:9px;color:#777777;}.gs_el_ph #gs_hdr_adv{top:0;left:0;padding:0;width:100%;color:#222;}#gs_hdr_advx{position:absolute;top:4px;right:2px;background-color:white;}.gs_hatr{clear:both;white-space:normal;}.gs_el_ph .gs_hatr{padding:8px;}.gs_hadt{float:left;width:190px;padding:6px 2px 2px;}.gs_el_tc .gs_hadt,.gs_el_ph .gs_hadt{float:none;width:auto;}.gs_el_ph .gs_hadt{padding:0 0 4px 0;}.gs_hadd{margin-left:194px;padding:2px;}.gs_el_tc .gs_hadd,.gs_el_ph .gs_hadd{margin-left:0;}.gs_el_ph .gs_hadd{padding:0}#gs_hdr_adv .gs_yri .gs_in_txt{width:2.75em}#gs_hdr_arw{position:absolute;top:5px;right:2px;width:21px;height:21px;}.gs_in_txt[dir="ltr"]~#gs_hdr_arw{left:auto;right:2px;}.gs_in_txt[dir="rtl"]~#gs_hdr_arw{right:auto;left:2px;}#gs_hdr_arr{display:block;text-decoration:none;width:21px;height:21px;}.gs_el_ph #gs_hdr_arr .gs_ttp{display:none}.gs_el_ph #gs_hdr_adv_btns{display:flex;justify-content:space-between;align-items:center;font-size:16px;border-bottom:1px solid #DEDEDE;}#gs_hdr_advt,#gs_hdr_advc,#gs_hdr_advs{display:block;}#gs_hdr_advt{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}#gs_hdr_advc,#gs_hdr_advs{padding:8px;}.gs_el_ph #gs_hadt_t{font-size:16px;}.gs_el_ph #gs_hdr_adv_scl{overflow-y:auto;position:absolute;width:100%;top:46px;bottom:0;padding:13px 0;}.gs_el_ph #gs_hdr_adv_scl input,.gs_el_ph #gs_hdr_adv_scl label{-webkit-tap-highlight-color:rgba(0,0,0,0);}.gs_hdr_adv_occtr{padding:5px 0;}.gs_el_ph .gs_hdr_adv_occtr{padding:9px 0 10px;}</style><div class="gs_md_wmw"><div id="gs_hdr_adv" class="gs_md_wm" role="dialog" aria-hidden="true" aria-label="Advanced Scholar Search"><a id="gs_hdr_advx" class="gs_ico gs_ico_X gs_ico_Xt gs_nph" role="button" href="#"></a><form id="gs_hdr_frm_adv" action="/scholar"><div id="gs_hdr_adv_btns" class="gs_oph"><span id="gs_hdr_advc"><button type="button" id="gs_hdr_advcb" class=""><span class="gs_wr"><span class="gs_lbl">Cancel</span></span></button></span><span id="gs_hdr_advt">Advanced search</span><span id="gs_hdr_advs"><button type="submit" class=" gs_btn_act"><span class="gs_wr"><span class="gs_lbl">Search</span></span></button></span></div><div id="gs_hdr_adv_scl"><div class="gs_hatr"><div class="gs_hadt" id="gs_hadt_t"><b>Find articles</b></div></div><div class="gs_hatr"><div class="gs_hadt"><label for="gs_asd_q">with <b>all</b> of the words</label></div><div class="gs_hadd"><div class="gs_in_txtm"><input type="text" class="gs_in_txt gs_mini" name="as_q" value="test" id="gs_asd_q" autocapitalize="off"></div></div></div><div class="gs_hatr"><div class="gs_hadt"><label for="gs_asd_epq">with the <b>exact phrase</b></label></div><div class="gs_hadd"><div class="gs_in_txtm"><input type="text" class="gs_in_txt gs_mini" name="as_epq" value="" id="gs_asd_epq" autocapitalize="off"></div></div></div><div class="gs_hatr"><div class="gs_hadt"><label for="gs_asd_oq">with <b>at least one</b> of the words</label></div><div class="gs_hadd"><div class="gs_in_txtm"><input type="text" class="gs_in_txt gs_mini" name="as_oq" value="" id="gs_asd_oq" autocapitalize="off"></div></div></div><div class="gs_hatr"><div class="gs_hadt"><label for="gs_asd_eq"><b>without</b> the words</label></div><div class="gs_hadd"><div class="gs_in_txtm"><input type="text" class="gs_in_txt gs_mini" name="as_eq" value="" id="gs_asd_eq" autocapitalize="off"></div></div></div><div class="gs_hatr"><div class="gs_hadt"><label for="gs_asd_occt">where my words occur</label></div><div class="gs_hadd"><div class="gs_hdr_adv_occtr"><span class="gs_in_ra" onclick="void(0)"><input type="radio" name="as_occt" value="any" id="gs_asd_occt_a" checked><label for="gs_asd_occt_a">anywhere in the article</label><span class="gs_chk"></span><span class="gs_cbx"></span></span></div><div class="gs_hdr_adv_occtr"><span class="gs_in_ra" onclick="void(0)"><input type="radio" name="as_occt" value="title" id="gs_asd_occt_t"><label for="gs_asd_occt_t">in the title of the article</label><span class="gs_chk"></span><span class="gs_cbx"></span></span></div></div></div><div class="gs_hatr gs_nph"><div style="height:16px"> </div></div><div class="gs_hatr"><div class="gs_hadt"><label for="gs_asd_sau">Return articles <b>authored</b> by</label></div><div class="gs_hadd"><div class="gs_in_txtm"><input type="text" class="gs_in_txt gs_mini" name="as_sauthors" value="" id="gs_asd_sau" autocapitalize="off"></div><div>e.g., <i>"PJ Hayes"</i> or <i>McCarthy</i></div></div></div><div class="gs_hatr"><div class="gs_hadt"><label for="gs_asd_pub">Return articles <b>published</b> in</label></div><div class="gs_hadd"><div class="gs_in_txtm"><input type="text" class="gs_in_txt gs_mini" name="as_publication" value="" id="gs_asd_pub" autocapitalize="off"></div><div>e.g., <i>J Biol Chem</i> or <i>Nature</i></div></div></div><div class="gs_hatr"><div class="gs_hadt"><label for="gs_asd_ylo">Return articles <b>dated</b> between</label></div><div class="gs_hadd"><div class="gs_yri"><input type="text" class="gs_in_txt gs_mini" name="as_ylo" value="" id="gs_asd_ylo" size="4" maxlength="4" autocapitalize="off" pattern="[0-9]*"> — <input type="text" class="gs_in_txt gs_mini" name="as_yhi" value="" id="gs_asd_yhi" size="4" maxlength="4" autocapitalize="off" pattern="[0-9]*"></div><div>e.g., <i>1996</i></div></div></div><div class="gs_hatr gs_nph"><div class="gs_hadt"><button type="submit" name="btnG" aria-label="Search" class="gs_btnG gs_in_ib gs_btn_act gs_btn_eml"><span class="gs_wr"><span class="gs_lbl"></span><span class="gs_ico"></span></span></button></div></div></div><input type=hidden name=hl value="en"><input type=hidden name=as_sdt value="0,5"></form></div></div><script>var gs_aso=function(){var A,O=0,a=gs_id("gs_hdr_arr"),b=gs_id("gs_top"),d=gs_id("gs_hdr_adv");function o(){O=1;A=document.activeElement;gs_xvis(d);gs_tfcs(gs_id("gs_asd_q"));t();}function c(){O=0;gs_uvis(d);try{A.focus()}catch(_){}a.style.display="";gs_unscl(b);}function t(){if(O){var x=gs_is_ph();(x?gs_xnscl:gs_unscl)(b);gs_md_ifc("gs_hdr_adv",x?"gs_hdr_advcb":"gs_hdr_advx");}}gs_evt_el(t);gs_evt(d,["transitionend","webkitTransitionEnd"],function(e){e.target!=d||(O?gs_tmh.a(d):gs_tmh.r(d));});return function(e){a.style.display="none";gs_md_shw(d.id,e,o,c);}}();gs_evt_clk(gs_id("gs_hdr_advx"),gs_bind(gs_md_cls,"gs_hdr_adv"));gs_evt_clk(gs_id("gs_hdr_advcb"),gs_bind(gs_md_cls,"gs_hdr_adv"));gs_evt(gs_id("gs_hdr_frm_adv"),"keydown",function(e){var x=gs_evt_tgt(e)||{};e.keyCode===13&&x.nodeType===1&&x.tagName==="INPUT"&&x.form.submit();});gs_evt_clk(gs_id("gs_hdr_arr"),gs_aso,0,[13,32,38,40]);</script></div></div></div><div id="gs_ab_anchor"></div><div id="gs_ab" role="navigation"><a id="gs_ab_na" href="/schhp?hl=en&as_sdt=0,5">Scholar</a><div id="gs_ab_top"><div id="gs_ab_md">About 3,800,000 results (<b>0.03</b> sec)<div id="gs_ab_top_buttons"><div id="gs_ab_md_exp_md"></div></div></div><div id="gs_ab_rt"><div id="gs_ylo_dd"><button class="gs_in_se gs_btn_mnu" id="gs_ylo_btn" type="button" aria-controls="gs_ylo_md" aria-haspopup="true"><span class="gs_wr"><span class="gs_lbl">Any time</span><span class="gs_icm"></span></span></button><div class="gs_md_wn" id="gs_ylo_md" style="display:none" role="menu" aria-hidden="true"><a href="/scholar?q=test&hl=en&as_sdt=0,5" class="gs_md_li gs_cur" aria-checked="true" role="menuitemradio" tabindex="-1">Any time</a><a href="/scholar?as_ylo=2016&q=test&hl=en&as_sdt=0,5" class="gs_md_li" role="menuitemradio" tabindex="-1">Since 2016</a><a href="/scholar?as_ylo=2015&q=test&hl=en&as_sdt=0,5" class="gs_md_li" role="menuitemradio" tabindex="-1">Since 2015</a><a href="/scholar?as_ylo=2012&q=test&hl=en&as_sdt=0,5" class="gs_md_li" role="menuitemradio" tabindex="-1">Since 2012</a><div class="gs_hr" role="separator"></div><a href="/scholar?hl=en&as_sdt=0,5&q=test" class="gs_md_li gs_cur" aria-checked="true" role="menuitemradio" tabindex="-1">Sort by relevance</a><a href="/scholar?hl=en&as_sdt=0,5&q=test&scisbd=1" class="gs_md_li" role="menuitemradio" tabindex="-1">Sort by date</a></div></div><script>gs_evt_md_mnu("gs_ylo_md","gs_ylo_btn")</script><button type="button" onclick="window.location='/citations?hl\x3den'" class="gs_btnC gs_in_ib"><span class="gs_wr"><span class="gs_lbl">My Citations</span><span class="gs_ico"></span></span></button><div id="gs_ad_dd"><button type="button" id="gs_btnAD" aria-label="More" aria-controls="gs_ad_md" aria-haspopup="true" class="gs_btnAD gs_in_ib gs_btn_half"><span class="gs_wr"><span class="gs_lbl"></span><span class="gs_ico"></span></span></button><div id="gs_ad_md" class="gs_md_wn" style="display:none" role="menu" aria-hidden="true"><div class="gs_ad_nlnv"><a href="/scholar?as_sdt=0,5&q=test&hl=en" class="gs_md_li gs_cur" aria-checked="true" role="menuitemradio" tabindex="-1">Articles</a><a href="/scholar?as_sdt=2006&q=test&hl=en" class="gs_md_li" role="menuitemradio" tabindex="-1">Case law</a><a href="/scholar?scilib=1&scioq=test&hl=en&as_sdt=0,5" class="gs_md_li" role="menuitemradio" tabindex="-1">My library</a><div class="gs_hr" role="separator"></div><a href="/scholar?as_sdt=1,5&q=test&hl=en" role="menuitemcheckbox" tabindex="-1" aria-checked="true" class="gs_in_cb gs_sel gs_md_li"><span class="gs_lbl">include patents</span><span class="gs_chk"></span><span class="gs_cbx"></span></a><a href="/scholar?as_vis=1&q=test&hl=en&as_sdt=0,5" role="menuitemcheckbox" tabindex="-1" aria-checked="true" class="gs_in_cb gs_sel gs_md_li"><span class="gs_lbl">include citations</span><span class="gs_chk"></span><span class="gs_cbx"></span></a><div class="gs_hr" role="separator"></div><a href="/citations?hl=en" role="menuitem" tabindex="-1" class="gs_btnC gs_in_ib gs_md_li"><span class="gs_lbl">My Citations</span><span class="gs_ico"></span></a><a href="/scholar_alerts?view_op=create_alert_options&hl=en&alert_query=intitle:test&alert_params=%3Fhl%3Den%26as_sdt%3D0,5" role="menuitem" tabindex="-1" class="gs_btnM gs_in_ib gs_md_li"><span class="gs_lbl">Create alert</span><span class="gs_ico"></span></a></div><a href="/citations?view_op=top_venues&hl=en" role="menuitem" tabindex="-1" class="gs_btnJ gs_in_ib gs_md_li"><span class="gs_lbl">Metrics</span><span class="gs_ico"></span></a><a href="/scholar_settings?q=test&hl=en&as_sdt=0,5" role="menuitem" tabindex="-1" class="gs_btnP gs_in_ib gs_md_li"><span class="gs_lbl">Settings</span><span class="gs_ico"></span></a><a href="#" id="gs_a_adv" role="menuitem" tabindex="-1" class="gs_btnSB gs_in_ib gs_md_li"><span class="gs_lbl">Advanced search</span><span class="gs_ico"></span></a></div></div></div></div></div><script>gs_evt_md_mnu("gs_ad_md","gs_btnAD");gs_xatr(gs_id("gs_a_adv"),"data-a","gs_aso&&gs_aso({})");</script><div id="gs_bdy"><div id="gs_res_bdy"><div id="gs_lnv" role="navigation"><ul id="gs_lnv_pri"><li class="gs_sel"><a href="/scholar?as_sdt=0,5&q=test&hl=en">Articles</a></li><li><a href="/scholar?as_sdt=2006&q=test&hl=en">Case law</a></li><li><a href="/scholar?scilib=1&scioq=test&hl=en&as_sdt=0,5">My library</a></li></ul><div class="gs_pad"><div class="gs_hr"></div></div><ul id="gs_lnv_ylo" class="gs_pad"><li class="gs_ind gs_sel"><a href="/scholar?q=test&hl=en&as_sdt=0,5">Any time</a></li><li class="gs_ind"><a href="/scholar?as_ylo=2016&q=test&hl=en&as_sdt=0,5">Since 2016</a></li><li class="gs_ind"><a href="/scholar?as_ylo=2015&q=test&hl=en&as_sdt=0,5">Since 2015</a></li><li class="gs_ind"><a href="/scholar?as_ylo=2012&q=test&hl=en&as_sdt=0,5">Since 2012</a></li><li class="gs_ind"><a href="#" onclick="return gs_lnv_yloc_clk(this)">Custom range...</a></li></ul><script>function gs_lnv_yloc_clk(t){gs_visi('gs_lnv_yloc',1);gs_is_tc||gs_tfcs(gs_id('gs_as_ylo'));return gs_sel_clk("gs_lnv_ylo",t);}</script><form id="gs_lnv_yloc" class="gs_pad" action="/scholar" style="display:none"><input type=hidden name=q value="test"><input type=hidden name=hl value="en"><input type=hidden name=as_sdt value="0,5"><table><tr><td nowrap><input type="text" pattern="[0-9]*" name="as_ylo" class="gs_in_txt gs_mini" size="4" maxlength="4" value="" id="gs_as_ylo"> — <input type="text" pattern="[0-9]*" name="as_yhi" class="gs_in_txt gs_mini" size="4" maxlength="4" value=""></td></tr><tr><td align="center"><button type="submit" class=""><span class="gs_wr"><span class="gs_lbl">Search</span></span></button></td></tr></table></form><div class="gs_pad"><div class="gs_hr"></div></div><ul id="gs_lnv_stype" class="gs_pad"><li class="gs_ind gs_sel"><a href="/scholar?hl=en&as_sdt=0,5&q=test">Sort by relevance</a></li><li class="gs_ind"><a href="/scholar?hl=en&as_sdt=0,5&q=test&scisbd=1">Sort by date</a></li></ul><div class="gs_pad"><div class="gs_hr"></div></div><ul id="gs_lnv_misc" class="gs_pad"><li class="gs_inw"><a href="/scholar?as_sdt=1,5&q=test&hl=en" role="checkbox" aria-checked="true" class="gs_in_cb gs_sel"><span class="gs_lbl">include patents</span><span class="gs_chk"></span><span class="gs_cbx"></span></a></li><li class="gs_inw"><a href="/scholar?as_vis=1&q=test&hl=en&as_sdt=0,5" role="checkbox" aria-checked="true" class="gs_in_cb gs_sel"><span class="gs_lbl">include citations</span><span class="gs_chk"></span><span class="gs_cbx"></span></a></li></ul><div class="gs_pad"><div class="gs_hr"></div><div><a href="/scholar_alerts?view_op=create_alert_options&hl=en&alert_query=intitle:test&alert_params=%3Fhl%3Den%26as_sdt%3D0,5" class="gs_btnM gs_in_ib"><span class="gs_lbl">Create alert</span><span class="gs_ico"></span></a></div></div></div><div id="gs_ccl" role="main"><div id="gs_ccl_top"></div><div id="gs_ccl_results"> <div class="gs_r"><div class="gs_ggs gs_fl"><div class="gs_ggsm" id="gs_ggsW0"><div class="gs_ggsd"><a href="http://www.psychodyssey.net/wp-content/uploads/2016/01/PACT.pdf" data-clk="hl=en&sa=T&oi=gga&ct=gga&cd=0&ei=dDLqV6nxKYuQmAHAz6GoBA&scisig=AAGBfm3z07yHzk3ZhXgwpmBKdWh4KmbeTw&nossl=1"><span class=gs_ctg2>[PDF]</span> psychodyssey.net</a></div></div></div><div class="gs_ri"><h3 class="gs_rt"><a href="http://archpsyc.jamanetwork.com/article.aspx?articleid=492295" data-clk="hl=en&sa=T&ct=res&cd=0&ei=dDLqV6nxKYuQmAHAz6GoBA&scisig=AAGBfm0j-cDK9NM6IZGuoce-caTIhM5TFA&nossl=1">Alternative to mental hospital treatment: I. Conceptual model, treatment program, and clinical evaluation</a></h3><div class="gs_a">LI Stein, MA <b>Test</b> - Archives of general psychiatry, 1980 - archpsyc.jamanetwork.com</div><div class="gs_rs">METHODS The experiment was designed to study the effects on patient functioning during a <br>14-month intensive community-treatment program and to evaluate patient functioning <br>afterward when patients were transferred to traditional community programs. To ...</div><div class="gs_fl"><a href="/scholar?cites=12910826986926402159&as_sdt=2005&sciodt=0,5&hl=en">Cited by 1963</a> <a href="/scholar?q=related:b2pGeL14LLMJ:scholar.google.com/&hl=en&as_sdt=0,5">Related articles</a> <a href="/scholar?cluster=12910826986926402159&hl=en&as_sdt=0,5" class="gs_nph">All 7 versions</a> <a href="http://gateway.webofknowledge.com/gateway/Gateway.cgi?GWVersion=2&SrcApp=GSSearch&SrcAuth=Scholar&DestApp=WOS_CPL&DestLinkType=CitingArticles&UT=A1980JP43700003&SrcURL=https://scholar.google.com/&SrcDesc=Back+to+Google+Scholar&GSPage=TC" data-clk="hl=en&sa=T&ct=wosc&cd=0&ei=dDLqV6nxKYuQmAHAz6GoBA&scisig=AAGBfm0fvQSxhk85IUYUYQQwSKJq2iX5ow&nossl=1" class="gs_nta gs_nph">Web of Science: 1048</a> <a onclick="return gs_ocit(event,'b2pGeL14LLMJ','0')" href="#" class="gs_nph" role="button" aria-controls="gs_cit" aria-haspopup="true">Cite</a> <span class="gs_nph"><a id="gs_svl0" onclick="return gs_sva('b2pGeL14LLMJ','0')" href="#" title="Save this article to my library so that I can read or cite it later.">Save</a><span id="gs_svo0" class="gs_svm">Saving<span id="gs_svd0">...</span></span><a id="gs_svs0" style="display:none">Saved</a><span id="gs_sve0" class="gs_svm">Error saving. <a onclick="return gs_sva('b2pGeL14LLMJ','0')" href="#">Try again?</a></span></span> <a href="#" class="gs_mor" role="button" onclick="return gs_more(this,1)">More</a> <a href="http://scholar.google.com/scholar?output=instlink&nossl=1&q=info:b2pGeL14LLMJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=17366730631578469834&oi=llo" class="gs_nvi">FindIt@BHAM</a> <a href="http://scholar.google.com/scholar?output=instlink&nossl=1&q=info:b2pGeL14LLMJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=3763468380288621133&oi=llo" class="gs_nvi">FindIt!@BHAM</a> <a href="#" class="gs_nvi" role="button" onclick="return gs_more(this,0)">Fewer</a></div></div></div> <div class="gs_r"><div class="gs_ri"><h3 class="gs_rt"><span class="gs_ctc"><span class="gs_ct1">[BOOK]</span><span class="gs_ct2">[B]</span></span> <a href="http://onlinelibrary.wiley.com/doi/10.1002/9780470479216.corpsy0985/full" data-clk="hl=en&sa=T&ct=res&cd=1&ei=dDLqV6nxKYuQmAHAz6GoBA&scisig=AAGBfm0SPRWW-VHBsMvjFCLFyXpp-GV7lg&nossl=1"><b>Test </b>anxiety inventory</a></h3><div class="gs_a">CD Spielberger - 2010 - Wiley Online Library</div><div class="gs_rs">Abstract As Seymour Sarason (1959), a major early contributor to theory and research on <br><b>test </b>anxiety, observed,“We live in a <b>test</b>-conscious, <b>test</b>-giving culture in which the lives of <br>people are in part determined by their <b>test </b>performance”(p. 26). Consequently, it is not <b> ...</b></div><div class="gs_fl"><a href="/scholar?cites=6973571053426701231&as_sdt=2005&sciodt=0,5&hl=en">Cited by 20016</a> <a href="/scholar?q=related:r_Nx7-wZx2AJ:scholar.google.com/&hl=en&as_sdt=0,5">Related articles</a> <a href="/scholar?cluster=6973571053426701231&hl=en&as_sdt=0,5" class="gs_nph">All 2 versions</a> <a onclick="return gs_ocit(event,'r_Nx7-wZx2AJ','1')" href="#" class="gs_nph" role="button" aria-controls="gs_cit" aria-haspopup="true">Cite</a> <span class="gs_nph"><a id="gs_svl1" onclick="return gs_sva('r_Nx7-wZx2AJ','1')" href="#" title="Save this article to my library so that I can read or cite it later.">Save</a><span id="gs_svo1" class="gs_svm">Saving<span id="gs_svd1">...</span></span><a id="gs_svs1" style="display:none">Saved</a><span id="gs_sve1" class="gs_svm">Error saving. <a onclick="return gs_sva('r_Nx7-wZx2AJ','1')" href="#">Try again?</a></span></span> <a href="#" class="gs_mor" role="button" onclick="return gs_more(this,1)">More</a> <a href="http://scholar.google.com/scholar?output=instlink&nossl=1&q=info:r_Nx7-wZx2AJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=11464088611070445957&oi=llo" class="gs_nvi">FindIt@BHAM</a> <a href="http://scholar.google.com/scholar?output=instlink&nossl=1&q=info:r_Nx7-wZx2AJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=12875372581576930154&oi=llo" class="gs_nvi">Library Search</a> <a href="#" class="gs_nvi" role="button" onclick="return gs_more(this,0)">Fewer</a></div></div></div> <div class="gs_r"><div class="gs_ri"><h3 class="gs_rt"><span class="gs_ctc"><span class="gs_ct1">[BOOK]</span><span class="gs_ct2">[B]</span></span> <a href="http://eric.ed.gov/?id=ED312281" data-clk="hl=en&sa=T&ct=res&cd=2&ei=dDLqV6nxKYuQmAHAz6GoBA&scisig=AAGBfm2lM87hdzEV_L7HMwJjfhYd9aR0nw&nossl=1">Introduction to classical and modern <b>test </b>theory.</a></h3><div class="gs_a">L Crocker, J Algina - 1986 - ERIC</div><div class="gs_rs">This text was written to help the reader acquire a base of knowledge about classical <br>psychometrics and to integrate new ideas into that framework of knowledge. The material is <br>organized into five units:(1) introduction to measurement theory;(2) reliability;(3) validity;(4<b> ...</b></div><div class="gs_fl"><a href="/scholar?cites=9583991776033625712&as_sdt=2005&sciodt=0,5&hl=en">Cited by 4867</a> <a href="/scholar?q=related:cNa__L0tAYUJ:scholar.google.com/&hl=en&as_sdt=0,5">Related articles</a> <a onclick="return gs_ocit(event,'cNa__L0tAYUJ','2')" href="#" class="gs_nph" role="button" aria-controls="gs_cit" aria-haspopup="true">Cite</a> <span class="gs_nph"><a id="gs_svl2" onclick="return gs_sva('cNa__L0tAYUJ','2')" href="#" title="Save this article to my library so that I can read or cite it later.">Save</a><span id="gs_svo2" class="gs_svm">Saving<span id="gs_svd2">...</span></span><a id="gs_svs2" style="display:none">Saved</a><span id="gs_sve2" class="gs_svm">Error saving. <a onclick="return gs_sva('cNa__L0tAYUJ','2')" href="#">Try again?</a></span></span> <a href="#" class="gs_mor" role="button" onclick="return gs_more(this,1)">More</a> <a href="http://scholar.google.com/scholar?output=instlink&nossl=1&q=info:cNa__L0tAYUJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=1136309043625387731&oi=llo" class="gs_nvi">FindIt@BHAM</a> <a href="http://scholar.google.com/scholar?output=instlink&nossl=1&q=info:cNa__L0tAYUJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=17666539823251396652&oi=llo" class="gs_nvi">Library Search</a> <a href="http://scholar.googleusercontent.com/scholar?q=cache:cNa__L0tAYUJ:scholar.google.com/+test&hl=en&as_sdt=0,5" class="gs_nvi">Cached</a> <a href="#" class="gs_nvi" role="button" onclick="return gs_more(this,0)">Fewer</a></div></div></div> <div class="gs_r"><div class="gs_ggs gs_fl"><div class="gs_ggsm" id="gs_ggsW3"><div class="gs_ggsd"><a href="http://scholar.google.com/scholar?output=instlink&nossl=1&q=info:Kvpu8A33QVYJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=6464605782358203491&oi=lle">FullText!@BHAM</a></div></div></div><div class="gs_ri"><h3 class="gs_rt"><a href="http://psycnet.apa.org/journals/ccp/19/5/393/" data-clk="hl=en&sa=T&ct=res&cd=3&ei=dDLqV6nxKYuQmAHAz6GoBA&scisig=AAGBfm0VqyLR-Iziztl_X-6zFMOO81Sr0g&nossl=1">The relation of the trail making <b>test </b>to organic brain damage.</a></h3><div class="gs_a">RM Reitan - Journal of consulting psychology, 1955 - psycnet.apa.org</div><div class="gs_rs">Abstract 1. The Trail Making <b>Test </b>was administered to brain damaged and hospitalized <br>control subjects. The results indicated that" this short, inexpensive, and easily administered <br><b>test </b>may be a fairly valid indicator of certain effects of brain damage."(PsycINFO Database <b> ...</b></div><div class="gs_fl"><a href="/scholar?cites=6215520599988435498&as_sdt=2005&sciodt=0,5&hl=en">Cited by 6046</a> <a href="/scholar?q=related:Kvpu8A33QVYJ:scholar.google.com/&hl=en&as_sdt=0,5">Related articles</a> <a href="/scholar?cluster=6215520599988435498&hl=en&as_sdt=0,5" class="gs_nph">All 8 versions</a> <a onclick="return gs_ocit(event,'Kvpu8A33QVYJ','3')" href="#" class="gs_nph" role="button" aria-controls="gs_cit" aria-haspopup="true">Cite</a> <span class="gs_nph"><a id="gs_svl3" onclick="return gs_sva('Kvpu8A33QVYJ','3')" href="#" title="Save this article to my library so that I can read or cite it later.">Save</a><span id="gs_svo3" class="gs_svm">Saving<span id="gs_svd3">...</span></span><a id="gs_svs3" style="display:none">Saved</a><span id="gs_sve3" class="gs_svm">Error saving. <a onclick="return gs_sva('Kvpu8A33QVYJ','3')" href="#">Try again?</a></span></span> <a href="#" class="gs_mor" role="button" onclick="return gs_more(this,1)">More</a> <a href="http://scholar.google.com/scholar?output=instlink&nossl=1&q=info:Kvpu8A33QVYJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=14234476713006075725&oi=llo" class="gs_nvi">FullText!@BHAM</a> <a href="#" class="gs_nvi" role="button" onclick="return gs_more(this,0)">Fewer</a></div></div></div> <div class="gs_r"><div class="gs_ri"><h3 class="gs_rt"><span class="gs_ctu"><span class="gs_ct1">[CITATION]</span><span class="gs_ct2">[C]</span></span> Peabody picture vocabulary <b>test</b></h3><div class="gs_a">LM Dunn, LM Dunn, S Bulheller, H Häcker - 1965 - American Guidance Service Circle …</div><div class="gs_fl"><a href="/scholar?cites=12802281876711093767&as_sdt=2005&sciodt=0,5&hl=en">Cited by 11310</a> <a href="/scholar?q=related:BzbJl4nXqrEJ:scholar.google.com/&hl=en&as_sdt=0,5">Related articles</a> <a onclick="return gs_ocit(event,'BzbJl4nXqrEJ','4')" href="#" class="gs_nph" role="button" aria-controls="gs_cit" aria-haspopup="true">Cite</a> <span class="gs_nph"><a id="gs_svl4" onclick="return gs_sva('BzbJl4nXqrEJ','4')" href="#" title="Save this article to my library so that I can read or cite it later.">Save</a><span id="gs_svo4" class="gs_svm">Saving<span id="gs_svd4">...</span></span><a id="gs_svs4" style="display:none">Saved</a><span id="gs_sve4" class="gs_svm">Error saving. <a onclick="return gs_sva('BzbJl4nXqrEJ','4')" href="#">Try again?</a></span></span> <a href="#" class="gs_mor" role="button" onclick="return gs_more(this,1)">More</a> <a href="http://scholar.google.com/scholar?output=instlink&nossl=1&q=info:BzbJl4nXqrEJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=3595556072157090106&oi=llo" class="gs_nvi">FindIt@BHAM</a> <a href="http://scholar.google.com/scholar?output=instlink&nossl=1&q=info:BzbJl4nXqrEJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=82767321042152416&oi=llo" class="gs_nvi">Library Search</a> <a href="#" class="gs_nvi" role="button" onclick="return gs_more(this,0)">Fewer</a></div></div></div> <div class="gs_r"><div class="gs_ri"><h3 class="gs_rt"><span class="gs_ctu"><span class="gs_ct1">[CITATION]</span><span class="gs_ct2">[C]</span></span> Standards for educational and psychological tests and manuals</h3><div class="gs_a">, … Research Association. Committee on <b>Test </b> … - 1966 - American Psychological Association</div><div class="gs_fl"><a href="/scholar?cites=11025467353742312336&as_sdt=2005&sciodt=0,5&hl=en">Cited by 321</a> <a href="/scholar?q=related:kAN6jiRUApkJ:scholar.google.com/&hl=en&as_sdt=0,5">Related articles</a> <a onclick="return gs_ocit(event,'kAN6jiRUApkJ','5')" href="#" class="gs_nph" role="button" aria-controls="gs_cit" aria-haspopup="true">Cite</a> <span class="gs_nph"><a id="gs_svl5" onclick="return gs_sva('kAN6jiRUApkJ','5')" href="#" title="Save this article to my library so that I can read or cite it later.">Save</a><span id="gs_svo5" class="gs_svm">Saving<span id="gs_svd5">...</span></span><a id="gs_svs5" style="display:none">Saved</a><span id="gs_sve5" class="gs_svm">Error saving. <a onclick="return gs_sva('kAN6jiRUApkJ','5')" href="#">Try again?</a></span></span> <a href="#" class="gs_mor" role="button" onclick="return gs_more(this,1)">More</a> <a href="http://scholar.google.com/scholar?output=instlink&nossl=1&q=info:kAN6jiRUApkJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=2827657364305849739&oi=llo" class="gs_nvi">FindIt@BHAM</a> <a href="http://scholar.google.com/scholar?output=instlink&nossl=1&q=info:kAN6jiRUApkJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=9865130610280342386&oi=llo" class="gs_nvi">Library Search</a> <a href="#" class="gs_nvi" role="button" onclick="return gs_more(this,0)">Fewer</a></div></div></div> <div class="gs_r"><div class="gs_ggs gs_fl"><div class="gs_ggsm" id="gs_ggsW6"><div class="gs_ggsd"><a href="https://www.researchgate.net/profile/Mary_Test/publication/16430472_Alternative_to_Mental_Hospital_Treatment._III._Economic_Benefit-Cost_Analysis/links/562514cf08aed3d3f136fda3.pdf" data-clk="hl=en&sa=T&oi=gga&ct=gga&cd=6&ei=dDLqV6nxKYuQmAHAz6GoBA&scisig=AAGBfm2MTL04DLbkbenyPgjoJs3kKPL8hw&nossl=1"><span class=gs_ctg2>[PDF]</span> researchgate.net</a></div></div></div><div class="gs_ri"><h3 class="gs_rt"><a href="http://archpsyc.jamanetwork.com/article.aspx?articleid=492296" data-clk="hl=en&sa=T&ct=res&cd=6&ei=dDLqV6nxKYuQmAHAz6GoBA&scisig=AAGBfm3zUeLMul3Ys4aQNd3Y0YkEOjCnVw&nossl=1">Alternative to mental hospital treatment: II. Economic benefit-cost analysis</a></h3><div class="gs_a">BA Weisbrod, MA <b>Test</b>, LI Stein - Archives of General …, 1980 - archpsyc.jamanetwork.com</div><div class="gs_rs">All expenditure programs, public or private, have advan-XI tages and disadvantages; that is, <br>they entail both benefits and costs. Wise decision making requires that the total" benefits" of <br>a program exceed the total" costs." What is controversial is not whether benefits and costs ...</div><div class="gs_fl"><a href="/scholar?cites=17987196099587117011&as_sdt=2005&sciodt=0,5&hl=en">Cited by 488</a> <a href="/scholar?q=related:048uZY1bn_kJ:scholar.google.com/&hl=en&as_sdt=0,5">Related articles</a> <a href="/scholar?cluster=17987196099587117011&hl=en&as_sdt=0,5" class="gs_nph">All 7 versions</a> <a href="http://gateway.webofknowledge.com/gateway/Gateway.cgi?GWVersion=2&SrcApp=GSSearch&SrcAuth=Scholar&DestApp=WOS_CPL&DestLinkType=CitingArticles&UT=A1980JP43700004&SrcURL=https://scholar.google.com/&SrcDesc=Back+to+Google+Scholar&GSPage=TC" data-clk="hl=en&sa=T&ct=wosc&cd=6&ei=dDLqV6nxKYuQmAHAz6GoBA&scisig=AAGBfm3e7W-Zd4a1fNjHDae_JJeiP141AA&nossl=1" class="gs_nta gs_nph">Web of Science: 282</a> <a onclick="return gs_ocit(event,'048uZY1bn_kJ','6')" href="#" class="gs_nph" role="button" aria-controls="gs_cit" aria-haspopup="true">Cite</a> <span class="gs_nph"><a id="gs_svl6" onclick="return gs_sva('048uZY1bn_kJ','6')" href="#" title="Save this article to my library so that I can read or cite it later.">Save</a><span id="gs_svo6" class="gs_svm">Saving<span id="gs_svd6">...</span></span><a id="gs_svs6" style="display:none">Saved</a><span id="gs_sve6" class="gs_svm">Error saving. <a onclick="return gs_sva('048uZY1bn_kJ','6')" href="#">Try again?</a></span></span> <a href="#" class="gs_mor" role="button" onclick="return gs_more(this,1)">More</a> <a href="http://scholar.google.com/scholar?output=instlink&nossl=1&q=info:048uZY1bn_kJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=1134125822040091525&oi=llo" class="gs_nvi">FindIt@BHAM</a> <a href="http://scholar.google.com/scholar?output=instlink&nossl=1&q=info:048uZY1bn_kJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=5906800945289440704&oi=llo" class="gs_nvi">FindIt!@BHAM</a> <a href="#" class="gs_nvi" role="button" onclick="return gs_more(this,0)">Fewer</a></div></div></div> <div class="gs_r"><div class="gs_ggs gs_fl"><div class="gs_ggsm" id="gs_ggsW7"><div class="gs_ggsd"><a href="http://scholar.google.com/scholar?output=instlink&nossl=1&q=info:PAsKPByZHlAJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=10296465810748251005&oi=lle">FullText!@BHAM</a></div></div></div><div class="gs_ri"><h3 class="gs_rt"><a href="http://science.sciencemag.org/content/227/4688/747.short" data-clk="hl=en&sa=T&ct=res&cd=7&ei=dDLqV6nxKYuQmAHAz6GoBA&scisig=AAGBfm22HWjk104KMisMWlW0zjd9DZ4vMA&nossl=1">Oxidative autoactivation of latent collagenase by human neutrophils</a></h3><div class="gs_a">…, G Peppin, X Ortiz, C Ragsdale, ST <b>Test</b> - Science, 1985 - science.sciencemag.org</div><div class="gs_rs">Abstract The pathological destruction of collagen plays a key role in the development of <br>inflammatory disease states affecting every organ system in the human body. Neutrophils <br>localized at inflammatory sites can potentially degrade collagen by releasing a ...</div><div class="gs_fl"><a href="/scholar?cites=5773220118880979772&as_sdt=2005&sciodt=0,5&hl=en">Cited by 455</a> <a href="/scholar?q=related:PAsKPByZHlAJ:scholar.google.com/&hl=en&as_sdt=0,5">Related articles</a> <a href="/scholar?cluster=5773220118880979772&hl=en&as_sdt=0,5" class="gs_nph">All 7 versions</a> <a href="http://gateway.webofknowledge.com/gateway/Gateway.cgi?GWVersion=2&SrcApp=GSSearch&SrcAuth=Scholar&DestApp=WOS_CPL&DestLinkType=CitingArticles&UT=A1985ABD8600029&SrcURL=https://scholar.google.com/&SrcDesc=Back+to+Google+Scholar&GSPage=TC" data-clk="hl=en&sa=T&ct=wosc&cd=7&ei=dDLqV6nxKYuQmAHAz6GoBA&scisig=AAGBfm2EUa_lUYfwD7AHWk71hlYxyBhZsg&nossl=1" class="gs_nta gs_nph">Web of Science: 391</a> <a onclick="return gs_ocit(event,'PAsKPByZHlAJ','7')" href="#" class="gs_nph" role="button" aria-controls="gs_cit" aria-haspopup="true">Cite</a> <span class="gs_nph"><a id="gs_svl7" onclick="return gs_sva('PAsKPByZHlAJ','7')" href="#" title="Save this article to my library so that I can read or cite it later.">Save</a><span id="gs_svo7" class="gs_svm">Saving<span id="gs_svd7">...</span></span><a id="gs_svs7" style="display:none">Saved</a><span id="gs_sve7" class="gs_svm">Error saving. <a onclick="return gs_sva('PAsKPByZHlAJ','7')" href="#">Try again?</a></span></span> <a href="#" class="gs_mor" role="button" onclick="return gs_more(this,1)">More</a> <a href="http://scholar.google.com/scholar?output=instlink&nossl=1&q=info:PAsKPByZHlAJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=13944955762534985728&oi=llo" class="gs_nvi">FullText!@BHAM</a> <a href="#" class="gs_nvi" role="button" onclick="return gs_more(this,0)">Fewer</a></div></div></div> <div class="gs_r"><div class="gs_ri"><h3 class="gs_rt"><span class="gs_ctu"><span class="gs_ct1">[CITATION]</span><span class="gs_ct2">[C]</span></span> Training in community living</h3><div class="gs_a">MA <b>Test</b> - Handbook of psychiatric rehabilitation, 1992</div><div class="gs_fl"><a href="/scholar?cites=14426985873354063651&as_sdt=2005&sciodt=0,5&hl=en">Cited by 321</a> <a href="/scholar?q=related:I__Y4DbzNsgJ:scholar.google.com/&hl=en&as_sdt=0,5">Related articles</a> <a onclick="return gs_ocit(event,'I__Y4DbzNsgJ','8')" href="#" class="gs_nph" role="button" aria-controls="gs_cit" aria-haspopup="true">Cite</a> <span class="gs_nph"><a id="gs_svl8" onclick="return gs_sva('I__Y4DbzNsgJ','8')" href="#" title="Save this article to my library so that I can read or cite it later.">Save</a><span id="gs_svo8" class="gs_svm">Saving<span id="gs_svd8">...</span></span><a id="gs_svs8" style="display:none">Saved</a><span id="gs_sve8" class="gs_svm">Error saving. <a onclick="return gs_sva('I__Y4DbzNsgJ','8')" href="#">Try again?</a></span></span> <a href="#" class="gs_mor gs_oph" role="button" onclick="return gs_more(this,1)">More</a> <a href="#" class="gs_nvi" role="button" onclick="return gs_more(this,0)">Fewer</a></div></div></div> <div class="gs_r"><div class="gs_ggs gs_fl"><div class="gs_ggsm" id="gs_ggsW9"><div class="gs_ggsd"><a href="http://scholar.google.com/scholar?output=instlink&nossl=1&q=info:wBBCCtQR-2kJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=12085556355652290180&oi=lle">FullText!@BHAM</a></div></div></div><div class="gs_ri"><h3 class="gs_rt"><a href="http://psycnet.apa.org/psycinfo/1967-13475-001" data-clk="hl=en&sa=T&ct=res&cd=9&ei=dDLqV6nxKYuQmAHAz6GoBA&scisig=AAGBfm1FrVV_5Wr-qT1Q-PbOGOOyhz6uUA&nossl=1">Models and helping: naturalistic studies in aiding behavior.</a></h3><div class="gs_a">JH Bryan, MA <b>Test</b> - Journal of personality and social psychology, 1967 - psycnet.apa.org</div><div class="gs_rs">Abstract 1. 3 EXPERIMENTS WERE ADDRESSED TO THE EFFECTS OF ALTRUISTIC <br>MODELS UPON HELPING, WHILE 1 WAS CONCERNED WITH THE IMPACT OF THE <br>SOLICITOR'S RACE UPON DONATIONS. 3 INVESTIGATIONS EMPLOYED AS A SITE ...</div><div class="gs_fl"><a href="/scholar?cites=7636717195539648704&as_sdt=2005&sciodt=0,5&hl=en">Cited by 451</a> <a href="/scholar?q=related:wBBCCtQR-2kJ:scholar.google.com/&hl=en&as_sdt=0,5">Related articles</a> <a href="/scholar?cluster=7636717195539648704&hl=en&as_sdt=0,5" class="gs_nph">All 4 versions</a> <a href="http://gateway.webofknowledge.com/gateway/Gateway.cgi?GWVersion=2&SrcApp=GSSearch&SrcAuth=Scholar&DestApp=WOS_CPL&DestLinkType=CitingArticles&UT=A19679799600004&SrcURL=https://scholar.google.com/&SrcDesc=Back+to+Google+Scholar&GSPage=TC" data-clk="hl=en&sa=T&ct=wosc&cd=9&ei=dDLqV6nxKYuQmAHAz6GoBA&scisig=AAGBfm19-n6zkl2muSE_vmVPwnaZfZ0_4g&nossl=1" class="gs_nta gs_nph">Web of Science: 229</a> <a onclick="return gs_ocit(event,'wBBCCtQR-2kJ','9')" href="#" class="gs_nph" role="button" aria-controls="gs_cit" aria-haspopup="true">Cite</a> <span class="gs_nph"><a id="gs_svl9" onclick="return gs_sva('wBBCCtQR-2kJ','9')" href="#" title="Save this article to my library so that I can read or cite it later.">Save</a><span id="gs_svo9" class="gs_svm">Saving<span id="gs_svd9">...</span></span><a id="gs_svs9" style="display:none">Saved</a><span id="gs_sve9" class="gs_svm">Error saving. <a onclick="return gs_sva('wBBCCtQR-2kJ','9')" href="#">Try again?</a></span></span> <a href="#" class="gs_mor" role="button" onclick="return gs_more(this,1)">More</a> <a href="http://scholar.google.com/scholar?output=instlink&nossl=1&q=info:wBBCCtQR-2kJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=15173854704424156515&oi=llo" class="gs_nvi">FullText!@BHAM</a> <a href="#" class="gs_nvi" role="button" onclick="return gs_more(this,0)">Fewer</a></div></div></div></div><div id="gs_ccl_bottom"><script>!function(){var i,b,l;function m(b){var S=0;function o(){S=1;gs_xanm(b);gs_xvis(b);l=b.id;}function c(){S=0;gs_uvis(b);}gs_evt_clk(b,function(e){gs_md_shw(b.id,e,o,c);},1,0,function(e){return !gs_is_ph()||S;});gs_evt_fcs(b,function(e){gs_md_shw(b.id,e,o,c);});gs_evt(b,"animationend webkitAnimationEnd",function(e){S||e.target!=b||gs_uanm(b);});}for(i=0;i<10;i++){(b=gs_id("gs_ggsW"+i))&&m(b);}gs_evt_el(function(){gs_is_ph()||l&&(gs_md_cls(l),gs_uanm(gs_id(l)),l=0);});}();gs_evt_rdy(gs_bind(gs_ac_add,"q","test"));</script><p class="gs_alrt_btm"><a href="/scholar_alerts?view_op=create_alert_options&hl=en&alert_query=intitle:test&alert_params=%3Fhl%3Den%26as_sdt%3D0,5" class="gs_btnM gs_in_ib"><span class="gs_lbl">Create alert</span><span class="gs_ico"></span></a></p><style>#gs_qsuggest h2{padding:16px 0 8px;margin-top:16px;border-top:1px solid #ccc;font-weight:normal;font-size:16px;}#gs_qsuggest ul{list-style-type:none;}#gs_qsuggest li{display:inline-block;width:48%;padding:4px 0;font-size:16px;margin-right:16px;vertical-align:middle;}#gs_qsuggest .gs_li1{margin:0;}#gs_qsuggest a{display:inline-block;max-width:100%;vertical-align:top;}.gs_el_tc #gs_qsuggest a{padding:7px 0 5px;}.gs_el_tc #gs_qsuggest li{padding:2px 0;}.gs_el_tc #gs_qsuggest h2{border-top:none;}.gs_el_ph #gs_qsuggest .gs_no_li{display:none;}.gs_el_ph #gs_qsuggest li{display:block;width:100%;margin:0;padding:0;}.gs_el_ph #gs_qsuggest a{display:block;padding:13px 0 8px 0;border-bottom:1px solid #ccc;}.gs_el_ph #gs_qsuggest li:first-child a{border-top:1px solid #ccc;}.gs_el_ph #gs_qsuggest a:hover,.gs_el_ph #gs_qsuggest a:focus{background:#f1f1f1;text-decoration:none;outline:none;}</style><div id="gs_qsuggest" class="gs_ri"><h2 class="gs_gray">Related searches</h2><ul><li class="gs_li0"><a href="/scholar?hl=en&as_sdt=0,5&qsp=1&q=test+stroop">test <b>stroop</b></a></li><li class="gs_li1"><a href="/scholar?hl=en&as_sdt=0,5&qsp=2&q=test+implicit+association">test <b>implicit association</b></a></li><li class="gs_li0"><a href="/scholar?hl=en&as_sdt=0,5&qsp=3&q=test+scores">test <b>scores</b></a></li><li class="gs_li1"><a href="/scholar?hl=en&as_sdt=0,5&qsp=4&q=test+tensile">test <b>tensile</b></a></li><li class="gs_li0"><a href="/scholar?hl=en&as_sdt=0,5&qsp=5&q=test+walk">test <b>walk</b></a></li><li class="gs_li1"><a href="/scholar?hl=en&as_sdt=0,5&qsp=6&q=test+retest">test <b>retest</b></a></li><li class="gs_li0"><a href="/scholar?hl=en&as_sdt=0,5&qsp=7&q=test+wingate">test <b>wingate</b></a></li><li class="gs_li1"><a href="/scholar?hl=en&as_sdt=0,5&qsp=8&q=test+trail+making">test <b>trail making</b></a></li><li class="gs_li0 gs_no_li"><a href="/scholar?hl=en&as_sdt=0,5&qsp=9&q=test+chi+square">test <b>chi square</b></a></li><li class="gs_li1 gs_no_li"><a href="/scholar?hl=en&as_sdt=0,5&qsp=10&q=test+minute">test <b>minute</b></a></li><li class="gs_li0 gs_no_li"><a href="/scholar?hl=en&as_sdt=0,5&qsp=11&q=test+glucose+tolerance">test <b>glucose tolerance</b></a></li><li class="gs_li1 gs_no_li"><a href="/scholar?hl=en&as_sdt=0,5&qsp=12&q=test+wilcoxon">test <b>wilcoxon</b></a></li><li class="gs_li0 gs_no_li"><a href="/scholar?hl=en&as_sdt=0,5&qsp=13&q=test+thematic+apperception">test <b>thematic apperception</b></a></li><li class="gs_li1 gs_no_li"><a href="/scholar?hl=en&as_sdt=0,5&qsp=14&q=test+wisconsin+card+sorting">test <b>wisconsin card sorting</b></a></li><li class="gs_li0 gs_no_li"><a href="/scholar?hl=en&as_sdt=0,5&qsp=15&q=test+mann+whitney">test <b>mann whitney</b></a></li><li class="gs_li1 gs_no_li"><a href="/scholar?hl=en&as_sdt=0,5&qsp=16&q=test+retest+reliability">test <b>retest reliability</b></a></li></ul></div><div id="gs_n" role="navigation"><center><table cellpadding="0" width="1%"><tr align="center" valign="top"><td align="right" nowrap><span class="gs_ico gs_ico_nav_first"></span><b style="display:block;margin-right:35px;visibility:hidden">Previous</b></td><td><span class="gs_ico gs_ico_nav_current"></span><b>1</b></td><td><a href="/scholar?start=10&q=test&hl=en&as_sdt=0,5"><span class="gs_ico gs_ico_nav_page"></span>2</a></td><td><a href="/scholar?start=20&q=test&hl=en&as_sdt=0,5"><span class="gs_ico gs_ico_nav_page"></span>3</a></td><td><a href="/scholar?start=30&q=test&hl=en&as_sdt=0,5"><span class="gs_ico gs_ico_nav_page"></span>4</a></td><td><a href="/scholar?start=40&q=test&hl=en&as_sdt=0,5"><span class="gs_ico gs_ico_nav_page"></span>5</a></td><td><a href="/scholar?start=50&q=test&hl=en&as_sdt=0,5"><span class="gs_ico gs_ico_nav_page"></span>6</a></td><td><a href="/scholar?start=60&q=test&hl=en&as_sdt=0,5"><span class="gs_ico gs_ico_nav_page"></span>7</a></td><td><a href="/scholar?start=70&q=test&hl=en&as_sdt=0,5"><span class="gs_ico gs_ico_nav_page"></span>8</a></td><td><a href="/scholar?start=80&q=test&hl=en&as_sdt=0,5"><span class="gs_ico gs_ico_nav_page"></span>9</a></td><td><a href="/scholar?start=90&q=test&hl=en&as_sdt=0,5"><span class="gs_ico gs_ico_nav_page"></span>10</a></td><td align="left" nowrap><a href="/scholar?start=10&q=test&hl=en&as_sdt=0,5"><span class="gs_ico gs_ico_nav_next"></span><b style="display:block;margin-left:53px">Next</b></a></td></tr></table></center></div><div id="gs_nm" role="navigation"><button type="button" aria-label="Previous" disabled class="gs_btnPL gs_in_ib gs_btn_half gs_dis"><span class="gs_wr"><span class="gs_lbl"></span><span class="gs_ico gs_ico_dis"></span></span></button><button type="button" onclick="window.location='/scholar?start\x3d10\x26q\x3dtest\x26hl\x3den\x26as_sdt\x3d0,5'" aria-label="Next" class="gs_btnPR gs_in_ib gs_btn_half"><span class="gs_wr"><span class="gs_lbl"></span><span class="gs_ico"></span></span></button><div id="gs_nml"><b class="gs_nma">1</b><a class="gs_nma" href="/scholar?start=10&q=test&hl=en&as_sdt=0,5">2</a><a class="gs_nma" href="/scholar?start=20&q=test&hl=en&as_sdt=0,5">3</a><a class="gs_nma" href="/scholar?start=30&q=test&hl=en&as_sdt=0,5">4</a><a class="gs_nma" href="/scholar?start=40&q=test&hl=en&as_sdt=0,5">5</a><a class="gs_nma" href="/scholar?start=50&q=test&hl=en&as_sdt=0,5">6</a><a class="gs_nma" href="/scholar?start=60&q=test&hl=en&as_sdt=0,5">7</a><a class="gs_nma" href="/scholar?start=70&q=test&hl=en&as_sdt=0,5">8</a><a class="gs_nma" href="/scholar?start=80&q=test&hl=en&as_sdt=0,5">9</a><a class="gs_nma" href="/scholar?start=90&q=test&hl=en&as_sdt=0,5">10</a></div></div><div id="gs_ftr" role="contentinfo"><a href="/intl/en/scholar/about.html">About Google Scholar</a> <a href="//www.google.com/intl/en/policies/privacy/">Privacy</a> <a href="//www.google.com/intl/en/policies/terms/">Terms</a> <a href="//support.google.com/scholar/contact/general">Provide feedback</a></div></div></div></div></div><script>var gs_zvb;!function(u){gs_zvb=new Image();gs_zvb.onload=gs_zvb.onerror=function(){gs_zvb=0};gs_zvb.src=u;}("https://id.google.com/verify/QAAAAMTy2S4UZ-rFUvRs6Ec1if1S7-W8jcHt0wvSRVVQhLqWbln06fsrRL9EoevnO00KcwY0hZTvTfH0XLdZDy9sbnE.gif");</script><noscript><img src="https://id.google.com/verify/QAAAAMTy2S4UZ-rFUvRs6Ec1if1S7-W8jcHt0wvSRVVQhLqWbln06fsrRL9EoevnO00KcwY0hZTvTfH0XLdZDy9sbnE.gif" width="1" height="1" alt="" style="margin:-1px"></noscript></div><div id="gs_rdy"></div></body></html> This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ <!doctype html><html><head><title>test - Google Scholar</title><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=Edge"><meta name="referrer" content="always"><meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=2"><style>@viewport{width:device-width;min-zoom:1;max-zoom:2;}</style><meta name="format-detection" content="telephone=no"><script>var gs_ts=Number(new Date());</script><style>html,body,form,table,div,h1,h2,h3,h4,h5,h6,img,ol,ul,li,button{margin:0;padding:0;border:0;}table{border-collapse:collapse;border-width:0;empty-cells:show;}#gs_top{position:relative;min-width:964px;-webkit-tap-highlight-color:rgba(0,0,0,0);}#gs_top>*:not(#x){-webkit-tap-highlight-color:rgba(204,204,204,.5);}.gs_el_ph #gs_top,.gs_el_ta #gs_top{min-width:300px;}#gs_top.gs_nscl{position:fixed;width:100%;}body,td,input{font-size:13px;font-family:Arial,sans-serif;line-height:1.24}body{background:#fff;color:#222;-webkit-text-size-adjust:100%;-moz-text-size-adjust:none;}.gs_gray{color:#777777}.gs_red{color:#dd4b39}.gs_grn{color:#006621}.gs_lil{font-size:11px}.gs_med{font-size:16px}.gs_hlt{font-weight:bold;}a:link{color:#1a0dab;text-decoration:none}a:visited{color:#660099;text-decoration:none}a:hover,a:active,a:hover .gs_lbl,a:active .gs_lbl,a .gs_lbl:active{text-decoration:underline;outline:none;}a:active,a:active .gs_lbl,a .gs_lbl:active{color:#d14836}.gs_a,.gs_a a:link,.gs_a a:visited{color:#006621}.gs_a a:active{color:#d14836}a.gs_fl:link,.gs_fl a:link{color:#1a0dab}a.gs_fl:visited,.gs_fl a:visited{color:#660099}a.gs_fl:active,.gs_fl a:active{color:#d14836}.gs_fl{color:#777777}.gs_ctc,.gs_ctu{vertical-align:middle;font-size:11px;font-weight:bold}.gs_ctc{color:#1a0dab}.gs_ctg,.gs_ctg2{font-size:13px;font-weight:bold}.gs_ctg{color:#1a0dab}a.gs_pda,.gs_pda a{padding:7px 0 5px 0}.gs_alrt{background:#f9edbe;border:1px solid #f0c36d;padding:0 16px;text-align:center;-webkit-box-shadow:0 2px 4px rgba(0,0,0,.2);-moz-box-shadow:0 2px 4px rgba(0,0,0,.2);box-shadow:0 2px 4px rgba(0,0,0,.2);-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;}.gs_spc{display:inline-block;width:12px}.gs_br{width:0;font-size:0}.gs_ibl{display:inline-block;}.gs_scl:after{content:"";display:table;clear:both;}.gs_ind{padding-left:8px;text-indent:-8px}.gs_ico,.gs_icm{display:inline-block;background:no-repeat url(/intl/en/scholar/images/1x/sprite_20160809.png);background-size:169px;width:21px;height:21px;}@media(-webkit-min-device-pixel-ratio:1.5),(min-resolution:144dpi){.gs_ico,.gs_icm{background-image:url(/intl/en/scholar/images/2x/sprite_20160809.png);}}.gs_el_ta .gs_nta,.gs_ota,.gs_el_ph .gs_nph,.gs_oph{display:none}.gs_el_ta .gs_ota,.gs_el_ph .gs_oph{display:inline}.gs_el_ta div.gs_ota,.gs_el_ph div.gs_oph{display:block}#gs_ftr{margin:32px 0 0 0;text-align:center;clear:both;}#gs_ftr a{display:inline-block;margin:0 12px;padding:7px 0 8px 0;}#gs_ftr a:link,#gs_ftr a:visited{color:#1a0dab}#gs_ftr a:active{color:#d14836}.gs_in_txt{color:black;background:#fff;font-size:16px;height:23px;line-height:23px;border:1px solid #d9d9d9;border-top:1px solid #c0c0c0;padding:3px 6px 1px 8px;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;outline:none;vertical-align:middle;-webkit-appearance:none;-moz-appearance:none;}.gs_el_tc .gs_in_txt{font-size:18px;}.gs_in_txt:hover{border:1px solid #b9b9b9;border-top:1px solid #a0a0a0;-webkit-box-shadow:inset 0px 1px 2px rgba(0,0,0,0.1);-moz-box-shadow:inset 0px 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0px 1px 2px rgba(0,0,0,0.1);}.gs_in_txte,.gs_in_txte:hover{border:1px solid #DD4B39;}.gs_in_txt:focus{border:1px solid #4d90fe;-webkit-box-shadow:inset 0px 1px 2px rgba(0,0,0,0.3);-moz-box-shadow:inset 0px 1px 2px rgba(0,0,0,0.3);box-shadow:inset 0px 1px 2px rgba(0,0,0,0.3);}.gs_in_txt:disabled{color:#b8b8b8;border-color:#f1f1f1;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}input.gs_mini{font-size:13px;height:16px;line-height:16px;padding:3px 6px;}.gs_el_tc input.gs_mini{font-size:13px;height:21px;line-height:21px;}.gs_in_txtf{margin-right:16px}.gs_in_txtm{margin-right:14px}.gs_in_txtf .gs_in_txt,.gs_in_txtm .gs_in_txt{width:100%;}.gs_in_txts{font-size:13px;line-height:18px;}button{position:relative;z-index:1;box-sizing:border-box;font-size:11px;font-weight:bold;cursor:default;height:29px;min-width:72px;overflow:visible;color:#444;border:1px solid #dcdcdc;border:1px solid rgba(0,0,0,.1);border-radius:2px;text-align:center;background-color:#f5f5f5;background-image:linear-gradient(to bottom,#f5f5f5,#f1f1f1);transition:all .218s;user-select:none;}button .gs_wr{line-height:27px;}button.gs_btn_mini{min-width:26px;height:26px;}.gs_btn_mini .gs_wr{line-height:24px;}.gs_btn_half,.gs_el_ph .gs_btn_hph{min-width:36px;}>. }}.gs_btn_slt{border-radius:2px 0 0 2px;}.gs_btn_srt{margin-left:-1px;border-radius:0 2px 2px 0;}.gs_btn_smd{margin-left:-1px;border-radius:0;}button:hover,button.gs_in_cb:hover{z-index:2;color:#222;border:1px solid #c6c6c6;box-shadow:0 1px 1px rgba(0,0,0,.1);background-color:#f8f8f8;background-image:linear-gradient(to bottom,#f8f8f8,#f1f1f1);transition:all 0s;}button.gs_sel{color:#333;border:1px solid #ccc;box-shadow:inset 0 1px 2px rgba(0,0,0,.1);background-color:#e8e8e8;background-image:linear-gradient(to bottom,#eee,#e0e0e0);}button.gs_in_cb{color:#444;border:1px solid #dcdcdc;border:1px solid rgba(0,0,0,.1);box-shadow:none;background-color:#f5f5f5;background-image:linear-gradient(to bottom,#f5f5f5,#f1f1f1);}button:active,button.gs_in_cb:active{z-index:2;color:#333;background-color:#f6f6f6;background-image:linear-gradient(to bottom,#f6f6f6,#f1f1f1);box-shadow:inset 0px 1px 2px rgba(0,0,0,.1);}button:focus,button.gs_in_cb:focus{z-index:2;outline:none;border:1px solid #4d90fe;}button::-moz-focus-inner{padding:0;border:0}button .gs_lbl{padding:0px 8px;}a.gs_in_ib{position:relative;display:inline-block;line-height:16px;padding:5px 0 6px 0;user-select:none;}a.gs_btn_mini{height:24px;line-height:24px;padding:0;}a .gs_lbl,button .gs_lbl{vertical-align:baseline;}a.gs_in_ib .gs_lbl{display:inline-block;padding-left:21px}button.gs_in_ib .gs_lbl{padding-left:29px;}button.gs_btn_mini .gs_lbl,button.gs_btn_half .gs_lbl,button.gs_btn_eml .gs_lbl{padding:11px;}.gs_el_ph .gs_btn_hph .gs_lbl,.gs_el_ph .gs_btn_cph .gs_lbl{padding:11px;font-size:0;visibility:hidden;}.gs_in_ib .gs_ico{position:absolute;top:2px;left:8px;}.gs_btn_mini .gs_ico{top:1px;left:2px;}.gs_btn_half .gs_ico,.gs_el_ph .gs_btn_hph .gs_ico{left:7px}.gs_btn_eml .gs_ico,.gs_el_ph .gs_btn_cph .gs_ico{left:25px}.gs_btn_eml.gs_btn_mnu .gs_ico{left:20px;}a.gs_in_ib .gs_ico{top:3px;left:0}a.gs_in_ib.gs_md_li .gs_ico{left:14px}.gs_el_tc a.gs_in_ib.gs_md_li .gs_ico{top:11px}a.gs_btn_mini .gs_ico{top:1px;left:0}button .gs_cb_wr{position:absolute;top:5px;left:26px;}.gs_el_tc button .gs_cb_wr{top:-3px;}.gs_in_ib .gs_ico{opacity:.55;}a.gs_in_ib .gs_ico{opacity:.65;}.gs_in_ib:hover .gs_ico{opacity:.72;}.gs_in_ib:active .gs_ico,.gs_in_ib .gs_ico:active,.gs_in_ib :active~.gs_ico{opacity:1;}.gs_in_ib:disabled .gs_ico{opacity:.28;}a.gs_in_ib.gs_dis .gs_ico{opacity:.33;}button.gs_btn_act{color:#fff;border:1px solid #3079ed;background-color:#4d90fe;background-image:linear-gradient(to bottom,#4d90fe,#4787ed);}button.gs_btn_act:hover{color:#fff;border:1px solid #2f5bb7;background-color:#357ae8;background-image:linear-gradient(to bottom,#4d90fe,#357ae8);box-shadow:inset 0 1px 1px rgba(0,0,0,.1);}button.gs_btnG{width:70px;min-width:0;}button.gs_btn_act:focus{box-shadow:inset 0 0 0 1px rgba(255,255,255,.5);}button.gs_btn_act:focus{border-color:#404040;}button.gs_btn_act:active{border:1px solid #315da3;background-color:#2f6de1;background-image:linear-gradient(to bottom,#4d90fe,#2f6de1);}button.gs_btn_act:active{box-shadow:inset 0 1px 2px rgba(0,0,0,.3);}button:disabled,button:disabled:hover,button:disabled:active{color:#b8b8b8;border:1px solid #f3f3f3;border:1px solid rgba(0,0,0,.05);background:none;box-shadow:none;z-index:0;}button.gs_btn_act:disabled{color:white;border-color:#98bcf6;background:#a6c8ff;}button:disabled:active{box-shadow:inset 0 1px 2px rgba(0,0,0,.1);z-index:2;}a.gs_dis{cursor:default}.gs_ttp{position:absolute;top:100%;right:50%;z-index:10;pointer-events:none;visibility:hidden;opacity:0;transition:visibility 0s .13s,opacity .13s ease-out;}button:hover .gs_ttp,button:focus .gs_ttp,a:hover .gs_ttp,a:focus .gs_ttp{transition:visibility 0s .3s,opacity .13s ease-in .3s;visibility:visible;opacity:1;}button.gs_sel .gs_ttp{visibility:hidden;}.gs_ttp .gs_aro,.gs_ttp .gs_aru{position:absolute;top:-2px;right:-5px;width:0;height:0;line-height:0;font-size:0;border:5px solid transparent;border-top:none;border-bottom-color:#2a2a2a;z-index:1;}.gs_ttp .gs_aro{top:-3px;right:-6px;border-width:6px;border-top:none;border-bottom-color:white;}.gs_ttp .gs_txt{display:block;position:relative;top:2px;right:-50%;padding:7px 9px;background:#2a2a2a;color:white;font-size:11px;font-weight:bold;line-height:normal;white-space:nowrap;border:1px solid white;box-shadow:inset 0 1px 4px rgba(0,0,0,.2);}.gs_in_se,.gs_tan{touch-action:none;}.gs_in_se .gs_lbl{padding-left:8px;padding-right:22px;}.gs_in_se .gs_icm{position:absolute;top:8px;right:8px;width:7px;height:11px;background-position:-21px -88px;opacity:.55;}a.gs_in_se .gs_icm{opacity:.65;}.gs_in_se:hover .gs_icm{opacity:.72;}.gs_in_se:active .gs_icm,.gs_in_se .gs_icm:active,.gs_in_se :active~.gs_icm{opacity:1;}.gs_in_ib:disabled .gs_icm{opacity:.28;}.gs_el_ph .gs_btn_hph .gs_icm,.gs_el_ph .gs_btn_cph .gs_icm{display:none}.gs_btn_mnu .gs_icm{top:11px;height:7px;background-position:0 -110px;}.gs_md_se,.gs_md_wn,.gs_md_wm{position:absolute;top:0;left:0;border:1px solid #ccc;border-color:rgba(0,0,0,.2);background:#fff;box-shadow:0 2px 4px rgba(0,0,0,.2);z-index:1100;opacity:0;}.gs_md_se,.gs_md_wn{display:none;transition:opacity .13s;}.gs_md_wm{visibility:hidden;max-height:0;transition:opacity .13s,visibility 0s .13s,max-height 0s .13s;}.gs_md_se.gs_vis,.gs_md_wn.gs_vis,.gs_md_wm.gs_vis{opacity:1;transition:all 0s;}.gs_md_wm.gs_vis{visibility:visible;max-height:10000px;}.gs_el_tc .gs_md_se,.gs_el_tc .gs_md_wn{transform-origin:100% 0;transform:scale(1,0);transition:opacity .218s ease-out,transform 0s .218s;}.gs_el_tc .gs_md_wm{transition:opacity .218s ease-out,transform 0s .218s,visibility 0s .218s,max-height 0s .218s;}.gs_el_tc .gs_md_wn.gs_ttss{transform:scale(0,1);}.gs_el_tc .gs_md_wm,.gs_el_tc .gs_md_wn.gs_ttzi,.gs_el_ph.gs_el_tc .gs_md_wp.gs_ttzi{transform-origin:50% 50%;transform:scale(0,0);}.gs_el_tc .gs_md_se.gs_vis,.gs_el_tc .gs_md_wn.gs_vis,.gs_el_tc .gs_md_wm.gs_vis{transform:scale(1,1);transition:transform .218s ease-out;}.gs_el_ph .gs_md_wmw{top:0;left:0;position:fixed;height:100%;width:100%;visibility:hidden;z-index:1100;}.gs_el_ph .gs_md_wm{padding:0;width:100%;height:100%;border:none;box-shadow:none;transform:translate(0,100%);transform:translate(0,100vh);transition:transform .218s ease-out,opacity 0s .218s,visibility 0s .218s,max-height 0s .218s;}.gs_el_ph .gs_md_wm.gs_vis{transform:translate(0,0);transition:transform .218s ease-out;}.gs_md_se{white-space:nowrap}.gs_md_se ul{list-style-type:none;word-wrap:break-word;display:inline-block;vertical-align:top;}.gs_md_seb ul{display:block}.gs_md_se li,.gs_md_li,.gs_md_li:link,.gs_md_li:visited{display:block;padding:6px 44px 6px 16px;font-size:13px;line-height:16px;color:#222;cursor:default;text-decoration:none;background:white;transition:background .13s;}a.gs_md_li:hover .gs_lbl,a.gs_md_li:active .gs_lbl{text-decoration:none}.gs_el_tc .gs_md_se li,.gs_el_tc .gs_md_li{padding-top:14px;padding-bottom:10px;}.gs_md_se li:focus,.gs_md_se li:hover,.gs_md_li:hover,.gs_md_li:focus{background:#f1f1f1;transition:background 0s;}.gs_md_se li.gs_sel{color:#dd4b39}.gs_md_wn:focus,.gs_md_se li:focus,.gs_md_li:focus{outline:none}button.gs_btnG .gs_ico,button.gs_btnG:hover .gs_ico,button.gs_btnG:active .gs_ico,button.gs_btnG .gs_ico:active,button.gs_btnG :active~.gs_ico{width:14px;height:14px;top:7px;left:27px;background-position:-113px -44px;opacity:1;}a.gs_in_cb:link,a.gs_in_cb:visited,a.gs_in_cb:active,a.gs_in_cb:hover,a.gs_in_cb.gs_dis:active .gs_lbl{cursor:default;color:#222;text-decoration:none;}.gs_in_cb,.gs_in_ra{position:relative;line-height:16px;display:inline-block;user-select:none;}.gs_in_cb.gs_md_li{padding:6px 44px 6px 16px;display:block;}.gs_in_cb input,.gs_in_ra input{position:absolute;top:1px;left:1px;width:15px;height:15px;margin:0;padding:0;opacity:0;z-index:2;}.gs_in_ra input{top:0;left:0}.gs_el_tc .gs_in_cb input{top:9px}.gs_el_tc .gs_in_ra input{top:8px}.gs_in_cb.gs_in_cbj input{top:15px;left:15px}.gs_in_cb label,.gs_in_cb .gs_lbl,.gs_in_ra label{display:inline-block;padding-left:21px;min-height:16px;}.gs_el_tc .gs_in_cb label,.gs_el_tc .gs_in_cb .gs_lbl,.gs_el_tc .gs_in_ra label{padding-top:8px;padding-bottom:5px;}.gs_in_cb.gs_in_cbj label,.gs_in_cb.gs_in_cbj .gs_lbl{padding:13px 0 12px 41px;}.gs_in_cb .gs_cbx,.gs_in_ra .gs_cbx{position:absolute}.gs_in_cb .gs_cbx{top:2px;left:2px;width:11px;height:11px;border:1px solid #c6c6c6;border-radius:1px;}.gs_md_li .gs_cbx{top:8px;left:18px}.gs_el_tc .gs_in_cb .gs_cbx{top:10px}.gs_el_tc .gs_md_li .gs_cbx{top:16px}.gs_in_cb.gs_in_cbj .gs_cbx{top:15px;left:15px}.gs_el_tc .gs_in_ra .gs_cbx{top:8px}.gs_in_ra .gs_cbx{top:0;left:0;border:1px solid #c6c6c6;width:13px;height:13px;border-radius:7px;}.gs_in_cb:hover .gs_cbx,.gs_in_ra:hover .gs_cbx{border-color:#666;box-shadow:inset 0 1px 1px rgba(0,0,0,.1);}button.gs_in_cb:hover .gs_cbx{border-color:#c6c6c6;}button.gs_in_cb:active .gs_cbx{border-color:#a6a6a6;}.gs_in_cb:focus .gs_cbx,.gs_in_cb :focus~.gs_cbx,.gs_in_ra :focus~.gs_cbx{border-color:#4d90fe;}.gs_in_cb:active .gs_cbx,.gs_in_ra:active .gs_cbx,.gs_in_cb .gs_cbx:active,.gs_in_ra .gs_cbx:active,.gs_in_cb :active~.gs_cbx,.gs_in_ra :active~.gs_cbx{border-color:#666;background:#ebebeb;}.gs_in_cb :disabled~.gs_cbx,.gs_in_ra :disabled~.gs_cbx{border-color:#f1f1f1;box-shadow:none;}.gs_in_cb :disabled~label,.gs_in_ra :disabled~label{color:#b8b8b8;}.gs_in_cb.gs_err .gs_cbx{border-color:#eda29b;}.gs_in_cb .gs_chk,.gs_in_ra .gs_chk{position:absolute;z-index:1;top:-3px;left:-2px;width:21px;height:21px;}.gs_md_li .gs_chk{top:3px;left:14px}.gs_el_tc .gs_in_cb .gs_chk{top:5px}.gs_el_tc .gs_md_li .gs_chk{top:11px}.gs_in_cb.gs_in_cbj .gs_chk{top:10px;left:11px}.gs_in_ra .gs_chk{top:4px;left:4px;width:7px;height:7px;}.gs_el_tc .gs_in_ra .gs_chk{top:12px}.gs_in_cb input:checked~.gs_chk,.gs_in_cb.gs_sel .gs_chk{background:no-repeat url(/intl/en/scholar/images/1x/sprite_20160809.png) -69px -67px;opacity:.62;}.gs_in_ra input:checked~.gs_chk{border-radius:4px;background:#666;}.gs_in_cb.gs_par .gs_chk{background:no-repeat url(/intl/en/scholar/images/1x/sprite_20160809.png) -21px -44px;opacity:.55;}@media(-webkit-min-device-pixel-ratio:1.5),(min-resolution:144dpi){.gs_in_cb input:checked~.gs_chk,.gs_in_cb.gs_sel .gs_chk,.gs_in_cb.gs_par .gs_chk{background-image:url(/intl/en/scholar/images/2x/sprite_20160809.png);background-size:169px;}}.gs_in_cb input:checked:disabled~.gs_chk{background-position:-69px -67px;opacity:.22;}.gs_ico_X{background-position:-71px 0;opacity:.55;}.gs_ico_X:hover{opacity:.72;}.gs_ico_X:active{opacity:1;}.gs_el_tc .gs_ico_Xt{-webkit-background-origin:content;background-origin:content-box;-webkit-background-clip:content;background-clip:content-box;padding:10px 6px 10px 14px;}.gs_btnP .gs_ico{background-position:-21px 0;}.gs_btnC .gs_ico{background-position:0 -66px;}.gs_btnJ .gs_ico{background-position:-92px -22px;}.gs_btnM .gs_ico{background-position:-92px 0;}.gs_btnSB .gs_ico{background-position:0 -44px;}.gs_btnPL .gs_ico{background-position:-148px -66px;}.gs_btnPR .gs_ico{background-position:-21px -66px;}.gs_btnDE .gs_ico{background-position:-134px 0;}.gs_btnFI .gs_ico{background-position:-50px -66px;}.gs_btnAD .gs_ico{background-position:-141px -88px;opacity:.55;}.gs_btnAD:hover .gs_ico{opacity:.72;}.gs_btnAD:active .gs_ico,.gs_btnAD .gs_ico:active,.gs_btnAD :active~.gs_ico{opacity:1;}.gs_btnLBL .gs_ico{background-position:0 -161px;}.gs_btnCNCL .gs_ico{background-position:-71px 0;}.gs_btnDWL .gs_ico{background-position:-28px -88px;}button.gs_btnUB,button.gs_btnUR{border:none;background:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}button.gs_btnUB .gs_lbl,button.gs_btnUR .gs_lbl{padding:0;}button.gs_btnUR .gs_lbl{color:#fff;text-shadow:0px 1px rgba(0,0,0,.1);}button.gs_btnUR{-webkit-font-smoothing:antialiased;}.gs_btnUB .gs_ico,.gs_btnUR .gs_ico{top:-3px;left:-1px;width:38px;height:34px;z-index:-1;opacity:1;background:no-repeat url(/intl/en/scholar/images/1x/bell_sprite_20160531.png) -190px 0;background-size:456px;}@media(-webkit-min-device-pixel-ratio:1.5),(min-resolution:144dpi){.gs_btnUB .gs_ico,.gs_btnUR .gs_ico{background-image:url(/intl/en/scholar/images/2x/bell_sprite_20160531.png);}}.gs_btnUR .gs_ico{background-position:-380px 0;}.gs_btnUB:hover .gs_ico{background-position:-304px 0;opacity: 1;}.gs_btnUR:hover .gs_ico{background-position:-152px 0;opacity:1;}.gs_btnUB:focus .gs_ico{background-position:0 0;opacity:1;}.gs_btnUR:focus .gs_ico{background-position:-114px 0;opacity:1;}.gs_btnUB:focus:hover .gs_ico{background-position:-418px 0;}.gs_btnUR:focus:hover .gs_ico{background-position:-76px 0;}.gs_btnUB:active .gs_ico,.gs_btnUB .gs_ico:active,.gs_btnUB :active~.gs_ico{background-position:-342px 0;opacity:1;}.gs_btnUR:active .gs_ico,.gs_btnUR .gs_ico:active,.gs_btnUR :active~.gs_ico{background-position:-266px 0;opacity:1;}.gs_btnUB:focus:active .gs_ico{background-position:-228px 0;}.gs_btnUR:focus:active .gs_ico{background-position:-38px 0;}.gs_ico_nav_previous{background-position:0 -119px;width:53px;height:40px;}.gs_ico_nav_first{background-position:-25px -119px;width:28px;height:40px;}.gs_ico_nav_current{background-position:-53px -119px;width:20px;height:40px;}.gs_ico_nav_page{background-position:-73px -119px;width:20px;height:40px;}.gs_ico_nav_next{background-position:-93px -119px;width:71px;height:40px;}.gs_ico_nav_last{background-position:-93px -119px;width:45px;height:40px;}#gs_hdr{position:relative;height:58px;white-space:nowrap;clear:both;}#gs_hdr_bg{position:absolute;top:0;left:0;width:100%;height:57px;border-bottom:1px solid #e5e5e5;z-index:-1;background-color:#f5f5f5;}#gs_hdr_lt{position:absolute;top:0;left:0;width:100%;height:57px;}#gs_hdr_lt .gs_ico_ggl{position:absolute;left:0;top:14px;margin-left:32px;}.gs_el_sm #gs_hdr_lt .gs_ico_ggl{margin-left:16px;}#gs_hdr_lt .gs_ico_ggl a{display:block;width:100%;height:100%;}#gs_hdr_md{position:relative;height:29px;vertical-align:top;margin-left:172px;padding-top:15px;}.gs_el_sm #gs_hdr_md{margin-left:140px;}.gs_el_ta #gs_hdr_md{margin-left:127px;}.gs_el_ph #gs_hdr_md{margin-left:8px;padding-top:9px;}#gs_hdr_frm{position:relative;}.gs_el_ta #gs_hdr_frm{margin-right:94px;max-width:567px;}.gs_el_ph #gs_hdr_frm{margin-right:43px;max-width:736px;}#gs_hdr_frm_in{position:relative;display:inline-block;}.gs_el_ph #gs_hdr_frm_in,.gs_el_ta #gs_hdr_frm_in{display:block;margin-right:18px;width:auto;}#gs_hdr_frm_in_txt{vertical-align:top;width:537px;padding:3px 25px 1px 8px;}#gs_hdr_frm_in_txt[dir="ltr"]{padding:3px 25px 1px 8px;}#gs_hdr_frm_in_txt[dir="rtl"]{padding:3px 8px 1px 25px;}.gs_el_tc #gs_hdr_frm_in_txt{width:556px;padding:3px 8px 1px 8px;}.gs_el_ph #gs_hdr_frm_in_txt,.gs_el_ta #gs_hdr_frm_in_txt{width:100%;padding:3px 8px 1px 8px;}.gs_el_ph #gs_hdr_frm_in_txt{height:34px;line-height:34px;border-radius:2px 0 0 2px;}.gs_el_ta #gs_hdr_frm_ac{right:-18px;}.gs_el_ph #gs_hdr_frm_ac{top:39px;right:-53px;}.gs_el_ph #gs_hdr_arw,.gs_el_ta #gs_hdr_arw,.gs_el_tc #gs_hdr_arw{display:none;}#gs_hdr_tsb{vertical-align:top;margin:0 17px;}.gs_el_ta #gs_hdr_tsb,.gs_el_ph #gs_hdr_tsb{position:absolute;top:0;right:-85px;margin:0;}.gs_el_ph #gs_hdr_tsb{right:-35px;width:36px;height:40px;border-radius:0 2px 2px 0;}.gs_el_ta #gs_hdr_tsb .gs_ico{left:28px;}.gs_el_ph #gs_hdr_tsb .gs_ico{left:11px;top:12px;}#gs_hdr_rt{position:absolute;top:0;right:0;height:29px;line-height:27px;color:#666;margin-right:32px;padding-top:15px;}.gs_el_sm #gs_hdr_rt{margin-right:16px;}.gs_el_ta #gs_hdr_rt,.gs_el_ph #gs_hdr_rt{display:none;}#gs_hdr_rt a:link,#gs_hdr_rt a:visited{color:#666}#gs_hdr_rt a:active{color:#d14836}.gs_ico_ggl{width:92px;height:30px;background-position:-49px -88px;}.gs_el_ph .gs_ico_ggl{display:none}#gs_ab{position:relative;height:57px;border-bottom:1px solid #DEDEDE;white-space:nowrap;}.gs_el_sm #gs_ab{height:43px}#gs_ab_na{position:absolute;color:#DD4B39;text-decoration:none;top:19px;font-size:16px;margin-left:31px;}.gs_el_sm #gs_ab_na{top:13px;font-size:16px;margin-left:15px;}.gs_el_ph #gs_ab_na{top:12px;font-size:18px;margin-left:8px;}#gs_ab_na .gs_ico{display:none;}#gs_ab_top{margin-left:173px;}.gs_el_sm #gs_ab_top{margin-left:141px;}.gs_el_ta #gs_ab_top{margin-left:127px;}#gs_ab_rt{position:relative;float:right;padding-top:14px;padding-right:32px;}.gs_el_sm #gs_ab_rt{padding-top:7px;padding-right:16px;}.gs_el_ta #gs_ab_rt,.gs_el_ph #gs_ab_rt{padding-right:8px;}#gs_ab_rt button{margin-left:16px;vertical-align:top}.gs_el_sm #gs_ab_rt button{margin-left:8px}.gs_el_tc #gs_ab_rt button{margin-left:16px}#gs_bdy{position:relative;clear:both;margin-top:21px;padding-bottom:13px;}#gs_lnv{position:absolute;top:1px;left:0;width:164px;}.gs_el_sm #gs_lnv{width:132px}.gs_el_ph #gs_lnv,.gs_el_ta #gs_lnv{display:none}#gs_lnv ul{list-style-type:none;word-wrap:break-word}#gs_lnv .gs_pad{padding-left:32px}.gs_el_sm #gs_lnv .gs_pad{padding-left:16px}#gs_lnv .gs_ind,#gs_lnv .gs_inw{margin-bottom:4px}.gs_el_tc #gs_lnv .gs_ind,.gs_el_tc #gs_lnv .gs_inw{margin-bottom:0}#gs_lnv .gs_hr{border-bottom:1px solid #efefef;margin:14px 4px 14px 0;}#gs_lnv a:link,#gs_lnv a:visited{color:#222}#gs_lnv a:active{color:#d14836}#gs_lnv a.gs_in_cb:active{color:#222}#gs_lnv li.gs_sel a:link,#gs_lnv li.gs_sel a:visited,#gs_lnv li.gs_sel a:active,#gs_lnv li.gs_sel a:hover{color:#d14836;text-decoration:none;}#gs_lnv_pri li{line-height:0}#gs_lnv_pri a{display:block;padding:7px 0 6px 32px;line-height:16px;outline:none;}.gs_el_sm #gs_lnv_pri a{padding-left:16px}#gs_lnv_pri a:hover,#gs_lnv_pri a:focus{text-decoration:none;background:#eeeeee}#gs_lnv_pri .gs_sel a{border-left:5px solid #dd4b39;padding-left:27px;}.gs_el_sm #gs_lnv_pri .gs_sel a{padding-left:11px}#gs_ccl{position:relative;padding:0 8px;margin-left:164px;}.gs_el_sm #gs_ccl{margin-left:132px}.gs_el_ph #gs_ccl,.gs_el_ta #gs_ccl{margin:0}#gs_ab_md{position:absolute;color:#999;top:23px;}.gs_el_sm #gs_ab_md{top:16px;}.gs_el_ph #gs_ab_md{display:none;}#gs_hdr_adv{top:49px;left:0;width:552px;}.gs_el_ta #gs_hdr_adv{width:90%;max-width:546px;}#gs_ylo_dd,#gs_ad_dd{position:relative}#gs_ylo_dd{display:none}.gs_el_ta #gs_ylo_dd,.gs_el_ph #gs_ylo_dd,#gs_ad_dd{display:inline-block;}#gs_ylo_md,#gs_ad_md{left:auto;right:0;top:29px;}.gs_el_ph #gs_ylo_md,.gs_el_ph #gs_ad_md{top:0;}#gs_ylo_md a.gs_cur,#gs_ylo_md a:active,#gs_ad_md a.gs_cur,#gs_ad_md a:active{color:#d14836;}#gs_ylo_md .gs_hr,#gs_ad_md .gs_hr{border-bottom:1px solid #efefef;margin:7px 0;}.gs_ad_nlnv{display:none}.gs_el_ta .gs_ad_nlnv,.gs_el_ph .gs_ad_nlnv{display:block}.gs_el_ta #gs_ab_rt .gs_btnC,.gs_el_ph #gs_ab_rt .gs_btnC{display:none}.gs_el_ta #gs_ad_md .gs_btnC,.gs_el_ph #gs_ad_md .gs_btnC{display:block}.gs_btnAD{-ms-touch-action:none;touch-action:none;}.gs_el_ph #gs_lnv,.gs_el_ta #gs_lnv{display:none}.gs_el_tc #gs_lnv_ylo li,.gs_el_tc #gs_lnv_ylo a,.gs_el_tc #gs_lnv_lr li,.gs_el_tc #gs_lnv_lr a,.gs_el_tc #gs_lnv_stype li,.gs_el_tc #gs_lnv_stype a{padding-top:8px;padding-bottom:5px;margin:0;}#gs_lnv_yloc td{padding:5px 0}.gs_el_tc #gs_lnv_yloc td{padding:10px 0}#gs_lnv_yloc .gs_in_txt{width:2.75em}.gs_el_sm #gs_ccl{max-width:980px}.gs_el_ta #gs_ccl{max-width:780px}.gs_r{position:relative;margin:1em 0;overflow-x:hidden;}.gs_rt{position:relative;font-weight:normal;font-size:17px;line-height:19px}.gs_rt2{font-size:13px;font-weight:normal}.gs_rt a:link,.gs_rt a:link b,.gs_rt2 a:link,.gs_rt2 a:link b{color:#1a0dab}.gs_rt a:visited,.gs_rt a:visited b,.gs_rt2 a:visited,.gs_rt2 a:visited b{color:#660099}.gs_rt a:active,.gs_rt a:active b,.gs_rt2 a:active,.gs_rt2 a:active b{color:#d14836}.gs_rt a:focus,.gs_fl a:focus,.gs_ggsm a:focus{outline:none;text-decoration:underline;}.gs_ggs{position:absolute;top:0;left:720px;white-space:nowrap;font-size:17px;line-height:19px;}.gs_el_sm .gs_ggs{position:relative;left:0;z-index:1;float:right;margin-left:12px;width:200px;}.gs_el_ph .gs_ggs{height:36px;}@media(max-width:779px){.gs_el_sm .gs_ggs{width:150px;}}.gs_el_ph .gs_ggs{width:72px;}.gs_el_tc .gs_ggs{margin-top:2px;}.gs_el_sm.gs_el_tc .gs_ggs{margin-top:-13px;}.gs_el_ph.gs_el_tc .gs_ggs,.gs_el_ph .gs_ggs{margin-top:-14px;}.gs_ggsd{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}.gs_el_tc .gs_ggsm a,.gs_el_ph .gs_ggsm a{display:block;overflow:hidden;text-overflow:ellipsis;padding:13px 8px 9px 8px;-ms-touch-action:none;touch-action:none;background:#fff;height:19px;}.gs_el_ph .gs_ggsm a{text-decoration:none;}.gs_el_ph .gs_ggsm a:focus{background:#f1f1f1;}.gs_el_ph .gs_ggsm a:active{color:#1a0dab;}.gs_el_ph .gs_ggsm a:visited{color:#660099;}.gs_el_ph .gs_ggsm{position:absolute;top:0;left:0;padding:1px 0;width:200px;height:41px;transform:translate(0,0);}.gs_el_ph .gs_ggsm.gs_vis{left:-132px;height:auto;}.gs_el_ph .gs_ggsm>div:nth-child(2){height:0;transform:scale(1,0);transform-origin:0 0;}.gs_el_ph .gs_ggsm.gs_vis>div:nth-child(2){height:41px;transform:scale(1,1);}.gs_el_ph .gs_ggsm:before{content:"";position:absolute;top:0;left:-1px;right:-1px;bottom:0;box-shadow:0 2px 4px rgba(0,0,0,.2);border:1px solid #ccc;opacity:0;z-index:-1;}.gs_el_ph .gs_ggsm.gs_vis:before{opacity:1}.gs_el_ph .gs_ggsm:after{content:"";pointer-events:none;position:absolute;top:0;left:0;right:0;bottom:0;z-index:1;background-image:linear-gradient(to left,rgba(255,255,255,1),rgba(255,255,255,1) 65%,rgba(255,255,255,0) 70%);}.gs_el_ph .gs_ggsm.gs_vis:after{visibility:hidden}.gs_el_ph .gs_ggsm.gs_vis.gs_anm{animation:gs_anm_hsli .218s ease-in-out;}.gs_el_ph .gs_ggsm.gs_anm{animation:gs_anm_hslo .218s ease-out;}.gs_el_ph .gs_ggs .gs_ggsm.gs_vis.gs_anm>div:nth-child(2){animation:gs_anm_vscli .218s ease-in;}.gs_el_ph .gs_ggsm.gs_vis.gs_anm:before{animation:gs_anm_fil .3s;}@keyframes gs_anm_hsli{0%{transform:translate(66%,0);height:41px;}99%{transform:translate(0,0);height:41px;}100%{transform:translate(0,0);height:auto;}}@keyframes gs_anm_hslo{0%{transform:translate(-66%,0);}100%{transform:translate(0,0);}}@keyframes gs_anm_vscli{0%{transform:scale(1,0);}100%{transform:scale(1,1);}}@keyframes gs_anm_fil{0%{opacity:0;}99%{opacity:0;}100%{opacity:1;}}.gs_ct1{display:inline}.gs_ct2{display:none}.gs_el_ph .gs_ct1{display:none}.gs_el_ph .gs_ct2{display:inline;font-size:13px;font-weight:normal}.gs_ri{max-width:712px}.gs_a a:link,.gs_a a:visited{text-decoration:underline}.gs_ri .gs_fl a,.gs_a a{white-space:nowrap}.gs_ri .gs_fl a.gs_wno{white-space:normal}.gs_svm{display:none}.gs_ri .gs_fl{font-size:1px}.gs_ri .gs_fl a,.gs_svm{font-size:13px;margin-right:12px}.gs_ri .gs_svm a{margin:0}.gs_ri .gs_fl a:last-child,.gs_svm:last-child{margin:0}.gs_nvi,.gs_mvi .gs_mor{display:none}.gs_mvi .gs_nvi,.gs_mvi .gs_nph,.gs_mvi .gs_nta{display:inline}.gs_rs{margin:1px 0}.gs_el_tc .gs_rs{margin:0}.gs_el_ta .gs_rs{margin-right:10%}@media(max-width:780px){.gs_el_ta .gs_rs,.gs_el_ta .gs_a{margin-right:100px;}}.gs_el_ph .gs_rs br,.gs_el_ta .gs_rs br{display:none}@media screen and (min-width:771px){.gs_el_ta .gs_rs br{display:block}}.gs_age{color:#777777}.gs_rs b,.gs_rt b,.gs_rt2 b{color:#000}.gs_el_tc .gs_r,.gs_el_ph .gs_r{padding:15px 0 1em 0;margin:0;border-bottom:1px solid #eee;}.gs_el_tc #gs_ccl,.gs_el_ph #gs_ccl{margin-top:-1em;}.gs_el_tc #gs_ccl_top,.gs_el_ph #gs_ccl_top{margin-top:1em;padding-top:1px;}.gs_rt{margin-right:100px;}.gs_el_ph .gs_rt{margin-right:0;}.gs_el_tc .gs_rt a{font-size:17px;line-height:20px;padding:12px 0 9px 0;}.gs_el_tc .gs_rt2 a{font-size:14px;line-height:20px;padding:6px 0 4px 0;}.gs_el_tc .gs_a,.gs_el_tc .gs_a a,.gs_el_tc .gs_ri .gs_fl a{padding:8px 0 5px 0;}.gs_el_tc .gs_ri .gs_fl a{line-height:29px;}#gs_n{clear:both;margin:1.5em 0;width:650px;text-align:center;}#gs_n td{font-size:13px}#gs_n a:link,#gs_n a:visited{color:#1a0dab}#gs_n a:active{color:#d14836}#gs_nm{clear:both;position:relative;text-align:center;max-width:500px;margin:1.5em 50px;font-size:13px;line-height:29px;display:none;}.gs_el_tc #gs_nm{font-size:15px;line-height:41px;}#gs_nm button{position:absolute;top:0}#gs_nm .gs_btnPL{left:-50px}#gs_nm .gs_btnPR{right:-50px}.gs_el_tc #gs_nm button{height:41px}.gs_el_tc #gs_nm button .gs_wr{line-height:39px}.gs_el_tc #gs_nm button .gs_ico{top:8px}#gs_nml{overflow:hidden;white-space:nowrap;width:100%;}.gs_nma{display:inline-block;width:40px;margin:0 5px;}.gs_el_tc #gs_n,.gs_el_ta #gs_n,.gs_el_ph #gs_n{display:none}.gs_el_tc #gs_nm,.gs_el_ta #gs_nm,.gs_el_ph #gs_nm{display:block}.gs_lkp_btm{margin:24px 0}.gs_alrt_btm a:link,.gs_alrt_btm a:visited{color:#444}.gs_alrt_btm a:active{color:#d14836}#gs_ftr{width:650px;}.gs_el_ta #gs_ftr,.gs_el_ph #gs_ftr{width:auto;max-width:600px;}@media print{#gs_gb,#gs_hdr,#gs_ab,#gs_top #gs_lnv,.gs_pda,.gs_ggs,.gs_alrt_btm,#gs_top #gs_n,#gs_top #gs_nm,#gs_ftr,#gs_top .gs_ctc,#gs_top .gs_ctu,#gs_rt_hdr,.gs_rt_hdr_ttl{display:none}#gs_top,#gs_top #gs_bdy,#gs_top #gs_res_bdy,#gs_top #gs_ccl,#gs_top .gs_r,#gs_top .gs_ri,#gs_top .gs_rs{font-size:9pt;color:black;position:static;float:none;margin:0;padding:0;width:auto;min-width:0;max-width:none;}#gs_top #gs_bdy a{color:blue;text-decoration:none}#gs_top .gs_r{margin:1em 0;page-break-inside:avoid}#gs_top .gs_med,#gs_top .gs_rt{font-size:12pt}#gs_top .gs_a,#gs_top #gs_bdy .gs_a a{font-size:9pt;color:green}#gs_top .gs_fl,#gs_top .gs_fl a{font-size:9pt}#gs_top .gs_rs br{display:inline}}</style><script>var gs_ie_ver=100;</script><!--[if lte IE 8]><script>gs_ie_ver=8;</script><![endif]--><script>function gs_id(i){return document.getElementById(i)}function gs_ch(e,t){return e?e.getElementsByTagName(t):[]}function gs_ech(e){return e.children||e.childNodes}function gs_atr(e,a){return e.getAttribute(a)}function gs_hatr(e,a){var n=e.getAttributeNode(a);return n&&n.specified}function gs_xatr(e,a,v){e.setAttribute(a,v)}function gs_uatr(e,a){e.removeAttribute(a)}function gs_catr(e,a,v){gs_hatr(e,a)&&gs_xatr(e,a,v)}function gs_ctai(e,v){gs_hatr(e,"tabindex")&&(e.tabIndex=v)}function gs_uas(s){return (navigator.userAgent||"").indexOf(s)>=0}function gs_is_ph(){return document.documentElement.className.indexOf("gs_el_ph")+1;}var gs_is_tc=/[?&]tc=([01])/.exec(window.location.search||""),gs_is_ios=gs_uas("iPhone")||gs_uas("iPod")||gs_uas("iPad");if(gs_is_tc){gs_is_tc=parseInt(gs_is_tc[1]);}else if(window.matchMedia&&matchMedia("(pointer),(-moz-touch-enabled),(-moz-touch-enabled:0)").matches){gs_is_tc=matchMedia("(pointer:coarse),(-moz-touch-enabled)").matches;}else{gs_is_tc=0||('ontouchstart' in window)||(navigator.msMaxTouchPoints||0)>0;}var gs_re_sp=/\s+/,gs_re_sel=/(?:^|\s)gs_sel(?!\S)/g,gs_re_par=/(?:^|\s)gs_par(?!\S)/g,gs_re_dis=/(?:^|\s)gs_dis(?!\S)/g,gs_re_vis=/(?:^|\s)gs_vis(?!\S)/g,gs_re_anm=/(?:^|\s)gs_anm(?!\S)/g,gs_re_bsp=/(?:^|\s)gs_bsp(?!\S)/g,gs_re_err=/(?:^|\s)gs_err(?!\S)/g,gs_re_nscl=/(?:^|\s)gs_nscl(?!\S)/g,gs_re_cb=/(?:^|\s)gs_in_cb(?!\S)/,gs_re_ra=/(?:^|\s)gs_in_ra(?!\S)/,gs_re_qsp=/[\s\u0000-\u002f\u003a-\u0040\u005b-\u0060\u007b-\u00bf\u2000-\u206f\u2e00-\u2e42\u3000-\u303f\uff00-\uff0f\uff1a-\uff20\uff3b-\uff40\uff5b-\uff65]+/g;function gs_xcls(e,c){gs_scls(e,e.className+" "+c)}function gs_ucls(e,r){gs_scls(e,e.className.replace(r,""))}function gs_scls(e,c){return e.className!=c&&(e.className=c,true)}function gs_usel(e){gs_ucls(e,gs_re_sel)}function gs_xsel(e){gs_usel(e);gs_xcls(e,"gs_sel")}function gs_tsel(e){return e.className.match(gs_re_sel)}function gs_isel(e){(gs_tsel(e)?gs_usel:gs_xsel)(e)}function gs_upar(e){gs_ucls(e,gs_re_par)}function gs_xpar(e){gs_upar(e);gs_xcls(e,"gs_par")}function gs_tpar(e){return e.className.match(gs_re_par)}function gs_udis(e){gs_ucls(e,gs_re_dis)}function gs_xdis(e){gs_udis(e);gs_xcls(e,"gs_dis")}function gs_tdis(e){return e.className.match(gs_re_dis)}function gs_btn_xdis(b,d){b&&((b.disabled=!!d)?gs_xdis:gs_udis)(b);}function gs_uvis(e){gs_ucls(e,gs_re_vis)}function gs_xvis(e){gs_uvis(e);gs_xcls(e,"gs_vis")}function gs_uanm(e){gs_ucls(e,gs_re_anm)}function gs_xanm(e){gs_uanm(e);gs_xcls(e,"gs_anm")}function gs_ubsp(e){gs_ucls(e,gs_re_bsp)}function gs_xbsp(e){gs_ubsp(e);gs_xcls(e,"gs_bsp")}function gs_uerr(e){gs_ucls(e,gs_re_err)}function gs_xerr(e){gs_uerr(e);gs_xcls(e,"gs_err")}function gs_unscl(e){gs_ucls(e,gs_re_nscl)}function gs_xnscl(e){gs_unscl(e);gs_xcls(e,"gs_nscl")}var gs_gcs=window.getComputedStyle?function(e){return getComputedStyle(e,null)}:function(e){return e.currentStyle};var gs_ctd=function(){var s=document.documentElement.style,p,l=['OT','MozT','webkitT','t'],i=l.length;function f(s){return Math.max.apply(null,(s||"").split(",").map(parseFloat))||0;}do{p=l[--i]+'ransition'}while(i&&!(p in s));return i?function(e){var s=gs_gcs(e);return f(s[p+"Delay"])+f(s[p+"Duration"]);}:function(){return 0};}();var gs_tmh=function(){var X,P={};return {a:function(e){var t=pageYOffset+e.getBoundingClientRect().bottom;X=X||gs_id("gs_top");if(e.id){P[e.id]=1;t>X.offsetHeight&&(X.style.minHeight=t+"px");}},r:function(e){if(e.id&&X){delete P[e.id];if(!Object.keys(P).length){X.style.minHeight="";}}}}}();var gs_vis=function(){return function(e,v,c){var s=e&&e.style,h,f;if(s){gs_catr(e,"aria-hidden",v?"false":"true");if(v){s.display=v===2?"inline":"block";gs_ctd(e);gs_xvis(e);f=gs_ctd(e);gs_uas("AppleWebKit")&&f&&gs_evt_one(e,"transitionend webkitTransitionEnd",function(){gs_tmh.a(e);});c&&(f?setTimeout(c,1000*f):c());}else{gs_uvis(e);h=function(){s.display="none";gs_tmh.r(e);c&&c();};f=gs_ctd(e);f?setTimeout(h,1000*f):h();}}};}();function gs_visi(i,v,c){gs_vis(gs_id(i),v,c)}function gs_sel_clk(p,t){var l=gs_ch(gs_id(p),"li"),i=l.length,c,x,s;while(i--){if((c=gs_ch(x=l[i],"a")).length){s=c[0]===t;(s?gs_xsel:gs_usel)(x);gs_catr(c[0],"aria-selected",s?"true":"false");}}return false;}function gs_efl(f){if(typeof f=="string"){var c=f.charAt(0),x=f.slice(1);if(c==="#")f=function(t){return t.id===x};else if(c===".")f=function(t){return (" "+t.className+" ").indexOf(" "+x+" ")>=0};else{c=f.toLowerCase();f=function(t){return t.nodeName.toLowerCase()===c};}}return f;}function gs_dfcn(d){return (d?"last":"first")+"Child"}function gs_dnsn(d){return (d?"previous":"next")+"Sibling"}var gs_trv=function(){function h(r,x,f,s,n,c){var t,p;while(x){if(x.nodeType===1){if(f(x)){if(c)return x;}else{for(p=x[s];p;p=p[n])if(t=h(p,p,f,s,n,1))return t;}}c=1;while(1){if(x===r)return;p=x.parentNode;if(x=x[n])break;x=p;}}}return function(r,x,f,d){return h(r,x,gs_efl(f),gs_dfcn(d),gs_dnsn(d))};}();function gs_bind(){var a=Array.prototype.slice.call(arguments),f=a.shift();return function(){return f.apply(null,a.concat(Array.prototype.slice.call(arguments)))};}function gs_evt1(e,n,f){e.addEventListener(n,f,false)}function gs_uevt1(e,n,f){e.removeEventListener(n,f,false)}if(!window.addEventListener){gs_evt1=function(e,n,f){e.attachEvent("on"+n,f)};gs_uevt1=function(e,n,f){e.detachEvent("on"+n,f)};}function gs_evtX(e,n,f,w){var i,a;typeof n==="string"&&(n=n.split(" "));for(i=n.length;i--;)(a=n[i])&&w(e,a,f);}function gs_evt(e,n,f){gs_evtX(e,n,f,gs_evt1)}function gs_uevt(e,n,f){gs_evtX(e,n,f,gs_uevt1)}function gs_evt_one(e,n,f){function g(E){gs_uevt(e,n,g);f(E);}gs_evt(e,n,g);}function gs_evt_all(l,n,f){for(var i=l.length;i--;){gs_evt(l[i],n,gs_bind(f,l[i]))}}function gs_evt_dlg(p,c,n,f){p!==c&&(c=gs_efl(c));gs_evt(p,n,p===c?function(e){f(p,e)}:function(e){var t=gs_evt_tgt(e);while(t){if(c(t))return f(t,e);if(t===p)return;t=t.parentNode;}});}function gs_evt_sms(v){var L=[],l=["mousedown","click"],i=l.length;function s(e){for(var l=L,n=l.length,i=0,x=e.clientX,y=e.clientY;i<n;i+=2){if(Math.abs(x-l[i])<10&&Math.abs(y-l[i+1])<10){gs_evt_ntr(e);break;}}}while(i--)document.addEventListener(l[i],s,true);gs_evt_sms=function(e){var l=e.changedTouches||[],h=l[0]||{};L.push(h.clientX,h.clientY);setTimeout(function(){L.splice(0,2)},2000);};gs_evt_sms(v);v=0;}function gs_evt_clk(e,f,w,k,d){return gs_evt_dlg_clk(e,e,function(t,e){f(e)},w,k,d);}function gs_evt_dlg_clk(p,c,f,w,k,d){k=","+(k||[13,32]).join(",")+",";return gs_evt_dlg_xclk(p,c,function(t,e){if(e.type=="keydown"){if(k.indexOf(","+e.keyCode+",")<0)return;gs_evt_ntr(e);}f(t,e);},w,d);}function gs_evt_xclk(e,f,w){return gs_evt_dlg_xclk(e,e,function(t,e){f(e)},w);}function gs_evt_dlg_xclk(p,c,f,w,d){var T,S=0,D=0;function u(t,e){var n=e.type;if(!S&&d&&d(e))return;if(t!==T){T=t;S=0;}if(!gs_evt_spk(e)){if(n==="mousedown"){S=1;D=d&&d(e);}else if(n==="click"){if(S){D||gs_evt_ntr(e);return S=0;}}else if(n==="touchstart"){S=0;gs_evt_sms(e);}else if(n==="keydown"){f(t,e);return;}else if(n==="keyup"){e.keyCode===32&&gs_evt_pdf(e);return;}else{return}gs_evt_ntr(e);f(t,e);}}gs_evt_dlg(p,c,["keydown","keyup","click"].concat(w?["mousedown","touchstart"]:[]),u);return u;}function gs_evt_inp(e,f){gs_evt(e,["input","keyup","cut","paste","change","gs-change"],function(){setTimeout(f,0)});}function gs_evt_fcs(e,f){e.addEventListener("focus",f,true)}function gs_evt_blr(e,f){e.addEventListener("blur",f,true)}if("onfocusin" in document){gs_evt_fcs=function(e,f){gs_evt(e,"focusin",f)};gs_evt_blr=function(e,f){gs_evt(e,"focusout",f)};}function gs_evt_stp(e){e.cancelBubble=true;e.stopPropagation&&e.stopPropagation();return false;}function gs_evt_pdf(e){e.returnValue=false;e.preventDefault&&e.preventDefault();}function gs_evt_ntr(e){gs_evt_stp(e);gs_evt_pdf(e);}function gs_evt_tgt(e){var t=e.target||e.srcElement;t&&t.nodeType===3&&(t=t.parentNode);return t;}function gs_evt_spk(e){return (e.ctrlKey?1:0)|(e.altKey?2:0)|(e.metaKey?4:0)|(e.shiftKey?8:0);}function gs_evt_crt(d,t){if(document.createEvent){var e=document.createEvent('Event');e.initEvent(t,!0,!0);d.dispatchEvent(e);}}function gs_tfcs(t){if(!gs_is_tc||(gs_uas("Windows")&&!gs_uas("Windows Phone"))){t.focus();t.value=t.value;}}var gs_raf=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||function(c){setTimeout(c,33)};var gs_evt_rdy=function(){var d=document,l=[],h=function(){var n=l.length,i=0;while(i<n)l[i++]();l=[];};gs_evt(d,"DOMContentLoaded",h);gs_evt(d,"readystatechange",function(){var s=d.readyState;(s=="complete"||(s=="interactive"&&gs_id("gs_rdy")))&&h();});gs_evt(window,"load",h);return function(f){l.push(f)};}();function gs_evt_raf(e,n){var l=[],t=0,h=function(){var x=l,n=x.length,i=0;while(i<n)x[i++]();t=0;};return function(f){l.length||gs_evt(e,n,function(){!t++&&gs_raf(h)});l.push(f);};}var gs_evt_wsc=gs_evt_raf(window,"scroll"),gs_evt_wre=gs_evt_raf(window,"resize");var gs_md_st=[],gs_md_lv={},gs_md_fc={},gs_md_if,gs_md_is=0;function gs_md_ifc(d,f){gs_md_fc[d]=f}function gs_md_sif(){gs_md_if=1;setTimeout(function(){gs_md_if=0},0);}function gs_md_plv(n){var l=gs_md_lv,x=0;while(n&&!x){x=l[n.id]||0;n=n.parentNode;}return x;}gs_evt(document,"click",function(e){var m=gs_md_st.length;if(m&&!gs_evt_spk(e)&&m>gs_md_plv(gs_evt_tgt(e))){(gs_md_st.pop())();gs_evt_pdf(e);}});gs_evt(document,"keydown",function(e){e.keyCode==27&&!gs_evt_spk(e)&&gs_md_st.length&&(gs_md_st.pop())();});gs_evt(document,"selectstart",function(e){gs_md_is&&gs_evt_pdf(e)});gs_evt_fcs(document,function(e){var l=gs_md_lv,m=gs_md_st.length,x,k,v,d;if(m&&!gs_md_if){x=gs_md_plv(gs_evt_tgt(e));while(x<m){v=0;for(k in l)l.hasOwnProperty(k)&&l[k]>v&&(v=l[d=k]);if(v=gs_md_fc[d]){gs_evt_stp(e);gs_id(v).focus();break;}else{(gs_md_st.pop())(1);--m;!gs_md_is++&&setTimeout(function(){gs_md_is=0},1000);}}}});function gs_md_cls(d,e){var x=gs_md_lv[d]||1e6;while(gs_md_st.length>=x)(gs_md_st.pop())();return e&&gs_evt_stp(e);}function gs_md_shw(d,e,o,c){if(!gs_md_lv[d]){var x=gs_md_plv(gs_id(d));while(gs_md_st.length>x)(gs_md_st.pop())();o&&o();gs_md_st.push(function(u){gs_md_lv[d]=0;c&&c(u);});gs_md_lv[d]=gs_md_st.length;return gs_evt_stp(e);}}function gs_md_opn(d,e,c,z){var a=document.activeElement;return gs_md_shw(d,e,gs_bind(gs_visi,d,1),function(u){gs_visi(d,0,z);try{u||a.focus()}catch(_){}c&&c(u);});}function gs_evt_md_mnu(d,b,f,a,w){var O,X;d=gs_id(d);b=gs_id(b);f=f?gs_efl(f):function(t){return (gs_hatr(t,"data-a")||t.nodeName==="A"&&t.href)&&t.offsetWidth;};a=a||function(t){var c=gs_atr(t,"data-a");c?eval(c):t.nodeName==="A"&&t.href&&(location=t.href);};function u(e){if(e.type=="keydown"){var k=e.keyCode;if(k==38||k==40){if(O){try{gs_trv(d,d,f,k==38).focus()}catch(_){}gs_evt_ntr(e);return;}}else if(k!=13&&k!=32){return;}gs_evt_pdf(e);}if(O){gs_md_cls(d.id,e);}else{gs_md_sif();O=1;gs_xsel(b);gs_md_opn(d.id,e,function(){O=0;gs_usel(b);try{X.blur()}catch(_){}});w&&w();}}function c(x,r){var p=x.parentNode,c=gs_ech(p),i=c.length,l="offsetLeft";if(p!==d){while(c[--i]!==x);p=p[gs_dnsn(r)]||p.parentNode[gs_dfcn(r)];c=gs_ech(p);if(i=Math.min(i+1,c.length)){p=c[i-1];if(p.nodeType==1&&f(p)&&p[l]!=x[l])return p;}}}function g(t,e){function m(x){if(x){gs_evt_ntr(e);x.focus();}}if(O){if(e.type=="keydown"){var k=e.keyCode;if(k==13||k==32){}else{if(k==38||k==40){m(gs_trv(d,t,f,k==38)||gs_trv(d,d,f,k==38));}else if(k==37||k==39){m(c(t,k==37));}return;}}gs_hatr(t,"data-md-no-close")||gs_md_cls(d.id,e);gs_evt_pdf(e);gs_md_sif();a(t);}}gs_evt_xclk(b,u,2);gs_evt_fcs(d,function(e){var x=gs_evt_tgt(e);if(x&&f(x)){gs_ctai(x,0);X=x;}});gs_evt_blr(d,function(e){var x=gs_evt_tgt(e);if(x&&f(x)){gs_ctai(x,-1);X=0;}});gs_evt_dlg_xclk(d,f,g);return u;}function gs_evt_md_sel(d,b,h,c,s,u){h=gs_id(h);c=gs_id(c);s=gs_id(s);return gs_evt_md_mnu(d,b,function(t){return gs_hatr(t,"data-v")},function(t){h.innerHTML=t.innerHTML;c.value=gs_atr(t,"data-v");if(t!==s){gs_usel(s);gs_uatr(s,"aria-selected");gs_xsel(s=t);gs_xatr(s,"aria-selected","true");}gs_evt_crt(c,"gs-change");u&&u();},function(){s.focus()});}function gs_xhr(){if(window.XMLHttpRequest)return new XMLHttpRequest();var c=["Microsoft.XMLHTTP","MSXML2.XMLHTTP","MSXML2.XMLHTTP.3.0","MSXML2.XMLHTTP.6.0"],i=c.length;while(i--)try{return new ActiveXObject(c[i])}catch(e){}}function gs_ajax(u,d,c){var r=gs_xhr();r.onreadystatechange=function(){r.readyState==4&&c(r.status,r.responseText);};r.open(d?"POST":"GET",u,true);d&&r.setRequestHeader("Content-Type","application/x-www-form-urlencoded");d?r.send(d):r.send();}var gs_json_parse="JSON" in window?function(s){return JSON.parse(s)}:function(s){return eval("("+s+")")};function gs_frm_ser(e,f){var i=e.length,r=[],x,n,t;while(i--){x=e[i];n=encodeURIComponent(x.name||"");t=x.type;n&&(!f||f(x))&&!x.disabled&&((t!="checkbox"&&t!="radio")||x.checked)&&r.push(n+"="+encodeURIComponent(x.value||""));}return r.join("&");}var gs_rlst,gs_wlst;!function(U){var L={},S;try{S=window.localStorage}catch(_){}gs_rlst=function(k,s){if(s||!(k in L)){var v=S&&S[k];if(v)try{v=JSON.parse(v)}catch(_){v=U}else v=U;L[k]=v;}return L[k];};gs_wlst=function(k,v){L[k]=v;try{S&&(S[k]=JSON.stringify(v))}catch(_){}};}();function gs_ac_nrm(q,o,t){o=o||[];o.length=0;q=(q||"").toLowerCase();var L=q.length,M;q=q.replace(gs_re_qsp,function(m,p){o.push(M=m.length);return !t||p+M<L?" ":"";});q[0]==" "?(q=q.substr(1)):o.unshift(0);return q;}function gs_ac_get(Q){var h=gs_rlst("H:"+Q),t={"":1},i=0,j=0,n,v,q;(h instanceof Array)||(h=[]);h=h.slice();for(n=h.length;i<n;i++){v=h[i]=((v=h[i]) instanceof Array)&&v.length==3?v.slice():[0,0,""];v[0]=+v[0]||0;v[1]=+v[1]||0;v[2]=""+v[2];q=v[3]=gs_ac_nrm(""+v[2],v[4]=[],1);t[q]||(t[q]=1,h[j++]=v);}h.splice(Math.min(j,50),n);return h;}function gs_ac_set(Q,h){var r=[],i=0,n=h.length;while(i<n)r.push(h[i++].slice(0,3));gs_wlst("H:"+Q,r);}function gs_ac_fre(t){return Math.exp(.0231*((Math.max(t-1422777600,0)/86400)|0));}function gs_ac_add(Q,q,d){var h=gs_ac_get(Q),n=h.length,t=1e-3*(new Date()),m=0,x,w,o=[];if(w=gs_ac_nrm(q,o,1)){d=d||t;while(m<n&&h[m][3]!=w)++m;m<n||h.push([0,0,q,w,o]);if(d-h[m][0]>1){h[m][0]=d;h[m][2]=q;h[m][4]=o;h[m][1]=Math.min(h[m][1]+gs_ac_fre(d),10*gs_ac_fre(t));while(m&&h[m][1]>h[m-1][1]){x=h[m];h[m]=h[m-1];h[--m]=x;}h.splice(50,h.length);gs_ac_set(Q,h);}}}var gs_evt_el=function(W,D,L){function p(){var r=D.documentElement,w=W.innerWidth||r.offsetWidth,h=W.innerHeight||r.offsetHeight,m="",n,i;if(w&&h){if(gs_is_ios){var S=W.screen||{},w2=S.width,h2=S.height,t;if(w>h&&w2<h2){t=w2;w2=h2;h2=t;}w2&&w2<w&&(w=w2);h2&&h2<h&&(h=h2);}if(w<600)m="gs_el_sm gs_el_ph";else if(w<982)m="gs_el_sm gs_el_ta";else if(w<1060||h<590)m="gs_el_sm";else if(w<1252||h<640)m="gs_el_me";gs_is_tc&&(m+=" gs_el_tc");gs_is_ios&&(m+=" gs_el_ios");if(gs_scls(r,m))for(n=L.length,i=0;i<n;)L[i++]();}}p();gs_evt_wre(p);gs_evt(W,["pageshow","load"],p);return function(f){f();L.push(f)};}(window,document,[]);!function(B,U){gs_evt(document,(B&&"1"?[]:["mousedown","touchstart"]).concat(["contextmenu","click"]),function(e){var t=gs_evt_tgt(e),a="data-clk",w=window,r=document.documentElement,p="http://scholar.google.com"||"http://"+location.host,n,h,c,u;while(t){n=t.nodeName;if(n==="A"&&(h=gs_ie_ver<=8?t.getAttribute("href",2):gs_atr(t,"href"))&&(c=gs_atr(t,a))){u="/scholar_url?url="+encodeURIComponent(h)+"&"+c+"&ws="+(w.innerWidth||r.offsetWidth||0)+"x"+(w.innerHeight||r.offsetHeight||0);if(c.indexOf("&scisig=")>0){gs_xatr(t,"href",p+u);gs_uatr(t,a);}else if(B){B.call(navigator,u);}else if(u!=U.src){(U=new Image()).src=u;setTimeout(function(){U={};},1000);}break;}t=(n==="SPAN"||n==="B"||n==="I"||n==="EM")&&t.parentNode;}});}(navigator.sendBeacon,{});function gs_is_cb(e){var n=e.className||"";return n.match(gs_re_cb)||n.match(gs_re_ra);}function gs_ssel(e){}(function(d){function c(){var v=l,i=v.length,k=p,e,x=gs_id("gs_top");if(x&&!r){gs_evt(x,"click",function(){});r=1;if(!s){clearInterval(t);t=null}}p=i;while(i-->k)gs_is_cb((e=v[i]).parentNode)&&gs_ssel(e);}var s=gs_ie_ver<=8,l=[],p=0,t=setInterval(c,200),r;gs_evt_rdy(function(){c();l=[];clearInterval(t)});if(!s&&gs_is_tc){s=/AppleWebKit\/([0-9]+)/.exec(navigator.userAgent||"");s=s&&parseInt(s[1])<535;}if(!s)return;l=gs_ch(d,"input");gs_ssel=function(e){var p=e.parentNode,l,i,r;(e.checked?gs_xsel:gs_usel)(p);if(p.className.match(gs_re_ra)){l=e.form.elements[e.name]||[];for(i=l.length;i--;)((r=l[i]).checked?gs_xsel:gs_usel)(r.parentNode);}};gs_evt(d,"click",function(e){var x=gs_evt_tgt(e),p=x.parentNode;gs_is_cb(p)&&x.nodeName==="INPUT"&&gs_ssel(x);});})(document);</script><script>var gs_ellt=null;function gs_svj(s){gs_svk();var n=0;gs_ellt=setInterval(function(){var h="",i=n;while(i--)h+=".";h+="<span style='color:white'>";i=3-n;while(i--)h+=".";h+="</span>";gs_id(s).innerHTML=h;n=(n+1)%4;},200);}function gs_svk(){clearInterval(gs_ellt);gs_ellt=null;}function gs_svw(p,c){gs_visi("gs_svl"+p,0);var a=gs_id("gs_svs"+p);a.href="/citations?view_op\x3dview_citation\x26continue\x3d/scholar%3Fq%3Dtest%26hl%3Den%26as_sdt%3D0,5\x26citilm\x3d1\x26citation_for_view\x3d{id}\x26hl\x3den\x26oi\x3dsaved".replace("{id}",encodeURIComponent(c));gs_vis(a,2);}function gs_now(){return +new Date();}function gs_sva(d,p){gs_visi("gs_svl"+p,0);gs_visi("gs_sve"+p,0);gs_visi("gs_svs"+p,0);gs_visi("gs_svo"+p,2);gs_svj("gs_svd"+p);gs_ajax("/citations?hl\x3den\x26update_op\x3dlibrary_add\x26xsrf\x3dAMstHGQAAAAAV-uDmhPZvdLAZnGOrNqeToCZ-lj1-yjk\x26info\x3d{id}".replace("{id}",d),"",function(c,t){var f=t.charAt(0),a,b;gs_visi("gs_svo"+p,0);gs_svk();if(c==200&&t){if(f=="2"){window.location="https://accounts.google.com/Login?hl\x3den\x26continue\x3dhttp://scholar.google.com/scholar%3Fq%3Dtest\x26service\x3dcitations\x26ltmpl\x3dscholarlibrary";}else if(f=="1"){window.location="/citations?view_op\x3dlibrary_setup\x26continue\x3d/scholar%3Fq%3Dtest%26hl%3Den%26as_sdt%3D0,5\x26info\x3d{id}\x26hl\x3den".replace("{id}",d);}else if(f=="3"){gs_wa_m(t.substr(1));}else{a=t.substr(1).split(":");b={};gs_svw(p,a[1]);b[d+","+a[0]]=a[1];gs_svc(b);}}else{gs_visi("gs_sve"+p,2);}});return false;}function gs_svl(){var l=gs_rlst("s",1);return l&&typeof l=="object"?l:{};}function gs_svc(u){u=u||{};var l=gs_svl(),t=gs_now(),k,v;for(k in l)(v=l[k]) instanceof Array&&v.length==2&&t-v[1]<12e5||(delete l[k]);for(k in u)l[k]=[u[k],t];gs_wlst("s",l);}function gs_more(t,v){gs_scls(t.parentNode,"gs_fl"+(v?" gs_mvi":""));return false;}function gs_acb(q){var l=document.querySelectorAll("#gs_qsuggest li>a"),n=l.length,r=[],i=0,x;if(q==gs_ac_nrm("test"))while(i<n&&i<10){x=l[i++];r.push([x.textContent,x.innerHTML]);}return r;}</script></head><body><div id="gs_top"><style>#gs_gb{position:relative;height:30px;background:#2d2d2d;font-size:13px;line-height:16px;-webkit-backface-visibility:hidden;}#gs_gb_lt,#gs_gb_rt,#gs_gb_lp{position:absolute;top:0;white-space:nowrap;}#gs_gb_lt{left:22px}.gs_el_sm #gs_gb_lt{left:6px}.gs_el_ph #gs_gb_lt{display:none}#gs_gb_lp{display:none}#gs_gb_lp:hover,#gs_gb_lp:focus,#gs_gb_lp:active{-webkit-filter:brightness(100%);}.gs_el_ph #gs_gb_lp{display:block;z-index:1;cursor:pointer;top:8px;left:8px;width:48px;height:16px;background:no-repeat url('/intl/en/scholar/images/1x/googlelogo_bbb_color_48x16dp.png');background-size:48px 16px;}@media(-webkit-min-device-pixel-ratio:1.5),(min-resolution:144dpi){.gs_el_ph #gs_gb_lp{background-image:url('/intl/en/scholar/images/2x/googlelogo_bbb_color_48x16dp.png');}}#gs_gb_rt{right:22px}.gs_el_sm #gs_gb_rt{right:6px}.gs_el_ta #gs_gb_rt,.gs_el_ph #gs_gb_rt{right:0}#gs_gb_lt a:link,#gs_gb_lt a:visited,#gs_gb_rt a:link,#gs_gb_rt a:visited{display:inline-block;vertical-align:top;height:29px;line-height:27px;padding:2px 10px 0 10px;font-weight:bold;color:#bbb;cursor:pointer;text-decoration:none;}#gs_gb_rt a:link,#gs_gb_rt a:visited{padding:2px 8px 0 8px}#gs_gb_lt a:hover,#gs_gb_lt a:focus,#gs_gb_lt a:active,#gs_gb_rt a:hover,#gs_gb_rt a:focus,#gs_gb_rt a:active{color:white;outline:none;}#gs_gb_ac{top:30px;left:auto;right:6px;width:288px;white-space:normal;}#gs_gb_aw,#gs_gb_ap,.gs_gb_am,#gs_gb_ab{display:block;padding:10px 20px;word-wrap:break-word;}#gs_gb_aw{background:#fef9db;font-size:11px;}#gs_gb_ap,.gs_gb_am{border-bottom:1px solid #ccc;}#gs_gb_aa:link,#gs_gb_aa:visited{float:right;margin-left:8px;color:#1a0dab;}#gs_gb_aa:active{color:#d14836}.gs_gb_am:link,.gs_gb_am:visited{color:#222;text-decoration:none;background:#fbfbfb;}.gs_gb_am:hover,.gs_gb_am:focus{background:#f1f1f1}.gs_gb_am:active{background:#eee}#gs_gb_ab{background:#fbfbfb;overflow:auto;}#gs_gb_aab{float:left}#gs_gb_aso{float:right}</style><div id="gs_gb" role="navigation"><div id="gs_gb_lt"><a href="//www.google.com/search?q=test&hl=en&">Web</a><a href="//www.google.com/search?tbm=isch&q=test&hl=en&">Images</a><a href="//www.google.com/intl/en/options/">More…</a></div><a id="gs_gb_lp" aria-label="Web" href="//www.google.com/search?q=test&hl=en&"></a><div id="gs_gb_rt"><a href="https://accounts.google.com/Login?hl=en&continue=http://scholar.google.com/scholar%3Fq%3Dtest">Sign in</a></div></div><!--[if lte IE 9]><div class="gs_alrt" style="padding:16px"><div>Sorry, some features may not work in this version of Internet Explorer.</div><div>Please use <a href="//www.google.com/chrome/">Google Chrome</a> or <a href="//www.mozilla.com/firefox/">Mozilla Firefox</a> for the best experience.</div></div><![endif]--><style>html,body{height:100%}#gs_top{min-height:100%}#gs_md_s,#gs_md_w{z-index:1200;position:absolute;top:0;left:0;width:100%;height:100%;}#gs_md_s{background:#666;filter:alpha(opacity=50);-ms-filter:"alpha(opacity=50)";opacity:.5;}.gs_md_d{position:relative;padding:28px 32px;margin:0 auto;width:400px;-moz-box-shadow:2px 2px 8px rgba(0,0,0,.65);-webkit-box-shadow:2px 2px 8px rgba(0,0,0,.65);box-shadow:2px 2px 8px rgba(0,0,0,.65);}.gs_el_ph .gs_md_d{padding:16px 20px;width:80%;max-width:400px;}.gs_md_d .gs_ico_X{position:absolute;top:8px;right:8px;background-color:#fff;}.gs_md_d h2{font-size:16px;font-weight:normal;line-height:24px;margin-bottom:16px;}.gs_el_ph .gs_md_d h2{margin-bottom:8px}.gs_md_lbl{margin:16px 0}.gs_md_btns{margin-top:16px}.gs_md_btns button{margin-right:16px}.gs_md_prg{margin:24px 0;}</style><script>function gs_md_opw(d,e,b){var r=document.documentElement,s=gs_id("gs_md_s").style,w=gs_id("gs_md_w").style,q=gs_id(d),g=q.style;g.visibility="hidden";s.display=w.display=g.display="block";g.top=Math.max(document.body.scrollTop||0,r.scrollTop||0)+Math.max((r.clientHeight-q.offsetHeight)/2,10)+"px";g.visibility="visible";gs_md_opn(d,e,function(){s.display="none"},function(){w.display="none"});if(b){b=gs_id(b);b.type==="text"?gs_tfcs(b):b.focus();}return false;}function gs_md_ldw(d,e,b,c,u,p,f){c=gs_id(c);c.innerHTML="<div class='gs_md_prg'>Loading...</div>";gs_md_opw(d,e,b);gs_ajax(u,p,function(x,t){c.innerHTML=x===200?t:"<div class='gs_md_prg gs_alrt'>The system can\x27t perform the operation now. Try again later.</div>";f&&f(x,t);});}</script><div id="gs_md_s" style="display:none"></div><div id="gs_md_w" style="display:none"><div id="gs_cit" style="display:none" class="gs_md_d gs_md_wn gs_ttzi" role="dialog" aria-hidden="true" aria-labelledby="gs_cit-t"><a id="gs_cit-x" href="#" role="button" aria-label="Cancel" class="gs_ico gs_ico_X gs_ico_Xt" onclick="return gs_md_cls('gs_cit',event)"></a><h2 id="gs_cit-t">Cite</h2><style>#gs_cit{width:520px;max-width:85%}.gs_el_ph #gs_cit{width:80%;max-width:520px}#gs_citt table{width:100%}#gs_citt td,#gs_citt th{vertical-align:top;padding:8px 0;}#gs_citt th{text-align:right;font-weight:normal;color:#777;padding-right:12px;white-space:nowrap;user-select:none;}#gs_citi{margin:16px 0 0 0;text-align:center;}.gs_citi{margin-right:12px;white-space:nowrap;padding:7px 0 5px 0;}#gs_citv,#gs_citf{display:none}</style><script>function gs_ocit(e,i,p){var s=gs_id("gs_cit").style,d=gs_id("gs_citd");s.height="500px";d.innerHTML="Loading...";gs_md_opw("gs_cit",e);gs_ajax('/scholar?q\x3dinfo:{id}:scholar.google.com/\x26output\x3dcite\x26scirp\x3d{p}\x26hl\x3den'.replace('{id}',i).replace('{p}',p),"",function(c,t){if(c!=200){d.innerHTML="The system can\x27t perform the operation now. Try again later."}else{s.height="auto";d.innerHTML=t;gs_id("gs_cit0").focus();}});return false;}var gs_sdom=window.getSelection?function(i){getSelection().selectAllChildren(gs_id(i))}:function(i){try{var r=document.body.createTextRange();r.moveToElementText(gs_id(i));r.select();}catch(_){}};gs_evt_rdy(function(){var X;gs_evt_fcs(gs_id("gs_cit"),function(e){var x=gs_evt_tgt(e)||{},i=x.id||"";x!==X&&i.match(/^gs_cit[0-9]+$/)&&setTimeout(function(){gs_md_sif();gs_sdom(i);(X=x).focus();},0);});});</script><div id="gs_citd" aria-live="assertive"></div></div><script>gs_md_ifc("gs_cit","gs_cit-x");</script></div><div id="gs_hdr" role="banner"><div id="gs_hdr_bg"></div><div id="gs_hdr_lt"><div class="gs_ico gs_ico_ggl"><a href="/schhp?hl=en&as_sdt=0,5" aria-label="Scholar Home"></a></div><div id="gs_hdr_md"><form id="gs_hdr_frm" action="/scholar" name="f" role="search"><span id="gs_hdr_frm_in"><input type="text" class="gs_in_txt" name="q" value="test" id="gs_hdr_frm_in_txt" size="41" maxlength="2048" autocapitalize="off" aria-label="Search"><span id="gs_hdr_arw"><a id="gs_hdr_arr" class="gs_btnAD" href="#" aria-haspopup="true" aria-controls="gs_hdr_adv" aria-label="Advanced Scholar Search"><span class="gs_ico"></span><span class="gs_ttp"><span class="gs_aro"></span><span class="gs_aru"></span><span class="gs_txt">Advanced Scholar Search</span></span></a></span></span><button type="submit" id="gs_hdr_tsb" name="btnG" aria-label="Search" class="gs_btnG gs_in_ib gs_btn_act gs_btn_eml"><span class="gs_wr"><span class="gs_lbl"></span><span class="gs_ico"></span></span></button><input type=hidden name=hl value="en"><input type=hidden name=as_sdt value="0,5"></form><style>#gs_hdr_adv{padding:9px;color:#777777;}.gs_el_ph #gs_hdr_adv{top:0;left:0;padding:0;width:100%;color:#222;}#gs_hdr_advx{position:absolute;top:4px;right:2px;background-color:white;}.gs_hatr{clear:both;white-space:normal;}.gs_el_ph .gs_hatr{padding:8px;}.gs_hadt{float:left;width:190px;padding:6px 2px 2px;}.gs_el_tc .gs_hadt,.gs_el_ph .gs_hadt{float:none;width:auto;}.gs_el_ph .gs_hadt{padding:0 0 4px 0;}.gs_hadd{margin-left:194px;padding:2px;}.gs_el_tc .gs_hadd,.gs_el_ph .gs_hadd{margin-left:0;}.gs_el_ph .gs_hadd{padding:0}#gs_hdr_adv .gs_yri .gs_in_txt{width:2.75em}#gs_hdr_arw{position:absolute;top:5px;right:2px;width:21px;height:21px;}.gs_in_txt[dir="ltr"]~#gs_hdr_arw{left:auto;right:2px;}.gs_in_txt[dir="rtl"]~#gs_hdr_arw{right:auto;left:2px;}#gs_hdr_arr{display:block;text-decoration:none;width:21px;height:21px;}.gs_el_ph #gs_hdr_arr .gs_ttp{display:none}.gs_el_ph #gs_hdr_adv_btns{display:flex;justify-content:space-between;align-items:center;font-size:16px;border-bottom:1px solid #DEDEDE;}#gs_hdr_advt,#gs_hdr_advc,#gs_hdr_advs{display:block;}#gs_hdr_advt{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}#gs_hdr_advc,#gs_hdr_advs{padding:8px;}.gs_el_ph #gs_hadt_t{font-size:16px;}.gs_el_ph #gs_hdr_adv_scl{overflow-y:auto;position:absolute;width:100%;top:46px;bottom:0;padding:13px 0;}.gs_el_ph #gs_hdr_adv_scl input,.gs_el_ph #gs_hdr_adv_scl label{-webkit-tap-highlight-color:rgba(0,0,0,0);}.gs_hdr_adv_occtr{padding:5px 0;}.gs_el_ph .gs_hdr_adv_occtr{padding:9px 0 10px;}</style><div class="gs_md_wmw"><div id="gs_hdr_adv" class="gs_md_wm" role="dialog" aria-hidden="true" aria-label="Advanced Scholar Search"><a id="gs_hdr_advx" class="gs_ico gs_ico_X gs_ico_Xt gs_nph" role="button" href="#"></a><form id="gs_hdr_frm_adv" action="/scholar"><div id="gs_hdr_adv_btns" class="gs_oph"><span id="gs_hdr_advc"><button type="button" id="gs_hdr_advcb" class=""><span class="gs_wr"><span class="gs_lbl">Cancel</span></span></button></span><span id="gs_hdr_advt">Advanced search</span><span id="gs_hdr_advs"><button type="submit" class=" gs_btn_act"><span class="gs_wr"><span class="gs_lbl">Search</span></span></button></span></div><div id="gs_hdr_adv_scl"><div class="gs_hatr"><div class="gs_hadt" id="gs_hadt_t"><b>Find articles</b></div></div><div class="gs_hatr"><div class="gs_hadt"><label for="gs_asd_q">with <b>all</b> of the words</label></div><div class="gs_hadd"><div class="gs_in_txtm"><input type="text" class="gs_in_txt gs_mini" name="as_q" value="test" id="gs_asd_q" autocapitalize="off"></div></div></div><div class="gs_hatr"><div class="gs_hadt"><label for="gs_asd_epq">with the <b>exact phrase</b></label></div><div class="gs_hadd"><div class="gs_in_txtm"><input type="text" class="gs_in_txt gs_mini" name="as_epq" value="" id="gs_asd_epq" autocapitalize="off"></div></div></div><div class="gs_hatr"><div class="gs_hadt"><label for="gs_asd_oq">with <b>at least one</b> of the words</label></div><div class="gs_hadd"><div class="gs_in_txtm"><input type="text" class="gs_in_txt gs_mini" name="as_oq" value="" id="gs_asd_oq" autocapitalize="off"></div></div></div><div class="gs_hatr"><div class="gs_hadt"><label for="gs_asd_eq"><b>without</b> the words</label></div><div class="gs_hadd"><div class="gs_in_txtm"><input type="text" class="gs_in_txt gs_mini" name="as_eq" value="" id="gs_asd_eq" autocapitalize="off"></div></div></div><div class="gs_hatr"><div class="gs_hadt"><label for="gs_asd_occt">where my words occur</label></div><div class="gs_hadd"><div class="gs_hdr_adv_occtr"><span class="gs_in_ra" onclick="void(0)"><input type="radio" name="as_occt" value="any" id="gs_asd_occt_a" checked><label for="gs_asd_occt_a">anywhere in the article</label><span class="gs_chk"></span><span class="gs_cbx"></span></span></div><div class="gs_hdr_adv_occtr"><span class="gs_in_ra" onclick="void(0)"><input type="radio" name="as_occt" value="title" id="gs_asd_occt_t"><label for="gs_asd_occt_t">in the title of the article</label><span class="gs_chk"></span><span class="gs_cbx"></span></span></div></div></div><div class="gs_hatr gs_nph"><div style="height:16px"> </div></div><div class="gs_hatr"><div class="gs_hadt"><label for="gs_asd_sau">Return articles <b>authored</b> by</label></div><div class="gs_hadd"><div class="gs_in_txtm"><input type="text" class="gs_in_txt gs_mini" name="as_sauthors" value="" id="gs_asd_sau" autocapitalize="off"></div><div>e.g., <i>"PJ Hayes"</i> or <i>McCarthy</i></div></div></div><div class="gs_hatr"><div class="gs_hadt"><label for="gs_asd_pub">Return articles <b>published</b> in</label></div><div class="gs_hadd"><div class="gs_in_txtm"><input type="text" class="gs_in_txt gs_mini" name="as_publication" value="" id="gs_asd_pub" autocapitalize="off"></div><div>e.g., <i>J Biol Chem</i> or <i>Nature</i></div></div></div><div class="gs_hatr"><div class="gs_hadt"><label for="gs_asd_ylo">Return articles <b>dated</b> between</label></div><div class="gs_hadd"><div class="gs_yri"><input type="text" class="gs_in_txt gs_mini" name="as_ylo" value="" id="gs_asd_ylo" size="4" maxlength="4" autocapitalize="off" pattern="[0-9]*"> — <input type="text" class="gs_in_txt gs_mini" name="as_yhi" value="" id="gs_asd_yhi" size="4" maxlength="4" autocapitalize="off" pattern="[0-9]*"></div><div>e.g., <i>1996</i></div></div></div><div class="gs_hatr gs_nph"><div class="gs_hadt"><button type="submit" name="btnG" aria-label="Search" class="gs_btnG gs_in_ib gs_btn_act gs_btn_eml"><span class="gs_wr"><span class="gs_lbl"></span><span class="gs_ico"></span></span></button></div></div></div><input type=hidden name=hl value="en"><input type=hidden name=as_sdt value="0,5"></form></div></div><script>var gs_aso=function(){var A,O=0,a=gs_id("gs_hdr_arr"),b=gs_id("gs_top"),d=gs_id("gs_hdr_adv");function o(){O=1;A=document.activeElement;gs_xvis(d);gs_tfcs(gs_id("gs_asd_q"));t();}function c(){O=0;gs_uvis(d);try{A.focus()}catch(_){}a.style.display="";gs_unscl(b);}function t(){if(O){var x=gs_is_ph();(x?gs_xnscl:gs_unscl)(b);gs_md_ifc("gs_hdr_adv",x?"gs_hdr_advcb":"gs_hdr_advx");}}gs_evt_el(t);gs_evt(d,["transitionend","webkitTransitionEnd"],function(e){e.target!=d||(O?gs_tmh.a(d):gs_tmh.r(d));});return function(e){a.style.display="none";gs_md_shw(d.id,e,o,c);}}();gs_evt_clk(gs_id("gs_hdr_advx"),gs_bind(gs_md_cls,"gs_hdr_adv"));gs_evt_clk(gs_id("gs_hdr_advcb"),gs_bind(gs_md_cls,"gs_hdr_adv"));gs_evt(gs_id("gs_hdr_frm_adv"),"keydown",function(e){var x=gs_evt_tgt(e)||{};e.keyCode===13&&x.nodeType===1&&x.tagName==="INPUT"&&x.form.submit();});gs_evt_clk(gs_id("gs_hdr_arr"),gs_aso,0,[13,32,38,40]);</script></div></div></div><div id="gs_ab_anchor"></div><div id="gs_ab" role="navigation"><a id="gs_ab_na" href="/schhp?hl=en&as_sdt=0,5">Scholar</a><div id="gs_ab_top"><div id="gs_ab_md">About 3,800,000 results (<b>0.02</b> sec)<div id="gs_ab_top_buttons"><div id="gs_ab_md_exp_md"></div></div></div><div id="gs_ab_rt"><div id="gs_ylo_dd"><button class="gs_in_se gs_btn_mnu" id="gs_ylo_btn" type="button" aria-controls="gs_ylo_md" aria-haspopup="true"><span class="gs_wr"><span class="gs_lbl">Any time</span><span class="gs_icm"></span></span></button><div class="gs_md_wn" id="gs_ylo_md" style="display:none" role="menu" aria-hidden="true"><a href="/scholar?q=test&hl=en&as_sdt=0,5" class="gs_md_li gs_cur" aria-checked="true" role="menuitemradio" tabindex="-1">Any time</a><a href="/scholar?as_ylo=2016&q=test&hl=en&as_sdt=0,5" class="gs_md_li" role="menuitemradio" tabindex="-1">Since 2016</a><a href="/scholar?as_ylo=2015&q=test&hl=en&as_sdt=0,5" class="gs_md_li" role="menuitemradio" tabindex="-1">Since 2015</a><a href="/scholar?as_ylo=2012&q=test&hl=en&as_sdt=0,5" class="gs_md_li" role="menuitemradio" tabindex="-1">Since 2012</a><div class="gs_hr" role="separator"></div><a href="/scholar?hl=en&as_sdt=0,5&q=test" class="gs_md_li gs_cur" aria-checked="true" role="menuitemradio" tabindex="-1">Sort by relevance</a><a href="/scholar?hl=en&as_sdt=0,5&q=test&scisbd=1" class="gs_md_li" role="menuitemradio" tabindex="-1">Sort by date</a></div></div><script>gs_evt_md_mnu("gs_ylo_md","gs_ylo_btn")</script><button type="button" onclick="window.location='/citations?hl\x3den'" class="gs_btnC gs_in_ib"><span class="gs_wr"><span class="gs_lbl">My Citations</span><span class="gs_ico"></span></span></button><div id="gs_ad_dd"><button type="button" id="gs_btnAD" aria-label="More" aria-controls="gs_ad_md" aria-haspopup="true" class="gs_btnAD gs_in_ib gs_btn_half"><span class="gs_wr"><span class="gs_lbl"></span><span class="gs_ico"></span></span></button><div id="gs_ad_md" class="gs_md_wn" style="display:none" role="menu" aria-hidden="true"><div class="gs_ad_nlnv"><a href="/scholar?as_sdt=0,5&q=test&hl=en" class="gs_md_li gs_cur" aria-checked="true" role="menuitemradio" tabindex="-1">Articles</a><a href="/scholar?as_sdt=2006&q=test&hl=en" class="gs_md_li" role="menuitemradio" tabindex="-1">Case law</a><a href="/scholar?scilib=1&scioq=test&hl=en&as_sdt=0,5" class="gs_md_li" role="menuitemradio" tabindex="-1">My library</a><div class="gs_hr" role="separator"></div><a href="/scholar?as_sdt=1,5&q=test&hl=en" role="menuitemcheckbox" tabindex="-1" aria-checked="true" class="gs_in_cb gs_sel gs_md_li"><span class="gs_lbl">include patents</span><span class="gs_chk"></span><span class="gs_cbx"></span></a><a href="/scholar?as_vis=1&q=test&hl=en&as_sdt=0,5" role="menuitemcheckbox" tabindex="-1" aria-checked="true" class="gs_in_cb gs_sel gs_md_li"><span class="gs_lbl">include citations</span><span class="gs_chk"></span><span class="gs_cbx"></span></a><div class="gs_hr" role="separator"></div><a href="/citations?hl=en" role="menuitem" tabindex="-1" class="gs_btnC gs_in_ib gs_md_li"><span class="gs_lbl">My Citations</span><span class="gs_ico"></span></a><a href="/scholar_alerts?view_op=create_alert_options&hl=en&alert_query=intitle:test&alert_params=%3Fhl%3Den%26as_sdt%3D0,5" role="menuitem" tabindex="-1" class="gs_btnM gs_in_ib gs_md_li"><span class="gs_lbl">Create alert</span><span class="gs_ico"></span></a></div><a href="/citations?view_op=top_venues&hl=en" role="menuitem" tabindex="-1" class="gs_btnJ gs_in_ib gs_md_li"><span class="gs_lbl">Metrics</span><span class="gs_ico"></span></a><a href="/scholar_settings?q=test&hl=en&as_sdt=0,5" role="menuitem" tabindex="-1" class="gs_btnP gs_in_ib gs_md_li"><span class="gs_lbl">Settings</span><span class="gs_ico"></span></a><a href="#" id="gs_a_adv" role="menuitem" tabindex="-1" class="gs_btnSB gs_in_ib gs_md_li"><span class="gs_lbl">Advanced search</span><span class="gs_ico"></span></a></div></div></div></div></div><script>gs_evt_md_mnu("gs_ad_md","gs_btnAD");gs_xatr(gs_id("gs_a_adv"),"data-a","gs_aso&&gs_aso({})");</script><div id="gs_bdy"><div id="gs_res_bdy"><div id="gs_lnv" role="navigation"><ul id="gs_lnv_pri"><li class="gs_sel"><a href="/scholar?as_sdt=0,5&q=test&hl=en">Articles</a></li><li><a href="/scholar?as_sdt=2006&q=test&hl=en">Case law</a></li><li><a href="/scholar?scilib=1&scioq=test&hl=en&as_sdt=0,5">My library</a></li></ul><div class="gs_pad"><div class="gs_hr"></div></div><ul id="gs_lnv_ylo" class="gs_pad"><li class="gs_ind gs_sel"><a href="/scholar?q=test&hl=en&as_sdt=0,5">Any time</a></li><li class="gs_ind"><a href="/scholar?as_ylo=2016&q=test&hl=en&as_sdt=0,5">Since 2016</a></li><li class="gs_ind"><a href="/scholar?as_ylo=2015&q=test&hl=en&as_sdt=0,5">Since 2015</a></li><li class="gs_ind"><a href="/scholar?as_ylo=2012&q=test&hl=en&as_sdt=0,5">Since 2012</a></li><li class="gs_ind"><a href="#" onclick="return gs_lnv_yloc_clk(this)">Custom range...</a></li></ul><script>function gs_lnv_yloc_clk(t){gs_visi('gs_lnv_yloc',1);gs_is_tc||gs_tfcs(gs_id('gs_as_ylo'));return gs_sel_clk("gs_lnv_ylo",t);}</script><form id="gs_lnv_yloc" class="gs_pad" action="/scholar" style="display:none"><input type=hidden name=q value="test"><input type=hidden name=hl value="en"><input type=hidden name=as_sdt value="0,5"><table><tr><td nowrap><input type="text" pattern="[0-9]*" name="as_ylo" class="gs_in_txt gs_mini" size="4" maxlength="4" value="" id="gs_as_ylo"> — <input type="text" pattern="[0-9]*" name="as_yhi" class="gs_in_txt gs_mini" size="4" maxlength="4" value=""></td></tr><tr><td align="center"><button type="submit" class=""><span class="gs_wr"><span class="gs_lbl">Search</span></span></button></td></tr></table></form><div class="gs_pad"><div class="gs_hr"></div></div><ul id="gs_lnv_stype" class="gs_pad"><li class="gs_ind gs_sel"><a href="/scholar?hl=en&as_sdt=0,5&q=test">Sort by relevance</a></li><li class="gs_ind"><a href="/scholar?hl=en&as_sdt=0,5&q=test&scisbd=1">Sort by date</a></li></ul><div class="gs_pad"><div class="gs_hr"></div></div><ul id="gs_lnv_misc" class="gs_pad"><li class="gs_inw"><a href="/scholar?as_sdt=1,5&q=test&hl=en" role="checkbox" aria-checked="true" class="gs_in_cb gs_sel"><span class="gs_lbl">include patents</span><span class="gs_chk"></span><span class="gs_cbx"></span></a></li><li class="gs_inw"><a href="/scholar?as_vis=1&q=test&hl=en&as_sdt=0,5" role="checkbox" aria-checked="true" class="gs_in_cb gs_sel"><span class="gs_lbl">include citations</span><span class="gs_chk"></span><span class="gs_cbx"></span></a></li></ul><div class="gs_pad"><div class="gs_hr"></div><div><a href="/scholar_alerts?view_op=create_alert_options&hl=en&alert_query=intitle:test&alert_params=%3Fhl%3Den%26as_sdt%3D0,5" class="gs_btnM gs_in_ib"><span class="gs_lbl">Create alert</span><span class="gs_ico"></span></a></div></div></div><div id="gs_ccl" role="main"><div id="gs_ccl_top"></div><div id="gs_ccl_results"> <div class="gs_r"><div class="gs_ggs gs_fl"><div class="gs_ggsm" id="gs_ggsW0"><div class="gs_ggsd"><a href="http://www.psychodyssey.net/wp-content/uploads/2016/01/PACT.pdf" data-clk="hl=en&sa=T&oi=gga&ct=gga&cd=0&ei=GjLqV6-zC8GvmAGaqoSQCQ"><span class=gs_ctg2>[PDF]</span> psychodyssey.net</a></div></div></div><div class="gs_ri"><h3 class="gs_rt"><a href="http://archpsyc.jamanetwork.com/article.aspx?articleid=492295" data-clk="hl=en&sa=T&ct=res&cd=0&ei=GjLqV6-zC8GvmAGaqoSQCQ">Alternative to mental hospital treatment: I. Conceptual model, treatment program, and clinical evaluation</a></h3><div class="gs_a">LI Stein, MA <b>Test</b> - Archives of general psychiatry, 1980 - archpsyc.jamanetwork.com</div><div class="gs_rs">METHODS The experiment was designed to study the effects on patient functioning during a <br>14-month intensive community-treatment program and to evaluate patient functioning <br>afterward when patients were transferred to traditional community programs. To ...</div><div class="gs_fl"><a href="/scholar?cites=12910826986926402159&as_sdt=2005&sciodt=0,5&hl=en">Cited by 1963</a> <a href="/scholar?q=related:b2pGeL14LLMJ:scholar.google.com/&hl=en&as_sdt=0,5">Related articles</a> <a href="/scholar?cluster=12910826986926402159&hl=en&as_sdt=0,5" class="gs_nph">All 7 versions</a> <a href="http://gateway.webofknowledge.com/gateway/Gateway.cgi?GWVersion=2&SrcApp=GSSearch&SrcAuth=Scholar&DestApp=WOS_CPL&DestLinkType=CitingArticles&UT=A1980JP43700003&SrcURL=http://scholar.google.com/&SrcDesc=Back+to+Google+Scholar&GSPage=TC" data-clk="hl=en&sa=T&ct=wosc&cd=0&ei=GjLqV6-zC8GvmAGaqoSQCQ" class="gs_nta gs_nph">Web of Science: 1048</a> <a href="http://scholar.googleusercontent.com/scholar.bib?q=info:b2pGeL14LLMJ:scholar.google.com/&output=citation&scisig=AAGBfm0AAAAAV-o0cglaoJDpKzRDknHs2nlilPdOgeyz&scisf=4&ct=citation&cd=0&hl=en" class="gs_nta gs_nph">Import into BibTeX</a> <a onclick="return gs_ocit(event,'b2pGeL14LLMJ','0')" href="#" class="gs_nvi" role="button" aria-controls="gs_cit" aria-haspopup="true">Cite</a> <span class="gs_nph"><a id="gs_svl0" onclick="return gs_sva('b2pGeL14LLMJ','0')" href="#" title="Save this article to my library so that I can read or cite it later.">Save</a><span id="gs_svo0" class="gs_svm">Saving<span id="gs_svd0">...</span></span><a id="gs_svs0" style="display:none">Saved</a><span id="gs_sve0" class="gs_svm">Error saving. <a onclick="return gs_sva('b2pGeL14LLMJ','0')" href="#">Try again?</a></span></span> <a href="#" class="gs_mor" role="button" onclick="return gs_more(this,1)">More</a> <a href="/scholar?output=instlink&q=info:b2pGeL14LLMJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=17366730631578469834&oi=llo" class="gs_nvi">FindIt@BHAM</a> <a href="/scholar?output=instlink&q=info:b2pGeL14LLMJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=3763468380288621133&oi=llo" class="gs_nvi">FindIt!@BHAM</a> <a href="#" class="gs_nvi" role="button" onclick="return gs_more(this,0)">Fewer</a></div></div></div> <div class="gs_r"><div class="gs_ri"><h3 class="gs_rt"><span class="gs_ctc"><span class="gs_ct1">[BOOK]</span><span class="gs_ct2">[B]</span></span> <a href="http://onlinelibrary.wiley.com/doi/10.1002/9780470479216.corpsy0985/full" data-clk="hl=en&sa=T&ct=res&cd=1&ei=GjLqV6-zC8GvmAGaqoSQCQ"><b>Test </b>anxiety inventory</a></h3><div class="gs_a">CD Spielberger - 2010 - Wiley Online Library</div><div class="gs_rs">Abstract As Seymour Sarason (1959), a major early contributor to theory and research on <br><b>test </b>anxiety, observed,“We live in a <b>test</b>-conscious, <b>test</b>-giving culture in which the lives of <br>people are in part determined by their <b>test </b>performance”(p. 26). Consequently, it is not <b> ...</b></div><div class="gs_fl"><a href="/scholar?cites=6973571053426701231&as_sdt=2005&sciodt=0,5&hl=en">Cited by 20016</a> <a href="/scholar?q=related:r_Nx7-wZx2AJ:scholar.google.com/&hl=en&as_sdt=0,5">Related articles</a> <a href="/scholar?cluster=6973571053426701231&hl=en&as_sdt=0,5" class="gs_nph">All 2 versions</a> <a href="http://scholar.googleusercontent.com/scholar.bib?q=info:r_Nx7-wZx2AJ:scholar.google.com/&output=citation&scisig=AAGBfm0AAAAAV-o0ctbLXIxA77P_N-_b7GU9q1MgT-pT&scisf=4&ct=citation&cd=1&hl=en" class="gs_nta gs_nph">Import into BibTeX</a> <a onclick="return gs_ocit(event,'r_Nx7-wZx2AJ','1')" href="#" class="gs_nvi" role="button" aria-controls="gs_cit" aria-haspopup="true">Cite</a> <span class="gs_nph"><a id="gs_svl1" onclick="return gs_sva('r_Nx7-wZx2AJ','1')" href="#" title="Save this article to my library so that I can read or cite it later.">Save</a><span id="gs_svo1" class="gs_svm">Saving<span id="gs_svd1">...</span></span><a id="gs_svs1" style="display:none">Saved</a><span id="gs_sve1" class="gs_svm">Error saving. <a onclick="return gs_sva('r_Nx7-wZx2AJ','1')" href="#">Try again?</a></span></span> <a href="#" class="gs_mor" role="button" onclick="return gs_more(this,1)">More</a> <a href="/scholar?output=instlink&q=info:r_Nx7-wZx2AJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=11464088611070445957&oi=llo" class="gs_nvi">FindIt@BHAM</a> <a href="/scholar?output=instlink&q=info:r_Nx7-wZx2AJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=12875372581576930154&oi=llo" class="gs_nvi">Library Search</a> <a href="#" class="gs_nvi" role="button" onclick="return gs_more(this,0)">Fewer</a></div></div></div> <div class="gs_r"><div class="gs_ri"><h3 class="gs_rt"><span class="gs_ctc"><span class="gs_ct1">[BOOK]</span><span class="gs_ct2">[B]</span></span> <a href="http://eric.ed.gov/?id=ED312281" data-clk="hl=en&sa=T&ct=res&cd=2&ei=GjLqV6-zC8GvmAGaqoSQCQ">Introduction to classical and modern <b>test </b>theory.</a></h3><div class="gs_a">L Crocker, J Algina - 1986 - ERIC</div><div class="gs_rs">This text was written to help the reader acquire a base of knowledge about classical <br>psychometrics and to integrate new ideas into that framework of knowledge. The material is <br>organized into five units:(1) introduction to measurement theory;(2) reliability;(3) validity;(4<b> ...</b></div><div class="gs_fl"><a href="/scholar?cites=9583991776033625712&as_sdt=2005&sciodt=0,5&hl=en">Cited by 4867</a> <a href="/scholar?q=related:cNa__L0tAYUJ:scholar.google.com/&hl=en&as_sdt=0,5">Related articles</a> <a href="http://scholar.googleusercontent.com/scholar.bib?q=info:cNa__L0tAYUJ:scholar.google.com/&output=citation&scisig=AAGBfm0AAAAAV-o0cvmZERkl0VxvQLvtkhwY4BJ8M3A5&scisf=4&ct=citation&cd=2&hl=en" class="gs_nta gs_nph">Import into BibTeX</a> <a onclick="return gs_ocit(event,'cNa__L0tAYUJ','2')" href="#" class="gs_nvi" role="button" aria-controls="gs_cit" aria-haspopup="true">Cite</a> <span class="gs_nph"><a id="gs_svl2" onclick="return gs_sva('cNa__L0tAYUJ','2')" href="#" title="Save this article to my library so that I can read or cite it later.">Save</a><span id="gs_svo2" class="gs_svm">Saving<span id="gs_svd2">...</span></span><a id="gs_svs2" style="display:none">Saved</a><span id="gs_sve2" class="gs_svm">Error saving. <a onclick="return gs_sva('cNa__L0tAYUJ','2')" href="#">Try again?</a></span></span> <a href="#" class="gs_mor" role="button" onclick="return gs_more(this,1)">More</a> <a href="/scholar?output=instlink&q=info:cNa__L0tAYUJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=1136309043625387731&oi=llo" class="gs_nvi">FindIt@BHAM</a> <a href="/scholar?output=instlink&q=info:cNa__L0tAYUJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=17666539823251396652&oi=llo" class="gs_nvi">Library Search</a> <a href="http://scholar.googleusercontent.com/scholar?q=cache:cNa__L0tAYUJ:scholar.google.com/+test&hl=en&as_sdt=0,5" class="gs_nvi">Cached</a> <a href="#" class="gs_nvi" role="button" onclick="return gs_more(this,0)">Fewer</a></div></div></div> <div class="gs_r"><div class="gs_ggs gs_fl"><div class="gs_ggsm" id="gs_ggsW3"><div class="gs_ggsd"><a href="/scholar?output=instlink&q=info:Kvpu8A33QVYJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=6464605782358203491&oi=lle">FullText!@BHAM</a></div></div></div><div class="gs_ri"><h3 class="gs_rt"><a href="http://psycnet.apa.org/journals/ccp/19/5/393/" data-clk="hl=en&sa=T&ct=res&cd=3&ei=GjLqV6-zC8GvmAGaqoSQCQ">The relation of the trail making <b>test </b>to organic brain damage.</a></h3><div class="gs_a">RM Reitan - Journal of consulting psychology, 1955 - psycnet.apa.org</div><div class="gs_rs">Abstract 1. The Trail Making <b>Test </b>was administered to brain damaged and hospitalized <br>control subjects. The results indicated that" this short, inexpensive, and easily administered <br><b>test </b>may be a fairly valid indicator of certain effects of brain damage."(PsycINFO Database <b> ...</b></div><div class="gs_fl"><a href="/scholar?cites=6215520599988435498&as_sdt=2005&sciodt=0,5&hl=en">Cited by 6046</a> <a href="/scholar?q=related:Kvpu8A33QVYJ:scholar.google.com/&hl=en&as_sdt=0,5">Related articles</a> <a href="/scholar?cluster=6215520599988435498&hl=en&as_sdt=0,5" class="gs_nph">All 8 versions</a> <a href="http://scholar.googleusercontent.com/scholar.bib?q=info:Kvpu8A33QVYJ:scholar.google.com/&output=citation&scisig=AAGBfm0AAAAAV-o0ci1bzGnTiW8IHhoImhpttweJkS40&scisf=4&ct=citation&cd=3&hl=en" class="gs_nta gs_nph">Import into BibTeX</a> <a onclick="return gs_ocit(event,'Kvpu8A33QVYJ','3')" href="#" class="gs_nvi" role="button" aria-controls="gs_cit" aria-haspopup="true">Cite</a> <span class="gs_nph"><a id="gs_svl3" onclick="return gs_sva('Kvpu8A33QVYJ','3')" href="#" title="Save this article to my library so that I can read or cite it later.">Save</a><span id="gs_svo3" class="gs_svm">Saving<span id="gs_svd3">...</span></span><a id="gs_svs3" style="display:none">Saved</a><span id="gs_sve3" class="gs_svm">Error saving. <a onclick="return gs_sva('Kvpu8A33QVYJ','3')" href="#">Try again?</a></span></span> <a href="#" class="gs_mor" role="button" onclick="return gs_more(this,1)">More</a> <a href="/scholar?output=instlink&q=info:Kvpu8A33QVYJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=14234476713006075725&oi=llo" class="gs_nvi">FullText!@BHAM</a> <a href="#" class="gs_nvi" role="button" onclick="return gs_more(this,0)">Fewer</a></div></div></div> <div class="gs_r"><div class="gs_ri"><h3 class="gs_rt"><span class="gs_ctu"><span class="gs_ct1">[CITATION]</span><span class="gs_ct2">[C]</span></span> Peabody picture vocabulary <b>test</b></h3><div class="gs_a">LM Dunn, LM Dunn, S Bulheller, H Häcker - 1965 - American Guidance Service Circle …</div><div class="gs_fl"><a href="/scholar?cites=12802281876711093767&as_sdt=2005&sciodt=0,5&hl=en">Cited by 11310</a> <a href="/scholar?q=related:BzbJl4nXqrEJ:scholar.google.com/&hl=en&as_sdt=0,5">Related articles</a> <a href="http://scholar.googleusercontent.com/scholar.bib?q=info:BzbJl4nXqrEJ:scholar.google.com/&output=citation&scisig=AAGBfm0AAAAAV-o0crF8f3bBle9lzvQ7Jq6SOF7z38Xi&scisf=4&ct=citation&cd=4&hl=en" class="gs_nta gs_nph">Import into BibTeX</a> <a onclick="return gs_ocit(event,'BzbJl4nXqrEJ','4')" href="#" class="gs_nvi" role="button" aria-controls="gs_cit" aria-haspopup="true">Cite</a> <span class="gs_nph"><a id="gs_svl4" onclick="return gs_sva('BzbJl4nXqrEJ','4')" href="#" title="Save this article to my library so that I can read or cite it later.">Save</a><span id="gs_svo4" class="gs_svm">Saving<span id="gs_svd4">...</span></span><a id="gs_svs4" style="display:none">Saved</a><span id="gs_sve4" class="gs_svm">Error saving. <a onclick="return gs_sva('BzbJl4nXqrEJ','4')" href="#">Try again?</a></span></span> <a href="#" class="gs_mor" role="button" onclick="return gs_more(this,1)">More</a> <a href="/scholar?output=instlink&q=info:BzbJl4nXqrEJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=3595556072157090106&oi=llo" class="gs_nvi">FindIt@BHAM</a> <a href="/scholar?output=instlink&q=info:BzbJl4nXqrEJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=82767321042152416&oi=llo" class="gs_nvi">Library Search</a> <a href="#" class="gs_nvi" role="button" onclick="return gs_more(this,0)">Fewer</a></div></div></div> <div class="gs_r"><div class="gs_ri"><h3 class="gs_rt"><span class="gs_ctu"><span class="gs_ct1">[CITATION]</span><span class="gs_ct2">[C]</span></span> Standards for educational and psychological tests and manuals</h3><div class="gs_a">, … Research Association. Committee on <b>Test </b> … - 1966 - American Psychological Association</div><div class="gs_fl"><a href="/scholar?cites=11025467353742312336&as_sdt=2005&sciodt=0,5&hl=en">Cited by 321</a> <a href="/scholar?q=related:kAN6jiRUApkJ:scholar.google.com/&hl=en&as_sdt=0,5">Related articles</a> <a href="http://scholar.googleusercontent.com/scholar.bib?q=info:kAN6jiRUApkJ:scholar.google.com/&output=citation&scisig=AAGBfm0AAAAAV-o0ctg7MgSIVGClpjFS10aRsIWp0KHj&scisf=4&ct=citation&cd=5&hl=en" class="gs_nta gs_nph">Import into BibTeX</a> <a onclick="return gs_ocit(event,'kAN6jiRUApkJ','5')" href="#" class="gs_nvi" role="button" aria-controls="gs_cit" aria-haspopup="true">Cite</a> <span class="gs_nph"><a id="gs_svl5" onclick="return gs_sva('kAN6jiRUApkJ','5')" href="#" title="Save this article to my library so that I can read or cite it later.">Save</a><span id="gs_svo5" class="gs_svm">Saving<span id="gs_svd5">...</span></span><a id="gs_svs5" style="display:none">Saved</a><span id="gs_sve5" class="gs_svm">Error saving. <a onclick="return gs_sva('kAN6jiRUApkJ','5')" href="#">Try again?</a></span></span> <a href="#" class="gs_mor" role="button" onclick="return gs_more(this,1)">More</a> <a href="/scholar?output=instlink&q=info:kAN6jiRUApkJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=2827657364305849739&oi=llo" class="gs_nvi">FindIt@BHAM</a> <a href="/scholar?output=instlink&q=info:kAN6jiRUApkJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=9865130610280342386&oi=llo" class="gs_nvi">Library Search</a> <a href="#" class="gs_nvi" role="button" onclick="return gs_more(this,0)">Fewer</a></div></div></div> <div class="gs_r"><div class="gs_ggs gs_fl"><div class="gs_ggsm" id="gs_ggsW6"><div class="gs_ggsd"><a href="https://www.researchgate.net/profile/Mary_Test/publication/16430472_Alternative_to_Mental_Hospital_Treatment._III._Economic_Benefit-Cost_Analysis/links/562514cf08aed3d3f136fda3.pdf" data-clk="hl=en&sa=T&oi=gga&ct=gga&cd=6&ei=GjLqV6-zC8GvmAGaqoSQCQ"><span class=gs_ctg2>[PDF]</span> researchgate.net</a></div></div></div><div class="gs_ri"><h3 class="gs_rt"><a href="http://archpsyc.jamanetwork.com/article.aspx?articleid=492296" data-clk="hl=en&sa=T&ct=res&cd=6&ei=GjLqV6-zC8GvmAGaqoSQCQ">Alternative to mental hospital treatment: II. Economic benefit-cost analysis</a></h3><div class="gs_a">BA Weisbrod, MA <b>Test</b>, LI Stein - Archives of General …, 1980 - archpsyc.jamanetwork.com</div><div class="gs_rs">All expenditure programs, public or private, have advan-XI tages and disadvantages; that is, <br>they entail both benefits and costs. Wise decision making requires that the total" benefits" of <br>a program exceed the total" costs." What is controversial is not whether benefits and costs ...</div><div class="gs_fl"><a href="/scholar?cites=17987196099587117011&as_sdt=2005&sciodt=0,5&hl=en">Cited by 488</a> <a href="/scholar?q=related:048uZY1bn_kJ:scholar.google.com/&hl=en&as_sdt=0,5">Related articles</a> <a href="/scholar?cluster=17987196099587117011&hl=en&as_sdt=0,5" class="gs_nph">All 7 versions</a> <a href="http://gateway.webofknowledge.com/gateway/Gateway.cgi?GWVersion=2&SrcApp=GSSearch&SrcAuth=Scholar&DestApp=WOS_CPL&DestLinkType=CitingArticles&UT=A1980JP43700004&SrcURL=http://scholar.google.com/&SrcDesc=Back+to+Google+Scholar&GSPage=TC" data-clk="hl=en&sa=T&ct=wosc&cd=6&ei=GjLqV6-zC8GvmAGaqoSQCQ" class="gs_nta gs_nph">Web of Science: 282</a> <a href="http://scholar.googleusercontent.com/scholar.bib?q=info:048uZY1bn_kJ:scholar.google.com/&output=citation&scisig=AAGBfm0AAAAAV-o0cjOpcKyuIG0ZT1-kB8e_ImLuE9pb&scisf=4&ct=citation&cd=6&hl=en" class="gs_nta gs_nph">Import into BibTeX</a> <a onclick="return gs_ocit(event,'048uZY1bn_kJ','6')" href="#" class="gs_nvi" role="button" aria-controls="gs_cit" aria-haspopup="true">Cite</a> <span class="gs_nph"><a id="gs_svl6" onclick="return gs_sva('048uZY1bn_kJ','6')" href="#" title="Save this article to my library so that I can read or cite it later.">Save</a><span id="gs_svo6" class="gs_svm">Saving<span id="gs_svd6">...</span></span><a id="gs_svs6" style="display:none">Saved</a><span id="gs_sve6" class="gs_svm">Error saving. <a onclick="return gs_sva('048uZY1bn_kJ','6')" href="#">Try again?</a></span></span> <a href="#" class="gs_mor" role="button" onclick="return gs_more(this,1)">More</a> <a href="/scholar?output=instlink&q=info:048uZY1bn_kJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=1134125822040091525&oi=llo" class="gs_nvi">FindIt@BHAM</a> <a href="/scholar?output=instlink&q=info:048uZY1bn_kJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=5906800945289440704&oi=llo" class="gs_nvi">FindIt!@BHAM</a> <a href="#" class="gs_nvi" role="button" onclick="return gs_more(this,0)">Fewer</a></div></div></div> <div class="gs_r"><div class="gs_ggs gs_fl"><div class="gs_ggsm" id="gs_ggsW7"><div class="gs_ggsd"><a href="/scholar?output=instlink&q=info:PAsKPByZHlAJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=10296465810748251005&oi=lle">FullText!@BHAM</a></div></div></div><div class="gs_ri"><h3 class="gs_rt"><a href="http://science.sciencemag.org/content/227/4688/747.short" data-clk="hl=en&sa=T&ct=res&cd=7&ei=GjLqV6-zC8GvmAGaqoSQCQ">Oxidative autoactivation of latent collagenase by human neutrophils</a></h3><div class="gs_a">…, G Peppin, X Ortiz, C Ragsdale, ST <b>Test</b> - Science, 1985 - science.sciencemag.org</div><div class="gs_rs">Abstract The pathological destruction of collagen plays a key role in the development of <br>inflammatory disease states affecting every organ system in the human body. Neutrophils <br>localized at inflammatory sites can potentially degrade collagen by releasing a ...</div><div class="gs_fl"><a href="/scholar?cites=5773220118880979772&as_sdt=2005&sciodt=0,5&hl=en">Cited by 455</a> <a href="/scholar?q=related:PAsKPByZHlAJ:scholar.google.com/&hl=en&as_sdt=0,5">Related articles</a> <a href="/scholar?cluster=5773220118880979772&hl=en&as_sdt=0,5" class="gs_nph">All 7 versions</a> <a href="http://gateway.webofknowledge.com/gateway/Gateway.cgi?GWVersion=2&SrcApp=GSSearch&SrcAuth=Scholar&DestApp=WOS_CPL&DestLinkType=CitingArticles&UT=A1985ABD8600029&SrcURL=http://scholar.google.com/&SrcDesc=Back+to+Google+Scholar&GSPage=TC" data-clk="hl=en&sa=T&ct=wosc&cd=7&ei=GjLqV6-zC8GvmAGaqoSQCQ" class="gs_nta gs_nph">Web of Science: 391</a> <a href="http://scholar.googleusercontent.com/scholar.bib?q=info:PAsKPByZHlAJ:scholar.google.com/&output=citation&scisig=AAGBfm0AAAAAV-o0csZl4N1i2paHKV7O-QT2xT3Dm4CE&scisf=4&ct=citation&cd=7&hl=en" class="gs_nta gs_nph">Import into BibTeX</a> <a onclick="return gs_ocit(event,'PAsKPByZHlAJ','7')" href="#" class="gs_nvi" role="button" aria-controls="gs_cit" aria-haspopup="true">Cite</a> <span class="gs_nph"><a id="gs_svl7" onclick="return gs_sva('PAsKPByZHlAJ','7')" href="#" title="Save this article to my library so that I can read or cite it later.">Save</a><span id="gs_svo7" class="gs_svm">Saving<span id="gs_svd7">...</span></span><a id="gs_svs7" style="display:none">Saved</a><span id="gs_sve7" class="gs_svm">Error saving. <a onclick="return gs_sva('PAsKPByZHlAJ','7')" href="#">Try again?</a></span></span> <a href="#" class="gs_mor" role="button" onclick="return gs_more(this,1)">More</a> <a href="/scholar?output=instlink&q=info:PAsKPByZHlAJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=13944955762534985728&oi=llo" class="gs_nvi">FullText!@BHAM</a> <a href="#" class="gs_nvi" role="button" onclick="return gs_more(this,0)">Fewer</a></div></div></div> <div class="gs_r"><div class="gs_ri"><h3 class="gs_rt"><span class="gs_ctu"><span class="gs_ct1">[CITATION]</span><span class="gs_ct2">[C]</span></span> Training in community living</h3><div class="gs_a">MA <b>Test</b> - Handbook of psychiatric rehabilitation, 1992</div><div class="gs_fl"><a href="/scholar?cites=14426985873354063651&as_sdt=2005&sciodt=0,5&hl=en">Cited by 321</a> <a href="/scholar?q=related:I__Y4DbzNsgJ:scholar.google.com/&hl=en&as_sdt=0,5">Related articles</a> <a href="http://scholar.googleusercontent.com/scholar.bib?q=info:I__Y4DbzNsgJ:scholar.google.com/&output=citation&scisig=AAGBfm0AAAAAV-o0cp47k1lRvPu-uQggF5ns_WGuWrTW&scisf=4&ct=citation&cd=8&hl=en" class="gs_nta gs_nph">Import into BibTeX</a> <a onclick="return gs_ocit(event,'I__Y4DbzNsgJ','8')" href="#" class="gs_nvi" role="button" aria-controls="gs_cit" aria-haspopup="true">Cite</a> <span class="gs_nph"><a id="gs_svl8" onclick="return gs_sva('I__Y4DbzNsgJ','8')" href="#" title="Save this article to my library so that I can read or cite it later.">Save</a><span id="gs_svo8" class="gs_svm">Saving<span id="gs_svd8">...</span></span><a id="gs_svs8" style="display:none">Saved</a><span id="gs_sve8" class="gs_svm">Error saving. <a onclick="return gs_sva('I__Y4DbzNsgJ','8')" href="#">Try again?</a></span></span> <a href="#" class="gs_mor" role="button" onclick="return gs_more(this,1)">More</a> <a href="#" class="gs_nvi" role="button" onclick="return gs_more(this,0)">Fewer</a></div></div></div> <div class="gs_r"><div class="gs_ggs gs_fl"><div class="gs_ggsm" id="gs_ggsW9"><div class="gs_ggsd"><a href="/scholar?output=instlink&q=info:wBBCCtQR-2kJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=12085556355652290180&oi=lle">FullText!@BHAM</a></div></div></div><div class="gs_ri"><h3 class="gs_rt"><a href="http://psycnet.apa.org/psycinfo/1967-13475-001" data-clk="hl=en&sa=T&ct=res&cd=9&ei=GjLqV6-zC8GvmAGaqoSQCQ">Models and helping: naturalistic studies in aiding behavior.</a></h3><div class="gs_a">JH Bryan, MA <b>Test</b> - Journal of personality and social psychology, 1967 - psycnet.apa.org</div><div class="gs_rs">Abstract 1. 3 EXPERIMENTS WERE ADDRESSED TO THE EFFECTS OF ALTRUISTIC <br>MODELS UPON HELPING, WHILE 1 WAS CONCERNED WITH THE IMPACT OF THE <br>SOLICITOR'S RACE UPON DONATIONS. 3 INVESTIGATIONS EMPLOYED AS A SITE ...</div><div class="gs_fl"><a href="/scholar?cites=7636717195539648704&as_sdt=2005&sciodt=0,5&hl=en">Cited by 451</a> <a href="/scholar?q=related:wBBCCtQR-2kJ:scholar.google.com/&hl=en&as_sdt=0,5">Related articles</a> <a href="/scholar?cluster=7636717195539648704&hl=en&as_sdt=0,5" class="gs_nph">All 4 versions</a> <a href="http://gateway.webofknowledge.com/gateway/Gateway.cgi?GWVersion=2&SrcApp=GSSearch&SrcAuth=Scholar&DestApp=WOS_CPL&DestLinkType=CitingArticles&UT=A19679799600004&SrcURL=http://scholar.google.com/&SrcDesc=Back+to+Google+Scholar&GSPage=TC" data-clk="hl=en&sa=T&ct=wosc&cd=9&ei=GjLqV6-zC8GvmAGaqoSQCQ" class="gs_nta gs_nph">Web of Science: 229</a> <a href="http://scholar.googleusercontent.com/scholar.bib?q=info:wBBCCtQR-2kJ:scholar.google.com/&output=citation&scisig=AAGBfm0AAAAAV-o0clic9D1O2JCKFGl4tnlHOQ4DEw6y&scisf=4&ct=citation&cd=9&hl=en" class="gs_nta gs_nph">Import into BibTeX</a> <a onclick="return gs_ocit(event,'wBBCCtQR-2kJ','9')" href="#" class="gs_nvi" role="button" aria-controls="gs_cit" aria-haspopup="true">Cite</a> <span class="gs_nph"><a id="gs_svl9" onclick="return gs_sva('wBBCCtQR-2kJ','9')" href="#" title="Save this article to my library so that I can read or cite it later.">Save</a><span id="gs_svo9" class="gs_svm">Saving<span id="gs_svd9">...</span></span><a id="gs_svs9" style="display:none">Saved</a><span id="gs_sve9" class="gs_svm">Error saving. <a onclick="return gs_sva('wBBCCtQR-2kJ','9')" href="#">Try again?</a></span></span> <a href="#" class="gs_mor" role="button" onclick="return gs_more(this,1)">More</a> <a href="/scholar?output=instlink&q=info:wBBCCtQR-2kJ:scholar.google.com/&hl=en&as_sdt=0,5&scillfp=15173854704424156515&oi=llo" class="gs_nvi">FullText!@BHAM</a> <a href="#" class="gs_nvi" role="button" onclick="return gs_more(this,0)">Fewer</a></div></div></div></div><div id="gs_ccl_bottom"><script>!function(){var i,b,l;function m(b){var S=0;function o(){S=1;gs_xanm(b);gs_xvis(b);l=b.id;}function c(){S=0;gs_uvis(b);}gs_evt_clk(b,function(e){gs_md_shw(b.id,e,o,c);},1,0,function(e){return !gs_is_ph()||S;});gs_evt_fcs(b,function(e){gs_md_shw(b.id,e,o,c);});gs_evt(b,"animationend webkitAnimationEnd",function(e){S||e.target!=b||gs_uanm(b);});}for(i=0;i<10;i++){(b=gs_id("gs_ggsW"+i))&&m(b);}gs_evt_el(function(){gs_is_ph()||l&&(gs_md_cls(l),gs_uanm(gs_id(l)),l=0);});}();gs_evt_rdy(gs_bind(gs_ac_add,"q","test"));</script><p class="gs_alrt_btm"><a href="/scholar_alerts?view_op=create_alert_options&hl=en&alert_query=intitle:test&alert_params=%3Fhl%3Den%26as_sdt%3D0,5" class="gs_btnM gs_in_ib"><span class="gs_lbl">Create alert</span><span class="gs_ico"></span></a></p><style>#gs_qsuggest h2{padding:16px 0 8px;margin-top:16px;border-top:1px solid #ccc;font-weight:normal;font-size:16px;}#gs_qsuggest ul{list-style-type:none;}#gs_qsuggest li{display:inline-block;width:48%;padding:4px 0;font-size:16px;margin-right:16px;vertical-align:middle;}#gs_qsuggest .gs_li1{margin:0;}#gs_qsuggest a{display:inline-block;max-width:100%;vertical-align:top;}.gs_el_tc #gs_qsuggest a{padding:7px 0 5px;}.gs_el_tc #gs_qsuggest li{padding:2px 0;}.gs_el_tc #gs_qsuggest h2{border-top:none;}.gs_el_ph #gs_qsuggest .gs_no_li{display:none;}.gs_el_ph #gs_qsuggest li{display:block;width:100%;margin:0;padding:0;}.gs_el_ph #gs_qsuggest a{display:block;padding:13px 0 8px 0;border-bottom:1px solid #ccc;}.gs_el_ph #gs_qsuggest li:first-child a{border-top:1px solid #ccc;}.gs_el_ph #gs_qsuggest a:hover,.gs_el_ph #gs_qsuggest a:focus{background:#f1f1f1;text-decoration:none;outline:none;}</style><div id="gs_qsuggest" class="gs_ri"><h2 class="gs_gray">Related searches</h2><ul><li class="gs_li0"><a href="/scholar?hl=en&as_sdt=0,5&qsp=1&q=test+stroop">test <b>stroop</b></a></li><li class="gs_li1"><a href="/scholar?hl=en&as_sdt=0,5&qsp=2&q=test+implicit+association">test <b>implicit association</b></a></li><li class="gs_li0"><a href="/scholar?hl=en&as_sdt=0,5&qsp=3&q=test+scores">test <b>scores</b></a></li><li class="gs_li1"><a href="/scholar?hl=en&as_sdt=0,5&qsp=4&q=test+tensile">test <b>tensile</b></a></li><li class="gs_li0"><a href="/scholar?hl=en&as_sdt=0,5&qsp=5&q=test+walk">test <b>walk</b></a></li><li class="gs_li1"><a href="/scholar?hl=en&as_sdt=0,5&qsp=6&q=test+retest">test <b>retest</b></a></li><li class="gs_li0"><a href="/scholar?hl=en&as_sdt=0,5&qsp=7&q=test+wingate">test <b>wingate</b></a></li><li class="gs_li1"><a href="/scholar?hl=en&as_sdt=0,5&qsp=8&q=test+trail+making">test <b>trail making</b></a></li><li class="gs_li0 gs_no_li"><a href="/scholar?hl=en&as_sdt=0,5&qsp=9&q=test+chi+square">test <b>chi square</b></a></li><li class="gs_li1 gs_no_li"><a href="/scholar?hl=en&as_sdt=0,5&qsp=10&q=test+minute">test <b>minute</b></a></li><li class="gs_li0 gs_no_li"><a href="/scholar?hl=en&as_sdt=0,5&qsp=11&q=test+glucose+tolerance">test <b>glucose tolerance</b></a></li><li class="gs_li1 gs_no_li"><a href="/scholar?hl=en&as_sdt=0,5&qsp=12&q=test+wilcoxon">test <b>wilcoxon</b></a></li><li class="gs_li0 gs_no_li"><a href="/scholar?hl=en&as_sdt=0,5&qsp=13&q=test+thematic+apperception">test <b>thematic apperception</b></a></li><li class="gs_li1 gs_no_li"><a href="/scholar?hl=en&as_sdt=0,5&qsp=14&q=test+wisconsin+card+sorting">test <b>wisconsin card sorting</b></a></li><li class="gs_li0 gs_no_li"><a href="/scholar?hl=en&as_sdt=0,5&qsp=15&q=test+mann+whitney">test <b>mann whitney</b></a></li><li class="gs_li1 gs_no_li"><a href="/scholar?hl=en&as_sdt=0,5&qsp=16&q=test+retest+reliability">test <b>retest reliability</b></a></li></ul></div><div id="gs_n" role="navigation"><center><table cellpadding="0" width="1%"><tr align="center" valign="top"><td align="right" nowrap><span class="gs_ico gs_ico_nav_first"></span><b style="display:block;margin-right:35px;visibility:hidden">Previous</b></td><td><span class="gs_ico gs_ico_nav_current"></span><b>1</b></td><td><a href="/scholar?start=10&q=test&hl=en&as_sdt=0,5"><span class="gs_ico gs_ico_nav_page"></span>2</a></td><td><a href="/scholar?start=20&q=test&hl=en&as_sdt=0,5"><span class="gs_ico gs_ico_nav_page"></span>3</a></td><td><a href="/scholar?start=30&q=test&hl=en&as_sdt=0,5"><span class="gs_ico gs_ico_nav_page"></span>4</a></td><td><a href="/scholar?start=40&q=test&hl=en&as_sdt=0,5"><span class="gs_ico gs_ico_nav_page"></span>5</a></td><td><a href="/scholar?start=50&q=test&hl=en&as_sdt=0,5"><span class="gs_ico gs_ico_nav_page"></span>6</a></td><td><a href="/scholar?start=60&q=test&hl=en&as_sdt=0,5"><span class="gs_ico gs_ico_nav_page"></span>7</a></td><td><a href="/scholar?start=70&q=test&hl=en&as_sdt=0,5"><span class="gs_ico gs_ico_nav_page"></span>8</a></td><td><a href="/scholar?start=80&q=test&hl=en&as_sdt=0,5"><span class="gs_ico gs_ico_nav_page"></span>9</a></td><td><a href="/scholar?start=90&q=test&hl=en&as_sdt=0,5"><span class="gs_ico gs_ico_nav_page"></span>10</a></td><td align="left" nowrap><a href="/scholar?start=10&q=test&hl=en&as_sdt=0,5"><span class="gs_ico gs_ico_nav_next"></span><b style="display:block;margin-left:53px">Next</b></a></td></tr></table></center></div><div id="gs_nm" role="navigation"><button type="button" aria-label="Previous" disabled class="gs_btnPL gs_in_ib gs_btn_half gs_dis"><span class="gs_wr"><span class="gs_lbl"></span><span class="gs_ico gs_ico_dis"></span></span></button><button type="button" onclick="window.location='/scholar?start\x3d10\x26q\x3dtest\x26hl\x3den\x26as_sdt\x3d0,5'" aria-label="Next" class="gs_btnPR gs_in_ib gs_btn_half"><span class="gs_wr"><span class="gs_lbl"></span><span class="gs_ico"></span></span></button><div id="gs_nml"><b class="gs_nma">1</b><a class="gs_nma" href="/scholar?start=10&q=test&hl=en&as_sdt=0,5">2</a><a class="gs_nma" href="/scholar?start=20&q=test&hl=en&as_sdt=0,5">3</a><a class="gs_nma" href="/scholar?start=30&q=test&hl=en&as_sdt=0,5">4</a><a class="gs_nma" href="/scholar?start=40&q=test&hl=en&as_sdt=0,5">5</a><a class="gs_nma" href="/scholar?start=50&q=test&hl=en&as_sdt=0,5">6</a><a class="gs_nma" href="/scholar?start=60&q=test&hl=en&as_sdt=0,5">7</a><a class="gs_nma" href="/scholar?start=70&q=test&hl=en&as_sdt=0,5">8</a><a class="gs_nma" href="/scholar?start=80&q=test&hl=en&as_sdt=0,5">9</a><a class="gs_nma" href="/scholar?start=90&q=test&hl=en&as_sdt=0,5">10</a></div></div><div id="gs_ftr" role="contentinfo"><a href="/intl/en/scholar/about.html">About Google Scholar</a> <a href="//www.google.com/intl/en/policies/privacy/">Privacy</a> <a href="//www.google.com/intl/en/policies/terms/">Terms</a> <a href="//support.google.com/scholar/contact/general">Provide feedback</a></div></div></div></div></div></div><div id="gs_rdy"></div></body></html> -
YiLiu6240 revised this gist
Sep 25, 2016 . 1 changed file with 53 additions and 0 deletions.There are no files selected for viewing
-
YiLiu6240 created this gist
Sep 25, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ Steps: 1. Go to the definition of `gscholar-bibtex-google-scholar-search-results` in `gscholar-bibtex.el` 2. Press `C-u C-M-x` on function definition to enable `Edebug` 3. `M-x gscholar-bibtex` 4. Select `"Google Scholar"`, then search for `"the lemon market"` 5. Press `n` to step through `gscholar-bibtex-google-scholar-search-results`